From a3e90a91f03a11156ae90094c03640396b350ec8 Mon Sep 17 00:00:00 2001 From: Gandalf <9026500+Gandalf2k15@users.noreply.github.com> Date: Wed, 6 Jul 2022 15:24:57 +0100 Subject: [PATCH] Automapper - IMPORTANT, READ ME [MDB IGNORE] (#14679) * wew * Update area_spawn_subsystem.dm * Update area_spawn_subsystem.dm * Update area_spawn_entries.dm * wew * Update area_spawn_entries.dm * Update area_spawn_entries.dm * Update area_spawn_entries.dm * Update summon_beacon.dm * yeees * Update area_spawn_entries.dm * qwqw * e * Update area_spawn_entries.dm * Update area_spawn_entries.dm * yes * Update area_spawn_entries.dm * Update area_spawn_entries.dm * Update area_spawn_entries.dm * Update area_spawn_entries.dm * Update area_spawn_entries.dm * automapper * mmkay * wew * science post * Update DeltaStation2_skyrat.dmm * fc * starting on delta * Update metastation_science_post.dmm * better loading system, metastation, delta, better file system * unit tests, bugfixes, multiz support * Update automapper.dm * Update _compile_options.dm * Kilo and tramstation * wew * Update area_spawn_entries.dm * Update automapper_config.toml * Update automapper_subsystem.dm * Update Skyrat_Map_Reset.dmm * remove redundant maps * Update _basemap.dm * wew * Update automap_template.dm * guard outposts no need * wew * NTR offices * e * Update area_spawn_entries.dm * Update area_spawn_entries.dm * Update icebox_ntrep_office.dmm * 0 * iucebox arrivals fix * Update area_spawn_entries.dm * Update automap_template.dm * Update readme.md --- _maps/_basemap.dm | 6 - _maps/deltastation.json | 2 +- _maps/icebox.json | 2 +- _maps/kilostation.json | 2 +- .../map_files/Blueshift/BlueShift_middle.dmm | 108 +- _maps/map_files/Blueshift/BlueShift_upper.dmm | 118 +- .../Deltastation/DeltaStation2_skyrat.dmm | 158364 --------- .../IceBoxStation/IceBoxStation_skyrat.dmm | 274500 --------------- .../KiloStation/KiloStation_skyrat.dmm | 151412 -------- .../map_files/Map_Reset/Skyrat_Map_Reset.dmm | 31906 +- .../MetaStation/MetaStation_skyrat.dmm | 135333 ------- .../tramstation/tramstation_skyrat.dmm | 203819 ----------- _maps/metastation.json | 2 +- .../skyrat/automapper/automapper_config.toml | 221 + .../automapper/templates/Skyrat_Map_Reset.dmm | 109375 ++++++ .../deltastation/deltastation_armory.dmm | 516 + .../deltastation/deltastation_arrivals.dmm | 2255 + .../deltastation/deltastation_barber.dmm | 553 + .../deltastation/deltastation_cryo.dmm | 156 + .../deltastation_ntrep_office.dmm | 428 + .../deltastation/deltastation_prison.dmm | 7528 + .../templates/icebox/icebox_armory_middle.dmm | 294 + .../templates/icebox/icebox_armory_top.dmm | 320 + .../templates/icebox/icebox_arrivals.dmm | 2363 + .../templates/icebox/icebox_barber.dmm | 526 + .../templates/icebox/icebox_cryo.dmm | 258 + .../templates/icebox/icebox_ntrep_office.dmm | 1267 + .../kilostation/kilostation_armory.dmm | 732 + .../kilostation/kilostation_arrivals.dmm | 351 + .../kilostation/kilostation_cryo.dmm | 211 + .../kilostation/kilostation_ert_bay.dmm | 3570 + .../metastation/metastation_armory.dmm | 591 + .../metastation/metastation_arrivals.dmm | 3411 + .../metastation/metastation_barber.dmm | 560 + .../metastation/metastation_cryo.dmm | 147 + .../metastation/metastation_ntrep_office.dmm | 459 + .../tramstation/tramstation_armory.dmm | 666 + .../tramstation/tramstation_arrivals.dmm | 2643 + .../tramstation/tramstation_barber.dmm | 499 + .../tramstation/tramstation_cryo.dmm | 483 + .../tramstation/tramstation_ntrep_office.dmm | 664 + _maps/tramstation.json | 2 +- code/__DEFINES/subsystems.dm | 1 + code/controllers/subsystem/mapping.dm | 6 +- .../crates_lockers/closets/secure/cargo.dm | 1 - .../closets/secure/engineering.dm | 1 - .../closets/secure/scientist.dm | 1 - .../crates_lockers/closets/secure/security.dm | 2 - code/modules/mapping/reader.dm | 4 +- code/modules/unit_tests/_unit_tests.dm | 1 + code/modules/unit_tests/~skyrat/automapper.dm | 25 + .../automapper/code/area_spawn_entries.dm | 208 + .../automapper/code/automap_template.dm | 28 + .../automapper/code/automapper_subsystem.dm | 93 + .../modules/automapper/icons/area_test.dmi | Bin 0 -> 229 bytes modular_skyrat/modules/automapper/readme.md | 13 + .../modules/goofsec/code/department_guards.dm | 20 +- .../modular_items/code/summon_beacon.dm | 86 - modular_skyrat/modules/salon/code/area.dm | 2 +- .../code/security_medic/security_medic.dm | 1 - modular_skyrat/readme.md | 12 +- tgstation.dme | 3 + 62 files changed, 156014 insertions(+), 941117 deletions(-) delete mode 100644 _maps/map_files/Deltastation/DeltaStation2_skyrat.dmm delete mode 100644 _maps/map_files/IceBoxStation/IceBoxStation_skyrat.dmm delete mode 100644 _maps/map_files/KiloStation/KiloStation_skyrat.dmm delete mode 100644 _maps/map_files/MetaStation/MetaStation_skyrat.dmm delete mode 100644 _maps/map_files/tramstation/tramstation_skyrat.dmm create mode 100644 _maps/skyrat/automapper/automapper_config.toml create mode 100644 _maps/skyrat/automapper/templates/Skyrat_Map_Reset.dmm create mode 100644 _maps/skyrat/automapper/templates/deltastation/deltastation_armory.dmm create mode 100644 _maps/skyrat/automapper/templates/deltastation/deltastation_arrivals.dmm create mode 100644 _maps/skyrat/automapper/templates/deltastation/deltastation_barber.dmm create mode 100644 _maps/skyrat/automapper/templates/deltastation/deltastation_cryo.dmm create mode 100644 _maps/skyrat/automapper/templates/deltastation/deltastation_ntrep_office.dmm create mode 100644 _maps/skyrat/automapper/templates/deltastation/deltastation_prison.dmm create mode 100644 _maps/skyrat/automapper/templates/icebox/icebox_armory_middle.dmm create mode 100644 _maps/skyrat/automapper/templates/icebox/icebox_armory_top.dmm create mode 100644 _maps/skyrat/automapper/templates/icebox/icebox_arrivals.dmm create mode 100644 _maps/skyrat/automapper/templates/icebox/icebox_barber.dmm create mode 100644 _maps/skyrat/automapper/templates/icebox/icebox_cryo.dmm create mode 100644 _maps/skyrat/automapper/templates/icebox/icebox_ntrep_office.dmm create mode 100644 _maps/skyrat/automapper/templates/kilostation/kilostation_armory.dmm create mode 100644 _maps/skyrat/automapper/templates/kilostation/kilostation_arrivals.dmm create mode 100644 _maps/skyrat/automapper/templates/kilostation/kilostation_cryo.dmm create mode 100644 _maps/skyrat/automapper/templates/kilostation/kilostation_ert_bay.dmm create mode 100644 _maps/skyrat/automapper/templates/metastation/metastation_armory.dmm create mode 100644 _maps/skyrat/automapper/templates/metastation/metastation_arrivals.dmm create mode 100644 _maps/skyrat/automapper/templates/metastation/metastation_barber.dmm create mode 100644 _maps/skyrat/automapper/templates/metastation/metastation_cryo.dmm create mode 100644 _maps/skyrat/automapper/templates/metastation/metastation_ntrep_office.dmm create mode 100644 _maps/skyrat/automapper/templates/tramstation/tramstation_armory.dmm create mode 100644 _maps/skyrat/automapper/templates/tramstation/tramstation_arrivals.dmm create mode 100644 _maps/skyrat/automapper/templates/tramstation/tramstation_barber.dmm create mode 100644 _maps/skyrat/automapper/templates/tramstation/tramstation_cryo.dmm create mode 100644 _maps/skyrat/automapper/templates/tramstation/tramstation_ntrep_office.dmm create mode 100644 code/modules/unit_tests/~skyrat/automapper.dm create mode 100644 modular_skyrat/modules/automapper/code/area_spawn_entries.dm create mode 100644 modular_skyrat/modules/automapper/code/automap_template.dm create mode 100644 modular_skyrat/modules/automapper/code/automapper_subsystem.dm create mode 100644 modular_skyrat/modules/automapper/icons/area_test.dmi create mode 100644 modular_skyrat/modules/automapper/readme.md diff --git a/_maps/_basemap.dm b/_maps/_basemap.dm index 709813b0021..986391e311f 100644 --- a/_maps/_basemap.dm +++ b/_maps/_basemap.dm @@ -15,15 +15,9 @@ #include "map_files\IceBoxStation\IceBoxStation.dmm" #include "map_files\tramstation\tramstation.dmm" // SKYRAT EDIT ADDITON START - Compiling our modular maps too! - #include "map_files\Deltastation\DeltaStation2_skyrat.dmm" - #include "map_files\KiloStation\KiloStation_skyrat.dmm" - #include "map_files\MetaStation\MetaStation_skyrat.dmm" - #include "map_files\IceBoxStation\IceBoxStation_skyrat.dmm" - #include "map_files\tramstation\tramstation_skyrat.dmm" #include "map_files\Blueshift\BlueShift_upper.dmm" #include "map_files\Blueshift\BlueShift_middle.dmm" #include "map_files\Blueshift\BlueShift_lower.dmm" - #include "map_files\tramstation\tramstation_skyrat.dmm" // The mining maps #include "map_files\Mining\Icemoon.dmm" #include "map_files\Mining\Rockplanet.dmm" diff --git a/_maps/deltastation.json b/_maps/deltastation.json index eb46e97d060..cc6c11f4092 100644 --- a/_maps/deltastation.json +++ b/_maps/deltastation.json @@ -2,7 +2,7 @@ "version": 1, "map_name": "Delta Station", "map_path": "map_files/Deltastation", - "map_file": "DeltaStation2_skyrat.dmm", + "map_file": "DeltaStation2.dmm", "shuttles": { "emergency": "emergency_delta", "ferry": "ferry_fancy", diff --git a/_maps/icebox.json b/_maps/icebox.json index cc709a14819..0a18518b54a 100644 --- a/_maps/icebox.json +++ b/_maps/icebox.json @@ -2,7 +2,7 @@ "version": 1, "map_name": "Ice Box Station", "map_path": "map_files/IceBoxStation", - "map_file": "IceBoxStation_skyrat.dmm", + "map_file": "IceBoxStation.dmm", "space_ruin_levels": 0, "space_empty_levels": 0, "shuttles": { diff --git a/_maps/kilostation.json b/_maps/kilostation.json index c89acffafcc..835372f81c0 100644 --- a/_maps/kilostation.json +++ b/_maps/kilostation.json @@ -2,7 +2,7 @@ "version": 1, "map_name": "Kilo Station", "map_path": "map_files/KiloStation", - "map_file": "KiloStation_skyrat.dmm", + "map_file": "KiloStation.dmm", "shuttles": { "emergency": "emergency_kilo", "ferry": "ferry_kilo", diff --git a/_maps/map_files/Blueshift/BlueShift_middle.dmm b/_maps/map_files/Blueshift/BlueShift_middle.dmm index 81019036b14..ccd40914875 100644 --- a/_maps/map_files/Blueshift/BlueShift_middle.dmm +++ b/_maps/map_files/Blueshift/BlueShift_middle.dmm @@ -3195,7 +3195,7 @@ dir = 4 }, /turf/open/floor/wood, -/area/service/salon) +/area/station/service/salon) "aFp" = ( /obj/item/shard, /obj/effect/decal/cleanable/glass, @@ -7929,7 +7929,7 @@ dir = 4 }, /turf/open/floor/iron/dark, -/area/service/salon) +/area/station/service/salon) "bYz" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/broken_floor, @@ -10374,7 +10374,7 @@ }, /obj/machinery/airalarm/directional/south, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "cQI" = ( /obj/structure/table, /obj/item/reagent_containers/spray/cleaner{ @@ -10790,7 +10790,7 @@ "cXm" = ( /obj/structure/cable, /turf/open/floor/wood/tile, -/area/service/salon) +/area/station/service/salon) "cXr" = ( /obj/structure/table, /obj/structure/bedsheetbin, @@ -12207,7 +12207,7 @@ /obj/effect/landmark/start/assistant, /obj/effect/landmark/start/assistant, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "dys" = ( /obj/structure/grille, /turf/open/floor/plating, @@ -12585,7 +12585,7 @@ /obj/effect/turf_decal/tile/purple, /obj/structure/closet/secure_closet/barber, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "dEZ" = ( /obj/effect/turf_decal/bot, /obj/effect/spawner/random/vending/colavend, @@ -16939,7 +16939,7 @@ dir = 4 }, /turf/open/floor/wood, -/area/service/salon) +/area/station/service/salon) "fkS" = ( /obj/effect/turf_decal/stripes/white/line{ dir = 9 @@ -20171,7 +20171,7 @@ pixel_y = 3 }, /turf/open/floor/iron/dark, -/area/service/salon) +/area/station/service/salon) "gnR" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -21521,7 +21521,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/structure/disposalpipe/segment, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "gKP" = ( /obj/item/kirbyplants{ icon_state = "plant-10" @@ -22472,7 +22472,7 @@ }, /obj/item/clothing/head/wig/natural, /turf/open/floor/iron/dark, -/area/service/salon) +/area/station/service/salon) "hfd" = ( /turf/open/floor/iron/stairs/old{ dir = 1 @@ -22921,7 +22921,7 @@ dir = 5 }, /turf/open/floor/wood, -/area/service/salon) +/area/station/service/salon) "hml" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -25567,7 +25567,7 @@ dir = 4 }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "iip" = ( /obj/machinery/door/firedoor, /obj/machinery/firealarm/directional/east, @@ -26355,7 +26355,7 @@ dir = 4 }, /turf/open/floor/iron/stairs/old, -/area/service/salon) +/area/station/service/salon) "ivc" = ( /obj/effect/turf_decal/trimline/blue/line{ dir = 8 @@ -28535,7 +28535,7 @@ /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "jex" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, @@ -29723,7 +29723,7 @@ /obj/effect/turf_decal/siding/wood, /obj/effect/landmark/start/barber, /turf/open/floor/iron/white, -/area/service/salon) +/area/station/service/salon) "jyZ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, @@ -31453,7 +31453,7 @@ }, /obj/item/lipstick/random, /turf/open/floor/iron/dark, -/area/service/salon) +/area/station/service/salon) "kcj" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 5 @@ -31888,7 +31888,7 @@ }, /obj/item/kirbyplants/random, /turf/open/floor/wood, -/area/service/salon) +/area/station/service/salon) "kjE" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -32233,7 +32233,7 @@ }, /obj/structure/cable, /turf/open/floor/wood/tile, -/area/service/salon) +/area/station/service/salon) "kpW" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, @@ -33472,7 +33472,7 @@ pixel_y = -5 }, /turf/open/floor/wood/tile, -/area/service/salon) +/area/station/service/salon) "kJG" = ( /obj/structure/sign/directions/command{ dir = 4; @@ -35217,7 +35217,7 @@ dir = 10 }, /turf/open/floor/wood, -/area/service/salon) +/area/station/service/salon) "lra" = ( /obj/structure/table, /obj/effect/turf_decal/stripes/line{ @@ -37780,7 +37780,7 @@ /obj/machinery/light/directional/north, /obj/item/fur_dyer, /turf/open/floor/iron/white, -/area/service/salon) +/area/station/service/salon) "mlZ" = ( /obj/structure/chair{ dir = 4 @@ -39492,7 +39492,7 @@ /turf/open/floor/iron/stairs{ dir = 4 }, -/area/service/salon) +/area/station/service/salon) "mPR" = ( /obj/structure/chair, /obj/effect/turf_decal/bot, @@ -40342,7 +40342,7 @@ /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "nfR" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/broken_floor, @@ -40527,7 +40527,7 @@ pixel_y = -2 }, /turf/open/floor/wood/tile, -/area/service/salon) +/area/station/service/salon) "nil" = ( /obj/structure/closet/cardboard, /obj/effect/spawner/random/maintenance/two, @@ -40749,7 +40749,7 @@ "nmJ" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, -/area/service/salon) +/area/station/service/salon) "nmL" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -41669,7 +41669,7 @@ /obj/structure/displaycase/forsale/kitchen, /obj/machinery/light/directional/north, /turf/open/floor/iron/dark, -/area/service/salon) +/area/station/service/salon) "nBu" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/stripes{ @@ -44043,7 +44043,7 @@ /obj/structure/window, /obj/effect/turf_decal/siding/wood, /turf/open/floor/iron/white, -/area/service/salon) +/area/station/service/salon) "otb" = ( /obj/structure/window{ dir = 4 @@ -45565,7 +45565,7 @@ /obj/effect/spawner/structure/window, /obj/structure/curtain/bounty, /turf/open/floor/plating, -/area/service/salon) +/area/station/service/salon) "oRE" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -46533,7 +46533,7 @@ pixel_y = 4 }, /turf/open/floor/iron/white, -/area/service/salon) +/area/station/service/salon) "pib" = ( /obj/machinery/light/floor, /obj/effect/turf_decal/bot_white, @@ -46726,7 +46726,7 @@ /obj/structure/cable, /obj/effect/landmark/start/barber, /turf/open/floor/wood/tile, -/area/service/salon) +/area/station/service/salon) "pmD" = ( /obj/structure/table/wood, /obj/effect/turf_decal/siding/wood{ @@ -48206,7 +48206,7 @@ /obj/structure/table/reinforced/rglass, /obj/structure/window, /turf/open/floor/iron/white, -/area/service/salon) +/area/station/service/salon) "pKE" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -49788,7 +49788,7 @@ }, /obj/effect/landmark/start/barber, /turf/open/floor/iron/dark, -/area/service/salon) +/area/station/service/salon) "qoM" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, @@ -52142,7 +52142,7 @@ dir = 8 }, /turf/open/floor/wood/tile, -/area/service/salon) +/area/station/service/salon) "rev" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -53377,7 +53377,7 @@ dir = 5 }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "rBX" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Security Maintenance" @@ -56337,7 +56337,7 @@ /turf/open/floor/iron/dark/side{ dir = 1 }, -/area/service/salon) +/area/station/service/salon) "szY" = ( /obj/effect/turf_decal/delivery/white{ color = "#00ff00"; @@ -56668,7 +56668,7 @@ }, /obj/machinery/light_switch/directional/south, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "sIq" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=4"; @@ -57363,7 +57363,7 @@ pixel_y = 5 }, /turf/open/floor/iron/dark, -/area/service/salon) +/area/station/service/salon) "sTr" = ( /obj/machinery/light_switch/directional/east, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -57844,7 +57844,7 @@ pixel_y = 14 }, /turf/open/floor/iron/dark, -/area/service/salon) +/area/station/service/salon) "tfT" = ( /obj/structure/window{ dir = 8 @@ -58115,7 +58115,7 @@ pixel_y = 3 }, /turf/open/floor/iron/dark, -/area/service/salon) +/area/station/service/salon) "tjK" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -58569,7 +58569,7 @@ /area/station/hallway/primary/aft) "tqV" = ( /turf/open/floor/wood/tile, -/area/service/salon) +/area/station/service/salon) "tqY" = ( /obj/effect/turf_decal/bot, /obj/machinery/vending/dinnerware, @@ -58845,7 +58845,7 @@ /obj/machinery/light/directional/east, /obj/machinery/vending/barbervend, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "twR" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/turf_decal/tile/yellow, @@ -60104,7 +60104,7 @@ /area/station/hallway/primary/starboard) "tPV" = ( /turf/open/floor/iron/dark, -/area/service/salon) +/area/station/service/salon) "tPY" = ( /obj/effect/turf_decal/siding/wood/corner, /obj/structure/hedge/opaque, @@ -60785,7 +60785,7 @@ dir = 4 }, /turf/open/floor/wood, -/area/service/salon) +/area/station/service/salon) "uat" = ( /turf/open/floor/iron/dark, /area/station/command/heads_quarters/ce) @@ -61116,7 +61116,7 @@ dir = 4 }, /turf/open/floor/wood, -/area/service/salon) +/area/station/service/salon) "uhQ" = ( /obj/structure/window/reinforced{ dir = 8 @@ -61847,7 +61847,7 @@ dir = 4 }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "usO" = ( /obj/effect/spawner/random/entertainment/arcade{ dir = 8 @@ -62579,7 +62579,7 @@ pixel_y = 2 }, /turf/open/floor/wood/tile, -/area/service/salon) +/area/station/service/salon) "uGF" = ( /obj/effect/turf_decal/tile/red, /obj/item/radio/intercom/directional/east, @@ -63108,7 +63108,7 @@ }, /obj/item/clothing/gloves/color/latex, /turf/open/floor/iron/white, -/area/service/salon) +/area/station/service/salon) "uQl" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, @@ -64466,7 +64466,7 @@ dir = 8 }, /turf/open/floor/wood/tile, -/area/service/salon) +/area/station/service/salon) "voz" = ( /mob/living/simple_animal/hostile/russian, /obj/effect/decal/cleanable/blood/gibs/old, @@ -65023,7 +65023,7 @@ /area/station/maintenance/aux_eva) "vxY" = ( /turf/closed/wall, -/area/service/salon) +/area/station/service/salon) "vyd" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, @@ -66050,7 +66050,7 @@ dir = 1 }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "vNr" = ( /obj/structure/table, /obj/item/instrument/piano_synth, @@ -66775,7 +66775,7 @@ /obj/effect/landmark/start/assistant, /obj/effect/landmark/start/assistant, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "waA" = ( /obj/effect/turf_decal/stripes{ dir = 4 @@ -67328,7 +67328,7 @@ /obj/structure/filingcabinet/chestdrawer/wheeled, /obj/machinery/newscaster/directional/north, /turf/open/floor/iron/dark, -/area/service/salon) +/area/station/service/salon) "wjX" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -68339,7 +68339,7 @@ /obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, /obj/structure/disposalpipe/segment, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "wCd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -72267,7 +72267,7 @@ name = "hallway camera" }, /turf/open/floor/iron/dark, -/area/service/salon) +/area/station/service/salon) "xML" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ diff --git a/_maps/map_files/Blueshift/BlueShift_upper.dmm b/_maps/map_files/Blueshift/BlueShift_upper.dmm index dcee50e7ff9..7649134ac89 100644 --- a/_maps/map_files/Blueshift/BlueShift_upper.dmm +++ b/_maps/map_files/Blueshift/BlueShift_upper.dmm @@ -1871,7 +1871,7 @@ /obj/structure/window, /obj/structure/mirror/directional/east, /turf/open/floor/carpet/black, -/area/service/salon) +/area/station/service/salon) "aoq" = ( /obj/machinery/door/poddoor/preopen{ name = "Retrograde Thruster Blast Door" @@ -6964,7 +6964,7 @@ "bNy" = ( /obj/machinery/newscaster/directional/east, /turf/open/floor/wood, -/area/service/salon) +/area/station/service/salon) "bNF" = ( /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, /turf/open/floor/iron, @@ -7367,7 +7367,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, /turf/open/floor/carpet/black, -/area/service/salon) +/area/station/service/salon) "bUy" = ( /turf/closed/wall/r_wall/rust, /area/station/maintenance/coffin_supply) @@ -10009,7 +10009,7 @@ dir = 8 }, /turf/open/floor/wood, -/area/service/salon) +/area/station/service/salon) "cXW" = ( /obj/structure/bodycontainer/morgue, /obj/effect/turf_decal/bot_white, @@ -10726,7 +10726,7 @@ dir = 5 }, /turf/open/floor/carpet/black, -/area/service/salon) +/area/station/service/salon) "dgX" = ( /obj/effect/turf_decal/bot, /obj/structure/cable, @@ -15838,7 +15838,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured_large, -/area/service/salon) +/area/station/service/salon) "fea" = ( /obj/machinery/deepfryer, /obj/effect/turf_decal/bot, @@ -15887,7 +15887,7 @@ "feQ" = ( /obj/structure/cable, /turf/open/floor/carpet/black, -/area/service/salon) +/area/station/service/salon) "ffl" = ( /obj/structure/railing, /obj/effect/turf_decal/stripes, @@ -16699,7 +16699,7 @@ /area/station/maintenance/department/crew_quarters/dorms) "fqP" = ( /turf/open/floor/wood, -/area/service/salon) +/area/station/service/salon) "fri" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -17102,7 +17102,7 @@ dir = 8 }, /turf/open/floor/wood, -/area/service/salon) +/area/station/service/salon) "fyl" = ( /obj/structure/window/reinforced{ dir = 1 @@ -17327,10 +17327,10 @@ }, /obj/structure/mirror/directional/east, /turf/open/floor/carpet/black, -/area/service/salon) +/area/station/service/salon) "fCt" = ( /turf/closed/wall, -/area/service/salon) +/area/station/service/salon) "fCF" = ( /obj/structure/chair/sofa/right{ dir = 4 @@ -17906,7 +17906,7 @@ "fOX" = ( /obj/structure/hedge/opaque, /turf/open/floor/wood, -/area/service/salon) +/area/station/service/salon) "fOZ" = ( /turf/open/floor/iron/stairs/medium, /area/station/hallway/primary/upper) @@ -20775,7 +20775,7 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/curtain/bounty, /turf/open/floor/plating, -/area/service/salon) +/area/station/service/salon) "gSn" = ( /obj/effect/spawner/random/trash/mess, /obj/effect/decal/cleanable/dirt, @@ -25518,7 +25518,7 @@ }, /obj/structure/window, /turf/open/floor/carpet/black, -/area/service/salon) +/area/station/service/salon) "iAE" = ( /obj/effect/turf_decal/stripes{ dir = 5 @@ -26743,7 +26743,7 @@ /obj/structure/cable, /obj/effect/landmark/start/barber, /turf/open/floor/carpet/black, -/area/service/salon) +/area/station/service/salon) "iUK" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -27589,7 +27589,7 @@ dir = 8 }, /turf/open/floor/wood, -/area/service/salon) +/area/station/service/salon) "jfW" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, @@ -29359,7 +29359,7 @@ /turf/open/floor/iron/stairs/old{ dir = 8 }, -/area/service/salon) +/area/station/service/salon) "jMb" = ( /obj/structure/railing{ dir = 8 @@ -30088,7 +30088,7 @@ /obj/item/clothing/shoes/sandal, /obj/item/clothing/shoes/sandal, /turf/open/floor/wood, -/area/service/salon) +/area/station/service/salon) "kdH" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ dir = 4 @@ -32942,7 +32942,7 @@ dir = 1 }, /turf/open/floor/wood, -/area/service/salon) +/area/station/service/salon) "lek" = ( /obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, @@ -34658,7 +34658,7 @@ "lGg" = ( /obj/item/reagent_containers/glass/bucket/wooden, /turf/open/floor/wood, -/area/service/salon) +/area/station/service/salon) "lGL" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Toxins Maintenance" @@ -35258,7 +35258,7 @@ /obj/machinery/light/directional/south, /obj/structure/cable, /turf/open/floor/wood, -/area/service/salon) +/area/station/service/salon) "lNM" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -35833,7 +35833,7 @@ dir = 4 }, /turf/open/floor/wood, -/area/service/salon) +/area/station/service/salon) "lXz" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -37381,7 +37381,7 @@ pixel_y = 13 }, /turf/open/floor/carpet/black, -/area/service/salon) +/area/station/service/salon) "mCz" = ( /obj/structure/chair/comfy/brown{ dir = 4 @@ -37798,7 +37798,7 @@ pixel_x = -5 }, /turf/open/floor/wood, -/area/service/salon) +/area/station/service/salon) "mKw" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -40104,7 +40104,7 @@ dir = 6 }, /turf/open/floor/wood, -/area/service/salon) +/area/station/service/salon) "nzG" = ( /obj/machinery/power/floodlight, /obj/effect/turf_decal/bot, @@ -40154,7 +40154,7 @@ dir = 1 }, /turf/open/floor/iron/dark/textured_large, -/area/service/salon) +/area/station/service/salon) "nAn" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/curtain/cloth/fancy/mechanical{ @@ -40541,7 +40541,7 @@ /obj/structure/flora/bush/sparsegrass, /obj/structure/flora/bush/lavendergrass, /turf/open/misc/grass, -/area/service/salon) +/area/station/service/salon) "nHw" = ( /obj/effect/turf_decal/siding/wood, /obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ @@ -41734,7 +41734,7 @@ /obj/item/radio/intercom/directional/east, /obj/effect/landmark/start/barber, /turf/open/floor/carpet/black, -/area/service/salon) +/area/station/service/salon) "ocp" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -42804,7 +42804,7 @@ pixel_y = 14 }, /turf/open/floor/carpet/black, -/area/service/salon) +/area/station/service/salon) "ove" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass{ @@ -43201,7 +43201,7 @@ /obj/structure/flora/bush/flowers_pp, /obj/structure/bed/pillow_tiny, /turf/open/misc/grass, -/area/service/salon) +/area/station/service/salon) "oCS" = ( /obj/effect/turf_decal/trimline/blue/filled/warning{ dir = 4 @@ -43936,7 +43936,7 @@ pixel_y = 22 }, /turf/open/floor/iron/dark/textured_large, -/area/service/salon) +/area/station/service/salon) "oPG" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -46867,7 +46867,7 @@ dir = 4 }, /turf/open/floor/wood, -/area/service/salon) +/area/station/service/salon) "pRK" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 9 @@ -47420,7 +47420,7 @@ dir = 4 }, /turf/open/floor/carpet/black, -/area/service/salon) +/area/station/service/salon) "qck" = ( /obj/structure/disposaloutlet, /obj/structure/disposalpipe/trunk{ @@ -47659,7 +47659,7 @@ "qiF" = ( /obj/machinery/light_switch/directional/east, /turf/open/floor/carpet/black, -/area/service/salon) +/area/station/service/salon) "qiI" = ( /obj/effect/turf_decal/trimline/purple/filled/warning{ dir = 1 @@ -48265,7 +48265,7 @@ /obj/machinery/light/directional/north, /obj/item/toy/seashell, /turf/open/misc/beach/sand, -/area/service/salon) +/area/station/service/salon) "qqM" = ( /obj/effect/turf_decal/trimline/purple/filled/corner{ dir = 8 @@ -49301,7 +49301,7 @@ "qJJ" = ( /obj/structure/cable, /turf/open/floor/wood, -/area/service/salon) +/area/station/service/salon) "qJK" = ( /obj/effect/turf_decal/siding/wood, /obj/effect/decal/cleanable/dirt, @@ -50795,7 +50795,7 @@ dir = 1 }, /turf/open/floor/wood, -/area/service/salon) +/area/station/service/salon) "riB" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -51336,7 +51336,7 @@ /obj/structure/sauna_oven, /obj/machinery/light/small/directional/south, /turf/open/floor/wood, -/area/service/salon) +/area/station/service/salon) "rsA" = ( /obj/item/trash/chips, /obj/effect/decal/cleanable/dirt, @@ -52446,7 +52446,7 @@ /obj/structure/flora/rock/pile, /obj/structure/flora/bush/sparsegrass, /turf/open/misc/grass, -/area/service/salon) +/area/station/service/salon) "rOB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -52779,7 +52779,7 @@ /area/station/command/meeting_room/council) "rUO" = ( /turf/open/floor/carpet/black, -/area/service/salon) +/area/station/service/salon) "rUP" = ( /turf/open/floor/iron/stairs/right{ dir = 8 @@ -53558,7 +53558,7 @@ /area/station/maintenance/console_room) "siK" = ( /turf/open/misc/beach/sand, -/area/service/salon) +/area/station/service/salon) "siO" = ( /obj/effect/turf_decal/trimline/blue/filled/warning, /obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, @@ -54127,7 +54127,7 @@ "sqd" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/service/salon) +/area/station/service/salon) "sqz" = ( /obj/machinery/vending/coffee, /turf/open/floor/iron/white, @@ -56595,7 +56595,7 @@ }, /obj/item/radio/intercom/directional/east, /turf/open/floor/carpet/black, -/area/service/salon) +/area/station/service/salon) "thd" = ( /obj/machinery/door/airlock{ name = "Bedroom" @@ -58948,7 +58948,7 @@ /area/station/medical/psychology) "uap" = ( /turf/open/openspace, -/area/service/salon) +/area/station/service/salon) "uat" = ( /obj/structure/table, /obj/machinery/microwave{ @@ -62350,7 +62350,7 @@ pixel_y = 8 }, /turf/open/misc/grass, -/area/service/salon) +/area/station/service/salon) "vlL" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/stripes{ @@ -62741,7 +62741,7 @@ "vsO" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/wood, -/area/service/salon) +/area/station/service/salon) "vtq" = ( /obj/effect/turf_decal/delivery/white, /obj/structure/bodycontainer/morgue{ @@ -63122,7 +63122,7 @@ /obj/structure/curtain/bounty, /obj/structure/cable, /turf/open/floor/iron/stairs/old, -/area/service/salon) +/area/station/service/salon) "vzM" = ( /obj/structure/cable, /turf/open/floor/iron, @@ -64325,7 +64325,7 @@ /obj/item/clothing/gloves/color/latex, /obj/item/clothing/gloves/color/latex, /turf/open/floor/carpet/black, -/area/service/salon) +/area/station/service/salon) "vVd" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, @@ -64472,7 +64472,7 @@ /area/station/medical/medbay/central) "vYu" = ( /turf/closed/wall/mineral/wood, -/area/service/salon) +/area/station/service/salon) "vYC" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/stripes{ @@ -65729,7 +65729,7 @@ /area/station/science/cytology) "wuT" = ( /turf/open/floor/iron/dark/textured_large, -/area/service/salon) +/area/station/service/salon) "wvh" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -66590,7 +66590,7 @@ dir = 9 }, /turf/open/floor/wood, -/area/service/salon) +/area/station/service/salon) "wLa" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -66658,7 +66658,7 @@ /obj/structure/flora/bush/flowers_br, /obj/structure/bed/pillow_large, /turf/open/misc/grass, -/area/service/salon) +/area/station/service/salon) "wMW" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ @@ -66863,7 +66863,7 @@ /obj/structure/flora/bush/sparsegrass, /obj/structure/flora/bush/grassy, /turf/open/misc/grass, -/area/service/salon) +/area/station/service/salon) "wPt" = ( /obj/structure/railing, /obj/effect/decal/cleanable/dirt, @@ -66962,7 +66962,7 @@ dir = 8 }, /turf/open/floor/wood, -/area/service/salon) +/area/station/service/salon) "wRD" = ( /turf/open/floor/wood, /area/station/service/theater) @@ -67122,7 +67122,7 @@ dir = 1 }, /turf/open/floor/wood, -/area/service/salon) +/area/station/service/salon) "wUL" = ( /obj/structure/table/reinforced, /obj/item/food/meat/slab/human{ @@ -69470,7 +69470,7 @@ dir = 4 }, /turf/open/misc/beach/sand, -/area/service/salon) +/area/station/service/salon) "xJK" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ dir = 9 @@ -69741,7 +69741,7 @@ /area/station/hallway/secondary/command) "xOq" = ( /turf/closed/wall/r_wall, -/area/service/salon) +/area/station/service/salon) "xOr" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -70804,7 +70804,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, /turf/open/floor/wood, -/area/service/salon) +/area/station/service/salon) "yha" = ( /obj/machinery/door/firedoor, /obj/structure/sign/nanotrasen{ @@ -70873,7 +70873,7 @@ /obj/item/hairbrush, /obj/item/radio/intercom/directional/west, /turf/open/floor/carpet/black, -/area/service/salon) +/area/station/service/salon) "yic" = ( /turf/closed/wall, /area/station/maintenance/aft/upper) diff --git a/_maps/map_files/Deltastation/DeltaStation2_skyrat.dmm b/_maps/map_files/Deltastation/DeltaStation2_skyrat.dmm deleted file mode 100644 index 4c83f735024..00000000000 --- a/_maps/map_files/Deltastation/DeltaStation2_skyrat.dmm +++ /dev/null @@ -1,158364 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/turf/open/space/basic, -/area/space) -"aab" = ( -/obj/effect/landmark/carpspawn, -/turf/open/space, -/area/space) -"aac" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space, -/area/space/nearstation) -"aad" = ( -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aaf" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK" - }, -/turf/closed/wall/r_wall, -/area/station/maintenance/solars/port/fore) -"aat" = ( -/obj/docking_port/stationary/random{ - id = "pod_2_lavaland"; - name = "lavaland" - }, -/turf/open/space, -/area/space) -"aaz" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/chair/stool/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/theater) -"aaK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"aaM" = ( -/turf/closed/wall, -/area/station/medical/surgery/theatre) -"aaY" = ( -/obj/effect/landmark/start/hangover/closet, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/obj/machinery/status_display/evac/directional/west, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"abd" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/science/lab) -"abe" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter, -/turf/open/floor/iron/dark/corner, -/area/station/maintenance/department/electrical) -"abg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"abi" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/caution{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"abj" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"abm" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"aby" = ( -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"abE" = ( -/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/commons/vacant_room/commissary) -"abJ" = ( -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) -"abK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/prison) -"abO" = ( -/obj/structure/table/reinforced, -/obj/item/stack/rods/fifty, -/obj/item/wrench, -/obj/item/storage/box/lights/mixed, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/engineering/storage) -"abS" = ( -/obj/machinery/button/curtain{ - id = "prisoncell4"; - pixel_y = 21 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/purple/side{ - dir = 1 - }, -/area/station/security/prison/safe) -"abT" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3; - pixel_y = 16 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3; - pixel_y = 16 - }, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"aci" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/sofa/corp/right{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"acp" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = -6; - reclaim_rate = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/kitchen, -/area/station/security/prison/mess) -"acq" = ( -/turf/closed/wall, -/area/station/security/prison/mess) -"acr" = ( -/obj/machinery/button/curtain{ - id = "prisoncell3"; - pixel_y = 21 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/purple/side{ - dir = 1 - }, -/area/station/security/prison/safe) -"act" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 5 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"acv" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/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/east, -/turf/open/floor/iron, -/area/station/science/research) -"acA" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/vending/games, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"acD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"acF" = ( -/obj/machinery/door/poddoor/shutters{ - id = "construction"; - name = "Construction Shutters"; - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/textured, -/area/station/construction/mining/aux_base) -"acG" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/chair/stool/directional/north, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"acU" = ( -/obj/structure/table_frame, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/white/side{ - dir = 1 - }, -/area/station/service/kitchen/abandoned) -"acY" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/range) -"acZ" = ( -/obj/effect/landmark/start/scientist, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/lab) -"ada" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/breakroom) -"adb" = ( -/obj/structure/closet/crate, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/obj/item/crowbar/red, -/obj/item/stack/sheet/mineral/plasma{ - amount = 20 - }, -/obj/item/gps/engineering, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/main) -"adm" = ( -/obj/structure/chair/office, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/grimy, -/area/station/service/library/abandoned) -"adv" = ( -/obj/machinery/door/airlock/security{ - name = "Orderly's Office" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/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/medical/orderly, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"adx" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"ady" = ( -/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, -/area/station/security/processing) -"adA" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/incinerator_input{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"adC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/command/bridge) -"adE" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"adF" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/main) -"adN" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"adO" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"adP" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"adQ" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/sofa/corp/left{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"adR" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/construction/mining/aux_base) -"adU" = ( -/obj/machinery/flasher{ - id = "transferflash"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison) -"aek" = ( -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/commons/fitness/recreation) -"aet" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"aeu" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"aeA" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/item/reagent_containers/food/drinks/britcup{ - pixel_x = -7 - }, -/obj/structure/desk_bell{ - pixel_x = 7 - }, -/turf/open/floor/iron, -/area/station/medical/medbay/lobby) -"aeE" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/station/security/prison) -"aeF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "ert-lz-starboard" - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"aeI" = ( -/obj/structure/table, -/obj/item/gun/ballistic/shotgun/toy/crossbow, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"aeM" = ( -/obj/structure/bed/maint, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/security/prison/upper) -"aeS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"aeZ" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"aff" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/assault_pod/mining, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"afh" = ( -/obj/structure/closet/secure_closet/brig{ - id = "brig2"; - name = "Cell 2 Locker" - }, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"afs" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"aft" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/newscaster/directional/south, -/obj/structure/chair/sofa/bench/corner{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"afF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall, -/area/station/cargo/warehouse) -"afG" = ( -/obj/machinery/computer/camera_advanced/base_construction/aux{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"afY" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"agb" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/science/research/abandoned) -"agg" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"agn" = ( -/obj/structure/bed/dogbed/renault, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/newscaster/directional/south, -/mob/living/simple_animal/pet/fox/renault, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/captain) -"ago" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating, -/area/station/security/prison/upper) -"agp" = ( -/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/extinguisher_cabinet/directional/east{ - pixel_y = -5 - }, -/obj/machinery/button/curtain{ - id = "prisoncell10"; - pixel_x = 22; - pixel_y = 10 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/prison) -"agy" = ( -/obj/structure/window/reinforced, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"agA" = ( -/obj/structure/chair/stool/bar/directional/north, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/engineering/break_room) -"agE" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/candle_box{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"agH" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "garbage" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"agJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/security/warden) -"agO" = ( -/obj/docking_port/stationary{ - dheight = 1; - dir = 8; - dwidth = 12; - height = 17; - id = "syndicate_ne"; - name = "northeast of station"; - width = 23 - }, -/turf/open/space, -/area/space/nearstation) -"agS" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 11; - height = 22; - id = "whiteship_home"; - name = "SS13: Auxiliary Dock, Station-Fore"; - width = 35 - }, -/turf/open/space/basic, -/area/space) -"agZ" = ( -/obj/machinery/ntnet_relay, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"ahj" = ( -/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/turf_decal/bot, -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"aho" = ( -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Arrivals Dock - Fore Starboard"; - name = "dock camera" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"ahv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"ahw" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/duct, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/main) -"ahI" = ( -/obj/structure/closet/crate/freezer/blood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"ahQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/table/wood, -/turf/open/floor/carpet/red, -/area/station/hallway/secondary/service) -"ahS" = ( -/obj/structure/table/wood, -/obj/item/crowbar/red, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/book/manual/wiki/detective, -/obj/item/camera/detective, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office/private_investigators_office) -"ahU" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"ahV" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"aid" = ( -/turf/closed/wall, -/area/station/common/cryopods) -"aih" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/toilet/locker) -"aii" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/theater/abandoned) -"aij" = ( -/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/tile/green/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"ail" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/landmark/start/barber, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/service/salon) -"aix" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/supply{ - pixel_x = -32 - }, -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"aiA" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"aiK" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard) -"aiO" = ( -/obj/structure/cable, -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/pen, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) -"aiS" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/lobby) -"aiX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood, -/obj/item/storage/secure/briefcase, -/obj/item/grenade/smokebomb, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"aje" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/radio/intercom/directional/north, -/obj/structure/reagent_dispensers/wall/peppertank/directional/east, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"ajv" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod 3"; - space_dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"ajw" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/cable, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"ajL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"ajN" = ( -/obj/item/circular_saw, -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"ajS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard) -"akf" = ( -/obj/structure/table/reinforced, -/obj/item/bodypart/chest/robot, -/obj/item/mmi, -/obj/item/mmi, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"akn" = ( -/obj/structure/disposalpipe/segment, -/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/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/breakroom) -"ako" = ( -/turf/closed/wall, -/area/station/medical/storage) -"akx" = ( -/obj/structure/sign/departments/chemistry, -/turf/closed/wall, -/area/station/medical/pharmacy) -"akz" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"akA" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"akD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"akH" = ( -/obj/machinery/light/directional/east, -/obj/machinery/newscaster/directional/east, -/obj/structure/chair/pew/right, -/turf/open/floor/iron{ - icon_state = "chapel" - }, -/area/station/service/chapel) -"akK" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/aft) -"akS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"akT" = ( -/obj/machinery/light/directional/north, -/obj/structure/reagent_dispensers/wall/peppertank/directional/north, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"all" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "garbage" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"alx" = ( -/obj/machinery/modular_computer/console/preset/id, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"alB" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/medical/medbay/lobby) -"alW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"alZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/crossing/horizontal, -/turf/open/space/basic, -/area/space/nearstation) -"amb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"amd" = ( -/obj/structure/table, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_x = -3; - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"amh" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"amk" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"aml" = ( -/obj/machinery/vending/boozeomat, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/checker{ - dir = 1 - }, -/area/station/service/bar) -"amm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"amn" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/turf/open/floor/plating, -/area/station/commons/toilet/restrooms) -"amp" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint) -"amq" = ( -/obj/structure/table/wood, -/obj/item/clothing/suit/syndicatefake, -/obj/item/clothing/head/syndicatefake, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/abandoned_gambling_den/gaming) -"amr" = ( -/obj/structure/reflector/double, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"amF" = ( -/obj/machinery/door/firedoor, -/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_x = -24; - pixel_y = -2; - req_access = list("virology") - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/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/medical/virology, -/turf/open/floor/iron, -/area/station/medical/virology) -"amJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"amL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/office) -"amQ" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/chair/sofa/right{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/commons/lounge) -"amU" = ( -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/security/prison) -"amW" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) -"anp" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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) -"ans" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"anB" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter/room) -"anC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/command/minisat, -/obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"anF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"anH" = ( -/turf/open/floor/wood, -/area/station/service/theater/abandoned) -"anL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"anV" = ( -/obj/effect/landmark/start/hangover/closet, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"aod" = ( -/obj/machinery/computer/prisoner/management, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"aol" = ( -/obj/structure/table/reinforced, -/obj/item/storage/briefcase{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/secure/briefcase, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"aoJ" = ( -/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/turf_decal/stripes/line{ - dir = 1 - }, -/obj/vehicle/ridden/janicart, -/turf/open/floor/iron/checker, -/area/station/service/janitor) -"aoM" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/light/directional/west, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"aoO" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"aoP" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/station/solars/starboard/fore) -"aoS" = ( -/obj/structure/cable, -/obj/machinery/computer/security{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Security Post - Arrivals" - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"aoT" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"api" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"apu" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"apA" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/explab) -"apB" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/starboard) -"apH" = ( -/obj/structure/sign/warning/no_smoking/circle/directional/south, -/obj/machinery/camera/directional/south, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/box, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron/white/side{ - dir = 4 - }, -/area/station/commons/fitness/recreation) -"apK" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"apL" = ( -/obj/structure/table, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"apT" = ( -/obj/machinery/camera/directional/north{ - c_tag = "AI - Upload"; - name = "motion-sensitive ai camera"; - network = list("aiupload") - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"apU" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"apY" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "cargoload" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/cargo/storage) -"aqc" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"aqj" = ( -/obj/machinery/light/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Locker Room - Aft"; - name = "dormitories camera" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/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/status_display/evac/directional/south, -/turf/open/floor/iron, -/area/station/commons/locker) -"aqq" = ( -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/prison) -"aqu" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Medbay - Chief Medical Officer's Quarters"; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"aqv" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/toilet/locker) -"aqH" = ( -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/station/science/research) -"aqJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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/iron, -/area/station/maintenance/starboard/aft) -"aqT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"aqZ" = ( -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Creature Pen"; - req_access = list("research") - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xeno3"; - name = "Creature Cell #3" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"arc" = ( -/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/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"are" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/structure/mirror/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/science/breakroom) -"arr" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor/right/directional/south{ - dir = 8; - name = "Security Desk"; - req_access = list("security") - }, -/obj/machinery/door/window/right/directional/north{ - dir = 4; - name = "Security Desk" - }, -/obj/item/folder/red, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"arw" = ( -/obj/effect/turf_decal/delivery/red, -/obj/machinery/door/firedoor, -/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/public/glass{ - name = "Kitchen" - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/mess) -"arE" = ( -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"arF" = ( -/obj/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/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/commons/lounge) -"arI" = ( -/obj/effect/landmark/event_spawn, -/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/grimy, -/area/station/service/lawoffice) -"arQ" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/landmark/start/botanist, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"arX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Medbay Maintenance" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/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/medical/morgue, -/turf/open/floor/iron, -/area/station/maintenance/aft) -"asa" = ( -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"asb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/security/prison/upper) -"asd" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"ask" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/siding/thinplating/dark/corner{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/east, -/obj/structure/sink{ - dir = 8; - pixel_x = 12 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Service - Bar"; - name = "service camera" - }, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"asm" = ( -/obj/structure/cable, -/obj/machinery/button/door/incinerator_vent_atmos_main{ - pixel_x = -8; - pixel_y = 36 - }, -/obj/machinery/button/door/incinerator_vent_atmos_aux{ - pixel_x = -8; - pixel_y = 24 - }, -/obj/machinery/light/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/stool/directional/south, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"asn" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"aso" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics - Oxygen Supply"; - name = "atmospherics camera" - }, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"asq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"asr" = ( -/obj/machinery/status_display/ai/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Bridge - E.V.A. Aft"; - name = "command camera" - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"asD" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/captain/private) -"asE" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"asK" = ( -/obj/effect/turf_decal/stripes/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/secondary/exit/departure_lounge) -"asO" = ( -/obj/machinery/porta_turret/ai, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) -"asQ" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/toy/figure/chaplain, -/obj/structure/sign/poster/official/bless_this_spess{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/firealarm/directional/west, -/obj/machinery/button/door/directional/south{ - id = "chapelprivacyoffice"; - name = "Privacy Control"; - req_access = list("crematorium") - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"atl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4 - }, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/box, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"atv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/tcommsat/server) -"atG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/tcommsat/server) -"atO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/bot, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"atV" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/warden) -"atX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"auh" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"aul" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"auv" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron{ - amount = 30 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/item/electronics/apc, -/obj/item/electronics/airlock, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"auB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/obj/item/flashlight, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"auD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/poddoor{ - id = "engstorage"; - name = "Engineering Secure Storage Lockdown" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"auJ" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/command{ - name = "Telecomms Server Room" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, -/turf/open/floor/iron/dark, -/area/station/tcommsat/server) -"auP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"auZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/service/hydroponics) -"ava" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/hallway/secondary/construction) -"avh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"avk" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hos) -"avp" = ( -/obj/structure/rack, -/obj/item/stack/cable_coil/five, -/obj/item/wrench, -/obj/item/screwdriver, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/newscaster/directional/east, -/obj/machinery/button/door/directional/south{ - id = "commissarydoor"; - name = "Commissary Door Lock"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"avu" = ( -/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/greater) -"avQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"avR" = ( -/obj/effect/turf_decal/stripes/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/aft) -"avW" = ( -/obj/machinery/computer/security{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/security/warden) -"avX" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"avY" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"awb" = ( -/obj/structure/closet/secure_closet/brig{ - id = "scicell"; - name = "Science Cell Locker" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) -"awc" = ( -/turf/closed/wall/r_wall, -/area/station/command/meeting_room/council) -"awi" = ( -/obj/structure/table/glass, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/space_hut/observatory) -"awk" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/station/solars/port/fore) -"awl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"awq" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/greater) -"awz" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"awL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"awT" = ( -/obj/machinery/flasher{ - id = "visitorflash"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"awZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"axg" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"axr" = ( -/obj/machinery/conveyor{ - dir = 9; - id = "garbage" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"axs" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"axH" = ( -/obj/structure/table/wood, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance/two, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den) -"axJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bodycontainer/morgue{ - dir = 2 - }, -/obj/structure/sign/poster/official/bless_this_spess{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"axK" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/bedsheet/dorms, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/commons/dorms) -"axQ" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"axY" = ( -/obj/structure/table, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"ayh" = ( -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/ce) -"ayi" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Library Game Room" - }, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"ayw" = ( -/obj/structure/table, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters{ - id = "visitation"; - name = "Visitation Shutters" - }, -/obj/structure/window/reinforced, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"ayH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/security/prison) -"ayM" = ( -/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/security/execution/transfer) -"aze" = ( -/obj/machinery/chem_master/condimaster{ - desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; - name = "SapMaster XP" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"azi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/engineering/main) -"azm" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/bot, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"azn" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/table/reinforced, -/obj/item/mmi, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"azt" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/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, -/area/station/medical/surgery/theatre) -"azx" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/commons/toilet/locker) -"azy" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/port) -"azA" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"azE" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"azR" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter/room) -"aAh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/meter/layer4, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"aAi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/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, -/area/station/science/robotics/lab) -"aAj" = ( -/turf/closed/wall, -/area/station/science/breakroom) -"aAk" = ( -/obj/structure/sign/painting/library{ - pixel_y = -32 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/wood, -/area/station/service/library) -"aAr" = ( -/obj/structure/bed, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/glasses/blindfold, -/obj/item/clothing/mask/muzzle, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) -"aAv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/prison) -"aAA" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution) -"aAR" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"aAT" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/item/soap/nanotrasen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/toilet/locker) -"aBc" = ( -/obj/structure/chair/sofa/right, -/turf/open/floor/carpet, -/area/station/medical/psychology) -"aBe" = ( -/obj/structure/sign/poster/contraband/random/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"aBi" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"aBp" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"aBu" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/white, -/area/station/security/medical) -"aBE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/theater) -"aBG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"aBL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"aBM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"aBN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) -"aBO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/white/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/service/kitchen) -"aBS" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Science - Research Director's Quarters"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/machinery/modular_computer/console/preset/research{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"aBX" = ( -/obj/structure/reagent_dispensers/plumbed{ - dir = 1 - }, -/obj/effect/turf_decal/delivery/white{ - color = "#52B4E9" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"aCf" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/lesser) -"aCy" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"aCV" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/space, -/area/space/nearstation) -"aCY" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"aDa" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"aDg" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"aDi" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 4; - height = 7; - id = "supply_home"; - name = "Cargo Bay"; - width = 12 - }, -/turf/open/space/basic, -/area/space) -"aDt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"aDD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table/wood, -/obj/item/paper_bin, -/turf/open/floor/iron/grimy, -/area/station/command/meeting_room/council) -"aDG" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"aDV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"aEb" = ( -/obj/effect/turf_decal/bot/right, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/hfr_room) -"aEe" = ( -/obj/machinery/atmospherics/components/unary/passive_vent{ - name = "server vent" - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/science/server) -"aEA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"aED" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"aEI" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/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/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/maintenance/department/science) -"aEK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"aEQ" = ( -/obj/machinery/button/curtain{ - id = "prisoncell7"; - pixel_y = 21 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/blue/side{ - dir = 1 - }, -/area/station/security/prison/safe) -"aET" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"aFo" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/turf/open/space, -/area/space/nearstation) -"aFv" = ( -/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/security/brig) -"aFA" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/tank_holder/oxygen, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"aFB" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"aFD" = ( -/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/aft) -"aFE" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/command/teleporter) -"aFO" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera{ - c_tag = "Security - Genpop Lockers"; - dir = 5 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"aGa" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 - }, -/obj/machinery/modular_computer/console/preset/cargochat/medical{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/medical/storage) -"aGb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/meter, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"aGd" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/locker) -"aGo" = ( -/obj/machinery/door/poddoor{ - id = "engstorage"; - name = "Engineering Secure Storage Lockdown" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"aGp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"aGx" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"aGz" = ( -/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, -/area/station/security/processing) -"aGF" = ( -/obj/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/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/commons/lounge) -"aGG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"aGI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"aGO" = ( -/obj/structure/chair/stool/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/locker) -"aGR" = ( -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/commons/fitness/recreation) -"aGS" = ( -/obj/structure/bookcase/random/reference, -/obj/item/toy/figure/psychologist{ - pixel_y = 18 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"aGW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/department/engine/atmos) -"aGZ" = ( -/obj/structure/table/wood, -/obj/machinery/status_display/evac/directional/east, -/obj/item/coin/adamantine{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/hand_tele, -/obj/item/melee/chainofcommand, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/captain) -"aHd" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"aHi" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Central Hallway - Head of Personnel Line"; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"aHn" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/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/plating, -/area/station/maintenance/port/greater) -"aHr" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"aHv" = ( -/obj/structure/rack, -/obj/item/holosign_creator/robot_seat/restaurant{ - pixel_y = -5 - }, -/obj/effect/turf_decal/bot, -/obj/item/toy/figure/chef, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"aHy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/greater) -"aHz" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/firealarm/directional/north, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron, -/area/station/science/research) -"aHC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/evac/directional/east, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/toilet/restrooms) -"aHE" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/command/heads_quarters/ce) -"aHG" = ( -/obj/structure/table, -/obj/item/folder, -/obj/item/stamp, -/obj/item/stamp/denied{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/office) -"aHX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"aIb" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"aIp" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/corner, -/area/station/maintenance/disposal/incinerator) -"aIs" = ( -/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/tile/green/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"aIA" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics - Plasma Cell"; - name = "atmospherics camera" - }, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"aIQ" = ( -/obj/structure/cable, -/obj/machinery/power/port_gen/pacman/pre_loaded, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"aIV" = ( -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/engineering/main) -"aIX" = ( -/obj/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/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"aIY" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"aJi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"aJu" = ( -/obj/structure/cable, -/obj/machinery/power/smes/engineering, -/turf/open/floor/circuit/green, -/area/station/engineering/main) -"aJD" = ( -/turf/closed/wall, -/area/space/nearstation) -"aJN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/field/generator, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/main) -"aJU" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/storage/tech) -"aJZ" = ( -/obj/machinery/light/directional/east, -/obj/item/storage/pod{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"aKr" = ( -/obj/machinery/computer/security/telescreen/entertainment/directional/south, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"aKt" = ( -/turf/closed/wall, -/area/station/service/abandoned_gambling_den/gaming) -"aKE" = ( -/obj/effect/turf_decal/stripes/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, -/area/station/hallway/secondary/exit/departure_lounge) -"aKS" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/spawner/random/trash/food_packaging, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/white, -/area/station/maintenance/fore) -"aLf" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - name = "Research Junction"; - sortType = 12 - }, -/turf/open/floor/iron, -/area/station/science/research) -"aLv" = ( -/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, -/area/station/hallway/primary/central/aft) -"aLx" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/textured, -/area/station/engineering/storage) -"aLz" = ( -/obj/structure/sign/warning/electric_shock/directional/west{ - pixel_y = 32 - }, -/turf/open/space, -/area/space/nearstation) -"aLM" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/landmark/start/barber, -/turf/open/floor/iron, -/area/service/salon) -"aLN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"aLO" = ( -/obj/structure/rack, -/obj/item/crowbar/red, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/aft) -"aLQ" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"aLR" = ( -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"aMd" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"aMl" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Genetics Lab North"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/left/directional/west{ - dir = 2; - name = "'Monkey Pen"; - req_access = list("genetics") - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"aMq" = ( -/obj/structure/bookcase/random/reference, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"aMw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"aNd" = ( -/obj/structure/table, -/obj/machinery/button/curtain{ - id = "prisonlibrarycurtain"; - pixel_x = -24 - }, -/obj/machinery/computer/libraryconsole/bookmanagement{ - pixel_y = 8 - }, -/turf/open/floor/wood, -/area/station/security/prison) -"aNq" = ( -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hos) -"aNs" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"aNz" = ( -/obj/effect/spawner/liquids_spawner, -/turf/open/floor/iron/pool, -/area/station/security/prison/rec) -"aNF" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/weldingtool, -/obj/item/assembly/voice, -/obj/item/clothing/head/welding, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"aNY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"aNZ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"aOa" = ( -/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) -"aOe" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"aOl" = ( -/obj/machinery/light/small/directional/south, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"aOm" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/command/gateway) -"aOo" = ( -/obj/structure/table, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/restraints/handcuffs, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"aOE" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Dormitory Hallway"; - name = "hallway camera" - }, -/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, -/area/station/hallway/primary/central/aft) -"aOQ" = ( -/obj/structure/closet/secure_closet/courtroom, -/obj/machinery/light_switch/directional/north, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"aPa" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/obj/item/flashlight, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"aPi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Chemistry" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, -/turf/open/floor/iron, -/area/station/medical/chemistry) -"aPl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/iron/checker, -/area/station/service/theater) -"aPr" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos/storage/gas) -"aPx" = ( -/obj/structure/chair, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/holding_cell) -"aPD" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/mining{ - name = "Mining Dock" - }, -/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/supply/mining, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"aPG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/hallway/secondary/construction) -"aPH" = ( -/obj/structure/table/wood/fancy, -/obj/item/book/granter/action/spell/smoke/lesser, -/obj/item/nullrod, -/obj/item/organ/internal/heart, -/obj/item/reagent_containers/food/drinks/bottle/holywater, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"aPO" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/pumproom) -"aPW" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"aQn" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"aQv" = ( -/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 = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "MiniSat Exterior Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron/dark, -/area/station/engineering/hallway) -"aQx" = ( -/obj/structure/table, -/obj/effect/spawner/random/entertainment/lighter, -/obj/effect/spawner/random/entertainment/cigarette, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"aRb" = ( -/obj/structure/cable, -/obj/structure/table/wood, -/obj/machinery/door/firedoor, -/obj/structure/sign/picture_frame/portrait/bar{ - pixel_y = 32 - }, -/obj/item/storage/fancy/cigarettes/cigars, -/obj/item/storage/fancy/cigarettes/cigars/cohiba{ - pixel_y = 3 - }, -/turf/open/floor/iron/dark/smooth_half{ - dir = 1 - }, -/area/station/service/bar) -"aRp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/lesser) -"aRq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/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, -/area/station/science/robotics/lab) -"aRr" = ( -/turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) -"aRM" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Holodeck Control"; - name = "holodeck camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/commons/fitness/recreation) -"aRN" = ( -/obj/structure/cable, -/turf/closed/wall, -/area/station/security/checkpoint/medical) -"aRO" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - name = "Quartermaster Junction"; - sortType = 3 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/computer/cargo, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"aRS" = ( -/obj/effect/turf_decal/stripes/white/line{ - color = "#52B4E9"; - dir = 4; - name = "blue line" - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark/blue/side{ - dir = 4 - }, -/area/station/security/prison) -"aSi" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/courtroom) -"aSm" = ( -/obj/machinery/ore_silo, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"aSB" = ( -/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, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"aSC" = ( -/obj/effect/landmark/start/chief_medical_officer, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/command/heads_quarters/cmo) -"aSF" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron, -/area/station/science/auxlab) -"aSM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Auxiliary Construction Zone" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/aux_base, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"aSO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"aSR" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/command/teleporter) -"aSS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair/comfy/black, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) -"aSV" = ( -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/service/library/abandoned) -"aSW" = ( -/obj/effect/landmark/start/hangover, -/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/side{ - dir = 4 - }, -/area/station/commons/fitness/recreation) -"aTz" = ( -/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/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"aTH" = ( -/obj/structure/table/wood, -/obj/item/folder/blue{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/folder/red, -/obj/item/stamp/law, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/service/lawoffice) -"aTM" = ( -/obj/machinery/status_display/ai/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/theatre) -"aTN" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/medical/virology) -"aTS" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/closet/crate, -/obj/item/reagent_containers/hypospray/medipen/atropine, -/obj/item/grenade/smokebomb, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) -"aUc" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_y = 6 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) -"aUm" = ( -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/white, -/area/station/science/auxlab) -"aUr" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/plating, -/area/station/science/research/abandoned) -"aUs" = ( -/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/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"aUA" = ( -/obj/machinery/recharge_station, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"aUK" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/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 = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"aUN" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 10 - }, -/obj/item/toy/plush/space_lizard_plushie{ - name = "Meets-the-Ore" - }, -/turf/open/space/basic, -/area/space/nearstation) -"aUP" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"aVo" = ( -/obj/machinery/computer/security/hos{ - dir = 1 - }, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hos) -"aVA" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"aVD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"aVE" = ( -/obj/structure/dresser, -/obj/structure/mirror/directional/north, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"aVW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"aWb" = ( -/obj/structure/table, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/machinery/door/poddoor/shutters{ - id = "visitation"; - name = "Visitation Shutters" - }, -/obj/structure/window/reinforced, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"aWs" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"aWu" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = 12; - pixel_y = -6 - }, -/obj/structure/sign/poster/contraband/lusty_xenomorph{ - pixel_x = 32 - }, -/obj/structure/cable, -/turf/open/floor/iron/kitchen{ - dir = 1 - }, -/area/station/security/prison) -"aWw" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"aWD" = ( -/obj/structure/reagent_dispensers/wall/peppertank/directional/south, -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/flashes, -/obj/effect/turf_decal/stripes/end, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"aWH" = ( -/obj/machinery/door/firedoor/heavy, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"aWN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor{ - dir = 9; - id = "cargounload" - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"aWP" = ( -/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/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/commons/lounge) -"aWV" = ( -/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; - sortType = 24 - }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"aXm" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/right/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"aXo" = ( -/obj/structure/lattice/catwalk, -/obj/structure/window/reinforced{ - 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/space/basic, -/area/space/nearstation) -"aXB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"aXC" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard) -"aXK" = ( -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"aXN" = ( -/turf/open/floor/iron/white, -/area/station/commons/fitness/recreation) -"aXQ" = ( -/obj/machinery/light/directional/south, -/obj/item/kirbyplants/random, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"aXU" = ( -/obj/docking_port/stationary{ - dwidth = 1; - height = 4; - name = "escape pod loader"; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/turf/open/space/basic, -/area/space) -"aYd" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/cmo) -"aYm" = ( -/obj/machinery/light/directional/east, -/obj/item/radio/intercom/directional/east, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"aYs" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/meter, -/obj/effect/turf_decal/box/corners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"aYu" = ( -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"aYx" = ( -/obj/structure/door_assembly/door_assembly_mhatch, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"aYA" = ( -/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/structure/cable, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"aYK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"aYR" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/office) -"aYT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"aYU" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/engineering/main) -"aZe" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/warden) -"aZg" = ( -/obj/effect/landmark/start/security_officer, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/lockers) -"aZp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/engine/atmos) -"aZs" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/siding/white, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"aZv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/suit_storage_unit/industrial/loader, -/turf/open/floor/iron, -/area/station/cargo/qm) -"aZy" = ( -/obj/structure/cable, -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"aZF" = ( -/obj/machinery/duct, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"bag" = ( -/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, -/area/station/hallway/secondary/entry) -"bao" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"baw" = ( -/obj/machinery/power/emitter, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/main) -"baA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall4"; - location = "engi3" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"baK" = ( -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"baO" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"baW" = ( -/obj/machinery/computer/operating, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"baY" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/secure_area/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"bba" = ( -/obj/machinery/air_sensor/nitrous_tank, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"bbo" = ( -/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/cafeteria, -/area/station/service/kitchen) -"bbr" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Solar Access" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/maintenance/solars/starboard/aft) -"bbx" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/light_switch/directional/south{ - pixel_x = -8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"bbB" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"bbC" = ( -/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/plating, -/area/station/maintenance/starboard) -"bbD" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space, -/area/station/solars/port/aft) -"bbL" = ( -/obj/structure/sign/poster/official/cleanliness, -/turf/closed/wall, -/area/station/medical/virology) -"bbQ" = ( -/obj/machinery/vending/wardrobe/hydro_wardrobe, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"bbR" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/obj/machinery/atmospherics/components/binary/pump/off/yellow/visible{ - dir = 4; - name = "N2 to Pure" - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"bbS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/frame/machine, -/obj/item/wirecutters, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"bcc" = ( -/obj/structure/table, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"bcg" = ( -/obj/structure/chair/wood, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) -"bci" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/commons/dorms) -"bcm" = ( -/obj/structure/rack, -/obj/item/storage/box/lights/mixed, -/obj/item/clothing/gloves/botanic_leather, -/obj/item/clothing/gloves/color/blue, -/obj/item/clothing/suit/caution, -/obj/item/clothing/suit/caution, -/obj/item/clothing/suit/caution, -/obj/item/clothing/suit/caution, -/obj/item/reagent_containers/glass/bucket, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/obj/item/mop, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/storage/bag/trash, -/obj/item/pushbroom, -/turf/open/floor/iron/kitchen{ - dir = 1 - }, -/area/station/security/prison) -"bco" = ( -/obj/structure/cable, -/obj/structure/grille, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/security/prison/upper) -"bcp" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"bcB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"bcD" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"bcE" = ( -/obj/machinery/computer/communications{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"bcP" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"bcR" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"bcS" = ( -/obj/structure/table/reinforced, -/obj/item/screwdriver, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"bcX" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/suit/armor/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/head/helmet/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/riot, -/obj/item/clothing/head/helmet/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/shield/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/shield/riot, -/obj/item/shield/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"bdt" = ( -/obj/structure/cable, -/obj/structure/window/reinforced/plasma/spawner/west{ - dir = 1 - }, -/obj/machinery/power/energy_accumulator/tesla_coil/anchored, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"bdD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/office) -"bea" = ( -/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/security/prison/mess) -"bec" = ( -/obj/structure/window/reinforced, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"ben" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"beo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"bep" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"bey" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"bez" = ( -/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/prison) -"beD" = ( -/obj/structure/tank_dispenser, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"beE" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/library/abandoned) -"beF" = ( -/obj/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/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/brig) -"beG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "hopblast"; - name = "HoP Blast Door" - }, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel's Office" - }, -/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, -/obj/effect/mapping_helpers/airlock/access/all/command/hop, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"beH" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"beI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron{ - icon = 'icons/turf/floors.dmi' - }, -/area/station/security/prison/upper) -"beK" = ( -/obj/machinery/airalarm/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark/red/side, -/area/station/security/execution) -"beR" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"beU" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"beY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/brig) -"beZ" = ( -/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/greater) -"bfq" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/break_room) -"bfs" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/airalarm/directional/north, -/obj/item/clothing/under/rank/prisoner, -/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/item/clothing/under/rank/prisoner/skirt, -/turf/open/floor/iron, -/area/station/security/prison) -"bfy" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/item/stock_parts/scanning_module{ - pixel_x = -5; - pixel_y = 7 - }, -/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 - }, -/obj/structure/table, -/obj/item/stock_parts/micro_laser{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/stock_parts/micro_laser{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/stock_parts/micro_laser{ - pixel_x = 2 - }, -/obj/item/stock_parts/micro_laser{ - pixel_x = 6; - pixel_y = -2 - }, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"bfz" = ( -/obj/structure/table/wood/poker, -/obj/item/storage/wallet/random, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) -"bfD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"bfF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"bfP" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen/blue{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/pen/red, -/obj/machinery/door/window{ - dir = 8; - name = "Library Desk" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"bfT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/storage) -"bfV" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/space) -"bfX" = ( -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/main) -"bgd" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"bgl" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"bgo" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/trimline/green/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/mid_joiner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/mid_joiner{ - dir = 4 - }, -/turf/open/floor/iron/half{ - dir = 8 - }, -/area/station/service/hydroponics/garden) -"bgq" = ( -/obj/structure/chair/office/light, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"bgz" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"bgE" = ( -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = -6 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark/blue/side{ - dir = 9 - }, -/area/station/security/prison/safe) -"bgS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"bhc" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/sofa/corp/right{ - dir = 8 - }, -/obj/machinery/firealarm/directional/north, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"bhd" = ( -/obj/structure/sign/departments/exam_room, -/turf/closed/wall, -/area/station/medical/treatment_center) -"bhh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/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/east, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"bhk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/glass, -/obj/structure/cable, -/obj/effect/decal/remains/human{ - desc = "They look like human remains. The bones are charred and burned."; - name = "charred remains" - }, -/turf/open/floor/plating, -/area/station/security/prison/work) -"bhn" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bhp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "roboticsprivacy"; - name = "Robotics Shutters"; - dir = 1 - }, -/turf/open/floor/plating, -/area/station/science/robotics/lab) -"bhv" = ( -/obj/structure/bodycontainer/morgue{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/medical/morgue) -"bhz" = ( -/turf/open/floor/iron/dark, -/area/station/security/prison) -"bhJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/north, -/obj/machinery/status_display/supply{ - pixel_y = 32 - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/weldingtool, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"bhR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"bhU" = ( -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"bhZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Central Hallway - Fore Port"; - name = "hallway camera" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"bii" = ( -/obj/structure/bed/maint, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron{ - icon = 'icons/turf/floors.dmi' - }, -/area/station/security/prison/upper) -"bij" = ( -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"bik" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/security/prison) -"bil" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hos) -"bis" = ( -/obj/machinery/computer/operating{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/medical/surgery/theatre) -"biL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK" - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"biO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"biR" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/sofa/corp/right{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = " Prison - Cafeteria"; - dir = 8; - network = list("ss13","prison") - }, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"biS" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"bje" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"bjl" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Engineering - Lobby"; - name = "engineering camera" - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/engineering/lobby) -"bjr" = ( -/turf/open/floor/iron/dark/corner, -/area/station/commons/fitness/recreation) -"bjE" = ( -/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, -/obj/structure/disposalpipe/segment, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"bjJ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/chair/sofa/bench/left{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"bjN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/mining{ - name = "Cargo Warehouse" - }, -/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/supply/general, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"bjR" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral, -/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, -/area/station/hallway/primary/starboard) -"bkj" = ( -/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/highsecurity{ - name = "Gravity Generator Room" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"bkl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/aft) -"bkr" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor{ - id = "cargodisposals" - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"bkE" = ( -/obj/structure/window/reinforced, -/turf/open/space, -/area/space/nearstation) -"bkF" = ( -/obj/structure/window/reinforced, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"bkK" = ( -/turf/closed/wall, -/area/station/hallway/primary/aft) -"ble" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"blj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/dark/side, -/area/station/engineering/lobby) -"bln" = ( -/obj/structure/chair/pew, -/turf/open/floor/iron{ - icon_state = "chapel" - }, -/area/station/service/chapel) -"blo" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/machinery/light/small/directional/west, -/obj/item/pen, -/obj/structure/sign/poster/official/enlist{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/holding_cell) -"bls" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/duct, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"blw" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/rack/gunrack, -/obj/effect/spawner/armory_spawn/shotguns, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"blB" = ( -/obj/structure/table/wood, -/obj/item/toy/cards/deck, -/turf/open/floor/wood, -/area/station/security/prison) -"blC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"blI" = ( -/obj/machinery/door/window/right/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den) -"blJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos/storage) -"blV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/rack, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/pushbroom, -/obj/machinery/light_switch/directional/north, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/medical/morgue) -"blX" = ( -/turf/closed/wall/r_wall, -/area/station/science/ordnance/testlab) -"bmf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"bmg" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/structure/closet/secure_closet/psychology, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"bmj" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron, -/area/station/command/teleporter) -"bml" = ( -/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{ - name = "Bathrooms" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/toilet/restrooms) -"bmm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron, -/area/station/medical/morgue) -"bmn" = ( -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"bmq" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/security/courtroom) -"bmA" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"bmC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - space_dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"bmD" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bmG" = ( -/obj/structure/chair/stool/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/airalarm/directional/west{ - pixel_x = -22 - }, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"bmH" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"bmN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"bmP" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"bmQ" = ( -/turf/closed/wall, -/area/station/security/checkpoint/medical) -"bmR" = ( -/obj/structure/sign/departments/science, -/turf/closed/wall, -/area/station/science/lab) -"bni" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/candle_box{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"bnq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"bnt" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"bnw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/tank_holder/oxygen/red, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/station/tcommsat/server) -"bnS" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Holodeck - Fore 2"; - name = "holodeck camera" - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/station/holodeck/rec_center) -"bnU" = ( -/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/machinery/light/directional/south, -/turf/open/floor/iron/dark/side, -/area/station/security/prison) -"bnV" = ( -/obj/machinery/holopad, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"bnW" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/station/medical/virology) -"boe" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bog" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"boj" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"boI" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"boP" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"boR" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/department/engine/atmos) -"boV" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics - n2o Cell"; - name = "atmospherics camera" - }, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"bpa" = ( -/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, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-right" - }, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"bpd" = ( -/obj/machinery/light/small/directional/north, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"bpg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"bpo" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"bpq" = ( -/obj/structure/table/reinforced, -/obj/item/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"bpr" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/mid_joiner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"bpt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"bpv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"bpF" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"bpK" = ( -/obj/effect/turf_decal/stripes/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, -/area/station/hallway/secondary/exit/departure_lounge) -"bpL" = ( -/obj/structure/table/reinforced, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/main) -"bpN" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"bpT" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/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/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"bpV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/item/food/baguette, -/obj/item/toy/crayon/spraycan/mimecan, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/iron/checker, -/area/station/service/theater) -"bqd" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"bqf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark/smooth_large, -/area/station/service/hydroponics) -"bqo" = ( -/obj/item/robot_suit, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"bqv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/storage) -"bqA" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"bqB" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/aft) -"bqC" = ( -/obj/machinery/seed_extractor, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"bqP" = ( -/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/siding/yellow, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"bqW" = ( -/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/chemistry) -"bqX" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"brb" = ( -/turf/closed/wall, -/area/station/service/chapel/funeral) -"brl" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"brE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"brJ" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/medical/pharmacy) -"brN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Break Room" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron, -/area/station/science/breakroom) -"brY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/aft) -"brZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"bsb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"bsc" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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, -/area/station/engineering/atmos) -"bsk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/grimy, -/area/station/service/library/abandoned) -"bsm" = ( -/obj/structure/closet/emcloset, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"bsp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/security/holding_cell) -"bsv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall, -/area/station/maintenance/port/greater) -"bsx" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"bsC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"bsR" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"bsX" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/machinery/light_switch/directional/south{ - pixel_x = 26 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/east, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron, -/area/station/medical/virology) -"bsY" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"bsZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/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/medbay/central) -"bta" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Mining Dock Airlock" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"btc" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/siding/white/corner{ - dir = 4 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/duct, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"bti" = ( -/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, -/area/station/cargo/storage) -"btk" = ( -/obj/structure/table, -/obj/item/computer_hardware/hard_drive/portable/ordnance, -/obj/item/computer_hardware/hard_drive/portable/ordnance, -/obj/item/computer_hardware/hard_drive/portable/ordnance, -/obj/machinery/camera/directional/east{ - c_tag = "Science - Research Director's Office"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"btm" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/processing) -"btF" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"btH" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) -"btJ" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"btN" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/construction) -"btO" = ( -/obj/structure/closet/secure_closet/research_director, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"btT" = ( -/obj/structure/rack, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"btU" = ( -/obj/structure/sign/departments/science, -/turf/closed/wall, -/area/station/science/lobby) -"btY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/caution, -/obj/effect/decal/cleanable/glass, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"btZ" = ( -/obj/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/holopad/secure, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"bua" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"bub" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den) -"bui" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/solars/starboard/fore) -"buj" = ( -/obj/effect/landmark/blobstart, -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/event_spawn, -/obj/machinery/hydroponics/soil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/hydroponics/garden/abandoned) -"buJ" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/newscaster/directional/north, -/obj/item/radio/intercom/chapel/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"buK" = ( -/obj/structure/table/wood/fancy, -/turf/open/floor/iron/grimy, -/area/station/service/chapel) -"buT" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/qm) -"bvh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"bvj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"bvu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/under/rank/prisoner/classic, -/obj/item/clothing/suit/jacket/leather/overcoat, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/upper) -"bvw" = ( -/obj/machinery/telecomms/processor/preset_one, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/iron/white/telecomms, -/area/station/tcommsat/server) -"bvz" = ( -/obj/machinery/light/directional/east, -/obj/machinery/status_display/evac/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"bvA" = ( -/obj/structure/holohoop{ - density = 0; - pixel_y = 18 - }, -/obj/effect/turf_decal/stripes/white/line{ - color = "#52B4E9"; - dir = 1; - name = "blue line" - }, -/turf/open/floor/iron/dark/blue/side{ - dir = 1 - }, -/area/station/security/prison) -"bvB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) -"bvI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit/old, -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/landmark/start/hangover, -/obj/machinery/newscaster/directional/west, -/obj/machinery/button/door/directional/south{ - id = "Toilet1"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/plating, -/area/station/commons/toilet/locker) -"bvJ" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"bvP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/library/abandoned) -"bvV" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Bridge - Head of Personnel's Office"; - name = "command camera" - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hop) -"bvW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"bvY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/greater) -"bwe" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/service/salon) -"bwh" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/stripes/box, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"bwo" = ( -/obj/item/kirbyplants/random, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"bwz" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"bwG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"bwQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron/white, -/area/station/maintenance/department/science) -"bwU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"bwV" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"bwZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"bxa" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Engineering Hallway - Starboard"; - name = "hallway camera" - }, -/obj/structure/cable, -/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, -/area/station/hallway/primary/port) -"bxc" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/engineering/main) -"bxg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"bxp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/shard, -/obj/effect/decal/cleanable/glass, -/mob/living/basic/cockroach, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"bxv" = ( -/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/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"bxy" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/door/airlock/grunge{ - name = "Morgue" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/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, -/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, -/turf/open/floor/iron, -/area/station/medical/morgue) -"bxK" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/medical/surgery/theatre) -"byf" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"byk" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"byn" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/service/theater) -"byr" = ( -/obj/structure/cable, -/obj/machinery/light/directional/north, -/obj/machinery/airalarm/unlocked{ - dir = 1; - pixel_y = 23 - }, -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"byC" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/commons/dorms) -"byX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/storage) -"bzb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"bzd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"bzf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"bzh" = ( -/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/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"bzv" = ( -/obj/structure/rack, -/obj/item/gun/energy/ionrifle, -/obj/item/clothing/suit/hooded/ablative, -/obj/item/gun/energy/temperature/security, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"bzY" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/mid_joiner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"bAq" = ( -/obj/effect/turf_decal/tile/green{ - 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/virology) -"bAu" = ( -/obj/machinery/light/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"bAA" = ( -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks/beer{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/mess) -"bAE" = ( -/obj/item/stack/cable_coil, -/obj/item/multitool, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"bAK" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/status_display/evac/directional/west, -/obj/item/kirbyplants/photosynthetic{ - pixel_y = 10 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"bAM" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/rnd_all, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"bAR" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/break_room) -"bAV" = ( -/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/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"bAY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"bBa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"bBc" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/station/solars/port/aft) -"bBd" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"bBf" = ( -/obj/machinery/vending/assist, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"bBm" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/sign/warning/pods/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"bBt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/mob/living/basic/cockroach, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"bBz" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"bBB" = ( -/turf/closed/wall/mineral/plastitanium, -/area/station/security/execution/transfer) -"bBD" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "right_arrivals_shutters"; - dir = 1 - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/secondary/entry) -"bBS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"bCd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"bCk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/medical/chemistry) -"bCn" = ( -/obj/effect/turf_decal/trimline/yellow/corner, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"bCt" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "aicorewindow"; - name = "AI Core Shutters"; - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai) -"bCu" = ( -/obj/structure/cable, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) -"bCw" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"bCC" = ( -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = 12; - pixel_y = -6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/brown/side{ - dir = 5 - }, -/area/station/security/prison/safe) -"bCD" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/locker) -"bCO" = ( -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"bCT" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/theater) -"bCX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/obj/effect/spawner/random/structure/tank_holder, -/obj/structure/sign/poster/official/wtf_is_co2{ - pixel_x = 32 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/engine/atmos) -"bCZ" = ( -/obj/machinery/airalarm/directional/south, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"bDe" = ( -/obj/machinery/button/flasher{ - id = "IsolationFlash"; - pixel_x = 21; - pixel_y = 21 - }, -/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/prison) -"bDg" = ( -/obj/machinery/door/window{ - dir = 8; - name = "Theater Stage" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/service/theater/abandoned) -"bDs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/volume_pump{ - name = "Ports to Distro" - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/maintenance/department/electrical) -"bDu" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"bDw" = ( -/obj/machinery/hydroponics/soil{ - desc = "A patch of fertile soil that you can plant stuff in."; - icon = 'icons/turf/floors.dmi'; - icon_state = "dirt"; - layer = 2.0001; - plane = -7; - self_sustaining = 1 - }, -/obj/machinery/camera{ - c_tag = " Prison - Garden"; - network = list("ss13","prison") - }, -/turf/open/floor/plating, -/area/station/security/prison/garden) -"bDx" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"bDG" = ( -/obj/machinery/light_switch/directional/west, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"bDM" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/science/lobby) -"bDX" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/engineering/lobby) -"bEd" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/theater/abandoned) -"bEf" = ( -/obj/machinery/door/window{ - base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - layer = 4.1; - name = "Secondary AI Core Access"; - pixel_x = 4; - req_access = list("ai_upload") - }, -/obj/effect/landmark/start/ai/secondary, -/obj/item/radio/intercom/directional/north{ - freerange = 1; - listening = 0; - name = "Custom Channel" - }, -/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" - }, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) -"bEl" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/structure/cable, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) -"bEm" = ( -/obj/machinery/door/window{ - base_state = "leftsecure"; - dir = 8; - icon_state = "leftsecure"; - layer = 4.1; - name = "Tertiary AI Core Access"; - pixel_x = -3; - req_access = list("ai_upload") - }, -/obj/effect/landmark/start/ai/secondary, -/obj/item/radio/intercom/directional/north{ - freerange = 1; - listening = 0; - name = "Custom Channel" - }, -/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" - }, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) -"bEr" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/rack/gunrack, -/obj/effect/spawner/armory_spawn/microfusion, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"bEs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"bEu" = ( -/obj/structure/sign/warning/secure_area/directional/east, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bED" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"bEN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"bEV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Surgery Observation" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/theatre) -"bEY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Holding Area" - }, -/obj/structure/cable, -/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, -/area/station/security/checkpoint/escape) -"bFa" = ( -/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/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"bFo" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/flashlight/pen, -/obj/item/clothing/neck/stethoscope, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"bFs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/reagent_containers/pill/patch/aiuri, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner, -/area/station/maintenance/disposal/incinerator) -"bFy" = ( -/obj/structure/cable, -/obj/machinery/conveyor{ - dir = 4; - id = "cargoload" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor{ - id = "cargoload"; - name = "Supply Dock Loading Door" - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"bFH" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "prisonlockdown3"; - name = "Lockdown" - }, -/obj/machinery/button/door{ - id = "prisonlockdown3"; - name = "Lockdown"; - pixel_y = 24; - req_access = list("brig") - }, -/turf/open/floor/iron/dark, -/area/station/security/prison) -"bFI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/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/aft) -"bFM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"bFT" = ( -/obj/effect/landmark/start/ai, -/obj/item/radio/intercom/directional/west{ - freerange = 1; - listening = 0; - name = "Common Channel"; - pixel_y = -8 - }, -/obj/item/radio/intercom/directional/south{ - freerange = 1; - frequency = 1447; - listening = 0; - name = "Private Channel" - }, -/obj/item/radio/intercom/directional/east{ - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_y = -8 - }, -/obj/machinery/button/door/directional/south{ - id = "aicoredoor"; - name = "AI Chamber Access Control"; - pixel_x = -24; - req_access = list("ai_upload") - }, -/obj/machinery/button/door/directional/south{ - id = "aicorewindow"; - name = "AI Core Shutters"; - pixel_x = 24; - req_access = list("ai_upload") - }, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) -"bFV" = ( -/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/secondary/entry) -"bFY" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/radio/intercom/directional/north{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Private Channel" - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bGc" = ( -/turf/closed/wall, -/area/station/maintenance/department/engine/atmos) -"bGf" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/left/directional/west{ - dir = 4; - name = "Mining Desk"; - req_access = list("mining") - }, -/obj/effect/turf_decal/delivery, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"bGh" = ( -/obj/structure/filingcabinet/employment, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"bGi" = ( -/obj/machinery/light/directional/east, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison) -"bGj" = ( -/obj/structure/closet, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/item/stack/sheet/iron{ - amount = 30 - }, -/obj/item/stack/cable_coil, -/obj/item/wrench, -/obj/item/vending_refill/cigarette, -/obj/item/circuitboard/computer/slot_machine, -/obj/item/circuitboard/computer/slot_machine, -/obj/item/circuitboard/computer/arcade/battle, -/obj/item/circuitboard/computer/arcade/orion_trail, -/obj/item/vending_refill/coffee, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/checker, -/area/station/service/bar) -"bGl" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/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/starboard) -"bGr" = ( -/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/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"bGC" = ( -/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/decal/cleanable/dirt, -/obj/machinery/door/airlock/highsecurity{ - name = "Atmospherics Emergency Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/firedoor/heavy, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"bGK" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/medical/medbay/lobby) -"bGR" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall12"; - location = "hall11" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/mob/living/simple_animal/bot/secbot/beepsky/officer, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"bGT" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"bGY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/security/prison/upper) -"bHg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"bHj" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"bHm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/hallway/secondary/construction) -"bHB" = ( -/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/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"bHE" = ( -/turf/closed/wall, -/area/station/maintenance/port/lesser) -"bHW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"bIa" = ( -/obj/effect/turf_decal/trimline/blue/end{ - dir = 4 - }, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron, -/area/station/engineering/main) -"bIb" = ( -/obj/structure/mirror/directional/west, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/toilet/locker) -"bIm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/ce) -"bID" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/iron, -/area/station/engineering/storage) -"bIF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Shooting Range" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-side-entrance" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron, -/area/station/security/brig) -"bIG" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/light/directional/south, -/obj/machinery/hydroponics/constructable, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"bIM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Central Hallway - Bridge Port"; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"bIS" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"bIW" = ( -/obj/machinery/turretid{ - icon_state = "control_stun"; - name = "AI Chamber turret control"; - pixel_x = 3; - pixel_y = -23 - }, -/obj/machinery/door/window{ - base_state = "leftsecure"; - dir = 8; - icon_state = "leftsecure"; - name = "Primary AI Core Access"; - req_access = list("ai_upload") - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"bJf" = ( -/obj/structure/chair/sofa/bench/right{ - dir = 8 - }, -/obj/machinery/newscaster/directional/north, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"bJg" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"bJy" = ( -/obj/effect/spawner/random/vending/snackvend, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"bJF" = ( -/obj/structure/cable, -/obj/effect/turf_decal/plaque{ - icon_state = "L12" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"bJH" = ( -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"bJI" = ( -/turf/closed/wall, -/area/station/security/checkpoint/engineering) -"bJM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/space_heater, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"bKm" = ( -/obj/structure/closet/wardrobe/grey, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"bKn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/theater) -"bKp" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Engine Cooling Bypass" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer4, -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"bKz" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"bKG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/starboard/aft) -"bKT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/cargo_technician, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"bKZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - 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 = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"bLc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/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/greater) -"bLd" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/chair/sofa/bench{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"bLo" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"bLs" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory) -"bLw" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"bLy" = ( -/obj/machinery/computer/cargo{ - dir = 8 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Cargo Bay - Starboard"; - name = "cargo camera" - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/bot, -/obj/machinery/button/door/directional/east{ - id = "cargounload"; - layer = 4; - name = "Loading Doors"; - pixel_y = 6 - }, -/obj/machinery/button/door/directional/east{ - id = "cargoload"; - layer = 4; - name = "Loading Doors"; - pixel_y = -6 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"bLG" = ( -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"bLP" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/wood, -/area/station/security/prison) -"bMe" = ( -/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/service/abandoned_gambling_den) -"bMz" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"bMH" = ( -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/command/gateway) -"bML" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/station/security/execution/transfer) -"bMN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"bNt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/toolcloset, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"bNB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/chair/stool/bar/directional/east, -/turf/open/floor/iron, -/area/station/commons/lounge) -"bNJ" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Medbay - Chief Medical Officer's Office"; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/cmo) -"bNW" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall7"; - location = "hall6" - }, -/obj/structure/cable, -/obj/effect/turf_decal/plaque{ - icon_state = "L8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"bNZ" = ( -/obj/structure/disposalpipe/sorting/mail{ - name = "Engineering Junction"; - sortType = 4 - }, -/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/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"bOe" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron, -/area/station/science/research) -"bOl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"bOp" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cafe_counter"; - name = "Kitchen Counter Shutters"; - dir = 8 - }, -/turf/open/floor/iron/white/smooth_half{ - dir = 1 - }, -/area/station/service/kitchen) -"bOw" = ( -/obj/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 = "Maintenance Hatch" - }, -/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/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"bOL" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/south, -/obj/structure/closet/radiation, -/turf/open/floor/iron, -/area/station/engineering/main) -"bOP" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "xeno1"; - name = "Containment Control"; - req_access = list("xenobiology") - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"bOS" = ( -/obj/structure/cable, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"bOU" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/chair/sofa/bench{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"bOY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"bPj" = ( -/obj/machinery/rnd/production/techfab/department/cargo, -/obj/effect/turf_decal/stripes/box, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/office) -"bPw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/ai_monitored/security/armory) -"bPx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"bPy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"bPz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"bPC" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bPE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"bPG" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"bPH" = ( -/obj/structure/sign/plaques/kiddie, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bPI" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"bPK" = ( -/obj/machinery/door/window/left/directional/east, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den) -"bPM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron, -/area/station/medical/storage) -"bPV" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"bQn" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"bQo" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/virology) -"bQs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Aft Primary Hallway" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/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/aft) -"bQw" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"bQy" = ( -/mob/living/basic/cockroach, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"bQB" = ( -/obj/structure/sign/departments/chemistry/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"bQX" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"bRt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"bRu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) -"bRv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"bRx" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"bRy" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bRz" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bRA" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/machinery/light/directional/north, -/obj/machinery/status_display/ai/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bRC" = ( -/obj/machinery/cell_charger, -/obj/structure/table/reinforced, -/obj/item/stock_parts/cell/high, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bRD" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bRE" = ( -/obj/structure/cable, -/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" - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/siding/thinplating/dark/corner, -/obj/machinery/status_display/ai/directional/east, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"bRF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosspace"; - name = "Hos Space Blast Door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/command/heads_quarters/hos) -"bRG" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/office) -"bRK" = ( -/obj/machinery/teleport/hub, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bRL" = ( -/obj/machinery/teleport/station, -/obj/machinery/light/directional/north, -/obj/machinery/status_display/ai/directional/north, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bRM" = ( -/obj/machinery/computer/teleporter, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bRN" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bRO" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced, -/turf/open/space, -/area/space/nearstation) -"bRP" = ( -/obj/structure/sign/warning/vacuum, -/turf/closed/wall, -/area/space/nearstation) -"bRQ" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/curved/flipped{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bRR" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/crossing/horizontal, -/turf/open/space, -/area/space/nearstation) -"bRS" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/curved{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"bRV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 5; - id = "garbage" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"bRX" = ( -/obj/structure/disposalpipe/segment{ - 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/white, -/area/station/science/auxlab) -"bRZ" = ( -/obj/machinery/computer/camera_advanced/xenobio{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/circuit/green, -/area/station/science/xenobiology) -"bSd" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/toilet/locker) -"bSp" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/spawner/random/entertainment/cigarette, -/obj/item/lighter, -/obj/machinery/status_display/ai/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/north{ - c_tag = "Service - Bar Fore"; - name = "service camera" - }, -/turf/open/floor/iron, -/area/station/commons/lounge) -"bSq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"bSx" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/meter, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"bSz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"bSN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"bSO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"bSQ" = ( -/obj/structure/displaycase/trophy, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/service/library) -"bSU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Project Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"bTl" = ( -/obj/machinery/camera/motion/directional/west{ - c_tag = "Armoury - Exterior" - }, -/turf/open/space, -/area/space/nearstation) -"bTo" = ( -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"bTq" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bTs" = ( -/obj/machinery/camera/directional/east{ - c_tag = "AI Satellite - Maintenance"; - name = "ai camera"; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bTu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bTy" = ( -/obj/effect/turf_decal/siding/wood, -/obj/machinery/vending/clothing, -/obj/machinery/button/curtain{ - id = "theater_curtains"; - name = "curtain control"; - pixel_x = -24; - pixel_y = -8; - req_access = list("theatre") - }, -/turf/open/floor/iron/dark, -/area/station/service/theater) -"bTB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Genetics Lab" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/science/genetics, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"bTJ" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/diagonal{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bTL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"bTN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"bTT" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/item/storage/secure/briefcase, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/security/office) -"bTW" = ( -/obj/structure/table/wood/poker, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"bUQ" = ( -/obj/structure/chair/stool/directional/west, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"bUR" = ( -/obj/effect/turf_decal/siding/white/corner{ - dir = 1 - }, -/obj/machinery/door/airlock{ - name = "Kitchen" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"bUU" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/box/red, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"bVq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Arrivals Dock - Auxiliary Construction"; - name = "dock camera" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"bVv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/r_wall, -/area/station/maintenance/port/greater) -"bVI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Engineering - Fore"; - name = "engineering camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"bVP" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"bWa" = ( -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/pipe/layer_manifold/green/visible, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"bWb" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"bWh" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"bWn" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/library/abandoned) -"bWo" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"bWv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/station/service/library/abandoned) -"bWw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark/side, -/area/station/security/prison) -"bWR" = ( -/obj/structure/table/wood, -/obj/item/camera, -/obj/item/camera_film, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"bWT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/purple{ - dir = 6 - }, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/glass, -/area/station/maintenance/space_hut/observatory) -"bWW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"bXM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Armoury" - }, -/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, -/turf/open/floor/iron, -/area/station/ai_monitored/security/armory) -"bXN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"bXO" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"bYe" = ( -/turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bYf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bYm" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/diagonal, -/turf/open/space, -/area/space/nearstation) -"bYn" = ( -/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/white, -/area/station/maintenance/starboard/aft) -"bYC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Transferring Control" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"bYK" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden{ - dir = 5 - }, -/obj/item/kirbyplants/random, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/storage/gas) -"bYN" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/electronic_marketing_den) -"bYV" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/turf/open/floor/iron/dark/telecomms, -/area/station/science/server) -"bYW" = ( -/obj/structure/cable, -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/rnd_secure_all, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"bZe" = ( -/obj/structure/table/wood/poker, -/obj/effect/spawner/random/maintenance, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) -"bZo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/science/research) -"bZt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Gateway Atrium" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/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/command/gateway, -/turf/open/floor/iron, -/area/station/command/gateway) -"bZJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"bZN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"bZX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"bZY" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/effect/landmark/start/captain, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/captain/private) -"caa" = ( -/obj/machinery/recharge_station, -/obj/machinery/status_display/ai/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"cab" = ( -/obj/machinery/computer/monitor{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south{ - freerange = 1; - frequency = 1447; - listening = 0; - name = "Private Channel" - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"cac" = ( -/obj/machinery/recharge_station, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"cad" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/electrical, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"cak" = ( -/obj/machinery/flasher/directional/south{ - id = "AI"; - pixel_x = -26 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"cao" = ( -/turf/closed/wall, -/area/station/service/library) -"cap" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/curved{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"caq" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/curved/flipped{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"caw" = ( -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"caH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/door/airlock/public/glass{ - name = "Workshop" - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/work) -"caV" = ( -/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/tile/purple/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"cbm" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/construction) -"cbs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"cbu" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/commons/dorms) -"cbz" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cbB" = ( -/obj/machinery/food_cart, -/obj/effect/turf_decal/bot/right, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"cbG" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/ai_monitored/security/armory) -"cbH" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/button/door/directional/south{ - id = "armouryaccess"; - name = "Armoury Access"; - req_access = list("armory") - }, -/obj/item/key/security, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"cbI" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/mob/living/simple_animal/bot/secbot/beepsky/armsky, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"cbJ" = ( -/obj/structure/chair/office, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"cbK" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Armory - Interior" - }, -/obj/structure/table/reinforced, -/obj/item/gun/energy/e_gun/dragnet, -/obj/item/gun/energy/e_gun/dragnet, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/item/melee/hammer, -/obj/item/melee/hammer, -/obj/item/melee/hammer, -/obj/item/storage/box/firingpins, -/obj/item/storage/box/firingpins, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"cbW" = ( -/obj/structure/table/wood, -/obj/item/pinpointer/nuke, -/obj/item/disk/nuclear, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/captain/private) -"cbY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"cca" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/warden) -"cch" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"cck" = ( -/obj/machinery/light/directional/west, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"ccl" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall9"; - location = "hall8" - }, -/obj/structure/cable, -/obj/effect/turf_decal/plaque{ - icon_state = "L10" - }, -/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/aft) -"ccq" = ( -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"ccr" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/processing) -"ccw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"ccA" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"ccK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/wrench, -/obj/item/crowbar/red, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Atmospherics - Pumps"; - name = "atmospherics camera" - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"ccR" = ( -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"cdg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/junction, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"cdo" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Dormitories - Center"; - name = "dormitories camera" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/commons/dorms) -"cdr" = ( -/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, -/area/station/ai_monitored/security/armory) -"cds" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor/right/directional/north{ - name = "Armoury Desk"; - req_access = list("armory") - }, -/obj/item/folder/red, -/obj/item/pen, -/obj/machinery/door/window/right/directional/south{ - name = "Armoury Desk" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/ai_monitored/security/armory) -"cdt" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload) -"cdB" = ( -/obj/structure/chair/sofa/bench/right{ - dir = 1 - }, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"cdE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"cdF" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"cec" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"cee" = ( -/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 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/science/breakroom) -"cei" = ( -/obj/structure/chair{ - dir = 8; - name = "Judge" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/security/courtroom) -"cek" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"cel" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"ces" = ( -/obj/item/trash/popcorn, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/radio/intercom/directional/north{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "prison intercom"; - prison_radio = 1 - }, -/turf/open/floor/iron/dark/brown/side{ - dir = 9 - }, -/area/station/security/prison/safe) -"cew" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/command{ - name = "Auxiliary E.V.A. Storage" - }, -/obj/structure/barricade/wooden, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/command/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"cez" = ( -/turf/closed/wall, -/area/station/cargo/qm) -"ceG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall, -/area/station/maintenance/starboard/aft) -"ceU" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/maintenance/department/science) -"ceV" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall, -/area/station/engineering/main) -"cfp" = ( -/obj/structure/table/wood, -/obj/item/storage/box/rubbershot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/gun/ballistic/shotgun/doublebarrel, -/obj/item/toy/figure/bartender, -/obj/machinery/light_switch/directional/east{ - pixel_y = 6 - }, -/turf/open/floor/iron/checker, -/area/station/service/bar) -"cfu" = ( -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) -"cfx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"cfz" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/plating, -/area/station/service/theater/abandoned) -"cfL" = ( -/obj/structure/table, -/obj/item/raw_anomaly_core/random{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/raw_anomaly_core/random{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/raw_anomaly_core/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"cfV" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/curtain, -/obj/machinery/door/window/brigdoor/left/directional/south{ - name = "Shower" - }, -/obj/item/soap/deluxe, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/captain/private) -"cfZ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"cga" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/station/science/lab) -"cgg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"cgv" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/storage/barricade{ - pixel_y = -5 - }, -/obj/item/storage/barricade, -/obj/item/storage/barricade{ - pixel_y = 5 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"cgz" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/station/service/library) -"cgP" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"cgV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"chc" = ( -/obj/machinery/status_display/evac/directional/west, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"chi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "aiuploadwindow"; - name = "AI Upload Lockdown Door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_upload) -"chk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/greater) -"chn" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"chs" = ( -/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{ - dir = 1; - id = "engcell"; - name = "Engineering Holding Cell"; - req_access = list("brig_entrance") - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"chu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/security/prison/upper) -"chv" = ( -/obj/structure/cable, -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"chx" = ( -/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/side{ - dir = 8 - }, -/area/station/security/prison) -"chS" = ( -/obj/structure/table/glass, -/obj/item/clipboard, -/obj/item/toy/figure/virologist, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"chY" = ( -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/obj/item/crowbar, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/engineering/supermatter) -"chZ" = ( -/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/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/aft) -"cij" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"ciz" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"ciB" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Engineering - Supermatter Room Port"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"ciD" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/mix) -"ciE" = ( -/obj/machinery/button/crematorium{ - id = "cremawheat"; - pixel_x = -26 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"ciG" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/station/maintenance/port/greater) -"ciI" = ( -/obj/machinery/computer/shuttle/mining{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"ciK" = ( -/obj/structure/table, -/obj/item/toy/plush/borbplushie{ - name = "Therapeep" - }, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"ciT" = ( -/obj/structure/table, -/obj/item/clothing/under/rank/security/officer, -/obj/item/restraints/handcuffs, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"ciZ" = ( -/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/commons/dorms) -"cjd" = ( -/obj/machinery/light_switch/directional/south, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"cji" = ( -/obj/machinery/stasis{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/defibrillator_mount/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"cjj" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - id_tag = "cardoor"; - name = "Cargo Holding Cell" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/customs, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"cjs" = ( -/obj/structure/chair/office, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/security/detectives_office/private_investigators_office) -"cjK" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/medical/morgue) -"cjN" = ( -/turf/closed/wall/r_wall, -/area/station/security/office) -"ckb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"ckB" = ( -/obj/structure/closet/secure_closet/hop, -/obj/item/clothing/suit/ianshirt, -/obj/item/bedsheet/ian, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hop) -"ckC" = ( -/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/engineering/supermatter/room) -"ckN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Security Hallway - Port"; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"ckO" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall, -/area/station/science/xenobiology) -"ckP" = ( -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"ckR" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"ckY" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/chair/sofa/bench/left, -/obj/structure/cable, -/turf/open/floor/iron, -/area/service/salon) -"clh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Kitchen" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"clo" = ( -/obj/machinery/chem_dispenser, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/medical/pharmacy) -"clq" = ( -/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/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/engineering/main) -"clx" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/computer/atmos_control/nocontrol/incinerator{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner, -/area/station/maintenance/disposal/incinerator) -"clB" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"clE" = ( -/obj/structure/rack, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"clJ" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/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/cyclelink_helper_multi{ - cycle_id = "genetics-passthrough" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/department/science) -"clU" = ( -/obj/structure/table, -/obj/item/storage/medkit/regular, -/obj/item/paper/pamphlet/gateway, -/obj/item/paper/pamphlet/gateway, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/command/gateway) -"cme" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"cmi" = ( -/obj/structure/flora/bush/stalky/style_random, -/obj/structure/flora/bush/leavy/style_random, -/turf/open/misc/grass, -/area/station/hallway/primary/fore) -"cmj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"cmr" = ( -/obj/structure/chair/stool/directional/south, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/breakroom) -"cmu" = ( -/obj/machinery/status_display/ai/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cmE" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"cmG" = ( -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/rock/pile/style_random, -/obj/machinery/light/floor, -/turf/open/misc/grass, -/area/station/hallway/primary/fore) -"cna" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"cnl" = ( -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron/checker{ - dir = 1 - }, -/area/station/service/bar) -"cnn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/item/crowbar/red, -/obj/structure/rack, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"cnu" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Telecomms - Cooling Room"; - name = "telecomms camera"; - network = list("ss13","tcomms") - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/tcommsat/server) -"cnw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Science Guard's Office" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/science/sci_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) -"cnx" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rndlab2"; - name = "Secondary Research and Development Shutter"; - dir = 4 - }, -/turf/open/floor/plating, -/area/station/science/lab) -"cnH" = ( -/obj/structure/cable, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"cnK" = ( -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/flora/bush/grassy/style_random, -/obj/machinery/light/floor, -/turf/open/misc/grass, -/area/station/hallway/primary/fore) -"cnL" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/checker, -/area/station/service/janitor) -"cnR" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"cnW" = ( -/obj/structure/table/reinforced, -/obj/machinery/status_display/evac/directional/north, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"coj" = ( -/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/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"coD" = ( -/obj/machinery/computer/med_data{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"coH" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/secure_closet/brigoff, -/turf/open/floor/iron/dark/blue/side{ - dir = 6 - }, -/area/brigofficer) -"cpp" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/station/service/library) -"cpq" = ( -/obj/structure/chair/pew, -/turf/open/floor/iron{ - dir = 1; - icon_state = "chapel" - }, -/area/station/service/chapel) -"cpr" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"cpw" = ( -/obj/effect/turf_decal/box/white{ - color = "#EFB341" - }, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/hfr_room) -"cpC" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/station/service/library) -"cpJ" = ( -/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/starboard) -"cqi" = ( -/obj/structure/bed/roller, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"cqj" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"cqn" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"cqo" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"cqr" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Server Access" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/rd, -/turf/open/floor/iron/dark, -/area/station/science/server) -"cqt" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/toy/figure/hop{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/toy/figure/ian, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"cqA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"cqH" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/security/prison/garden) -"cqM" = ( -/obj/structure/sign/departments/lawyer/directional/south, -/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/starboard) -"crf" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"crg" = ( -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"crx" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/starboard) -"crE" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"crR" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"csh" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"csi" = ( -/obj/structure/table/wood/fancy, -/obj/machinery/door/window{ - name = "Secure Art Exhibition"; - req_access = list("library") - }, -/turf/open/floor/carpet, -/area/station/service/library) -"csk" = ( -/obj/structure/cable, -/turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) -"csw" = ( -/turf/closed/wall, -/area/station/service/hydroponics) -"csy" = ( -/obj/structure/table/wood, -/obj/item/pen, -/obj/item/paper_bin/carbon, -/obj/item/pen, -/obj/item/toy/figure/detective, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"csz" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/inflatable, -/obj/item/inflatable/door, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) -"csC" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/structure/cable, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"csE" = ( -/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 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"csH" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/port) -"csU" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"ctl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/space_heater, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"ctw" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=engi1"; - location = "hall3" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"ctG" = ( -/obj/structure/sign/plaques/kiddie/library{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"cua" = ( -/obj/machinery/door/firedoor/heavy, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"cui" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/engineering/main) -"cul" = ( -/obj/effect/spawner/structure/window, -/obj/structure/curtain/cloth/fancy/mechanical{ - icon_state = "bounty-open"; - icon_type = "bounty"; - id = "prisoncell10"; - name = "curtain" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"cut" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cuA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Brig" - }, -/obj/structure/cable, -/obj/effect/landmark/navigate_destination, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-entrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron, -/area/station/security/brig) -"cuB" = ( -/obj/machinery/light_switch/directional/north, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/structure/closet/secure_closet/evidence{ - name = "Brig Officer's Locker" - }, -/obj/item/clothing/mask/whistle, -/turf/open/floor/iron/dark/blue/side{ - dir = 5 - }, -/area/brigofficer) -"cuX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"cvr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"cvw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bodycontainer/morgue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"cvy" = ( -/obj/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) -"cvE" = ( -/obj/machinery/computer/cargo/request{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hop) -"cwe" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/cryo) -"cwf" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/briefcase, -/obj/item/cane, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"cwj" = ( -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/wrench, -/obj/structure/table/reinforced, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"cwk" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cwp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/stack/sheet/iron/twenty, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/screwdriver, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"cwt" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/storage) -"cwu" = ( -/obj/effect/landmark/start/scientist, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"cwA" = ( -/turf/open/floor/iron/white/corner{ - dir = 4 - }, -/area/station/commons/fitness/recreation) -"cwI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/sign/warning/radiation/directional/south, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"cwK" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"cwV" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment{ - 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, -/area/station/hallway/primary/fore) -"cwX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"cwY" = ( -/turf/closed/wall, -/area/station/engineering/atmos/storage) -"cxc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"cxf" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/storage/secure/briefcase, -/obj/structure/sign/nanotrasen{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/machinery/newscaster/directional/west, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/cmo) -"cxk" = ( -/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/tile/red/half/contrasted{ - dir = 8 - }, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) -"cxl" = ( -/obj/item/target/syndicate, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/structure/training_machine, -/turf/open/floor/iron, -/area/station/security/range) -"cxp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"cxs" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/engineering_all, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"cxv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"cxR" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"cxV" = ( -/obj/structure/cable, -/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, -/area/station/science/robotics/lab) -"cyc" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"cym" = ( -/obj/machinery/light/directional/north, -/obj/machinery/computer/atmos_control/ordnancemix, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"cyq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"cyx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"cyD" = ( -/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/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"cyE" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/trinary/filter/flipped{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"cyG" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"cyP" = ( -/obj/machinery/computer/shuttle/labor, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"cyR" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cyS" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/medical/chemistry) -"cyU" = ( -/obj/structure/cable, -/turf/closed/wall/r_wall, -/area/station/maintenance/port/greater) -"cza" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"czg" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/darkblue/end{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/rec) -"czi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/glass, -/area/station/maintenance/space_hut/observatory) -"czy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"czB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"czD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"czO" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"czR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"cAf" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/iron, -/area/station/medical/virology) -"cAg" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/librarian, -/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/library) -"cAj" = ( -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = 32 - }, -/obj/machinery/vending/wardrobe/det_wardrobe, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"cAw" = ( -/obj/structure/cable, -/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/bot, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"cAA" = ( -/obj/structure/closet/firecloset, -/obj/machinery/camera/directional/east{ - c_tag = "Science - Research Division Access"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/research) -"cAH" = ( -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Courtroom - Center" - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"cAJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/medical/virology) -"cAU" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/oxygen_input{ - dir = 4 - }, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"cAV" = ( -/obj/effect/landmark/start/hangover, -/obj/machinery/light_switch/directional/north{ - pixel_x = -8 - }, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"cBd" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"cBm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"cBn" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/machinery/light/directional/east, -/obj/structure/extinguisher_cabinet/directional/north{ - pixel_x = 32 - }, -/obj/item/radio/intercom/directional/east{ - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 4 - }, -/obj/machinery/keycard_auth/directional/east{ - pixel_x = 25; - pixel_y = -8 - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"cBr" = ( -/obj/machinery/suit_storage_unit/atmos, -/obj/effect/turf_decal/box/red/corners{ - dir = 4 - }, -/obj/effect/turf_decal/box/red/corners, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/atmos/storage) -"cBy" = ( -/obj/machinery/holopad{ - pixel_x = -16 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"cBC" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/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) -"cBE" = ( -/obj/machinery/status_display/ai/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/captain) -"cBL" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cBN" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/security/courtroom) -"cBT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"cBU" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"cCb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Warehouse Maintenance" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"cCc" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/suit/jacket{ - desc = "All the class of a trenchcoat without the security fibers."; - icon_state = "noirdet"; - name = "trenchcoat" - }, -/obj/item/clothing/suit/jacket{ - desc = "All the class of a trenchcoat without the security fibers."; - icon_state = "detective"; - name = "trenchcoat" - }, -/obj/item/clothing/head/fedora, -/obj/item/clothing/head/fedora{ - icon_state = "detective" - }, -/turf/open/floor/plating, -/area/station/security/detectives_office/private_investigators_office) -"cCd" = ( -/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/simple/scrubbers/visible, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"cCf" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "External Airlock" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"cCn" = ( -/obj/structure/table/reinforced, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron, -/area/station/engineering/main) -"cCr" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/structure/sign/poster/official/ian{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"cCw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/work) -"cCF" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - 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/research) -"cCJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/office) -"cCK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "roboticsprivacy"; - name = "Robotics Shutters"; - dir = 4 - }, -/turf/open/floor/plating, -/area/station/science/robotics/lab) -"cCN" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"cCP" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"cCU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"cCX" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/machinery/meter, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"cCY" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"cDc" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/white, -/area/station/science/auxlab) -"cDd" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external/glass{ - name = "Supply Door Airlock" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron, -/area/station/cargo/storage) -"cDm" = ( -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/security/brig) -"cDs" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"cDH" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"cDK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/maintenance/disposal/incinerator) -"cDM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/item/kirbyplants/random, -/obj/machinery/camera/directional/west{ - c_tag = "Atmospherics - Foyer"; - name = "atmospherics camera" - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"cDT" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"cDU" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/north, -/turf/open/floor/wood, -/area/station/service/library) -"cEg" = ( -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/flasher/directional/south{ - id = "brigflashdoor"; - pixel_x = 26 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"cEh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"cEo" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/machinery/requests_console/directional/north{ - department = "Tool Storage"; - name = "Tool Storage Requests Console" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"cEp" = ( -/obj/machinery/computer/monitor, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"cEq" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"cEr" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/light/small/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"cEx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"cEK" = ( -/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/holopad, -/obj/effect/turf_decal/bot, -/obj/machinery/duct, -/obj/effect/landmark/start/cook, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"cEL" = ( -/obj/machinery/light_switch/directional/north, -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"cEM" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/thermomachine/heater/on{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cEO" = ( -/obj/machinery/cell_charger, -/obj/structure/table/reinforced, -/obj/machinery/status_display/ai/directional/north, -/obj/item/rcl/pre_loaded, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot, -/obj/item/stock_parts/cell/high, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"cEQ" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=service4"; - location = "service3" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"cER" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/locker) -"cES" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/engineering/atmos/storage/gas) -"cEX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/prison) -"cFe" = ( -/obj/machinery/duct, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"cFq" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/engine/atmos) -"cFs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"cFw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"cFx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"cFz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/storage) -"cFF" = ( -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/station/holodeck/rec_center) -"cFG" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Holodeck - Fore 1"; - name = "holodeck camera" - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/station/holodeck/rec_center) -"cFN" = ( -/obj/effect/spawner/random/entertainment/arcade{ - dir = 1 - }, -/obj/machinery/light/dim/directional/south, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den/gaming) -"cFR" = ( -/obj/item/trash/chips, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = " Prison - (East) Brown Wing Upper"; - dir = 8; - network = list("ss13","prison") - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/prison) -"cGh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"cGl" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plating, -/area/station/service/library/abandoned) -"cGx" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/hallway/secondary/entry) -"cGz" = ( -/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/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Turbine Generator Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"cGA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xeno6"; - name = "Creature Cell #6" - }, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"cGD" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/machinery/smartfridge/organ, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/theatre) -"cGM" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/chair/sofa/bench{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"cGR" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/pen, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"cGV" = ( -/turf/closed/wall, -/area/station/cargo/miningoffice) -"cHa" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"cHe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"cHg" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"cHk" = ( -/obj/structure/table/wood, -/obj/item/folder/yellow, -/obj/item/clothing/glasses/sunglasses/big{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/iron/grimy, -/area/station/service/lawoffice) -"cHm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/item/radio/intercom/directional/south, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"cHu" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"cHB" = ( -/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 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/theater) -"cHH" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/light/directional/north, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/wood, -/area/station/commons/dorms) -"cHY" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"cIa" = ( -/obj/effect/landmark/start/hangover, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Service - Hydroponics Kitchen Access"; - name = "service camera" - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/kitchen) -"cIb" = ( -/obj/machinery/door/airlock/external{ - name = "Auxiliary Base Airlock" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/construction/mining/aux_base) -"cIe" = ( -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"cIn" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"cIq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/smooth, -/area/station/hallway/secondary/entry) -"cIs" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics - Nitrogen Cell"; - name = "atmospherics camera" - }, -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"cIA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"cIG" = ( -/obj/item/circular_saw, -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"cIO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/structure/sign/warning/secure_area/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"cIU" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"cIZ" = ( -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"cJp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/commons/toilet/locker) -"cJA" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/service/library) -"cJD" = ( -/turf/closed/wall, -/area/station/security/checkpoint/escape) -"cJH" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/station/security/checkpoint/escape) -"cJJ" = ( -/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/tile/green/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"cJM" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/destructive_scanner, -/obj/effect/turf_decal/stripes/end, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"cJZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"cKa" = ( -/obj/structure/table/reinforced/rglass, -/obj/item/hairbrush, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/item/lipstick/random, -/obj/machinery/camera/directional/east{ - c_tag = "Salon - Massage Parlour" - }, -/turf/open/floor/iron, -/area/service/salon) -"cKm" = ( -/obj/structure/chair/comfy/black, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"cKp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/station/maintenance/port/fore) -"cKu" = ( -/obj/structure/sign/poster/official/help_others{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"cKv" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/structure/reagent_dispensers/wall/peppertank/directional/east, -/turf/open/floor/iron, -/area/station/security/lockers) -"cKx" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"cKB" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/security/processing) -"cKE" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"cKK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Atmospherics - Mixing Room"; - name = "atmospherics camera" - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/mix) -"cKN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/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/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"cKR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"cLt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"cLv" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/emergency, -/obj/item/wrench, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/aft) -"cLz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"cLO" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/railing{ - dir = 9 - }, -/obj/structure/rack, -/obj/item/wrench, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/grenade/chem_grenade/antiweed{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/effect/turf_decal/box/corners, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"cLR" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/command/heads_quarters/rd) -"cMe" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/central/fore) -"cMg" = ( -/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/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"cMl" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"cMw" = ( -/obj/machinery/holopad, -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/station/service/theater) -"cMA" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/mid_joiner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"cMD" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Telecomms - Chamber Starboard"; - name = "telecomms camera"; - network = list("ss13","tcomms") - }, -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"cME" = ( -/obj/structure/table/wood/poker, -/obj/effect/spawner/random/entertainment/gambling, -/turf/open/floor/iron/grimy, -/area/station/service/abandoned_gambling_den) -"cMG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_output{ - dir = 4 - }, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"cMI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/iron, -/area/station/maintenance/department/engine/atmos) -"cMS" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"cNf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/storage) -"cNp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Teleport Access" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/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, -/obj/effect/mapping_helpers/airlock/access/all/command/teleporter, -/turf/open/floor/iron, -/area/station/command/teleporter) -"cNs" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"cNv" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/service/theater) -"cNy" = ( -/obj/item/kirbyplants/random, -/obj/item/storage/secure/safe/directional/east, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/captain/private) -"cNB" = ( -/obj/structure/chair/sofa/left{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/library) -"cNS" = ( -/obj/structure/urinal/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/hangover, -/turf/open/floor/plating, -/area/station/commons/toilet/locker) -"cNT" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/pen/blue, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/button/door/directional/west{ - id = "Dorm6"; - name = "Dormitory Door Lock"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/commons/dorms) -"cOb" = ( -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"cOg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/south, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"cOi" = ( -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/turf/open/floor/wood, -/area/station/commons/dorms) -"cOD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"cOF" = ( -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"cOU" = ( -/obj/structure/weightmachine/weightlifter, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/commons/fitness/recreation) -"cOY" = ( -/obj/effect/landmark/start/medical_doctor, -/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/surgery/aft) -"cPg" = ( -/obj/effect/turf_decal/bot, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"cPl" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/chaplain, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/service/chapel/office) -"cPu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor/right/directional/south{ - dir = 8; - name = "Customs Desk"; - req_access = list("command") - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/aft) -"cPF" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil, -/obj/item/electronics/airalarm, -/obj/item/electronics/firealarm, -/obj/item/stock_parts/cell/high, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"cPG" = ( -/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/security/prison/work) -"cPL" = ( -/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/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"cPQ" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/security/office) -"cPR" = ( -/turf/closed/wall, -/area/station/command/heads_quarters/hos) -"cPS" = ( -/obj/structure/sign/departments/court/directional/south, -/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/starboard) -"cPT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Morgue" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, -/turf/open/floor/iron, -/area/station/medical/morgue) -"cPU" = ( -/obj/machinery/power/smes, -/obj/machinery/light/small/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"cQd" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/theatre) -"cQh" = ( -/obj/machinery/porta_turret/ai, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"cQv" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"cQw" = ( -/obj/item/kirbyplants/random, -/obj/structure/sign/warning/no_smoking/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"cQy" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Bridge - Command Chair"; - name = "command camera" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/button/door/directional/south{ - id = "bridgewindows"; - name = "Bridge View Blast Doors"; - pixel_x = -6; - req_access = list("command") - }, -/obj/machinery/button/door/directional/south{ - id = "bridgedoors"; - name = "Bridge Access Blast Doors"; - pixel_x = 6; - req_access = list("command") - }, -/turf/open/floor/carpet, -/area/station/command/bridge) -"cQA" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/wall, -/area/station/medical/surgery/theatre) -"cQC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/costume/mafia/checkered, -/obj/structure/chair/stool/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"cQL" = ( -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"cQY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/security/prison/upper) -"cRn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"cRs" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cRv" = ( -/obj/structure/reflector/single, -/obj/machinery/light/directional/north, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"cRA" = ( -/obj/structure/flora/bush/generic/style_random, -/obj/structure/flora/bush/pointy/style_random, -/obj/structure/flora/bush/lavendergrass/style_random, -/turf/open/misc/grass, -/area/station/hallway/primary/fore) -"cRD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/common/cryopods) -"cRW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"cRX" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"cSn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/medical/virology) -"cSr" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - color = "#FFFF00" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cSv" = ( -/obj/machinery/recharge_station, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"cSy" = ( -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Creature Pen"; - req_access = list("research") - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xeno4"; - name = "Creature Cell #4" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"cSK" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/food_or_drink/donkpockets, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"cSP" = ( -/obj/structure/table/optable, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/medical/surgery/theatre) -"cTi" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Holodeck - Aft 1"; - name = "holodeck camera" - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/station/holodeck/rec_center) -"cTp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"cTt" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"cTv" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/obj/item/clothing/head/welding, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"cTy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning, -/obj/effect/turf_decal/siding/yellow, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cTG" = ( -/obj/structure/closet/crate/large, -/obj/item/melee/chainofcommand{ - damtype = "stamina"; - desc = "Feels a lot softer than a real whip. Looks like it'll still sting and hurt, but it won't leave deep lacerations."; - force = 30; - name = "leather whip" - }, -/obj/item/grenade/smokebomb, -/obj/item/screwdriver, -/obj/item/toy/crayon/spraycan, -/obj/item/radio, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"cTL" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"cUj" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/lobby) -"cUz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters{ - id = "construction"; - name = "Construction Shutters"; - dir = 8 - }, -/turf/open/floor/iron/textured, -/area/station/construction/mining/aux_base) -"cUD" = ( -/turf/closed/wall, -/area/station/service/cafeteria) -"cUF" = ( -/turf/closed/wall, -/area/station/engineering/atmos/project) -"cUH" = ( -/obj/structure/sign/warning/secure_area/directional/south, -/obj/effect/turf_decal/bot, -/obj/structure/closet/l3closet/virology, -/turf/open/floor/iron, -/area/station/medical/virology) -"cUJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor/massdriver_ordnance, -/obj/structure/fans/tiny, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/testlab) -"cUK" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hos) -"cVe" = ( -/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/secondary/entry) -"cVf" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos/mix) -"cVg" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"cVl" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"cVm" = ( -/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/grimy, -/area/station/service/chapel) -"cVx" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"cVU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"cVV" = ( -/obj/structure/rack, -/obj/item/reagent_containers/glass/bucket{ - pixel_x = -4 - }, -/obj/item/reagent_containers/glass/bucket{ - pixel_x = 4 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/item/wirecutters, -/obj/item/shovel/spade, -/obj/item/shovel/spade, -/obj/item/cultivator, -/obj/item/cultivator, -/obj/item/hatchet, -/obj/item/storage/bag/plants, -/obj/item/storage/bag/plants, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/secateurs, -/obj/item/secateurs, -/obj/machinery/light/directional/north, -/obj/item/plant_analyzer, -/obj/item/plant_analyzer, -/turf/open/floor/wood, -/area/station/security/prison/garden) -"cVW" = ( -/obj/structure/dresser, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/theater/abandoned) -"cWp" = ( -/obj/effect/turf_decal/tile/yellow, -/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/white, -/area/station/medical/chemistry) -"cWv" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/hallway/secondary/construction) -"cWB" = ( -/obj/structure/fluff/metalpole{ - dir = 6 - }, -/obj/structure/fluff/metalpole/end, -/turf/open/space/basic, -/area/station/hallway/secondary/entry) -"cXi" = ( -/obj/machinery/rnd/production/techfab/department/security, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/box, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"cXw" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/chair/sofa/bench/left{ - 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/service/salon) -"cXx" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/transit_tube/crossing/horizontal, -/turf/open/space/basic, -/area/space/nearstation) -"cXy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/storage) -"cXB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters" - }, -/obj/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/command/captain, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"cXC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"cXM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Chemistry" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, -/turf/open/floor/iron, -/area/station/medical/chemistry) -"cYr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/starboard/aft) -"cYw" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/landmark/start/scientist, -/obj/machinery/light_switch/directional/north{ - pixel_x = -8 - }, -/obj/structure/cable, -/obj/machinery/button/door{ - id = "rdordnance"; - name = "Ordnance Containment Control"; - pixel_x = 8; - pixel_y = 26; - req_access = list("rd") - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"cYK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-toxins-passthrough" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"cYX" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Airlock" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"cYY" = ( -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/engineering/main) -"cZe" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/customs_agent, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"cZv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"cZH" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/hallway/secondary/entry) -"cZM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"cZO" = ( -/turf/open/floor/iron/dark, -/area/station/service/library) -"cZS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"cZU" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/vault, -/area/station/commons/fitness/recreation) -"cZY" = ( -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"dac" = ( -/obj/machinery/light/directional/west, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"dag" = ( -/obj/effect/spawner/random/structure/grille, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"dau" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/light/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Courtroom - Aft" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"dax" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/security/prison/garden) -"day" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"daF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/chair/stool/bar/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"daR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"daZ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - name = "Hydroponics Junction"; - sortType = 21 - }, -/obj/machinery/duct, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"dbg" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/storage/fancy/candle_box{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/fancy/candle_box, -/obj/machinery/computer/security/telescreen/entertainment/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/library) -"dbl" = ( -/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, -/area/station/hallway/secondary/exit/departure_lounge) -"dbu" = ( -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"dbw" = ( -/obj/structure/disposalpipe/segment, -/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/security/brig) -"dbx" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/storage) -"dby" = ( -/obj/structure/disposalpipe/segment, -/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/machinery/door/airlock/atmos{ - name = "Atmospherics" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"dbK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/obj/machinery/newscaster/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"dbO" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/chair/sofa/bench/right{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"dbT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Mix to Filter" - }, -/obj/effect/turf_decal/box, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"dbZ" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001; - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/secure/safe/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"dci" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"dco" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"dcL" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/science/research) -"dcR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"dcS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "QM #2" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/cargo/storage) -"ddg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/kitchen) -"ddl" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"ddn" = ( -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"ddv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"ddw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/kitchen, -/area/station/security/prison/mess) -"ddx" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"ddE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/two, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/starboard) -"ddX" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"ddZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"ded" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"def" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/obj/item/crowbar/red, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"deh" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/chair/stool/bar/directional/east, -/turf/open/floor/carpet/green, -/area/station/commons/lounge) -"den" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"dep" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/machinery/duct, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"deE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet/blue, -/area/station/commons/vacant_room/office) -"deG" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"deT" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/machinery/light/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/command/gateway) -"deX" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"deY" = ( -/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/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"dfa" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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) -"dfb" = ( -/obj/machinery/telecomms/bus/preset_one, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white/telecomms, -/area/station/tcommsat/server) -"dfh" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/medical/medbay/lobby) -"dfk" = ( -/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/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"dfr" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/warden) -"dfB" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"dfD" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Airlock" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"dfG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/starboard) -"dfV" = ( -/obj/machinery/door/airlock/command{ - name = "Research Division Server Room" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/rd, -/turf/open/floor/iron/dark, -/area/station/science/server) -"dge" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"dgg" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"dgk" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/transit_tube) -"dgo" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/structure/sign/poster/official/plasma_effects{ - pixel_y = 32 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"dgu" = ( -/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) -"dgA" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"dgC" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/command/gateway) -"dgD" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/delivery, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"dgH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"dgI" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"dgO" = ( -/obj/structure/table/reinforced, -/obj/item/storage/belt/utility, -/obj/item/weldingtool, -/obj/item/clothing/head/welding, -/obj/effect/turf_decal/bot, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"dhk" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"dhD" = ( -/obj/machinery/iv_drip, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/medical/virology) -"dhF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemisttop"; - name = "Chemistry Lobby Shutters"; - dir = 1 - }, -/turf/open/floor/plating, -/area/station/medical/pharmacy) -"dhI" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/dorms) -"dhR" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"din" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"diC" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/station/security/prison) -"diD" = ( -/obj/effect/decal/remains/xeno, -/obj/effect/decal/cleanable/xenoblood, -/turf/open/floor/circuit/green, -/area/station/science/xenobiology) -"diL" = ( -/turf/closed/wall/r_wall, -/area/station/command/bridge) -"djd" = ( -/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/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/airlock/engineering/glass{ - name = "Shared Engineering Storage" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, -/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"djf" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/project) -"djn" = ( -/obj/structure/table/wood, -/obj/item/toy/talking/codex_gigas, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"djp" = ( -/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, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/poddoor/preopen{ - id = "engielock"; - name = "Engineering Lockdown Blast Door" - }, -/turf/open/floor/iron/half, -/area/station/engineering/main) -"djq" = ( -/obj/effect/landmark/start/hangover, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"djt" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/office) -"djv" = ( -/obj/item/storage/toolbox/emergency, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den) -"djw" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"djI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark/brown/side{ - dir = 10 - }, -/area/station/security/prison/safe) -"djP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"djR" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"dkz" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/commons/toilet/restrooms) -"dkC" = ( -/obj/machinery/door/airlock/external{ - name = "Security External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/plating, -/area/station/security/execution/transfer) -"dkD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"dkH" = ( -/obj/effect/landmark/xeno_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"dkZ" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/medical/surgery/theatre) -"dla" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"dld" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"dlg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Emergency Escape" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/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, -/obj/effect/mapping_helpers/airlock/access/all/command/captain, -/turf/open/floor/iron, -/area/station/maintenance/central) -"dlj" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"dll" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"dlm" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"dlx" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/command/teleporter) -"dlz" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/item/clothing/mask/gas/sechailer, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/security/office) -"dlC" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"dlD" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"dlK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"dlL" = ( -/obj/machinery/portable_atmospherics/scrubber/huge/movable, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/textured_large, -/area/station/engineering/atmos/project) -"dmu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/cargo/storage) -"dmx" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Xenobiology Kill Room" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"dmC" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/machinery/computer/cryopod{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/delivery/white{ - color = "#00ff00"; - name = "green" - }, -/turf/open/floor/iron/dark, -/area/station/security/prison) -"dmK" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/secure/loot, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"dnd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/bluespace_vendor/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"dnm" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/medical/surgery/theatre) -"dnp" = ( -/obj/effect/turf_decal/trimline/darkblue/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/obj/structure/cable, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/security/prison/rec) -"dnq" = ( -/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/effect/turf_decal/tile/neutral/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"dnw" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"dnC" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/structure/sign/poster/ripped{ - pixel_y = 32 - }, -/turf/open/floor/iron/grimy, -/area/station/maintenance/port/fore) -"dnK" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/tcommsat/server) -"dnL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"dnM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"dnV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/aft) -"dnW" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"dnZ" = ( -/obj/effect/landmark/start/roboticist, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"dob" = ( -/obj/effect/turf_decal/stripes/white/line{ - color = "#52B4E9"; - dir = 8; - name = "blue line" - }, -/turf/open/floor/iron/dark/blue/side{ - dir = 8 - }, -/area/station/security/prison) -"dod" = ( -/obj/machinery/disposal/bin, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/cmo) -"dok" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"dol" = ( -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"doy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"doz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"doG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron{ - dir = 1; - icon_state = "chapel" - }, -/area/station/service/chapel) -"doI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"doL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"doM" = ( -/obj/structure/cable, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/security/prison) -"doP" = ( -/obj/structure/cable, -/obj/structure/sign/departments/psychology/directional/east, -/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) -"doR" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"dpc" = ( -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"dps" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/hydroponics/soil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/hydroponics/garden/abandoned) -"dpQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/box, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/engine/atmos) -"dql" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/range) -"dqo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"dqt" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 4 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Departures Customs"; - name = "customs camera" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/aft) -"dqv" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Mining Dock Airlock" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"dqC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/north, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"dqH" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"dqX" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron, -/area/station/engineering/main) -"dra" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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) -"drj" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"drr" = ( -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"drt" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"dru" = ( -/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, -/area/station/security/processing) -"drQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/plaque{ - icon_state = "L3" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"drT" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "medbay-passthrough" - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"dsd" = ( -/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 = "CMO's Junction"; - sortType = 10 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/cmo) -"dse" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/grille/broken, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"dsj" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/delivery, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron, -/area/station/engineering/main) -"dsq" = ( -/obj/machinery/shieldgen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/no_smoking/directional/north, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/main) -"dsu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/obj/machinery/power/port_gen/pacman/pre_loaded, -/turf/open/floor/iron, -/area/station/maintenance/starboard) -"dsy" = ( -/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, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"dsz" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/structure/table/reinforced/rglass, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/item/lipstick/random, -/obj/item/reagent_containers/spray/quantum_hair_dye{ - pixel_x = 6 - }, -/turf/open/floor/iron, -/area/service/salon) -"dsI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"dsN" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"dsO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"dsS" = ( -/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/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Storage" - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/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, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"dtb" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/white, -/area/station/science/auxlab) -"dtc" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"dtj" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/structure/sign/warning/no_smoking/directional/east, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"dtk" = ( -/obj/structure/table/wood/poker, -/obj/item/clothing/mask/cigarette/pipe, -/turf/open/floor/carpet/green, -/area/station/commons/lounge) -"dtq" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/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, -/turf/open/floor/iron, -/area/station/science/breakroom) -"dtL" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/supply{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"dtO" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"dtS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"dtW" = ( -/obj/structure/table, -/obj/effect/spawner/random/food_or_drink/snack, -/obj/effect/spawner/random/trash/food_packaging, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"dtX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "engine-side" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"dua" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - id_tag = "Dorm4"; - name = "Cabin 4" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/dorms) -"dux" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/shaft_miner, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"duA" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/door/airlock/public/glass{ - name = "Barbershop" - }, -/turf/open/floor/iron, -/area/service/salon) -"duD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/poddoor/preopen{ - id = "transitlock"; - name = "Transit Tube Lockdown Door" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/half, -/area/station/engineering/transit_tube) -"duG" = ( -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"duN" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/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, -/area/station/medical/break_room) -"duO" = ( -/obj/machinery/status_display/ai/directional/north, -/obj/machinery/light_switch/directional/east{ - pixel_x = 38 - }, -/obj/structure/closet/secure_closet/security/med, -/obj/machinery/airalarm/directional/north{ - pixel_x = 32 - }, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"duR" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cmoshutter"; - name = "CMO Office Shutters"; - dir = 1 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/command/heads_quarters/cmo) -"duX" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/chair/sofa/bench/left{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"dve" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"dvu" = ( -/obj/machinery/door/airlock/engineering{ - name = "Starboard Quarter Solar Access" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/maintenance/solars/starboard/aft) -"dvv" = ( -/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, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"dvy" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"dvA" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/iron/dark/corner, -/area/station/maintenance/disposal/incinerator) -"dvG" = ( -/turf/closed/wall/r_wall, -/area/station/science/robotics/mechbay) -"dvK" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/main) -"dvW" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"dwr" = ( -/obj/machinery/power/tracker, -/obj/structure/cable, -/turf/open/floor/iron/solarpanel/airless, -/area/station/solars/starboard/aft) -"dws" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron{ - amount = 30 - }, -/obj/item/stack/sheet/glass/fifty, -/obj/item/crowbar/red, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/aft) -"dwv" = ( -/obj/structure/disposalpipe/segment, -/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, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/landmark/navigate_destination, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/engineering/main) -"dwC" = ( -/obj/effect/spawner/random/structure/girder{ - loot = list(/obj/structure/falsewall=50,/turf/closed/wall=50); - name = "fifty% falsewall, fifty% wall" - }, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"dwD" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"dwI" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/spawner/random/maintenance/two, -/obj/structure/closet, -/obj/effect/spawner/random/trash/janitor_supplies, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"dwJ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"dwN" = ( -/turf/open/floor/iron/half{ - dir = 8 - }, -/area/station/service/hydroponics) -"dwX" = ( -/obj/machinery/biogenerator, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker/large, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/security/prison/garden) -"dwY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/main) -"dwZ" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"dxk" = ( -/obj/structure/chair/stool/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/theater) -"dxl" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/status_display/evac/directional/west, -/obj/structure/filingcabinet/chestdrawer, -/mob/living/simple_animal/parrot/poly, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"dxq" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Airlock" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"dxs" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/directional/north, -/obj/item/folder/red, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"dxT" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"dxV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/storage/box/lights/mixed{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/storage/box/lights/mixed{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/item/clothing/gloves/color/purple, -/obj/item/clothing/gloves/color/orange{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/checker, -/area/station/service/janitor) -"dxW" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hop) -"dyb" = ( -/obj/machinery/griddle, -/obj/machinery/duct, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"dyl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"dyH" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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, -/area/station/security/brig) -"dyW" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"dzk" = ( -/obj/effect/turf_decal/trimline/green/end, -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/trimline/green/mid_joiner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/mid_joiner{ - dir = 4 - }, -/turf/open/floor/iron/half{ - dir = 8 - }, -/area/station/service/hydroponics/garden) -"dzw" = ( -/turf/closed/wall/r_wall, -/area/station/security/brig) -"dzJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/east, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/commons/toilet/restrooms) -"dAa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"dAc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/commons/dorms) -"dAf" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"dAl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"dAy" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/iron/dark, -/area/station/service/library) -"dAz" = ( -/obj/machinery/computer/mecha{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"dBb" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/medical/break_room) -"dBc" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"dBf" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/security/brig) -"dBg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"dBh" = ( -/obj/effect/turf_decal/tile/blue, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"dBj" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Theater" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/service/theater) -"dBs" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"dBK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"dBM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/flasher/directional/north{ - id = "brig2" - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"dBO" = ( -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) -"dBQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Surgery Observation" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/theatre) -"dCd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"dCk" = ( -/turf/closed/wall/r_wall, -/area/station/security/detectives_office) -"dCH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"dCL" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/maintenance/department/electrical) -"dCR" = ( -/obj/structure/cable, -/obj/structure/bed, -/obj/item/bedsheet/qm, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"dCV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/prison) -"dCW" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"dCX" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden{ - dir = 10 - }, -/obj/structure/table/reinforced, -/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, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/storage/gas) -"dCZ" = ( -/obj/machinery/chem_master, -/obj/structure/sign/warning/no_smoking/directional/west{ - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron, -/area/station/medical/pharmacy) -"dDa" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"dDP" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/service/library/abandoned) -"dDT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 1 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/engine/atmos) -"dDU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"dEb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/plating, -/area/station/security/detectives_office/private_investigators_office) -"dEe" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/electronic_marketing_den) -"dEl" = ( -/obj/structure/table, -/obj/item/storage/medkit/regular, -/obj/machinery/requests_console/directional/north{ - department = "Cargo Bay"; - departmentType = 2; - name = "Cargo Bay Requests Console" - }, -/obj/machinery/camera/directional/north{ - c_tag = "Cargo - Office"; - name = "cargo camera" - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"dEp" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"dEs" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"dEC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"dEF" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Xenobiology - Cell 6"; - name = "xenobiology camera"; - network = list("ss13","xeno","rd") - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"dEL" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "ceblast"; - name = "Chief Engineer's Office Blast Doors" - }, -/turf/open/floor/plating, -/area/station/command/heads_quarters/ce) -"dEP" = ( -/obj/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/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"dFi" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "prisonlockdown4"; - name = "Lockdown" - }, -/turf/open/floor/iron/dark, -/area/station/security/prison) -"dFm" = ( -/obj/effect/landmark/start/hangover/closet, -/obj/structure/closet/crate, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/item/airlock_painter/decal, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"dFv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution) -"dFw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/yellow, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"dFF" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"dFI" = ( -/obj/effect/turf_decal/tile/blue, -/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/aft) -"dFL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/plaque{ - icon_state = "L14" - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"dFQ" = ( -/obj/effect/turf_decal/stripes/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/command/gateway) -"dFS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Arrivals - Janitorial Access"; - name = "arrivals camera" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"dGi" = ( -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"dGr" = ( -/obj/machinery/door/window/brigdoor{ - dir = 8; - name = "Secure Creature Pen"; - req_access = list("research") - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenosecure"; - name = "Secure Pen Shutters" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"dGu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/item/reagent_containers/food/drinks/flask/det, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"dGx" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/door/window/left/directional/south{ - dir = 8; - name = "Research Lab Desk"; - req_access = list("science") - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rndlab2"; - name = "Secondary Research and Development Shutter"; - dir = 4 - }, -/obj/machinery/door/window/right/directional/east, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/lab) -"dGy" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"dGM" = ( -/obj/item/radio/intercom/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"dGS" = ( -/turf/closed/wall, -/area/station/engineering/storage/tech) -"dGV" = ( -/obj/effect/landmark/secequipment, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/office) -"dHb" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/aft) -"dHo" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plating, -/area/station/service/library/abandoned) -"dHp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"dHx" = ( -/obj/structure/sign/warning/radiation/directional/north, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"dHy" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"dHG" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/commons/locker) -"dHI" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/science/research) -"dHL" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Barbershop" - }, -/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, -/area/service/salon) -"dHM" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/folder/blue{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/lighter, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"dHQ" = ( -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"dIh" = ( -/obj/structure/chair, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"dIk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"dIm" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"dIn" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/obj/machinery/power/port_gen/pacman/pre_loaded, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/aft) -"dIr" = ( -/obj/effect/turf_decal/tile/green, -/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/virology) -"dIy" = ( -/obj/item/radio/off, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"dIE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"dIF" = ( -/obj/machinery/door/airlock{ - id_tag = "Arrivals_Toilet2"; - name = "Toilet Unit 2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/toilet/restrooms) -"dIH" = ( -/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_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"dIN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"dIT" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"dIW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"dJw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/east{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "prison intercom"; - prison_radio = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 5 - }, -/area/station/security/prison) -"dJy" = ( -/obj/structure/chair/comfy{ - color = "#596479"; - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/blue/side, -/area/station/security/prison/safe) -"dJO" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"dJX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/starboard) -"dKb" = ( -/turf/open/floor/iron, -/area/station/security/office) -"dKe" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"dKg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"dKx" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"dKA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/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/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard) -"dKC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"dKD" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/medbay/central) -"dKE" = ( -/obj/structure/window/reinforced, -/obj/machinery/door/window{ - dir = 4; - name = "Fitness Ring" - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"dKK" = ( -/obj/machinery/porta_turret/ai, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"dLd" = ( -/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/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Break Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"dLg" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"dLq" = ( -/obj/machinery/porta_turret/ai, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"dLu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"dLB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"dLJ" = ( -/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, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"dMs" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/taperecorder, -/turf/open/floor/iron/dark, -/area/station/service/library/abandoned) -"dMy" = ( -/obj/structure/flora/bush/ferny/style_random, -/obj/structure/flora/bush/leavy/style_random, -/turf/open/misc/grass, -/area/station/hallway/primary/fore) -"dMA" = ( -/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, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"dMD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold/green/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/meter, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"dMJ" = ( -/obj/machinery/space_heater, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/starboard/aft) -"dMM" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Central Hallway - Dormitory Hallway"; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"dMN" = ( -/obj/structure/window/reinforced, -/obj/machinery/camera/directional/south{ - c_tag = "AI Satellite - Fore"; - name = "ai camera"; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"dMQ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"dNe" = ( -/obj/structure/table/reinforced, -/obj/machinery/microwave, -/obj/machinery/light/directional/west, -/obj/item/radio/intercom/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Service - Kitchen"; - name = "service camera" - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"dNg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Antechamber" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/command/minisat, -/obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"dNl" = ( -/obj/machinery/portable_atmospherics/pump{ - name = "Lil Pump" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"dNn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"dNw" = ( -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"dNN" = ( -/turf/closed/wall/r_wall, -/area/station/science/research) -"dNP" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"dNU" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"dNX" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/mmi, -/obj/item/mmi, -/obj/item/mmi, -/obj/structure/sign/departments/medbay/alt/directional/south, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"dOk" = ( -/turf/open/floor/circuit, -/area/station/science/robotics/mechbay) -"dOr" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/engineering/main) -"dOC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple/fourcorners, -/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; - sortType = 13 - }, -/turf/open/floor/iron, -/area/station/science/research) -"dOG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"dOQ" = ( -/obj/structure/sign/departments/science, -/turf/closed/wall, -/area/station/science/research) -"dOW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/firealarm/directional/south, -/obj/machinery/light/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"dOX" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"dOY" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Gateway Chamber" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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/command/gateway, -/turf/open/floor/iron, -/area/station/command/gateway) -"dOZ" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"dPa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/skill_station, -/turf/open/floor/carpet, -/area/station/service/library) -"dPi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"dPp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/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, -/area/station/command/gateway) -"dPt" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"dPy" = ( -/obj/machinery/light/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Detective's Office" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"dPB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"dPC" = ( -/obj/structure/table, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_x = -3; - pixel_y = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"dPD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"dPN" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/obj/structure/sign/warning/secure_area/directional/east, -/turf/open/space/basic, -/area/space/nearstation) -"dPR" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/solars/port/aft) -"dPY" = ( -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/anticorner{ - dir = 8 - }, -/turf/open/floor/iron/dark/smooth_corner{ - dir = 4 - }, -/area/station/engineering/gravity_generator) -"dQf" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Personnel's Quarters" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/command/hop, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"dQu" = ( -/obj/structure/disposalpipe/segment, -/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, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/engineering/main) -"dQv" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"dQS" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"dRb" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/hallway/primary/fore) -"dRh" = ( -/obj/machinery/telecomms/bus/preset_four, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/telecomms, -/area/station/tcommsat/server) -"dRo" = ( -/obj/structure/chair/stool/bar/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"dRt" = ( -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"dRu" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/machinery/light/directional/south, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/science/breakroom) -"dRA" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"dRC" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"dRG" = ( -/obj/structure/rack, -/obj/item/crowbar/red, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"dRJ" = ( -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/fore) -"dRK" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"dRO" = ( -/obj/effect/turf_decal/tile/brown/half/contrasted, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"dSo" = ( -/obj/effect/turf_decal/stripes/line{ - 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/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/science/ordnance/testlab) -"dSv" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/science/research) -"dSx" = ( -/obj/machinery/vending/autodrobe/all_access, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"dTu" = ( -/obj/machinery/light/directional/west, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"dTB" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"dTD" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"dTF" = ( -/obj/structure/fluff/metalpole{ - dir = 1 - }, -/obj/structure/fluff/metalpole/end/right{ - dir = 1 - }, -/turf/open/space/basic, -/area/space) -"dTV" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/landmark/start/orderly, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"dTW" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/medical/morgue) -"dTZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"dUl" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/toy/figure/curator, -/obj/item/radio/intercom/directional/south, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"dUn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"dUx" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"dUH" = ( -/obj/effect/landmark/start/hangover/closet, -/obj/effect/spawner/random/clothing/wardrobe_closet_colored, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"dUN" = ( -/obj/item/stack/cable_coil, -/obj/item/bodypart/r_arm/robot{ - pixel_x = 3 - }, -/obj/item/bodypart/l_arm/robot{ - pixel_x = -3 - }, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/structure/table/reinforced, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/effect/turf_decal/bot, -/obj/machinery/ecto_sniffer{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"dUZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/aft) -"dVa" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/siding/white/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/fore) -"dVe" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"dVg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/horizontal, -/turf/open/space/basic, -/area/space/nearstation) -"dVh" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/kitchen/abandoned) -"dVl" = ( -/obj/effect/decal/cleanable/oil/slippery, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"dVC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/engineering_guard, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"dVF" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"dVT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"dVU" = ( -/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/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"dWb" = ( -/obj/structure/closet/crate, -/obj/item/reagent_containers/glass/bowl, -/obj/effect/spawner/random/contraband/prison, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/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, -/turf/open/floor/iron/kitchen, -/area/station/security/prison/mess) -"dWf" = ( -/obj/structure/cable, -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/grimy, -/area/station/commons/vacant_room/office) -"dWk" = ( -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/machinery/newscaster/directional/north, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"dWn" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"dWz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 4; - id = "cargodisposals" - }, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"dWF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"dWG" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"dWT" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Departures - Aft"; - name = "departures camera" - }, -/obj/effect/turf_decal/stripes/line, -/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, -/area/station/hallway/secondary/exit/departure_lounge) -"dXd" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"dXs" = ( -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"dXw" = ( -/obj/effect/landmark/start/chaplain, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"dYj" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/hfr_room) -"dYn" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"dYr" = ( -/obj/machinery/light/directional/east, -/obj/structure/bed, -/obj/item/bedsheet/rd, -/obj/machinery/status_display/evac/directional/east, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"dYt" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"dYy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/table_or_rack, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"dYC" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/glass, -/obj/item/stock_parts/micro_laser, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"dYK" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/computer/atmos_control/air_tank{ - dir = 4 - }, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/engineering/atmos) -"dYL" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/turret_protected/aisat_interior) -"dZw" = ( -/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, -/obj/machinery/firealarm/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Service - Service Hall"; - dir = 9; - name = "service camera" - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"dZC" = ( -/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/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"dZD" = ( -/obj/machinery/telecomms/server/presets/science, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron/white/telecomms, -/area/station/tcommsat/server) -"dZF" = ( -/obj/machinery/camera/directional/west, -/obj/machinery/newscaster/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"dZN" = ( -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"dZQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"dZW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"eab" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 11; - height = 18; - id = "emergency_home"; - name = "DeltaStation emergency evac bay"; - width = 30 - }, -/turf/open/space/basic, -/area/space) -"eae" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/machinery/status_display/evac/directional/south, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"eal" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall, -/area/station/maintenance/port/greater) -"ear" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/qm) -"eaE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/glass, -/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/security/prison/upper) -"eaK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/kitchen) -"eba" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"ebg" = ( -/obj/machinery/light/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Chapel Crematorium"; - name = "chapel camera" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"ebh" = ( -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"ebo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"ebF" = ( -/obj/structure/chair, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"ebV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/spawner/random/structure/barricade, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden/abandoned) -"ecg" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/components/unary/passive_vent/layer2{ - dir = 1 - }, -/turf/open/space, -/area/space/nearstation) -"ecl" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"ecH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"edb" = ( -/obj/structure/bookcase/random/nonfiction, -/turf/open/floor/wood, -/area/station/security/prison) -"edg" = ( -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"edm" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/theater/abandoned) -"edq" = ( -/turf/closed/wall, -/area/station/security/processing) -"edx" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"edB" = ( -/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/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"edS" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"edV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/east{ - c_tag = "Auxiliary Tool Storage"; - name = "engineering camera" - }, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"edW" = ( -/obj/structure/disposalpipe/segment{ - 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/hallway/primary/port) -"eea" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"eee" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/storage) -"eem" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"eex" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/theater) -"eeE" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"eeL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/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, -/area/station/command/gateway) -"eeZ" = ( -/obj/item/exodrone, -/obj/machinery/exodrone_launcher, -/obj/effect/turf_decal/box, -/obj/effect/decal/cleanable/oil/slippery, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"efh" = ( -/obj/structure/cable, -/obj/machinery/chem_dispenser/drinks/beer{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/checker{ - dir = 1 - }, -/area/station/service/bar) -"efI" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "left_arrivals_shutters"; - dir = 1 - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/secondary/entry) -"efQ" = ( -/obj/structure/grille, -/turf/open/space/basic, -/area/space/nearstation) -"efX" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/library) -"egd" = ( -/obj/machinery/duct, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"egk" = ( -/obj/structure/table/wood/poker, -/obj/item/storage/fancy/cigarettes/dromedaryco{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/fancy/cigarettes/dromedaryco, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den) -"egm" = ( -/obj/docking_port/stationary/mining_home{ - dir = 4 - }, -/turf/open/space/basic, -/area/space) -"egs" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/chair/stool/bar/directional/south, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"egx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"egF" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Library Access" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/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, -/turf/open/floor/iron/dark, -/area/station/service/library) -"egO" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder, -/obj/machinery/newscaster/directional/east, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/breakroom) -"egR" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"egT" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/command/heads_quarters/ce) -"egU" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "cargoload" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/cargo/storage) -"ehb" = ( -/obj/structure/rack, -/obj/item/book/manual/wiki/robotics_cyborgs, -/obj/item/storage/belt/utility, -/obj/item/reagent_containers/glass/beaker/large, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"ehg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/research) -"ehj" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"eho" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/commons/locker) -"ehA" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/sign/warning/no_smoking/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"ehD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"ehL" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"ehS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/cargo_technician, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"eik" = ( -/obj/machinery/door/window/brigdoor{ - name = "Creature Pen"; - req_access = list("research") - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xeno7"; - name = "Creature Cell #7" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"eio" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"eir" = ( -/obj/structure/cable, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Engineering - Gravity Generator"; - name = "engineering camera" - }, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"eis" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/gloves, -/obj/effect/turf_decal/delivery, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/trimline/brown/filled/line, -/turf/open/floor/iron, -/area/station/science/research) -"eiz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Virology Lab" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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/medical/virology, -/turf/open/floor/iron, -/area/station/medical/virology) -"eiC" = ( -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/prison) -"eiD" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Virology - Hallway"; - name = "virology camera"; - network = list("ss13","medbay") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"eiF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"eiK" = ( -/obj/structure/sign/warning/secure_area/directional/east, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"eiL" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/abandoned_gambling_den/gaming) -"eiM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/science/research) -"eiR" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"eiS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"eiW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"ejl" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "External Airlock" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"ejp" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"ejr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/cardboard, -/obj/item/weldingtool/mini, -/obj/item/grown/cotton/durathread, -/obj/item/reagent_containers/hypospray/medipen/oxandrolone, -/obj/item/stack/sheet/glass{ - amount = 10 - }, -/obj/item/stack/sheet/iron/twenty, -/obj/item/radio, -/turf/open/floor/plating, -/area/station/security/prison/upper) -"ejt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"ejA" = ( -/obj/structure/cable, -/obj/machinery/newscaster/directional/south, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"ejO" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/rack, -/obj/machinery/light/small/red/directional/south, -/obj/item/restraints/handcuffs, -/obj/item/toy/crayon/spraycan, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) -"ejR" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"ejW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"eke" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"ekf" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"ekl" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"ekp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"eku" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/iron, -/area/station/medical/morgue) -"ekN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/starboard/aft) -"ekU" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"ekV" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"ekZ" = ( -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/hfr_room) -"eln" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"elp" = ( -/obj/machinery/status_display/evac/directional/east, -/obj/structure/frame/computer{ - anchored = 1; - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/electronic_marketing_den) -"elx" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"elz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/service/salon) -"elK" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/wall, -/area/station/engineering/main) -"elN" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"elO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"elP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/storage) -"elS" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"elU" = ( -/obj/structure/cable, -/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, -/turf/open/floor/iron, -/area/station/commons/dorms) -"emg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet/emcloset, -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"emo" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/obj/structure/closet/bombcloset/security, -/turf/open/floor/iron, -/area/station/maintenance/starboard) -"emr" = ( -/obj/machinery/light/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Atmospherics - Project Room Fore"; - dir = 5; - name = "atmospherics camera" - }, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"emB" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"emW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/engine/atmos) -"emZ" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/machinery/recycler, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"ena" = ( -/obj/effect/turf_decal/tile/green, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"enc" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/status_display/evac/directional/east, -/obj/item/kirbyplants/photosynthetic{ - pixel_y = 10 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"end" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible/layer4, -/obj/machinery/atmospherics/components/tank/air{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/security/prison/upper) -"enh" = ( -/obj/machinery/door/airlock/research{ - name = "Research Testing Range" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/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, -/area/station/science/auxlab) -"enk" = ( -/obj/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/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"enq" = ( -/obj/item/folder/yellow, -/obj/item/multitool, -/obj/item/pen/red, -/obj/structure/table, -/obj/item/pen/blue{ - pixel_y = -4 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"enr" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"ent" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/lesser) -"enu" = ( -/obj/structure/bodycontainer/morgue{ - dir = 2 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"enR" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"enT" = ( -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"enU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/clothing/head/cone, -/obj/item/clothing/head/cone, -/obj/item/clothing/head/cone, -/obj/item/clothing/head/cone, -/obj/structure/sign/poster/official/moth_delam{ - pixel_y = -32 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"enX" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/spawner/random/structure/tank_holder, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"eon" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/mob/living/simple_animal/hostile/retaliate/goose/vomit, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) -"eou" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"eoy" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/checkpoint/supply) -"eoz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) -"eoD" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/white, -/area/station/science/research) -"eoE" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/chemistry) -"eoF" = ( -/obj/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, -/area/station/command/heads_quarters/captain) -"eoO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/urinal/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/toilet/restrooms) -"eoY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "O2 to Airmix" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"epc" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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) -"epd" = ( -/obj/machinery/light/directional/east, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"epj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/station/science/ordnance/burnchamber) -"epp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/service/library/abandoned) -"epz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor/shutters{ - id = "mechbay"; - name = "Mech Bay Shutters"; - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"epB" = ( -/obj/machinery/computer/mech_bay_power_console, -/turf/open/floor/circuit, -/area/station/science/robotics/mechbay) -"epC" = ( -/obj/structure/closet/radiation, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/supermatter/room) -"epD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/light_switch/directional/south{ - pixel_x = -8 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"epE" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/auxlab) -"epH" = ( -/obj/machinery/light/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"epV" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/engineering/atmos/hfr_room) -"epZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"eqa" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/airalarm/directional/west{ - pixel_y = -4 - }, -/obj/machinery/button/curtain{ - id = "prisoncell4"; - pixel_x = -22; - pixel_y = 10 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/prison) -"eqg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/flasher/directional/north{ - id = "AI"; - pixel_x = -26 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"eql" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"eqy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"eqD" = ( -/obj/machinery/air_sensor/nitrogen_tank, -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"eqE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/structure/chair/stool/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/kitchen/abandoned) -"eqM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"eqU" = ( -/turf/open/space, -/area/space) -"erc" = ( -/obj/machinery/smartfridge, -/turf/closed/wall/rust, -/area/station/security/prison/mess) -"ero" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - 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/greater) -"ers" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"ery" = ( -/obj/structure/cable, -/obj/effect/landmark/start/customs_agent, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"erz" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"erE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/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/commons/toilet/locker) -"erF" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"erM" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"erQ" = ( -/obj/structure/window/reinforced, -/obj/item/target, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"erS" = ( -/obj/structure/cable, -/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/central/aft) -"erX" = ( -/turf/closed/wall, -/area/station/commons/storage/tools) -"erY" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/command/heads_quarters/ce) -"erZ" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"eso" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"esq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/conveyor_switch/oneway{ - id = "cargodisposals"; - name = "disposals conveyor switch"; - pixel_x = -8 - }, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"esu" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/iron/white, -/area/station/maintenance/fore) -"esB" = ( -/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/fitness/recreation) -"esN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"etc" = ( -/turf/closed/wall, -/area/station/medical/chemistry) -"ete" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/hallway/secondary/entry) -"etg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"etq" = ( -/obj/structure/table/wood, -/obj/item/toy/talking/ai, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den/gaming) -"etr" = ( -/obj/machinery/power/tracker, -/obj/structure/cable, -/turf/open/floor/iron/solarpanel/airless, -/area/station/solars/port/aft) -"ett" = ( -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"etC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"etR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"etS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"etW" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/disposal/bin, -/turf/open/floor/iron, -/area/station/engineering/storage) -"eug" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"euk" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"eup" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"eur" = ( -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/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, -/area/station/science/research) -"euz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"euK" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"euQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"euT" = ( -/obj/structure/cable, -/obj/machinery/duct, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/main) -"euV" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electric_shock/directional/south, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/engineering/storage) -"euZ" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop{ - dir = 4; - pixel_x = 3; - pixel_y = 2 - }, -/obj/structure/sign/poster/official/cleanliness{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) -"evh" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"evo" = ( -/obj/machinery/light/directional/east, -/obj/machinery/light_switch/directional/east, -/obj/effect/turf_decal/loading_area, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"evq" = ( -/turf/open/floor/iron/dark, -/area/station/service/electronic_marketing_den) -"evM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cmoshutter"; - name = "CMO Office Shutters"; - dir = 1 - }, -/turf/open/floor/plating, -/area/station/command/heads_quarters/cmo) -"evO" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"ewb" = ( -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/library) -"ewi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/yellow, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"ewt" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"ewB" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"ewE" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"ewH" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/assembly/flash/handheld, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"ewL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/kitchen, -/area/station/security/prison/mess) -"ewO" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"ewQ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/storage/gas) -"ewS" = ( -/obj/structure/chair/stool/directional/west, -/obj/effect/landmark/start/assistant, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/locker) -"ewV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"ewY" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"exb" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/science/breakroom) -"exg" = ( -/obj/structure/cable, -/obj/item/storage/toolbox/drone, -/obj/structure/rack, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/machinery/camera{ - c_tag = "Security - Prison Outpost"; - network = list("ss13","Security","prison") - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron/dark/blue/side, -/area/brigofficer) -"exi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"exn" = ( -/obj/structure/bed/maint, -/obj/machinery/flasher{ - id = "IsolationFlash"; - pixel_y = 28 - }, -/obj/item/reagent_containers/glass/bucket/wooden, -/turf/open/floor/iron/dark/brown/side{ - dir = 5 - }, -/area/station/security/prison/safe) -"exv" = ( -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/machinery/light/directional/south, -/obj/structure/table/reinforced, -/obj/item/gps, -/obj/item/gps, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"exy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den/gaming) -"exA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/machinery/button/door/directional/west{ - id = "engsm"; - name = "Radiation Shutters Control"; - req_access = list("engineering") - }, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"exD" = ( -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/security/office) -"exI" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/machinery/pdapainter/medbay, -/turf/open/floor/iron, -/area/station/command/heads_quarters/cmo) -"exK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"exP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/arrows/white{ - color = "#00AAFF"; - pixel_y = 15 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"exS" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/morgue) -"exX" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch/directional/north{ - pixel_x = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/pumproom) -"eyk" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"eyy" = ( -/obj/structure/dresser, -/turf/open/floor/iron/grimy, -/area/station/commons/dorms) -"eyD" = ( -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Solar Access" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/maintenance/solars/starboard/fore) -"eyK" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/central) -"eyM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/random/maintenance/two, -/obj/structure/closet, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"eyP" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/structure/reagent_dispensers/wall/peppertank/directional/west, -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/radio, -/obj/machinery/button/door/directional/north{ - id = "meddoor"; - name = "Medical Cell Control"; - normaldoorcontrol = 1; - pixel_x = -36; - req_access = list("brig_entrance") - }, -/obj/machinery/button/door/directional/north{ - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - normaldoorcontrol = 1; - pixel_x = -24; - req_access = list("brig_entrance") - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"eyX" = ( -/obj/machinery/newscaster/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/mod/module/plasma_stabilizer, -/obj/item/mod/module/thermal_regulator, -/turf/open/floor/iron, -/area/station/security/office) -"eze" = ( -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den) -"ezf" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"ezg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/aft) -"ezn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"ezv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"ezH" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"ezP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"eAf" = ( -/obj/machinery/door/window/left/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"eAi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/trashcart, -/obj/item/seeds/tower/steel, -/obj/item/grown/log/bamboo, -/obj/effect/spawner/random/contraband/cannabis, -/turf/open/floor/plating, -/area/station/security/prison/upper) -"eAu" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/reagent_dispensers/wall/peppertank/directional/south, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"eAS" = ( -/turf/open/floor/carpet, -/area/station/commons/dorms) -"eBb" = ( -/obj/structure/filingcabinet/security, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"eBc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"eBn" = ( -/turf/closed/wall, -/area/station/security/checkpoint/customs/aft) -"eBw" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/captain) -"eBz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/port_gen/pacman/pre_loaded, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"eBE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"eBZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/external{ - name = "Escape Pod 2"; - space_dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"eCk" = ( -/obj/machinery/porta_turret/ai, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"eCq" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"eCs" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/green{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"eCt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"eCD" = ( -/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/wood, -/area/station/service/abandoned_gambling_den) -"eCF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"eCG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"eDc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"eDe" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"eDf" = ( -/obj/structure/table/wood, -/obj/item/folder/white{ - pixel_x = 14; - pixel_y = 3 - }, -/obj/item/paper_bin/carbon{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"eDp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"eDz" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Central Hallway - Center"; - name = "hallway camera" - }, -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"eDC" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"eDK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"eDV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"eDY" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/machinery/computer/atmos_control/carbon_tank{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"eEo" = ( -/obj/machinery/air_sensor/carbon_tank, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"eEr" = ( -/obj/structure/chair{ - 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/fitness/recreation) -"eEI" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/multitool, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/aft) -"eEN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security/glass{ - name = "Perma Office" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark/purple, -/area/brigofficer) -"eFf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"eFm" = ( -/obj/structure/table, -/obj/machinery/status_display/evac/directional/west, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"eFr" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"eFz" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/medical/medbay/lobby) -"eFK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/evac/directional/west, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Arrivals Dock - Aft Port"; - name = "dock camera" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"eFP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"eFS" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/glass/reinforced, -/area/station/commons/fitness/recreation) -"eFU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"eFX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/north{ - c_tag = "Security - Escape Pod" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"eGj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/hallway/secondary/construction) -"eGk" = ( -/obj/structure/barricade/wooden, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/iron, -/area/station/service/abandoned_gambling_den) -"eGl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/east{ - c_tag = "Chapel Morgue"; - name = "chapel camera" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/chapel/funeral) -"eGn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"eGp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/station/service/kitchen/abandoned) -"eGq" = ( -/obj/structure/sign/poster/official/do_not_question{ - pixel_x = -32 - }, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) -"eGs" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/head_of_personnel, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hop) -"eGB" = ( -/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/rec) -"eGI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/quartermaster, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/qm) -"eGM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"eGO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron/smooth_edge{ - dir = 8 - }, -/area/station/hallway/secondary/entry) -"eGS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/west, -/obj/structure/extinguisher_cabinet/directional/west{ - pixel_y = -6 - }, -/obj/machinery/button/curtain{ - id = "prisoncell5"; - pixel_x = -22; - pixel_y = 10 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/prison) -"eHq" = ( -/obj/machinery/door/airlock/virology{ - name = "Virology Cabin" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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/medical/virology, -/turf/open/floor/iron, -/area/station/medical/virology) -"eHy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" - }, -/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/general, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"eHA" = ( -/obj/machinery/holopad, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"eHB" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering Auxiliary Power" - }, -/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/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"eHF" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"eHH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"eHL" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"eHO" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/iron/dark, -/area/station/security/execution) -"eHY" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/locker) -"eIj" = ( -/obj/machinery/light/directional/north, -/obj/machinery/suit_storage_unit/captain, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/captain/private) -"eIs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/prison) -"eIt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"eIw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/girder, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"eIN" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"eIP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"eIZ" = ( -/obj/effect/decal/cleanable/dirt, -/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/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"eJf" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/medical/virology) -"eJq" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/engineering/atmos/storage/gas) -"eJF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"eJR" = ( -/obj/machinery/door_buttons/airlock_controller{ - idExterior = "virology_airlock_exterior"; - idInterior = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Console"; - pixel_x = -10; - pixel_y = 24; - req_access = list("virology") - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/medical/virology) -"eKe" = ( -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"eKh" = ( -/obj/machinery/door/poddoor/shutters{ - id = "service_maint_shutters"; - name = "Vacant Room Shutters"; - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/textured, -/area/station/commons/vacant_room) -"eKk" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"eKr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"eKz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"eKD" = ( -/obj/machinery/atmospherics/components/unary/passive_vent{ - name = "killroom vent" - }, -/turf/open/floor/circuit/telecomms, -/area/station/science/xenobiology) -"eKN" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"eKQ" = ( -/obj/structure/table/reinforced, -/obj/item/weldingtool, -/obj/effect/turf_decal/bot, -/obj/item/wrench, -/obj/item/storage/belt/utility, -/obj/item/clothing/head/welding, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"eKV" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/airalarm/directional/west, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/structure/table/reinforced, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"eLb" = ( -/obj/machinery/air_sensor/plasma_tank, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"eLo" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/siding/yellow/corner, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"eLs" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"eLv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"eLK" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"eLP" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"eLY" = ( -/obj/machinery/door/window/right/directional/west{ - name = "Bar Delivery"; - req_access = list("bar") - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/grimy, -/area/station/service/bar) -"eMq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Research Division Access" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-entrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron, -/area/station/science/research) -"eMu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"eMw" = ( -/obj/machinery/vending/tool, -/obj/effect/turf_decal/delivery, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"eMC" = ( -/obj/effect/turf_decal/tile/neutral{ - 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/port) -"eMN" = ( -/obj/structure/table/reinforced, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"eNj" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"eNk" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"eNn" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"eNp" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Security Maintenance" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"eNt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"eNy" = ( -/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/fitness/recreation) -"eNz" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/candle_box{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/fancy/candle_box, -/obj/machinery/light/directional/east, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/carpet, -/area/station/service/chapel/office) -"eNB" = ( -/obj/effect/turf_decal/siding/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"eND" = ( -/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/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"eNF" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"eNK" = ( -/obj/structure/sign/warning/secure_area/directional/south, -/obj/machinery/light/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/south{ - c_tag = "Security - Shooting Range" - }, -/turf/open/floor/plating, -/area/station/security/range) -"eNX" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/morgue) -"eOc" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - 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/virology) -"eOe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"eOn" = ( -/obj/structure/cable, -/obj/structure/closet/secure_closet/hydroponics, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"eOo" = ( -/obj/structure/lattice, -/obj/structure/sign/warning/secure_area/directional/west, -/turf/open/space/basic, -/area/space/nearstation) -"eOs" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"eOt" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Solar - Aft Starboard"; - name = "solar camera" - }, -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"eOu" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail{ - name = "Atmospherics Junction"; - sortType = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"eOA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"eOB" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"eOM" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"eOQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump/on/cyan/visible{ - dir = 4; - name = "Air to External Ports" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"ePa" = ( -/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/lounge) -"ePl" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"ePv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/electronic_marketing_den) -"ePD" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/color/fyellow, -/turf/open/floor/plating, -/area/station/science/research/abandoned) -"ePJ" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Primary Restroom"; - name = "restroom camera" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/commons/toilet/locker) -"ePK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"ePU" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering/glass/critical{ - heat_proof = 1; - name = "Supermatter Chamber" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"eQi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"eQp" = ( -/obj/structure/cable, -/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/surgery/theatre) -"eQr" = ( -/turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) -"eQs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Courtroom" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"eQu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"eQx" = ( -/turf/closed/wall, -/area/station/security/prison/garden) -"eQy" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/sign/poster/official/science{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"eQF" = ( -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"eQH" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"eQO" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/table/wood, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark/smooth_half{ - dir = 1 - }, -/area/station/service/bar) -"eRo" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/camera/directional/east{ - c_tag = "AI Satellite - Fore Port"; - name = "ai camera"; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"eRF" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"eRM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/obj/structure/bodycontainer/morgue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"eRV" = ( -/turf/open/floor/plating, -/area/station/security/range) -"eSk" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"eSm" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"eSq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"eSJ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"eSN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/firealarm/directional/west, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"eSX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"eTe" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/turf/open/space/basic, -/area/space) -"eTv" = ( -/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/security/prison) -"eTx" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "left_arrivals_shutters"; - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"eTy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/cook, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"eTD" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"eTF" = ( -/obj/machinery/computer/secure_data, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"eTL" = ( -/obj/effect/turf_decal/tile/neutral, -/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/hallway/primary/aft) -"eTM" = ( -/obj/structure/table/wood, -/obj/item/paicard, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/carpet/blue, -/area/station/commons/vacant_room/office) -"eTU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"eTX" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"eTZ" = ( -/obj/machinery/light/directional/south, -/obj/effect/spawner/liquids_spawner, -/turf/open/floor/iron/pool, -/area/station/security/prison/rec) -"eUf" = ( -/obj/effect/turf_decal/delivery, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"eUi" = ( -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/medical/virology) -"eUq" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/machinery/flasher/directional/south{ - id = "AI"; - pixel_x = 26 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"eUu" = ( -/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, -/obj/machinery/door/airlock/command{ - name = "Telecomms Control Room" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"eUD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"eUH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"eUJ" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot, -/obj/structure/closet/firecloset, -/obj/structure/sign/poster/official/random/directional/west, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/port) -"eVb" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "bridgedoors"; - name = "Bridge Access Blast Door" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"eVg" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"eVl" = ( -/turf/closed/wall/r_wall, -/area/station/tcommsat/computer) -"eVq" = ( -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"eVt" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/glass/reinforced, -/area/station/commons/dorms) -"eVx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/highsecurity{ - name = "Engineering Auxiliary Storage" - }, -/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/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"eVy" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"eVA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/service/theater/abandoned) -"eVG" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/atmospheric_technician, -/obj/effect/turf_decal/siding/yellow{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"eVK" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"eVU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/plumbed{ - dir = 1 - }, -/obj/effect/turf_decal/delivery/white{ - color = "#52B4E9" - }, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/main) -"eWc" = ( -/obj/effect/turf_decal/stripes/white/line{ - color = "#52B4E9"; - dir = 4; - name = "blue line" - }, -/turf/open/floor/iron/dark/blue/side{ - dir = 4 - }, -/area/station/security/prison) -"eWd" = ( -/obj/machinery/dna_scannernew, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"eWh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "isolationshutter" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"eWi" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"eWl" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/science/breakroom) -"eWp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Primary Restroom" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/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/commons/toilet/locker) -"eWt" = ( -/obj/machinery/door/window/right/directional/east{ - name = "Hydroponics Delivery"; - req_access = list("hydroponics") - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"eWE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"eWN" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"eWR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Project Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"eWX" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/item/flashlight/lamp, -/turf/open/floor/plating, -/area/station/service/library/abandoned) -"eXf" = ( -/obj/structure/cable, -/obj/structure/chair/comfy/brown{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) -"eXj" = ( -/obj/structure/barricade/wooden{ - opacity = 1 - }, -/obj/structure/barricade/wooden/crude, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/glass, -/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/plating, -/area/station/security/prison/rec) -"eXn" = ( -/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/kitchen, -/area/station/security/prison/mess) -"eXD" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Solar - Aft Port"; - name = "solar camera" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"eXJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/aft) -"eXN" = ( -/obj/machinery/vending/wardrobe/engi_wardrobe, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"eYj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/turf/open/floor/glass, -/area/station/maintenance/space_hut/observatory) -"eYo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"eYp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible, -/turf/open/floor/iron/dark/corner, -/area/station/maintenance/department/electrical) -"eYq" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/station/service/theater/abandoned) -"eYr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/modular_computer/console/preset/civilian, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/engineering/storage_shared) -"eYs" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"eYt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"eYu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"eYy" = ( -/obj/structure/cable, -/obj/structure/closet/secure_closet/atmospherics, -/obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/machinery/light_switch/directional/south{ - pixel_x = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage) -"eYB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/medical/virology) -"eYG" = ( -/obj/machinery/shower{ - dir = 8; - name = "emergency shower"; - pixel_y = -4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/end{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/supermatter/room) -"eYJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"eYK" = ( -/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/machinery/button/curtain{ - id = "prisoncell11"; - pixel_x = 22; - pixel_y = 10 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/prison) -"eYN" = ( -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"eYQ" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/landmark/start/assistant, -/obj/structure/chair/stool/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/theater) -"eYR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"eYZ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"eZy" = ( -/obj/item/kirbyplants/random, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"eZz" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"eZD" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"eZG" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"eZK" = ( -/obj/machinery/door/airlock{ - name = "Bathroom" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/heavy, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/iron, -/area/station/science/breakroom) -"eZM" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"eZR" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"eZV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "perma-entrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"fam" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/grimy, -/area/station/maintenance/port/fore) -"fax" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/button/door{ - id = "permainner"; - name = "Inner Bolt Control"; - normaldoorcontrol = 1; - pixel_x = -6; - pixel_y = 25; - specialfunctions = 4 - }, -/obj/machinery/button/door{ - id = "permaouter"; - name = "Outer Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 6; - pixel_y = 25; - specialfunctions = 4 - }, -/obj/machinery/button/door{ - id = "permaturnstile"; - name = "Turnstile Lockdown"; - pixel_y = 37 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"faF" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum, -/turf/open/floor/plating, -/area/station/security/processing) -"faQ" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"fbg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics HFR Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"fbm" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"fbn" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/iron, -/area/station/engineering/main) -"fbu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"fbv" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/service/salon) -"fbE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"fbF" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"fbH" = ( -/obj/machinery/computer/crew, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"fbI" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"fbO" = ( -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"fbP" = ( -/obj/structure/closet/secure_closet/miner/unlocked, -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"fbU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"fbV" = ( -/obj/machinery/portable_atmospherics/canister/plasma, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"fbW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/heads_quarters/hos) -"fbX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"fbZ" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"fcc" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron, -/area/station/command/gateway) -"fcd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - 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/science/research) -"fch" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/camera/directional/east{ - c_tag = "AI Satellite - Aft Port"; - name = "ai camera"; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"fcH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/chair/stool/bar/directional/south, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"fcK" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/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, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/chapel_office, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"fcR" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint) -"fcT" = ( -/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/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"fcW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/structure/closet/firecloset, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"fdz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/aft) -"fdA" = ( -/obj/effect/landmark/start/hangover, -/obj/machinery/status_display/ai/directional/south, -/obj/structure/chair/stool/directional/east, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/theater) -"fdK" = ( -/obj/machinery/conveyor/inverted{ - dir = 10; - id = "cargodeliver" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"fdL" = ( -/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, -/obj/machinery/door/airlock/engineering{ - name = "Technology Storage" - }, -/obj/effect/landmark/navigate_destination, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"fdM" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/command{ - name = "Telecomms Server Room" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, -/turf/open/floor/iron/dark, -/area/station/tcommsat/server) -"fdR" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"fdY" = ( -/obj/effect/turf_decal/siding/green{ - dir = 10 - }, -/obj/effect/landmark/start/botanist, -/turf/open/floor/iron/dark/smooth_large, -/area/station/service/hydroponics) -"fec" = ( -/obj/machinery/door/window/brigdoor{ - dir = 4; - name = "Secure Creature Pen"; - req_access = list("research") - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"fee" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"feg" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/spawner/random/entertainment/arcade{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"fek" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"fel" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"fep" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/service/library) -"feq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/curtain/cloth/fancy/mechanical/start_closed{ - desc = "A set of curtains serving as a fancy theater backdrop. They can only be opened by a button."; - id = "theater_curtains"; - name = "Theater Curtains" - }, -/turf/open/floor/wood/large, -/area/station/service/theater) -"fex" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/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, -/area/station/science/genetics) -"fez" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/siding/wood/corner, -/obj/item/radio/intercom/directional/east, -/obj/machinery/status_display/ai/directional/north, -/obj/machinery/button/curtain{ - id = "theater_curtains"; - name = "curtain control"; - pixel_x = 24; - pixel_y = -8; - req_access = list("theatre") - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/wood, -/area/station/service/theater) -"feG" = ( -/obj/machinery/status_display/ai/directional/south, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"feK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/airalarm/directional/south, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"feO" = ( -/obj/structure/reflector/single, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"feR" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/lockers) -"feS" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/machinery/requests_console/directional/south{ - department = "Hydroponics"; - departmentType = 2; - name = "Hydroponics Requests Console" - }, -/obj/structure/table/glass, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"feY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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 = "Security Junction"; - sortType = 7 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"ffa" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/shaker{ - pixel_x = -6 - }, -/obj/machinery/requests_console/directional/east{ - department = "Bar"; - departmentType = 2; - name = "Bar Requests Console" - }, -/obj/item/reagent_containers/glass/rag, -/turf/open/floor/iron/checker{ - dir = 1 - }, -/area/station/service/bar) -"ffd" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"ffi" = ( -/obj/structure/cable, -/obj/machinery/power/solar_control{ - id = "foreport"; - name = "Port Bow Solar Control" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Solar - Fore Port"; - name = "solar camera" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"ffk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/security/prison/upper) -"ffo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/commons/lounge) -"ffu" = ( -/obj/structure/table/wood, -/obj/structure/sign/barsign{ - pixel_y = 32 - }, -/obj/item/wrench, -/obj/item/clothing/under/suit/waiter, -/obj/item/clothing/accessory/waistcoat, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/electronic_marketing_den) -"ffA" = ( -/obj/machinery/holopad/secure, -/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, -/area/station/security/office) -"ffC" = ( -/obj/machinery/light/directional/south, -/obj/structure/reagent_dispensers/water_cooler, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron/white, -/area/station/maintenance/department/science) -"ffK" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"ffM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"ffN" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/iron, -/area/station/commons/lounge) -"ffQ" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Dormitories - Starboard"; - name = "dormitories camera" - }, -/obj/structure/cable, -/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/commons/dorms) -"fgm" = ( -/obj/structure/cable, -/obj/machinery/requests_console/directional/north{ - department = "Construction"; - name = "Construction Requests Console" - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"fgq" = ( -/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/white, -/area/station/science/ordnance/storage) -"fgB" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/turf/open/space/basic, -/area/space/nearstation) -"fgK" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"fgM" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"fgO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"fhd" = ( -/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/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"fhg" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"fhj" = ( -/obj/machinery/shieldgen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"fhw" = ( -/obj/machinery/recharger, -/obj/structure/table/reinforced, -/obj/structure/reagent_dispensers/wall/peppertank/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"fhA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"fhL" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/science/research) -"fhM" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"fhQ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"fhS" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/chem_pack{ - pixel_x = 10; - pixel_y = 10 - }, -/obj/item/storage/box/rxglasses{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/stack/medical/gauze{ - pixel_x = 8 - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"fhU" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/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/white, -/area/station/science/ordnance/storage) -"fig" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"fii" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/storage) -"fim" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/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/science/research/abandoned) -"fin" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"fiu" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/mob/living/basic/cockroach, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den) -"fiB" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"fiE" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"fiL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/electronic_marketing_den) -"fiO" = ( -/turf/closed/wall, -/area/station/security/prison) -"fiT" = ( -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"fiZ" = ( -/obj/effect/spawner/random/trash/garbage, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"fje" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"fjf" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/station/solars/starboard/fore) -"fju" = ( -/obj/structure/flora/bush/flowers_br/style_random, -/obj/structure/flora/bush/sparsegrass/style_random, -/turf/open/misc/grass, -/area/station/hallway/primary/fore) -"fjx" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"fjB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/lockers) -"fjJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"fjS" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide{ - valve_open = 1 - }, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"fkd" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"fkg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"fkl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"fkm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/machinery/rnd/server/master, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/science/server) -"fkt" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"fkB" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/aisat/exterior) -"fkO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"fkQ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/table, -/obj/item/pipe_dispenser{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/item/pipe_dispenser, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"fkU" = ( -/obj/structure/railing{ - dir = 5 - }, -/obj/item/kirbyplants/random, -/obj/machinery/light/floor, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"fli" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"flt" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/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/east, -/turf/open/floor/iron/white, -/area/station/science/research) -"flw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"fly" = ( -/obj/machinery/power/shieldwallgen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/command/teleporter) -"flB" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/structure/reagent_dispensers/wall/peppertank/directional/west, -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/radio, -/obj/machinery/button/door/directional/west{ - id = "cardoor"; - name = "Cargo Cell Control"; - normaldoorcontrol = 1; - pixel_x = -34; - pixel_y = -6; - req_access = list("brig_entrance") - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"flS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/hallway/secondary/entry) -"flY" = ( -/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, -/area/station/service/library) -"flZ" = ( -/obj/structure/table/reinforced, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"fmj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"fmk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"fms" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den) -"fmw" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/turf/open/floor/iron/dark/telecomms, -/area/station/science/xenobiology) -"fmx" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"fmJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/storage) -"fmN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"fmU" = ( -/obj/machinery/door/window/brigdoor{ - id = "medcell"; - name = "Medical Cell"; - req_access = list("brig_entrance") - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"fmX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chapelprivacy"; - name = "Chapel Privacy Shutters" - }, -/turf/open/floor/plating, -/area/station/service/chapel/office) -"fmY" = ( -/obj/structure/sign/warning/vacuum/directional/north, -/turf/open/floor/iron/dark/red/side{ - dir = 5 - }, -/area/station/security/execution) -"fnb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"fnA" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/machinery/newscaster/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"fnD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/research) -"fnK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"fnM" = ( -/obj/structure/chair/office, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"fnR" = ( -/turf/closed/wall, -/area/station/maintenance/starboard) -"fnU" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"fog" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"foq" = ( -/obj/structure/cable, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"for" = ( -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"fot" = ( -/turf/closed/wall, -/area/station/ai_monitored/command/storage/eva) -"foG" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"foH" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/wood, -/area/station/service/library) -"foL" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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, -/area/station/engineering/atmos) -"foV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"fpb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"fpc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Warden's Office" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/warden) -"fpi" = ( -/obj/structure/cable, -/obj/effect/turf_decal/plaque{ - icon_state = "L1" - }, -/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/aft) -"fpj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/clothing/neck/stethoscope, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"fpv" = ( -/obj/effect/spawner/random/engineering/atmospherics_portable, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"fpx" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"fpB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"fpD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/computer/holodeck{ - dir = 4 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/commons/fitness/recreation) -"fpM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"fpZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/cargo/storage) -"fqa" = ( -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"fqc" = ( -/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, -/mob/living/basic/cockroach, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"fqk" = ( -/obj/machinery/light_switch/directional/east, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"fqn" = ( -/obj/effect/spawner/random/trash/hobo_squat, -/obj/effect/spawner/random/trash/cigbutt, -/obj/structure/sign/poster/random/directional/north, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"fqx" = ( -/obj/effect/landmark/start/hangover/closet, -/obj/structure/closet/crate, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"fqz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"fqB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/science/research) -"fqN" = ( -/obj/structure/table/optable, -/obj/machinery/button/door/directional/east{ - id = "surgeryb"; - name = "Privacy Shutters Control" - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"fqZ" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/plaque/static_plaque/golden/commission/delta, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"frc" = ( -/obj/machinery/door/window{ - dir = 8; - name = "Library Desk"; - req_access = list("library") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"frq" = ( -/obj/machinery/light/directional/east, -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "cargodeliver"; - name = "crate return conveyor"; - pixel_x = 8 - }, -/obj/effect/turf_decal/box/corners, -/obj/machinery/status_display/supply{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"frC" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"frL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/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/white, -/area/station/medical/treatment_center) -"frM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"frS" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/science/lab) -"frW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/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, -/area/station/maintenance/starboard/aft) -"frY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/prison/mess) -"fsh" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/wrench, -/obj/item/clothing/glasses/welding, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/white, -/area/station/science/lab) -"fsl" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"fso" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"fsp" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/end{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"fss" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Medbay" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"fst" = ( -/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/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/structure/closet/crate/internals, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"fsz" = ( -/obj/item/kirbyplants/random, -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/iron/grimy, -/area/station/commons/dorms) -"fsD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/meter, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"fsJ" = ( -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"fsK" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Security Post - Cargo" - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"fsV" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"ftj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"ftl" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/tank/internals/oxygen, -/obj/item/radio, -/obj/item/clothing/mask/breath, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"fto" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/table/wood/poker, -/obj/effect/spawner/random/entertainment/dice, -/turf/open/floor/carpet/green, -/area/station/commons/lounge) -"ftt" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"ftD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Drone Bay Maintenance" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"ftH" = ( -/obj/structure/sign/warning/electric_shock/directional/west{ - pixel_y = -32 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"ftI" = ( -/obj/structure/filingcabinet/medical, -/obj/machinery/light/directional/north, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hop) -"ftS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"ftU" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/yellow, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"ftW" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/breath, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"fub" = ( -/obj/structure/table/reinforced, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash/handheld, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/security/office) -"fuh" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"fut" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"fux" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"fuA" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"fuF" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/maintenance/department/science) -"fuG" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"fuT" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"fuV" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"fva" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"fvi" = ( -/turf/closed/wall/r_wall, -/area/station/science/lab) -"fvn" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"fvo" = ( -/turf/closed/wall/r_wall, -/area/station/security/checkpoint/escape) -"fvv" = ( -/obj/machinery/requests_console/directional/south{ - department = "Service Hall"; - departmentType = 2; - name = "Service Hall Requests Console" - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"fvC" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"fvE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"fvF" = ( -/obj/machinery/smartfridge/chemistry/preloaded, -/turf/closed/wall, -/area/station/medical/pharmacy) -"fvS" = ( -/obj/structure/window/reinforced, -/turf/open/space/basic, -/area/space/nearstation) -"fvT" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/spawner/random/structure/barricade, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden/abandoned) -"fvX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"fvZ" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) -"fwi" = ( -/obj/structure/dresser, -/obj/effect/turf_decal/siding/wood, -/obj/item/toy/dummy{ - pixel_x = -1; - pixel_y = 10 - }, -/obj/machinery/newscaster/directional/north, -/obj/machinery/camera/directional/east{ - c_tag = "Service - Mime's Room"; - name = "service camera" - }, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/wood, -/area/station/service/theater) -"fwq" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"fwu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"fwB" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/obj/item/flashlight, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"fwL" = ( -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/security/prison) -"fwR" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/medical/virology) -"fxc" = ( -/obj/structure/table/wood, -/obj/item/toy/crayon/spraycan, -/obj/item/toy/crayon/spraycan{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/chisel{ - pixel_y = 7 - }, -/turf/open/floor/iron/dark, -/area/station/service/library) -"fxr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"fxs" = ( -/obj/structure/cable, -/obj/machinery/photocopier, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) -"fxu" = ( -/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/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"fxH" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"fxJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"fxL" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/machinery/light/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Science - Waiting Room"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/item/gps, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"fxT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"fxW" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "ceprivacy"; - name = "Chief's Privacy Shutters"; - dir = 1 - }, -/turf/open/floor/plating, -/area/station/command/heads_quarters/ce) -"fya" = ( -/obj/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/turf_decal/tile/brown/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"fyf" = ( -/obj/structure/chair/pew/left, -/turf/open/floor/iron{ - dir = 1; - icon_state = "chapel" - }, -/area/station/service/chapel) -"fyj" = ( -/obj/machinery/light/directional/west, -/obj/structure/sign/warning/secure_area/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"fyu" = ( -/obj/structure/closet/firecloset, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"fyB" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/camera/directional/north{ - c_tag = "Science - Lab Access"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron, -/area/station/science/research) -"fyD" = ( -/obj/structure/table/wood, -/obj/item/clothing/suit/cardborg, -/obj/item/clothing/head/cardborg, -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/theater/abandoned) -"fyG" = ( -/obj/structure/table_frame/wood, -/obj/item/crowbar/red, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/commons/dorms) -"fyH" = ( -/obj/machinery/keycard_auth/directional/south{ - pixel_x = 6 - }, -/obj/machinery/light_switch/directional/south{ - pixel_x = -8 - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"fyP" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"fyZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"fzd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"fzg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/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) -"fzl" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"fzm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"fzp" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/engineering_guard, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"fzw" = ( -/obj/structure/flora/bush/flowers_pp/style_random, -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/rock/pile/jungle/style_random, -/turf/open/misc/grass, -/area/station/hallway/primary/fore) -"fzx" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"fzB" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"fzF" = ( -/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/west, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"fzT" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"fzY" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"fzZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"fAe" = ( -/obj/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/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/engineering/storage) -"fAj" = ( -/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/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"fAp" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/science/lobby) -"fAt" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/item/paicard{ - pixel_x = -6 - }, -/turf/open/floor/carpet/red, -/area/station/hallway/secondary/service) -"fAz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"fAA" = ( -/obj/effect/turf_decal/delivery, -/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/aft) -"fAL" = ( -/obj/effect/spawner/random/engineering/atmospherics_portable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"fAP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/office) -"fAT" = ( -/obj/machinery/computer/cargo{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"fAY" = ( -/obj/machinery/light/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"fBb" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"fBc" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 - }, -/obj/machinery/modular_computer/console/preset/cargochat/security{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"fBd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/button/door/directional/west{ - id = "Dorm5"; - name = "Dormitory Door Lock"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"fBk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/north, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/department/engine/atmos) -"fBm" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"fBy" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Access" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"fBG" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"fBP" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/newscaster/directional/east, -/obj/machinery/light/directional/east, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/engineering/lobby) -"fBS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"fBZ" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/security/prison/mess) -"fCf" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmoslock"; - name = "Atmospherics Lockdown Blast Door" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/sign/warning/fire/directional/north, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/half, -/area/station/engineering/atmos) -"fCh" = ( -/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/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/lesser) -"fCP" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron, -/area/station/command/gateway) -"fDc" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/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, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"fDl" = ( -/obj/structure/sign/departments/court/directional/north, -/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, -/area/station/hallway/primary/central/aft) -"fDm" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/effect/turf_decal/delivery/white{ - color = "#00ff00"; - name = "green" - }, -/turf/open/floor/iron/dark, -/area/station/security/prison) -"fDo" = ( -/obj/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/medbay/central) -"fDF" = ( -/turf/closed/wall/r_wall, -/area/station/science/ordnance/office) -"fDO" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"fDS" = ( -/obj/machinery/shieldgen, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/main) -"fEh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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/security/general, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"fEr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/iron/dark/corner, -/area/station/maintenance/disposal/incinerator) -"fEw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"fEx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"fEB" = ( -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hos) -"fEC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "teleporterhubshutters"; - name = "Teleporter Shutters"; - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/teleporter) -"fEI" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"fEJ" = ( -/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 = 4 - }, -/turf/open/floor/iron, -/area/station/science/research) -"fEY" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/space, -/area/space/nearstation) -"fFe" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"fFi" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/customs_agent, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"fFr" = ( -/obj/machinery/computer/atmos_control{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage) -"fFu" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/gravity_generator) -"fFw" = ( -/obj/machinery/light/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Atmospherics - Storage"; - name = "atmospherics camera" - }, -/obj/item/kirbyplants/random, -/obj/machinery/newscaster/directional/west, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"fFz" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/security_all, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"fFK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"fFL" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/tank_dispenser, -/obj/machinery/newscaster/directional/east, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage) -"fFW" = ( -/obj/machinery/light_switch/directional/north, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) -"fGj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "left_arrivals_shutters"; - dir = 1 - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/secondary/entry) -"fGn" = ( -/obj/machinery/deepfryer, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"fGt" = ( -/obj/machinery/light/directional/north, -/obj/structure/tank_holder/extinguisher, -/turf/open/floor/wood, -/area/station/service/library) -"fGw" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"fGx" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"fGI" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"fGM" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/sign/poster/official/do_not_question{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"fGT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/mix) -"fGW" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"fHd" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/table/wood, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/library) -"fHh" = ( -/obj/structure/rack, -/obj/item/wrench, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/starboard) -"fHp" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"fHu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/greater) -"fHE" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/storage/medkit/regular, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"fHG" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/solars/starboard/aft) -"fHI" = ( -/turf/closed/wall, -/area/station/commons/storage/primary) -"fHM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_output{ - dir = 4 - }, -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"fHW" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xeno7"; - name = "Containment Control"; - req_access = list("xenobiology") - }, -/obj/machinery/light/directional/south, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"fIe" = ( -/obj/effect/spawner/xmastree, -/obj/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/grimy, -/area/station/service/chapel) -"fIg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"fIi" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"fIn" = ( -/obj/structure/bookcase/random, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) -"fIp" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "councilblast"; - name = "Council Chambers Blast Door" - }, -/turf/open/floor/plating, -/area/station/command/meeting_room/council) -"fIu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"fIy" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/science/xenobiology) -"fIB" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"fIE" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/service/electronic_marketing_den) -"fIQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/commons/fitness/recreation) -"fIR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/frame/machine, -/obj/item/stack/cable_coil/five, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"fIU" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"fIW" = ( -/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/iron/dark/side{ - dir = 4 - }, -/area/station/security/prison) -"fIY" = ( -/obj/effect/spawner/random/structure/crate_empty, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"fJa" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"fJd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/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/white, -/area/station/medical/medbay/central) -"fJe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch/directional/west, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"fJq" = ( -/turf/closed/wall, -/area/station/security/brig) -"fJx" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"fJA" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/landmark/event_spawn, -/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/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"fJG" = ( -/obj/structure/rack, -/obj/item/tank/internals/anesthetic, -/obj/item/clothing/mask/muzzle, -/obj/item/restraints/handcuffs, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"fJQ" = ( -/obj/effect/decal/cleanable/dirt, -/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/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"fJZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/checker, -/area/station/service/janitor) -"fKb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/checkpoint/science/research) -"fKi" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/iron/dark, -/area/station/service/library/abandoned) -"fKk" = ( -/obj/structure/table/wood, -/obj/item/storage/crayons, -/obj/item/toy/crayon/spraycan, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"fKF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/closet/masks, -/obj/effect/turf_decal/box/white, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/commons/fitness/recreation) -"fKK" = ( -/obj/structure/closet/crate, -/obj/item/target/alien, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/item/target/clown, -/obj/item/target/syndicate, -/obj/item/gun/energy/laser/practice, -/obj/item/gun/energy/laser/practice, -/turf/open/floor/iron/white, -/area/station/science/auxlab) -"fKM" = ( -/obj/structure/table/reinforced, -/obj/item/ai_module/reset{ - pixel_y = 8; - pixel_x = 2 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/radio/intercom/directional/west, -/obj/machinery/status_display/evac/directional/south, -/obj/item/ai_module/supplied/freeform, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"fKN" = ( -/obj/machinery/door/poddoor/shutters{ - id = "warehouse_shutters"; - name = "Warehouse Shutters"; - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"fKT" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"fKU" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/station/solars/port/fore) -"fLb" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"fLc" = ( -/obj/structure/table/wood, -/obj/item/clothing/neck/tie/red, -/obj/item/clothing/head/that, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/electronic_marketing_den) -"fLf" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/ordnance/testlab) -"fLg" = ( -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"fLu" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Auxiliary Tool Storage Maintenance" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/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/greater) -"fLE" = ( -/obj/machinery/light/directional/south, -/obj/item/kirbyplants/random, -/obj/machinery/camera/directional/south{ - c_tag = "Library - Aft"; - name = "library camera" - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/wood, -/area/station/service/library) -"fLG" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/button/door/directional/west{ - id = "Dorm3"; - name = "Dormitory Door Lock"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"fLY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/mess, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/commons/toilet/restrooms) -"fMc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/station/service/theater/abandoned) -"fMk" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) -"fMo" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"fMC" = ( -/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/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"fMN" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"fNa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den) -"fNc" = ( -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"fNt" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/co2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/medical/cryo) -"fNv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"fNA" = ( -/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/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"fNL" = ( -/obj/structure/tank_holder/oxygen, -/turf/open/floor/iron, -/area/station/medical/break_room) -"fNM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"fNO" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/pumproom) -"fNY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xeno3"; - name = "Creature Cell #3" - }, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"fOw" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/tank_holder/extinguisher, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"fOz" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/conveyor{ - id = "cargodisposals" - }, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"fOB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"fOF" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"fOP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"fPf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"fPj" = ( -/obj/machinery/holopad, -/obj/effect/landmark/start/lawyer, -/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, -/area/station/security/courtroom) -"fPn" = ( -/obj/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/chair/comfy/brown, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"fPJ" = ( -/obj/machinery/status_display/ai/directional/north, -/obj/machinery/firealarm/directional/east, -/obj/machinery/light_switch/directional/east{ - pixel_x = 38 - }, -/obj/structure/extinguisher_cabinet/directional/north{ - pixel_x = 32 - }, -/obj/structure/closet/secure_closet/security/cargo, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"fQg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"fQm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"fQn" = ( -/obj/structure/table/reinforced, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash/handheld, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/lockers) -"fQo" = ( -/obj/structure/chair/comfy/black, -/obj/effect/landmark/start/librarian, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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) -"fQu" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/service/library) -"fQw" = ( -/obj/machinery/door/poddoor/shutters{ - id = "teleportershutters"; - name = "Teleporter Shutters" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/command/teleporter) -"fQx" = ( -/obj/structure/closet/radiation, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"fQD" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/secure_closet/cytology, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"fQG" = ( -/obj/structure/table/glass, -/obj/machinery/camera/directional/south{ - c_tag = "Medbay - Cryogenics"; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/item/book/manual/wiki/medicine, -/obj/item/clothing/neck/stethoscope, -/obj/item/wrench/medical, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"fQK" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating, -/area/station/hallway/secondary/construction) -"fRa" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/aisat/exterior) -"fRb" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"fRo" = ( -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"fRq" = ( -/obj/structure/weightmachine/stacklifter, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/prison) -"fRw" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/space, -/area/space/nearstation) -"fRH" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/science/auxlab) -"fRU" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"fRY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"fSg" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"fSi" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"fSo" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/medical/surgery/theatre) -"fSr" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"fSz" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/end, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"fSC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Orderly's Office" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/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/medical/orderly, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"fSE" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"fSG" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/main) -"fSL" = ( -/obj/machinery/computer/security{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/security/office) -"fSW" = ( -/turf/closed/indestructible/opshuttle, -/area/station/science/ordnance/bomb) -"fTz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"fTC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"fTP" = ( -/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 = 5 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"fTS" = ( -/obj/effect/spawner/structure/window, -/obj/structure/curtain/cloth/fancy/mechanical{ - icon_state = "bounty-open"; - icon_type = "bounty"; - id = "prisoncell11"; - name = "curtain" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"fUf" = ( -/obj/structure/table/wood/poker, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/iron/grimy, -/area/station/service/abandoned_gambling_den) -"fUk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 8 - }, -/obj/machinery/meter, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"fUN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/processor{ - pixel_y = 1 - }, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"fUQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/chair_maintenance, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"fUR" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/cmo) -"fUY" = ( -/obj/structure/closet/secure_closet/brig{ - id = "medcell"; - name = "Medical Cell Locker" - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"fVd" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/service/salon) -"fVg" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"fVQ" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/chief_medical_officer, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/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/command/heads_quarters/cmo) -"fWh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"fWi" = ( -/obj/structure/table/glass, -/obj/item/folder/blue, -/obj/item/clothing/glasses/hud/health, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/cmo) -"fWl" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hos) -"fWA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"fWJ" = ( -/obj/structure/table/wood/poker, -/obj/item/storage/box/matches{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) -"fWN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"fWZ" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"fXk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"fXs" = ( -/obj/effect/landmark/event_spawn, -/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/grimy, -/area/station/command/heads_quarters/hos) -"fXt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/cargo/storage) -"fXC" = ( -/obj/effect/spawner/structure/window, -/obj/structure/curtain/cloth/fancy/mechanical{ - icon_state = "bounty-open"; - icon_type = "bounty"; - id = "prisoncell4"; - name = "curtain" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"fXE" = ( -/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/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/toilet/locker) -"fXF" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"fXG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departures Lounge" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"fXT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/valve{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"fXU" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"fYd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"fYu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/bluespace_vendor/directional/north, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"fYv" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery/blue, -/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 = "Library" - }, -/turf/open/floor/iron/dark, -/area/station/security/prison) -"fYw" = ( -/obj/machinery/telecomms/bus/preset_three, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"fYz" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Bridge - Starboard"; - name = "command camera" - }, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"fYD" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"fYK" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"fYO" = ( -/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/prison) -"fYR" = ( -/turf/closed/wall, -/area/station/service/abandoned_gambling_den) -"fYU" = ( -/turf/open/floor/plating, -/area/station/science/ordnance/testlab) -"fYV" = ( -/obj/structure/disposalpipe/segment, -/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/tile/green/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"fYX" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron, -/area/service/salon) -"fYZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chapelprivacyoffice"; - name = "Chapel Privacy Shutters" - }, -/turf/open/floor/plating, -/area/station/service/chapel/office) -"fZa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron{ - dir = 8; - icon_state = "chapel" - }, -/area/station/service/chapel) -"fZi" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"fZj" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"fZr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdordnance"; - name = "Ordnance Lab Shutters"; - dir = 8 - }, -/turf/open/floor/plating, -/area/station/science/ordnance/office) -"fZu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Robotics Lab Maintenance" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/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/science/robotics, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"fZx" = ( -/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/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"fZK" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/rack/gunrack, -/obj/effect/spawner/armory_spawn/cmg, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"fZO" = ( -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"fZU" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"fZV" = ( -/obj/effect/landmark/start/hangover/closet, -/obj/structure/closet/firecloset, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"gab" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/medical/break_room) -"gat" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigprison"; - name = "Prison Blast Door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"gax" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/cargo/storage) -"gay" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/airlock/public/glass{ - name = "Fore Hallway" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"gaB" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"gaF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"gaG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"gbk" = ( -/obj/structure/table, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash/handheld, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"gbo" = ( -/obj/machinery/airalarm/directional/south, -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/food/chococoin, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den/gaming) -"gbD" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"gbK" = ( -/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, -/area/station/service/lawoffice) -"gbY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/window/right/directional/west{ - name = "Hydroponics Center" - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"gca" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"gcc" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"gce" = ( -/obj/item/stack/rods{ - amount = 25 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"gcf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/item/storage/box/bodybags, -/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/aft) -"gcl" = ( -/obj/structure/closet/firecloset, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"gco" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"gcs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/wood, -/area/station/service/library) -"gct" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/medical/cryo) -"gcu" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/door/poddoor/preopen{ - id = "transitlock"; - name = "Transit Tube Lockdown Door" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/edge{ - dir = 1 - }, -/area/station/engineering/transit_tube) -"gcx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"gcy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/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/department/electrical) -"gcI" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/radio/intercom/directional/south{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Private Channel" - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"gcT" = ( -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"gcU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plating, -/area/station/security/prison/upper) -"gdb" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint) -"gdi" = ( -/obj/machinery/washing_machine, -/obj/machinery/camera/directional/west{ - c_tag = "Dormitories - Port"; - name = "dormitories camera" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/light_switch/directional/north, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/commons/dorms) -"gdj" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Security - Brig Fore" - }, -/obj/machinery/newscaster/directional/east, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"gdm" = ( -/obj/structure/closet/wardrobe/green, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"gdw" = ( -/obj/machinery/photocopier, -/turf/open/floor/carpet, -/area/station/service/library) -"gdM" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"gdY" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 4 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"gef" = ( -/obj/docking_port/stationary{ - dwidth = 1; - height = 13; - id = "arrivals_stationary"; - name = "arrivals"; - roundstart_template = null; - width = 5 - }, -/turf/open/space/basic, -/area/space) -"gen" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/binary/pump/on/cyan/visible{ - name = "Air to Ports" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"geu" = ( -/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/quartermaster, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/qm) -"gez" = ( -/obj/machinery/photocopier, -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Lawyer's Office" - }, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"geF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/latex{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/radio/headset/headset_medsci{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/storage/box/gloves{ - pixel_x = 6; - pixel_y = -2 - }, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"geI" = ( -/obj/structure/table, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"geN" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space, -/area/station/solars/starboard/aft) -"geR" = ( -/obj/machinery/vending/engivend, -/obj/effect/turf_decal/delivery, -/obj/structure/sign/poster/official/moth_hardhat{ - pixel_x = 32 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"geW" = ( -/obj/effect/landmark/start/chaplain, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/service/chapel) -"geZ" = ( -/turf/closed/wall, -/area/station/maintenance/port/greater) -"gfa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/qm) -"gfe" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/requests_console/directional/north{ - name = "Ordnance Mixing Lab Requests Console" - }, -/obj/effect/turf_decal/box/red, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"gfl" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"gfq" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/ai_all, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"gft" = ( -/obj/effect/turf_decal/tile/red, -/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) -"gfy" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/research) -"gfC" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Science - Center"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/tile/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/research) -"gfJ" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"gfS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"gfT" = ( -/obj/machinery/light_switch/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Bridge - Teleporter"; - name = "command camera" - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/teleporter) -"gfY" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Central Hallway - Aft Starboard"; - name = "hallway camera" - }, -/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/central/aft) -"gga" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/electronic_marketing_den) -"ggo" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/toy/figure/qm, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"ggp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/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, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"ggs" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/candle_box{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/fancy/candle_box, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/theater/abandoned) -"ggB" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "ceblast"; - name = "Chief Engineer's Office Blast Doors" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/command/heads_quarters/ce) -"ggR" = ( -/obj/structure/chair/office, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"ghf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"ghn" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/machinery/button/door{ - id = "xenosecure"; - name = "Containment Control"; - pixel_y = -3; - req_access = list("xenobiology") - }, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom{ - pixel_y = 5 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"gho" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/rnd/production/circuit_imprinter, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/engineering/storage_shared) -"ghq" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"ght" = ( -/obj/structure/closet/toolcloset, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"ghG" = ( -/obj/machinery/plate_press{ - pixel_y = 4 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/work) -"ghQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xeno1"; - name = "Creature Cell #1" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"ghW" = ( -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/three, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/aft) -"gic" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"gii" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/theater) -"gim" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"giz" = ( -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"giF" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/item/taperecorder, -/turf/open/floor/iron/grimy, -/area/station/command/bridge) -"giS" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/medical/morgue) -"giY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"gjc" = ( -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/prison) -"gjg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"gjh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"gjl" = ( -/obj/machinery/computer/upload/borg{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"gjs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"gjt" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering Auxiliary Power" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"gjx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "ert-lz-port" - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - space_dir = 4 - }, -/turf/open/floor/plating, -/area/space) -"gjR" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light_switch/directional/south, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/processing) -"gjV" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/cargo/qm) -"gjZ" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/dresser, -/turf/open/floor/wood, -/area/station/maintenance/starboard/aft) -"gkg" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel Quarters" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"gkp" = ( -/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/grimy, -/area/station/tcommsat/computer) -"gkq" = ( -/obj/structure/bed{ - dir = 4 - }, -/obj/item/bedsheet/black{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"gkw" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"gkB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"gkL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"gkQ" = ( -/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/prison/rec) -"gkR" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8 - }, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"gkW" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase, -/obj/structure/sign/poster/official/help_others{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"glb" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"gld" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/service/kitchen) -"glh" = ( -/obj/structure/sign/directions/command{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) -"gli" = ( -/obj/structure/chair/wood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) -"glr" = ( -/obj/machinery/vending/wardrobe/science_wardrobe, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/research) -"glt" = ( -/obj/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/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"glu" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) -"glv" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"glI" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Science - Fore"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"glW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"glX" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/science/breakroom) -"gme" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/table/reinforced, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/stack/cable_coil, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/main) -"gmg" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/construction/mining/aux_base) -"gml" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/trashcart/filled, -/obj/effect/spawner/random/contraband/prison, -/obj/effect/spawner/random/contraband/prison, -/obj/effect/spawner/random/contraband/prison, -/obj/item/crowbar/large/old, -/turf/open/floor/plating, -/area/station/security/prison/upper) -"gmx" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" - }, -/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/general, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"gmy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 1 - }, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"gmA" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/ordnance_freezer_chamber_input{ - dir = 8 - }, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"gmK" = ( -/obj/structure/table, -/obj/structure/cable, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark/purple/side{ - dir = 10 - }, -/area/station/security/prison/safe) -"gmP" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"gmQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/theater) -"gmR" = ( -/obj/machinery/light/directional/west, -/obj/machinery/status_display/ai/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"gmU" = ( -/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/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/structure/closet/crate/internals, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/command/gateway) -"gmW" = ( -/obj/structure/bookcase/random/adult, -/turf/open/floor/wood, -/area/station/service/library) -"gne" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"gno" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"gnw" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"gnA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"gnG" = ( -/obj/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/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"gnH" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"gnS" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"gnZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/maintenance/department/engine/atmos) -"goc" = ( -/obj/machinery/keycard_auth/directional/south{ - pixel_y = -38 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/button/door/directional/south{ - id = "teleportershutters"; - name = "Teleporter Shutters"; - pixel_x = -6; - req_access = list("command") - }, -/obj/machinery/button/door/directional/south{ - id = "evastorage"; - name = "E.V.A. Shutters"; - pixel_x = 6; - req_access = list("command") - }, -/turf/open/floor/carpet, -/area/station/command/bridge) -"goi" = ( -/obj/structure/table/wood, -/obj/item/stack/package_wrap{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/stack/package_wrap{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/hand_labeler, -/obj/item/pen, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron/checker, -/area/station/service/bar) -"gop" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"gor" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/engineering/main) -"goV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"goW" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/left/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"gpg" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Solar Access" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/maintenance/solars/starboard/aft) -"gpi" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/station/service/electronic_marketing_den) -"gpy" = ( -/obj/structure/reflector/single, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"gpB" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/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, -/turf/open/floor/iron, -/area/station/science/breakroom) -"gpG" = ( -/obj/machinery/computer/pandemic, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/medical/virology) -"gpO" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/medical/pharmacy) -"gpP" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/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/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"gqd" = ( -/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/cable, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"gqm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/medical/virology) -"gqq" = ( -/obj/structure/dresser, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hop) -"gqv" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Engineering - Aft"; - name = "engineering camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/spawner/random/structure/tank_holder, -/obj/item/radio/intercom/directional/south, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/engineering/main) -"gqA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/iron, -/area/station/commons/vacant_room/office) -"gqB" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"gqF" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"gqG" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/scrubber, -/obj/structure/sign/poster/official/there_is_no_gas_giant{ - pixel_x = 32 - }, -/turf/open/floor/iron/textured_large, -/area/station/engineering/atmos/project) -"gqH" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Mix to Ports" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"gqM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"gqO" = ( -/obj/machinery/light/directional/south, -/turf/open/floor/wood, -/area/station/service/library) -"gqQ" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/hallway/secondary/command) -"gqR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/maintenance/disposal/incinerator) -"grl" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/turf/open/floor/iron, -/area/station/engineering/main) -"grO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/supply/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/pumproom) -"grV" = ( -/obj/effect/turf_decal/arrows/red{ - dir = 4; - pixel_x = -15 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"gsf" = ( -/obj/structure/table/reinforced, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/wood, -/area/station/engineering/break_room) -"gso" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"gsv" = ( -/obj/effect/landmark/blobstart, -/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/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"gsy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"gsF" = ( -/obj/machinery/door/window/brigdoor{ - id = "scicell"; - name = "Science Holding Cell"; - req_access = list("brig_entrance") - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) -"gsI" = ( -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"gsT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plating, -/area/station/security/prison/upper) -"gsV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"gsY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"gtd" = ( -/obj/effect/landmark/start/chaplain, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"gtf" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"gtj" = ( -/obj/effect/turf_decal/bot, -/obj/structure/tank_dispenser, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"gtx" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck, -/turf/open/floor/iron/grimy, -/area/station/service/abandoned_gambling_den) -"gty" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Break Room" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/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/medical/general, -/turf/open/floor/iron, -/area/station/medical/break_room) -"gtD" = ( -/obj/structure/sign/directions/science{ - pixel_y = -8 - }, -/obj/structure/sign/directions/command{ - dir = 1 - }, -/obj/structure/sign/directions/supply{ - dir = 1; - pixel_y = 8 - }, -/turf/closed/wall, -/area/station/commons/storage/tools) -"gtM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"gtS" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase, -/obj/item/taperecorder, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/electronic_marketing_den) -"gtX" = ( -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"gtY" = ( -/obj/structure/bookcase/random, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"guc" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"gug" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"guj" = ( -/obj/effect/landmark/start/shaft_miner, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"gul" = ( -/obj/machinery/door/poddoor/preopen{ - id = "justicechamber"; - name = "Justice Chamber Blast Door" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/door/window/brigdoor/left/directional/west{ - req_access = list("brig") - }, -/obj/machinery/door/window/brigdoor/left/directional/east{ - req_access = list("brig") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution) -"guq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"gur" = ( -/obj/effect/turf_decal/trimline/darkblue/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/prison/rec) -"guw" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"guz" = ( -/obj/machinery/light/directional/north, -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) -"guH" = ( -/obj/machinery/rnd/experimentor, -/turf/open/floor/engine, -/area/station/science/explab) -"guI" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the Engine."; - dir = 4; - layer = 4; - name = "Engine Monitor"; - network = list("engine"); - pixel_x = -24 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/computer/atmos_control/nocontrol/master{ - dir = 4 - }, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/storage/gas) -"guM" = ( -/obj/item/kirbyplants/random, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/cmo) -"guU" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Unfiltered & Air to Mix" - }, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/mix) -"guY" = ( -/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/grimy, -/area/station/command/heads_quarters/hop) -"gvc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"gvg" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/electronic_marketing_den) -"gvh" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/turf_decal/tile/neutral, -/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/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "medbay-passthrough" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"gvj" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Desk" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/yellow/corner, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"gvk" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"gvq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"gvr" = ( -/obj/machinery/airalarm/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"gvA" = ( -/obj/structure/closet/toolcloset, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"gvG" = ( -/obj/structure/table/wood/poker, -/obj/item/flashlight/lamp, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"gvJ" = ( -/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 = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"gvL" = ( -/obj/effect/turf_decal/tile/green, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"gvN" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/left/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"gvR" = ( -/obj/structure/closet/l3closet/virology, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/medical/virology) -"gvW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/locker) -"gwi" = ( -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"gwr" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/button/door/directional/south{ - id = "evashutters"; - name = "E.V.A. Shutters"; - req_access = list("command") - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"gwt" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/spawner/random/structure/closet_private, -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"gwu" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"gww" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"gwE" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/structure/chair/stool/bar/directional/west, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/wood, -/area/station/service/electronic_marketing_den) -"gwL" = ( -/obj/machinery/hydroponics/soil, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/food_or_drink/seed, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics/garden/abandoned) -"gwM" = ( -/obj/effect/turf_decal/arrows/white, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"gwT" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"gwZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/tank_holder/emergency_oxygen, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"gxk" = ( -/obj/item/paper_bin{ - pixel_x = -7 - }, -/obj/item/pen{ - pixel_x = -7 - }, -/obj/item/reagent_containers/food/drinks/britcup{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/window{ - dir = 1 - }, -/obj/structure/table, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"gxu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"gxv" = ( -/obj/structure/table, -/obj/item/restraints/handcuffs, -/obj/item/clothing/suit/armor/vest, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"gxD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"gxE" = ( -/obj/machinery/holopad, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"gxF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/botanical_waste, -/turf/open/floor/iron/checker, -/area/station/service/hydroponics/garden/abandoned) -"gxK" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"gxL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"gxP" = ( -/obj/structure/sign/directions/evac{ - pixel_y = -8 - }, -/obj/structure/sign/directions/medical, -/obj/structure/sign/directions/security{ - dir = 4; - pixel_y = 8 - }, -/turf/closed/wall, -/area/station/security/courtroom) -"gxW" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/chem_mass_spec, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"gxX" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/science/research) -"gyj" = ( -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/commons/dorms) -"gys" = ( -/obj/machinery/light/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/tcommsat/server) -"gyt" = ( -/obj/item/clipboard{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/newspaper{ - pixel_x = 7; - pixel_y = 11 - }, -/obj/item/newspaper, -/obj/item/pen/red, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/commons/dorms) -"gyv" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/security/range) -"gyE" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/tcommsat/server) -"gyM" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/primary/aft) -"gyR" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/medical/medbay/lobby) -"gyS" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/locker) -"gyW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"gzg" = ( -/obj/effect/landmark/xeno_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/security/detectives_office/private_investigators_office) -"gzj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/public{ - name = "Prison Cell" - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/brown, -/area/station/security/prison/safe) -"gzn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"gzF" = ( -/obj/structure/cable, -/obj/structure/table/reinforced, -/obj/machinery/recharger{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/structure/extinguisher_cabinet/directional/south{ - pixel_x = 32 - }, -/obj/structure/reagent_dispensers/wall/peppertank/directional/east, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/radio, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"gzG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"gzQ" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/east{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "prison intercom"; - prison_radio = 1 - }, -/turf/open/floor/iron/dark/brown/side{ - dir = 6 - }, -/area/station/security/prison/safe) -"gzU" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/machinery/light/directional/west, -/obj/item/clothing/head/welding, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"gzV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"gAc" = ( -/obj/structure/table/glass, -/obj/item/storage/medkit/brute{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/medkit/brute{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/medkit/regular, -/obj/item/storage/medkit/brute{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/machinery/door/window/left/directional/east{ - name = "First-Aid Supplies"; - red_alert_access = 1; - req_access = list("medical") - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/storage) -"gAm" = ( -/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/maintenance/department/science) -"gAq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"gAv" = ( -/obj/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/aft) -"gAw" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter/room) -"gAz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"gAH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/central) -"gAL" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"gBk" = ( -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/engine, -/area/station/science/explab) -"gBm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"gBI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"gBK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"gBP" = ( -/obj/machinery/light/directional/east, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/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/east, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"gCa" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"gCh" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"gCk" = ( -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/item/integrated_circuit/loaded/speech_relay, -/obj/item/integrated_circuit/loaded/hello_world, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"gCn" = ( -/obj/structure/sign/warning/electric_shock/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"gCp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/command/teleporter) -"gCt" = ( -/turf/open/floor/circuit/green, -/area/station/science/xenobiology) -"gCy" = ( -/obj/structure/sign/departments/medbay/alt/directional/east{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/blue, -/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) -"gCB" = ( -/obj/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) -"gCP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Locker Room" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"gCQ" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/toilet/locker) -"gCW" = ( -/obj/structure/cable, -/obj/machinery/holopad/secure, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/security/lockers) -"gCX" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"gCY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/starboard/greater) -"gDc" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/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) -"gDq" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"gDD" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"gDF" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/maintenance/department/electrical) -"gDK" = ( -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/vending/barbervend, -/obj/machinery/button/curtain{ - id = "barbershopcurtains"; - pixel_x = -25; - pixel_y = 24 - }, -/turf/open/floor/iron, -/area/service/salon) -"gDS" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/vending/cigarette, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"gDU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "xeno7"; - name = "Creature Cell #7" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"gDW" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/maintenance/port/aft) -"gDZ" = ( -/obj/structure/table/reinforced/rglass, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/mirror/directional/east, -/obj/item/reagent_containers/spray/barbers_aid{ - pixel_x = 6 - }, -/obj/item/razor{ - pixel_x = -6 - }, -/turf/open/floor/iron, -/area/service/salon) -"gEi" = ( -/obj/machinery/smartfridge/organ, -/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/surgery/aft) -"gEm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green/fourcorners, -/turf/open/floor/iron, -/area/station/medical/virology) -"gEp" = ( -/obj/item/kirbyplants/random, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"gEq" = ( -/obj/machinery/smartfridge/organ, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"gEs" = ( -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) -"gEv" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"gEA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/cargo/storage) -"gEB" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Port Mix to Port Ports" - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"gED" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "xeno1"; - name = "Creature Cell #1" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"gEE" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "xeno3"; - name = "Containment Control"; - req_access = list("xenobiology") - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"gEF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"gEP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"gEQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"gER" = ( -/obj/structure/chair/comfy{ - color = "#596479"; - dir = 8 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/station/security/prison) -"gFb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"gFt" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/machinery/firealarm/directional/west{ - pixel_x = -15 - }, -/turf/open/floor/iron/dark/blue/side{ - dir = 10 - }, -/area/brigofficer) -"gFu" = ( -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"gFz" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/science/breakroom) -"gFG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"gFK" = ( -/obj/machinery/vending/hydroseeds, -/obj/machinery/light_switch/directional/north{ - pixel_x = -8 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics/garden) -"gGc" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/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/maintenance/department/electrical) -"gGl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"gGn" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"gGv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) -"gGw" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/railing, -/obj/structure/chair/sofa/bench/right{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"gGO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"gGR" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"gGV" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/service/lawoffice) -"gGW" = ( -/obj/structure/table/wood/poker, -/obj/item/storage/briefcase, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"gHb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/commons/fitness/recreation) -"gHi" = ( -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"gHl" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/table, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = -8; - pixel_y = -3 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/item/computer_hardware/hard_drive/portable/scipaper_program{ - pixel_x = 4; - pixel_y = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"gHm" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"gHt" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/button/door/directional/north{ - id = "ceblast"; - name = "Office Lockdown Control"; - pixel_x = 6; - pixel_y = 26; - req_access = list("ce") - }, -/obj/machinery/light_switch/directional/north{ - pixel_x = -6 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"gHx" = ( -/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/machinery/airalarm/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"gHA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/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/aft) -"gHG" = ( -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = 12; - pixel_y = -6 - }, -/turf/open/floor/iron/dark/brown/side{ - dir = 5 - }, -/area/station/security/prison/safe) -"gHH" = ( -/obj/structure/cable, -/obj/structure/closet/secure_closet/contraband/heads, -/obj/item/storage/secure/briefcase, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/customs/fore) -"gHI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"gHL" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"gHM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/service/theater/abandoned) -"gHS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/engine/atmos) -"gIh" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/medical/medbay/lobby) -"gIk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"gIl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"gIt" = ( -/obj/machinery/duct, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/main) -"gIu" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"gIy" = ( -/obj/structure/rack, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -4 - }, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 4 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 8 - }, -/obj/item/reagent_containers/hypospray/medipen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/security/prison/upper) -"gIJ" = ( -/obj/machinery/gibber, -/turf/open/floor/iron/dark/textured, -/area/station/service/kitchen/coldroom) -"gIM" = ( -/obj/machinery/atmospherics/components/unary/passive_vent{ - dir = 8 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"gIN" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"gIT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/clothing/head/collectable/hop, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/abandoned_gambling_den/gaming) -"gJi" = ( -/obj/structure/rack, -/obj/effect/spawner/random/clothing/costume, -/obj/effect/spawner/random/clothing/costume, -/obj/item/clothing/neck/tie/black, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"gJj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"gJk" = ( -/turf/closed/wall, -/area/station/security/execution/transfer) -"gJs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Research and Development Lab" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/robotics, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"gJt" = ( -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/commons/dorms) -"gJv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/medbay/central) -"gJA" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"gJB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/grille_or_waste, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"gJF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/engineering/main) -"gJI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"gJT" = ( -/obj/structure/cable, -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/command_all, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"gJZ" = ( -/obj/structure/cable, -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"gKy" = ( -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"gKA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"gKI" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) -"gKJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/bag/bio, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"gKS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"gKT" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"gKW" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"gLu" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/locker) -"gLz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/newscaster/directional/south, -/obj/structure/filingcabinet/filingcabinet, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/storage) -"gLL" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/rd) -"gLO" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"gLP" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/manifold/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"gLT" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery/red, -/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/security/prison/mess) -"gMf" = ( -/obj/structure/noticeboard/directional/south, -/obj/structure/table/wood, -/obj/machinery/computer/med_data/laptop{ - dir = 1; - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"gMl" = ( -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"gMt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"gMy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"gMB" = ( -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"gME" = ( -/obj/structure/sign/warning/vacuum, -/turf/closed/wall, -/area/station/cargo/miningoffice) -"gMH" = ( -/obj/structure/cable, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=engi2"; - location = "engi1" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"gMI" = ( -/obj/structure/fluff/metalpole{ - dir = 10 - }, -/obj/structure/fluff/metalpole/end{ - dir = 4 - }, -/turf/open/space/basic, -/area/station/hallway/secondary/entry) -"gMR" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/obj/machinery/newscaster/directional/west, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"gMT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"gNd" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/binary/pump, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"gNg" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"gNo" = ( -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"gNx" = ( -/obj/effect/landmark/secequipment, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/office) -"gNA" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) -"gNH" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"gNP" = ( -/obj/machinery/portable_atmospherics/canister/plasma, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/main) -"gOh" = ( -/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/starboard/aft) -"gOo" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/hydroponics/soil{ - desc = "A patch of fertile soil that you can plant stuff in."; - icon = 'icons/turf/floors.dmi'; - icon_state = "dirt"; - layer = 2.0001; - plane = -7; - self_sustaining = 1 - }, -/turf/open/floor/plating, -/area/station/security/prison/garden) -"gOr" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"gOB" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"gOH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/security/prison/mess) -"gOK" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/newscaster/directional/north, -/obj/machinery/button/door/directional/south{ - id = "Arrivals_Toilet3"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/recharge_station, -/turf/open/floor/iron, -/area/station/commons/toilet/restrooms) -"gOR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"gOU" = ( -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/captain) -"gPc" = ( -/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, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"gPg" = ( -/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/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"gPj" = ( -/obj/machinery/hydroponics/soil, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/food_or_drink/seed, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plating, -/area/station/service/hydroponics/garden/abandoned) -"gPl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/toilet/locker) -"gPm" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"gPn" = ( -/obj/machinery/door/airlock{ - id_tag = "Arrivals_Toilet3"; - name = "Toilet Unit 3" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/toilet/restrooms) -"gPr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"gPu" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"gPv" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"gPG" = ( -/turf/closed/wall, -/area/station/security/prison/upper) -"gPL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink{ - dir = 4; - pixel_x = -11 - }, -/obj/structure/mirror/directional/west, -/turf/open/floor/iron, -/area/station/medical/morgue) -"gPO" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/kitchen{ - dir = 1 - }, -/area/station/security/prison) -"gPU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"gPV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"gPY" = ( -/turf/open/floor/iron/dark/red/side{ - dir = 9 - }, -/area/station/security/execution) -"gQa" = ( -/obj/machinery/door_timer{ - id = "isolation"; - name = "Solitary Timer"; - pixel_y = 28 - }, -/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/side{ - dir = 1 - }, -/area/station/security/prison) -"gQh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/iron, -/area/station/engineering/storage) -"gQk" = ( -/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/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"gQz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"gQO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"gQV" = ( -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/ce) -"gQZ" = ( -/turf/closed/wall, -/area/station/security/prison/work) -"gRb" = ( -/obj/item/chair/plastic, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/glass, -/area/station/maintenance/space_hut/observatory) -"gRg" = ( -/obj/effect/turf_decal/tile/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/research) -"gRj" = ( -/obj/effect/turf_decal/stripes/full, -/obj/machinery/door/poddoor{ - id = "justiceblast"; - name = "Justice Blast Door" - }, -/turf/open/floor/iron/dark, -/area/station/security/execution) -"gRn" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"gRE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/engineering/main) -"gRS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/maintenance/department/science) -"gRU" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_x = -7; - pixel_y = 7 - }, -/obj/item/reagent_containers/glass/bottle/chloralhydrate{ - pixel_x = -7 - }, -/obj/item/reagent_containers/glass/bottle/facid{ - pixel_x = 7 - }, -/obj/item/storage/backpack/duffelbag/sec/surgery{ - pixel_y = 5 - }, -/obj/machinery/button/door/directional/north{ - id = "justiceblast"; - name = "Justice Shutters Control"; - pixel_x = -6 - }, -/obj/machinery/button/door/directional/north{ - id = "justicechamber"; - name = "Justice Chamber Control"; - pixel_x = -6; - pixel_y = 34 - }, -/obj/machinery/button/ignition{ - id = "justicespark"; - pixel_x = 7; - pixel_y = 24 - }, -/obj/machinery/button/flasher{ - id = "justiceflash"; - pixel_x = 6; - pixel_y = 34 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark/red/side{ - dir = 9 - }, -/area/station/security/execution) -"gRZ" = ( -/obj/structure/lattice, -/obj/structure/grille, -/obj/structure/sign/warning/secure_area/directional/east, -/turf/open/space/basic, -/area/space/nearstation) -"gSf" = ( -/obj/structure/chair/stool/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/locker) -"gSs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"gSz" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 - }, -/obj/machinery/computer/department_orders/security{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"gSJ" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"gSR" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/sink{ - pixel_y = 22 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"gTc" = ( -/obj/machinery/air_sensor/ordnance_burn_chamber, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"gTi" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/structure/rack, -/obj/item/stack/medical/suture, -/obj/item/stack/medical/suture, -/obj/item/stack/medical/mesh, -/obj/item/clothing/glasses/hud/health, -/obj/item/reagent_containers/syringe/contraband/space_drugs, -/obj/item/reagent_containers/syringe{ - list_reagents = list(/datum/reagent/drug/aphrodisiac=20); - name = "crocin syringe"; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"gTr" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/engineering/main) -"gTu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"gTA" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"gTH" = ( -/obj/effect/spawner/structure/window, -/obj/structure/curtain/cloth/fancy/mechanical{ - id = "barbershopcurtains" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/service/salon) -"gTO" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"gUa" = ( -/obj/effect/spawner/random/trash/grille_or_waste, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"gUb" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/abandoned_gambling_den/gaming) -"gUk" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"gUn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external/glass{ - name = "Supply Door Airlock" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron, -/area/station/cargo/storage) -"gUy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/apron/chef, -/obj/item/clothing/head/chefhat, -/obj/item/reagent_containers/food/condiment/flour, -/obj/effect/turf_decal/bot, -/obj/structure/sign/poster/contraband/random/directional/south, -/obj/item/kitchen/rollingpin{ - pixel_x = -4 - }, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"gUW" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"gVq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"gVx" = ( -/obj/structure/cable, -/obj/machinery/door/window/brigdoor/right/directional/south{ - name = "Command Chair"; - req_access = list("command") - }, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"gVP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"gVU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/security/prison/upper) -"gVY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"gWc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"gWn" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"gWp" = ( -/obj/machinery/light/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/filled/warning, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"gWu" = ( -/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, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-left" - }, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"gWy" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/abandoned_gambling_den/gaming) -"gWJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot_white/right, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"gXA" = ( -/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/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/greater) -"gXM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"gXR" = ( -/obj/structure/table, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark/purple/side{ - dir = 10 - }, -/area/station/security/prison/safe) -"gXT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"gXX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/roboticist, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"gYj" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/iron, -/area/station/service/electronic_marketing_den) -"gYk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/prison) -"gYl" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/grimy, -/area/station/service/theater/abandoned) -"gYz" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/west, -/obj/machinery/button/curtain{ - id = "prisoncell7"; - pixel_x = -22; - pixel_y = 10 - }, -/obj/machinery/airalarm/directional/west{ - pixel_y = -4 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/prison) -"gYK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"gYP" = ( -/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/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"gZi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light_switch/directional/west{ - pixel_x = -38 - }, -/obj/machinery/button/door/directional/west{ - id = "construction"; - name = "Auxiliary Construction Shutters"; - req_access = list("aux_base") - }, -/obj/machinery/camera/directional/west{ - c_tag = "Auxiliary Construction"; - name = "engineering camera" - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"gZx" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xeno8"; - name = "Creature Cell #8" - }, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"gZz" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/hand_labeler, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"gZB" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/maintenance/port/greater) -"gZG" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"gZV" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 5 - }, -/obj/structure/sign/warning/secure_area/directional/south, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"gZW" = ( -/obj/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/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"hae" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"hag" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/three, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"haw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"haF" = ( -/obj/structure/sign/warning/secure_area/directional/west, -/turf/open/space/basic, -/area/space) -"haH" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"haI" = ( -/turf/open/floor/circuit/green, -/area/station/engineering/gravity_generator) -"haS" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/firealarm/directional/south{ - pixel_x = -26 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/west, -/obj/machinery/light_switch/directional/south{ - pixel_x = 12 - }, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"hbi" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/medical_all, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"hbm" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Chemistry - Fore"; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"hbn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/light/small/directional/north, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"hbt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/maintenance/department/science) -"hbz" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"hbB" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"hbH" = ( -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/storage) -"hbI" = ( -/obj/machinery/computer/exodrone_control_console, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/window{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"hbK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"hbO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Law Office" - }, -/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/service/lawyer, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"hbS" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/checker, -/area/station/engineering/atmos/pumproom) -"hbV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/security/office) -"hcb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"hcc" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/storage) -"hce" = ( -/obj/machinery/newscaster/directional/north, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"hcf" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"hct" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/poddoor/shutters/window{ - id = "gatewayshutters"; - name = "Gateway Chamber Shutters" - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"hcu" = ( -/obj/machinery/meter, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/maintenance/department/electrical) -"hcx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/r_wall, -/area/station/maintenance/port/greater) -"hcG" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"hcK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/toilet/restrooms) -"hcL" = ( -/obj/effect/spawner/random/trash/graffiti, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"hcN" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"hcQ" = ( -/obj/structure/cable, -/obj/effect/landmark/start/station_engineer, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/main) -"hdd" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Security - Transfer Centre Aft" - }, -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/processing) -"hdk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Virology Containment Cell" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/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/medical/virology, -/turf/open/floor/iron, -/area/station/medical/virology) -"hdl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"hdC" = ( -/obj/structure/table/wood, -/obj/machinery/light/directional/east, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den) -"hdL" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hdS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"hdU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: BLAST DOORS" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/brig) -"hdV" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/folder/white, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"hdZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"hea" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"heh" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/status_display/ai/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Security - Transfer Centre" - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"hek" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"hen" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"heu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/research) -"hew" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/vending/games, -/turf/open/floor/carpet, -/area/station/service/library) -"hey" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/storage) -"heN" = ( -/obj/machinery/power/solar_control{ - dir = 8; - id = "aftstarboard"; - name = "Starboard Quarter Solar Control" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"heP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/r_wall, -/area/station/maintenance/port/aft) -"heX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"heZ" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/mid_joiner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"hfb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"hfe" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/ordnance/testlab) -"hfo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/maintenance/department/science) -"hfB" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/effect/turf_decal/delivery, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"hfG" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"hfM" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron/dark/brown/side{ - dir = 6 - }, -/area/station/security/prison/safe) -"hfV" = ( -/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, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"hfW" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 1 - }, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"hgd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/cardboard, -/obj/effect/spawner/random/engineering/tool, -/obj/effect/spawner/random/engineering/tool, -/obj/effect/spawner/random/engineering/tool, -/obj/effect/spawner/random/engineering/tool, -/obj/effect/spawner/random/engineering/tool, -/turf/open/floor/plating, -/area/station/security/prison/work) -"hgg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Auxiliary Hallway" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/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/aft) -"hgj" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock{ - name = "Unisex Showers" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/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/commons/toilet/locker) -"hgs" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hgz" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/anticorner, -/turf/open/floor/iron/dark/smooth_corner{ - dir = 1 - }, -/area/station/engineering/gravity_generator) -"hgD" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/storage/medkit/regular, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"hgG" = ( -/obj/structure/table, -/obj/item/soap, -/obj/item/storage/bag/tray, -/obj/item/storage/box/condimentbottles{ - pixel_y = 10 - }, -/obj/item/storage/box/beakers{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/iron/kitchen, -/area/station/security/prison/mess) -"hgJ" = ( -/turf/closed/wall, -/area/station/commons/vacant_room/commissary) -"hgT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"hhe" = ( -/obj/machinery/light/directional/north, -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"hhn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"hhB" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/directional/east, -/obj/item/wrench, -/obj/item/assembly/timer, -/obj/item/assembly/signaler, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"hhF" = ( -/obj/effect/turf_decal/tile/neutral{ - 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/aft) -"hhK" = ( -/obj/structure/sign/warning/vacuum, -/turf/closed/wall, -/area/station/cargo/storage) -"hhM" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos/mix) -"hhV" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/delivery, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - freq = 1400; - location = "Bar" - }, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"hib" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"hih" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/structure/table, -/obj/item/seeds/tomato, -/obj/item/seeds/wheat, -/obj/item/seeds/potato, -/obj/item/seeds/apple, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"hiF" = ( -/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, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"hiH" = ( -/obj/machinery/telecomms/processor/preset_three, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"hiJ" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"hiK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"hiM" = ( -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"hiT" = ( -/obj/effect/turf_decal/siding/green{ - dir = 6 - }, -/obj/effect/landmark/start/botanist, -/turf/open/floor/iron/dark/smooth_large, -/area/station/service/hydroponics) -"hiV" = ( -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"hiZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/science/lobby) -"hja" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"hjd" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/radio/intercom/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"hjg" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/hallway/secondary/entry) -"hjl" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"hjm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"hjp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"hjr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel) -"hjJ" = ( -/turf/open/floor/iron/kitchen, -/area/station/security/prison/mess) -"hjN" = ( -/obj/machinery/door/window/brigdoor/left/directional/north{ - name = "Captain's Desk"; - req_access = list("captain") - }, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/captain) -"hjS" = ( -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab" - }, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance_storage, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"hjU" = ( -/turf/open/floor/iron/white/corner{ - dir = 8 - }, -/area/station/commons/fitness/recreation) -"hka" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"hkn" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/delivery, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"hkJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/no_smoking/directional/east, -/obj/structure/tank_dispenser, -/obj/machinery/camera/directional/east{ - c_tag = "Engineering - Gear Storage"; - name = "engineering camera" - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/storage) -"hkR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/kitchen, -/area/station/security/prison/mess) -"hle" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/work) -"hlD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/central/aft) -"hlH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"hlJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/security/detectives_office/private_investigators_office) -"hlY" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"hmr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/prison) -"hms" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating{ - initial_gas_mix = "o2=0.01;n2=0.01;TEMP=2.7"; - luminosity = 2; - temperature = 2.7 - }, -/area/station/security/execution/transfer) -"hmx" = ( -/obj/docking_port/stationary/random{ - id = "pod_lavaland"; - name = "lavaland" - }, -/turf/open/space/basic, -/area/space) -"hmy" = ( -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"hmA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "viro-passthrough" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"hmJ" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/storage/gas) -"hmO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/prison) -"hmS" = ( -/obj/structure/cable, -/obj/structure/table/reinforced, -/obj/item/crowbar, -/obj/item/restraints/handcuffs, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"hmU" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"hmY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "N2 to Airmix" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"hnk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/captain/private) -"hny" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/east, -/obj/structure/sign/warning/no_smoking/directional/east, -/turf/open/floor/iron{ - icon_state = "chapel" - }, -/area/station/service/chapel) -"hnB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/evac/directional/north, -/obj/item/kirbyplants/random, -/obj/machinery/camera/directional/east{ - c_tag = "Fore Hallway - Fore Entrance"; - name = "hallway camera" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"hnG" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Departures - Fore"; - name = "departures camera" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"hnI" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"hnJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/medical/virology) -"hnL" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hnP" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/cargo/storage) -"hor" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/aft) -"hoz" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"hoC" = ( -/turf/closed/wall, -/area/station/cargo/office) -"hoM" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/station/security/execution/transfer) -"hoQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/green/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"hpj" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/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/surgery/theatre) -"hps" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/shoes/magboots{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/shoes/magboots, -/obj/effect/turf_decal/delivery, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/engineering/storage) -"hpu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"hpv" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"hqd" = ( -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/service/salon) -"hqf" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/wrench, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"hqj" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/light_switch/directional/north{ - pixel_x = -8 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"hqv" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/checkpoint/escape) -"hqA" = ( -/obj/item/radio/intercom/directional/south, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"hqH" = ( -/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/starboard/aft) -"hqK" = ( -/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/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/office) -"hqL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/bot, -/obj/machinery/electrolyzer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/textured_large, -/area/station/engineering/atmos/project) -"hqV" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"hqY" = ( -/obj/machinery/light/directional/east, -/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/secondary/command) -"hri" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/obj/machinery/light_switch/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/commons/toilet/locker) -"hrx" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/newscaster/directional/west, -/obj/machinery/light_switch/directional/west{ - pixel_x = -42 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/warden) -"hrz" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"hrG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"hrK" = ( -/obj/structure/cable, -/obj/machinery/requests_console/directional/west{ - announcementConsole = 1; - department = "Chief Engineer's Desk"; - departmentType = 3; - name = "Chief Engineer's Requests Console" - }, -/obj/machinery/camera/directional/west{ - c_tag = "Engineering - Chief Engineer's Office"; - name = "engineering camera" - }, -/obj/machinery/computer/apc_control{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"hrY" = ( -/obj/machinery/light/directional/north, -/obj/item/flashlight/lamp, -/obj/machinery/airalarm/directional/east, -/obj/structure/table/wood, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"hsg" = ( -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"hsn" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/cargo/lobby) -"hsp" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"hsq" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - name = "Bar Junction"; - sortType = 19 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"hsB" = ( -/obj/machinery/atmospherics/components/binary/temperature_gate{ - dir = 4; - on = 1 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"hsG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/range) -"hsU" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/closet/crate/silvercrate, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"hte" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/medical/virology) -"htg" = ( -/obj/machinery/hydroponics/soil{ - desc = "A patch of fertile soil that you can plant stuff in."; - icon = 'icons/turf/floors.dmi'; - icon_state = "dirt"; - layer = 2.0001; - plane = -7; - self_sustaining = 1 - }, -/obj/item/seeds/tower, -/turf/open/floor/plating, -/area/station/security/prison/garden) -"htw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/solars/port/aft) -"hty" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/security/processing) -"htD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"htF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/light/small/directional/south, -/obj/structure/table/wood, -/obj/item/food/pie/cream, -/obj/item/paper/crumpled{ - info = "Knock them dead out there, sport!"; - name = "note from mom" - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/service/theater) -"htG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"htO" = ( -/obj/structure/closet/secure_closet/evidence, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/warden) -"hub" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"hup" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"huv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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) -"huJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"hva" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) -"hvn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"hvQ" = ( -/obj/structure/disposalpipe/segment, -/obj/item/kirbyplants/dead, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"hwa" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"hwe" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/machinery/light_switch/directional/east{ - pixel_y = 14 - }, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"hwo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"hwu" = ( -/obj/structure/cable, -/obj/machinery/light/small/directional/south, -/obj/effect/spawner/random/structure/crate, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"hww" = ( -/mob/living/basic/cockroach, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"hwC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Auxiliary Tool Storage" - }, -/obj/effect/landmark/navigate_destination, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"hwM" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/project) -"hwS" = ( -/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) -"hxg" = ( -/obj/machinery/light/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Locker Room - Fore"; - name = "dormitories camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/commons/locker) -"hxj" = ( -/obj/machinery/duct, -/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, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"hxl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"hxr" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/station/hallway/secondary/construction) -"hxw" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"hxH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"hyj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"hym" = ( -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"hyE" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/medical) -"hyI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"hyJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/lockers) -"hyP" = ( -/obj/structure/cable, -/obj/machinery/computer/rdconsole{ - 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/command/heads_quarters/rd) -"hyT" = ( -/obj/machinery/light/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Central Hallway - Center Starboard"; - name = "hallway camera" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"hza" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"hzs" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"hzz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"hzA" = ( -/obj/item/kirbyplants/random, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"hzD" = ( -/obj/structure/cable, -/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/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"hAc" = ( -/obj/structure/cable, -/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, -/area/station/hallway/primary/central/fore) -"hAl" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"hAm" = ( -/obj/structure/chair/office, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/library) -"hAA" = ( -/obj/structure/chair/stool/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/locker) -"hAB" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/office) -"hAG" = ( -/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/machinery/disposal/bin, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"hAH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"hAN" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"hAU" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"hBr" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/machinery/computer/atmos_control/plasma_tank{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hBF" = ( -/obj/structure/kitchenspike, -/obj/effect/turf_decal/bot/left, -/turf/open/floor/iron/dark, -/area/station/service/kitchen/coldroom) -"hCd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-toxins-passthrough" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/port/lesser) -"hCh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/computer/warrant{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"hCl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering{ - name = "Auxiliary Construction Zone" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/aux_base, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"hCo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/security/warden) -"hCs" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/rnd/production/techfab/department/service, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/iron/checker, -/area/station/hallway/secondary/service) -"hCE" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"hCM" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"hCX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/spawner/random/trash/mess, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/department/engine/atmos) -"hDl" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"hDJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external/glass{ - name = "Supply Door Airlock" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron, -/area/station/cargo/storage) -"hDK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "perma-entrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron, -/area/station/security/brig) -"hDT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/storage) -"hDX" = ( -/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/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"hDZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/storage) -"hEa" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"hEh" = ( -/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, -/area/station/security/checkpoint/escape) -"hEr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/stool/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"hEt" = ( -/obj/structure/sign/warning/vacuum, -/turf/closed/wall/r_wall, -/area/station/maintenance/port/aft) -"hEy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/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; - sortType = 27 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"hEF" = ( -/turf/closed/wall/r_wall, -/area/station/security/lockers) -"hEH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) -"hEI" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"hEK" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"hEQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"hEV" = ( -/obj/structure/table/glass, -/obj/item/folder/blue, -/obj/item/computer_hardware/hard_drive/portable/medical, -/obj/item/computer_hardware/hard_drive/portable/medical, -/obj/item/computer_hardware/hard_drive/portable/chemistry, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"hEZ" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"hFk" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/spawner/random/entertainment/arcade, -/turf/open/floor/iron, -/area/station/commons/lounge) -"hFl" = ( -/obj/machinery/light/directional/east, -/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/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"hFn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research/glass{ - name = "Robotics Lab" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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/science/robotics, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"hFu" = ( -/obj/machinery/status_display/ai/directional/east, -/obj/structure/frame/computer{ - dir = 8 - }, -/turf/open/floor/carpet/blue, -/area/station/commons/vacant_room/office) -"hFx" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the RD's goons and the AI's satellite from the safety of his office."; - name = "Research Monitor"; - network = list("rd","minisat"); - pixel_y = 2 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"hFE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/science/lab) -"hFK" = ( -/obj/machinery/iv_drip, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"hFM" = ( -/obj/structure/table, -/obj/item/stack/package_wrap{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/stack/wrapping_paper, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"hFP" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/siding/white/corner{ - dir = 4 - }, -/obj/machinery/door/airlock/freezer{ - name = "Coldroom" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/duct, -/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"hFT" = ( -/obj/structure/closet/secure_closet/brig{ - id = "brig1"; - name = "Cell 1 Locker" - }, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"hFY" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/structure/sign/warning/no_smoking/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"hGd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"hGj" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "gulagdoor"; - name = "Security Transferring Center" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"hGm" = ( -/obj/structure/table/reinforced, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"hGt" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"hGu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"hGF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) -"hGW" = ( -/obj/machinery/mass_driver/ordnance{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/science/ordnance/testlab) -"hGY" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"hHl" = ( -/obj/item/soap/nanotrasen, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"hHt" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/effect/landmark/start/head_of_security, -/obj/structure/disposalpipe/segment{ - 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/grimy, -/area/station/command/heads_quarters/hos) -"hHE" = ( -/obj/structure/frame/machine, -/obj/item/stack/cable_coil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/science/research/abandoned) -"hHG" = ( -/obj/machinery/telecomms/receiver/preset_left, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"hHS" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"hHX" = ( -/obj/structure/chair/wood{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"hIf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"hIo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/caution{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"hIs" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"hIx" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"hIH" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"hIK" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/electrical, -/obj/machinery/light/directional/west, -/obj/item/clothing/gloves/color/yellow, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"hIP" = ( -/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, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"hIT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/upper) -"hIU" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"hIZ" = ( -/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/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"hJh" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"hJj" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"hJo" = ( -/obj/structure/table/wood, -/obj/item/folder/white{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/folder/red, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office/private_investigators_office) -"hJq" = ( -/obj/structure/tank_dispenser, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"hJr" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/medical/virology) -"hJs" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"hJu" = ( -/obj/machinery/light/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Medbay - Starboard"; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/blue, -/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) -"hJv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"hJz" = ( -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"hJB" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/security_officer, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/holding_cell) -"hJC" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/curtain/cloth/fancy/mechanical{ - id = "barbershopcurtains" - }, -/turf/open/floor/plating, -/area/service/salon) -"hJE" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Science Maintenance" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/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/science/general, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"hJG" = ( -/turf/open/floor/iron/white/side{ - dir = 1 - }, -/area/station/commons/fitness/recreation) -"hJL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"hJM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/recharge_floor, -/area/station/science/robotics/mechbay) -"hJP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 6 - }, -/obj/machinery/duct, -/obj/effect/landmark/start/bartender, -/turf/open/floor/iron/grimy, -/area/station/service/bar) -"hJY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard) -"hKd" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/hallway/primary/central/aft) -"hKu" = ( -/obj/effect/turf_decal/tile/yellow{ - 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/chemistry) -"hKC" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"hKE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/large, -/area/station/service/hydroponics) -"hKH" = ( -/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, -/turf/open/floor/iron, -/area/station/command/teleporter) -"hKI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/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/aft) -"hKZ" = ( -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/bot, -/obj/machinery/vending/wardrobe/atmos_wardrobe, -/obj/effect/turf_decal/delivery, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"hLa" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/office) -"hLe" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery/blue, -/obj/machinery/door/airlock/security{ - req_access = list("brig") - }, -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "permaturnstile"; - name = "Lockdown" - }, -/turf/open/floor/iron/dark, -/area/station/security/prison) -"hLq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"hLu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"hMn" = ( -/obj/machinery/mineral/stacking_unit_console{ - machinedir = 8; - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"hMx" = ( -/obj/machinery/camera{ - c_tag = " Prison - Central"; - network = list("ss13","prison") - }, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron, -/area/station/security/prison) -"hMz" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil/five, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"hMG" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/science/auxlab) -"hMH" = ( -/obj/structure/frame/computer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office/private_investigators_office) -"hMO" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"hMP" = ( -/obj/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/security/brig) -"hNg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"hNl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "right_arrivals_shutters"; - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"hNp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/edge{ - dir = 4 - }, -/area/station/engineering/atmos/project) -"hNr" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/office) -"hNx" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/commons/toilet/locker) -"hNA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"hND" = ( -/obj/structure/table, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"hNF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/office) -"hNP" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/iron/white, -/area/station/maintenance/fore) -"hNU" = ( -/turf/open/space/basic, -/area/space/nearstation) -"hNW" = ( -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"hOa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/poddoor{ - id = "engstorage"; - name = "Engineering Secure Storage Lockdown" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"hOd" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"hOh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"hOr" = ( -/obj/machinery/shower{ - pixel_y = 16 - }, -/obj/effect/turf_decal/trimline/blue/end, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"hOw" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hos) -"hOy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/port_gen/pacman/pre_loaded, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"hOz" = ( -/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) -"hOF" = ( -/obj/effect/turf_decal/tile/blue, -/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/aft) -"hOY" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/main) -"hPs" = ( -/obj/machinery/door/poddoor/shutters{ - id = "evashutters"; - name = "E.V.A. Storage Shutters" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"hPw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/office) -"hPE" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - name = "Robotics Junction"; - sortType = 14 - }, -/turf/open/floor/iron, -/area/station/science/research) -"hPJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hPN" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/prison) -"hPO" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/sign/warning/vacuum/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/hallway) -"hPZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/dropper, -/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/aft) -"hQd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"hQj" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"hQm" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Teleporter Maintenance" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/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, -/obj/effect/mapping_helpers/airlock/access/all/command/teleporter, -/turf/open/floor/plating, -/area/station/maintenance/central) -"hQp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/circuit/green, -/area/station/science/research/abandoned) -"hQq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/office) -"hQu" = ( -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"hQC" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Research Division - Genetics Lab"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/machinery/computer/scan_consolenew{ - dir = 4 - }, -/obj/machinery/requests_console/directional/south{ - department = "Genetics"; - name = "Genetics Requests console" - }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"hQJ" = ( -/obj/structure/table/wood, -/obj/item/storage/secure/safe/directional/east, -/obj/machinery/computer/security/wooden_tv, -/obj/machinery/light_switch/directional/south{ - pixel_x = 8 - }, -/obj/machinery/button/door/directional/south{ - id = "detectivewindows"; - name = "Privacy Shutters"; - pixel_x = -6; - req_access = list("detective") - }, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"hQK" = ( -/obj/structure/reflector/box, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"hQO" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/suit/jacket/letterman_nanotrasen, -/obj/item/clothing/suit/toggle/lawyer, -/obj/item/clothing/under/costume/kilt, -/obj/item/clothing/head/beret, -/obj/machinery/airalarm/directional/north, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/wood, -/area/station/commons/dorms) -"hRc" = ( -/obj/structure/cable, -/obj/structure/table/reinforced, -/obj/item/stack/rods{ - amount = 25 - }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"hRi" = ( -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/processing) -"hRx" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/junction, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"hRy" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/engine/atmos) -"hRC" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Surgery Maintenance" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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/medical/surgery, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"hRS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"hRT" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"hRV" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"hRX" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/grimy, -/area/station/commons/vacant_room/office) -"hRY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Research Division Access" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-entrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron, -/area/station/science/research) -"hRZ" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"hSa" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 10 - }, -/turf/open/space/basic, -/area/space/nearstation) -"hSd" = ( -/obj/machinery/button/curtain{ - id = "prisoncell10"; - pixel_y = 21 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/brown/side{ - dir = 1 - }, -/area/station/security/prison/safe) -"hSl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"hSr" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"hSu" = ( -/obj/effect/spawner/random/trash/box, -/obj/effect/spawner/random/food_or_drink/seed, -/obj/effect/spawner/random/trash/botanical_waste, -/obj/item/reagent_containers/food/drinks/waterbottle/empty, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"hSx" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hSA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Science - Ordnance Storage"; - name = "science camera"; - network = list("ss13","rd") - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"hSE" = ( -/obj/structure/chair/stool/bar/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/grimy, -/area/station/service/abandoned_gambling_den) -"hSG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"hST" = ( -/obj/structure/destructible/cult/item_dispenser/archives/library, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/station/service/library/abandoned) -"hTi" = ( -/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, -/area/station/hallway/primary/fore) -"hTl" = ( -/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/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/storage) -"hTm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Primary Hallway" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/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/starboard) -"hTo" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron, -/area/station/medical/surgery/aft) -"hTr" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/chair/sofa/left{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/commons/lounge) -"hTE" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/orderly, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"hTH" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/medical/chemistry) -"hUb" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Port Mix to Engine" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hUm" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 9 - }, -/obj/machinery/vending/coffee, -/turf/open/space/basic, -/area/space/nearstation) -"hUq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"hUt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/closet/radiation, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron, -/area/station/engineering/main) -"hUB" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/checker, -/area/station/engineering/atmos/mix) -"hUD" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"hUE" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning, -/obj/effect/turf_decal/siding/yellow, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hUI" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/machinery/door/firedoor/heavy, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"hUK" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics - co2 Cell"; - name = "atmospherics camera" - }, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"hUO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/grimy, -/area/station/commons/vacant_room/office) -"hUR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"hUS" = ( -/obj/machinery/light/directional/west, -/turf/open/floor/wood, -/area/station/service/library) -"hUU" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/chair/sofa/bench{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"hUV" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/wall, -/area/station/engineering/atmos/storage) -"hUY" = ( -/obj/machinery/chem_heater/withbuffer, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/requests_console/directional/south{ - department = "Pharmacy"; - name = "Pharmacy Requests Console"; - receive_ore_updates = 1 - }, -/turf/open/floor/iron, -/area/station/medical/pharmacy) -"hVf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "perma-entrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"hVj" = ( -/turf/open/floor/plating, -/area/station/security/detectives_office/private_investigators_office) -"hVm" = ( -/obj/structure/cable, -/obj/machinery/holopad/secure, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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, -/area/station/ai_monitored/turret_protected/ai_upload) -"hWh" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"hWq" = ( -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - dir = 1 - }, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) -"hWz" = ( -/obj/structure/closet/secure_closet/atmospherics, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"hWB" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"hWF" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"hWG" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"hWW" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"hWY" = ( -/obj/structure/reflector/double, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/mid_joiner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"hWZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/plaque{ - icon_state = "L4" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"hXd" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/toolbox/emergency{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/emergency, -/obj/item/shovel, -/obj/item/shovel, -/obj/item/pickaxe, -/obj/item/pickaxe, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"hXj" = ( -/obj/machinery/light/directional/north, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/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/science/research) -"hXo" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Cooling to Filters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"hXw" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/west, -/obj/machinery/duct, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"hXx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"hXB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"hXE" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"hXJ" = ( -/obj/structure/table, -/obj/item/storage/box/masks{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/gloves, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"hYa" = ( -/obj/structure/table/wood, -/obj/item/folder/white, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/medical/break_room) -"hYb" = ( -/obj/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, -/area/station/command/heads_quarters/hop) -"hYj" = ( -/obj/effect/turf_decal/tile/green/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"hYn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/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, -/turf/open/floor/iron, -/area/station/science/breakroom) -"hYD" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Mixing Room" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/engineering/atmos/mix) -"hYJ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"hYM" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/aft) -"hYO" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"hYQ" = ( -/obj/structure/girder, -/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/aft) -"hYZ" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"hZi" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"hZk" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/security/brig) -"hZl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/morgue{ - name = "Occult Study" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/service/library/abandoned) -"hZo" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"hZq" = ( -/obj/structure/cable, -/obj/machinery/power/smes, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"hZr" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"hZs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"hZH" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/obj/item/flashlight, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"hZL" = ( -/obj/machinery/camera{ - c_tag = " Prison - Library"; - network = list("ss13","prison") - }, -/obj/structure/closet/crate/bin, -/obj/item/toy/figure/syndie, -/obj/effect/spawner/random/contraband/prison, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/station/security/prison) -"hZT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"hZX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Lockerroom" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"iaa" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/cargo/storage) -"ian" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"iat" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"iav" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"iaF" = ( -/obj/effect/turf_decal/delivery/red, -/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/public/glass{ - name = "Janitorial" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/station/security/prison) -"iaJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/half{ - dir = 8 - }, -/area/station/engineering/atmos/project) -"iaL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hopblast"; - name = "HoP Blast Door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/command/heads_quarters/hop) -"iaN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"iaP" = ( -/obj/structure/rack, -/obj/machinery/light/small/directional/south, -/obj/item/storage/toolbox/emergency, -/obj/item/wrench, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"iaS" = ( -/obj/effect/turf_decal/arrows/white{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"ibb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/radio/intercom/directional/north{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "prison intercom"; - prison_radio = 1 - }, -/turf/open/floor/iron/dark/purple/side{ - dir = 5 - }, -/area/station/security/prison/safe) -"ibk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/aft) -"ibn" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/office) -"ibp" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"ibG" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/aft) -"ibQ" = ( -/obj/structure/easel, -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas/twentythree_twentythree, -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/library) -"ibT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"icb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"icf" = ( -/obj/structure/weightmachine/weightlifter, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/commons/fitness/recreation) -"icg" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/electronic_marketing_den) -"ick" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"icl" = ( -/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/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/aft) -"ics" = ( -/obj/machinery/duct, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/engineering/main) -"icE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"icG" = ( -/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/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"icM" = ( -/obj/structure/disposalpipe/segment, -/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/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/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/structure/closet/crate/internals, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"icP" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/security/processing) -"icS" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"icV" = ( -/obj/effect/turf_decal/stripes/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/secondary/command) -"icX" = ( -/obj/structure/sign/warning/pods/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"icY" = ( -/turf/closed/wall, -/area/station/engineering/atmos) -"idf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"idm" = ( -/obj/structure/chair/sofa/bench/left{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/fore) -"idp" = ( -/obj/structure/cable, -/obj/structure/table, -/obj/item/grenade/chem_grenade/cleaner{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/item/grenade/chem_grenade/cleaner{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/key/janitor{ - pixel_y = -7 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/checker, -/area/station/service/janitor) -"idu" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"idD" = ( -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"idF" = ( -/obj/structure/sign/warning/secure_area/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"idQ" = ( -/obj/structure/kitchenspike, -/obj/effect/turf_decal/bot/right, -/turf/open/floor/iron/dark, -/area/station/service/kitchen/coldroom) -"idT" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/stool/bar, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"idV" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/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/research) -"iei" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/research) -"iem" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ieC" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"ieH" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"ieI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"ieW" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/item/pipe_dispenser, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"iff" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"ifl" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"ifn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"ifq" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/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, -/turf/open/floor/iron, -/area/station/medical/break_room) -"ifH" = ( -/obj/structure/sign/poster/official/build{ - pixel_y = -32 - }, -/obj/structure/table/reinforced, -/turf/open/floor/iron/white, -/area/station/science/auxlab) -"ifK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood, -/obj/item/clothing/suit/toggle/owlwings, -/obj/item/clothing/under/costume/owl, -/obj/item/clothing/mask/gas/owl_mask, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"ifR" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"ifU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/space_heater, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"iga" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"igb" = ( -/obj/item/radio/intercom/directional/south, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"igg" = ( -/turf/closed/wall, -/area/station/science/explab) -"igj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/service/kitchen/abandoned) -"igk" = ( -/obj/machinery/door/window/brigdoor{ - name = "Creature Pen"; - req_access = list("research") - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xeno5"; - name = "Creature Cell #5" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"igo" = ( -/obj/machinery/computer/exoscanner_control, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/window{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"igu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"igv" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/service/chapel/office) -"igD" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/service/theater/abandoned) -"igG" = ( -/obj/structure/table/wood, -/obj/item/food/grown/poppy/lily, -/obj/item/food/grown/poppy/lily, -/obj/item/food/grown/poppy/lily, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/grimy, -/area/station/commons/dorms) -"igO" = ( -/obj/structure/sign/directions/evac{ - pixel_y = -8 - }, -/obj/structure/sign/directions/medical{ - dir = 4 - }, -/obj/structure/sign/directions/security{ - dir = 4; - pixel_y = 8 - }, -/turf/closed/wall, -/area/station/medical/medbay/lobby) -"igX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - 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/command/heads_quarters/rd) -"ihb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"ihh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"ihj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/medical/virology) -"iho" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"ihp" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office/private_investigators_office) -"ihF" = ( -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/structure/flora/bush/stalky/style_random, -/obj/structure/flora/rock/pile/style_random, -/turf/open/misc/grass, -/area/station/hallway/primary/fore) -"ihN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/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/command/gateway) -"ihW" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/left/directional/south{ - dir = 8; - name = "Chemistry Desk"; - req_access = list("pharmacy") - }, -/obj/machinery/door/window/right/directional/east{ - name = "Chemistry Desk" - }, -/obj/item/folder/white, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/medical/pharmacy) -"iia" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"iib" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"iif" = ( -/obj/structure/cable, -/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/port/greater) -"iig" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"iij" = ( -/obj/item/kirbyplants/random, -/obj/machinery/camera/directional/west{ - c_tag = "Chapel - Port"; - name = "chapel camera" - }, -/turf/open/floor/iron{ - dir = 1; - icon_state = "chapel" - }, -/area/station/service/chapel) -"iio" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"iiy" = ( -/obj/structure/bookcase/random/reference, -/turf/open/floor/wood, -/area/station/security/prison) -"iiJ" = ( -/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/plating, -/area/station/maintenance/starboard/aft) -"iiP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/cargo_gauntlet{ - pixel_y = 6 - }, -/obj/item/clothing/gloves/cargo_gauntlet{ - pixel_y = 3 - }, -/obj/item/clothing/gloves/cargo_gauntlet, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"iiY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - 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, -/area/station/command/heads_quarters/rd) -"ija" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/item/book/fish_catalog, -/obj/structure/table/wood, -/turf/open/floor/iron, -/area/service/salon) -"ijj" = ( -/obj/structure/sign/directions/command{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/station/command/gateway) -"ijp" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/commons/dorms) -"iju" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/warden) -"ijC" = ( -/obj/structure/sign/warning/secure_area/directional/north, -/obj/machinery/light/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ijE" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"ijG" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Security - Departures Starboard" - }, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"ijH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/checker, -/area/station/service/theater) -"ijK" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"ike" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/meter, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"ikh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"ikl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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) -"ikq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"iky" = ( -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"ikC" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/closet/crate/goldcrate, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"ikD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=service5"; - location = "service4" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"ikH" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/commons/storage/tools) -"ikR" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"ikT" = ( -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"ikV" = ( -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"ikY" = ( -/obj/structure/chair/office, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/library/abandoned) -"iln" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/siding/brown/corner, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"ilo" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"ilq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"ilz" = ( -/obj/structure/rack, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/clothing/mask/gas, -/obj/item/clothing/head/hardhat/red, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"ilG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"ilH" = ( -/obj/machinery/atmospherics/components/unary/bluespace_sender, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/textured, -/area/station/engineering/atmos) -"ilI" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"ilJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Primary Tool Storage" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"ilV" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/requests_console/directional/north{ - department = "Medbay"; - departmentType = 1; - name = "Medbay Requests Console" - }, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/medical/storage) -"img" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/security/range) -"imx" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xenosecure"; - name = "Secure Pen Shutters" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"imI" = ( -/obj/structure/cable, -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics - Incinerator"; - name = "atmospherics camera" - }, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"imQ" = ( -/obj/machinery/light/directional/west, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"imT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"imV" = ( -/obj/machinery/gravity_generator/main, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/half, -/obj/effect/turf_decal/tile/neutral/half{ - dir = 1 - }, -/turf/open/floor/iron/dark/smooth_half, -/area/station/engineering/gravity_generator) -"ind" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/wall, -/area/station/service/kitchen/abandoned) -"ing" = ( -/obj/structure/table/reinforced/rglass, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/mirror/directional/east, -/obj/item/reagent_containers/dropper, -/obj/item/hairbrush/comb{ - pixel_y = 10 - }, -/turf/open/floor/iron, -/area/service/salon) -"inq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron{ - icon = 'icons/turf/floors.dmi' - }, -/area/station/security/prison/upper) -"ins" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"int" = ( -/obj/machinery/photocopier, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/wood, -/area/station/service/library) -"inv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"inx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/siding/green{ - dir = 1 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/service/hydroponics) -"inS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/chair/office, -/obj/effect/landmark/start/botanist, -/turf/open/floor/iron/half, -/area/station/service/hydroponics) -"inV" = ( -/obj/structure/table/wood, -/obj/item/radio/intercom, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"inX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"ioe" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/main) -"ioh" = ( -/obj/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/security/warden) -"ios" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"iov" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/machinery/pdapainter/engineering, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"ioK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/three, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"ioT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/public{ - name = "Prison Cell" - }, -/turf/open/floor/iron/dark/purple, -/area/station/security/prison/safe) -"ipe" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/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, -/area/station/command/gateway) -"ipz" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/storage/box{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/lights/mixed, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"ipQ" = ( -/turf/closed/wall, -/area/station/command/bridge) -"ipT" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/medical/break_room) -"iqa" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/obj/machinery/airalarm/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"iql" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"iqq" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"iqz" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/crowbar, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/storage) -"iqN" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/research) -"iqQ" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"iqR" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/command/gateway) -"irl" = ( -/turf/closed/wall/r_wall, -/area/station/service/lawoffice) -"iro" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"irr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump/on/scrubbers/visible{ - dir = 8; - name = "External Ports to Filter" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"irs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/directional/east{ - c_tag = "Central Hallway - Bridge Starboard"; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"irJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"irP" = ( -/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/neutral{ - dir = 8 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/commons/dorms) -"irQ" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"irR" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/iron{ - amount = 30 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"isc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"isy" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) -"isH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"isQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/iron, -/area/station/cargo/storage) -"isZ" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/theatre) -"itn" = ( -/obj/structure/disposalpipe/segment, -/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/tile/neutral, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"itv" = ( -/obj/machinery/light_switch/directional/north, -/obj/machinery/camera/directional/west{ - c_tag = "Library Backroom 2"; - dir = 1; - name = "library camera" - }, -/turf/open/floor/iron/dark, -/area/station/service/library) -"itx" = ( -/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/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"itF" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 6 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria, -/area/station/engineering/atmos) -"itI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/thermomachine/heater/on{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/pumproom) -"itR" = ( -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"itV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/glass, -/obj/effect/spawner/random/structure/grille, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"itW" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/hydroponics/soil{ - desc = "A patch of fertile soil that you can plant stuff in."; - icon = 'icons/turf/floors.dmi'; - icon_state = "dirt"; - layer = 2.0001; - plane = -7; - self_sustaining = 1 - }, -/obj/item/reagent_containers/glass/bottle/nutrient/ez, -/turf/open/floor/plating, -/area/station/security/prison/garden) -"itZ" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron{ - dir = 1; - icon_state = "chapel" - }, -/area/station/service/chapel) -"iuc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"iue" = ( -/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/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"iuf" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"iuk" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"iul" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"iut" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/station/security/prison/upper) -"iuD" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/syringe, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/medical/medbay/lobby) -"iuI" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/item/book/manual/hydroponics_pod_people, -/obj/item/paper/guides/jobs/hydroponics, -/obj/item/clothing/accessory/armband/hydro, -/obj/item/toy/figure/botanist, -/obj/structure/table/glass, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"iuQ" = ( -/obj/machinery/door/window/brigdoor/security/cell/right/directional/west{ - id = "brig1"; - name = "Cell 1" - }, -/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/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"ivd" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"ivg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ivt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/cargo/storage) -"ivv" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"ivA" = ( -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/captain/private) -"ivD" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"ivH" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/sign/warning/radiation/directional/south, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"ivM" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/lighter, -/obj/structure/cable, -/turf/open/floor/iron/dark/brown/side{ - dir = 10 - }, -/area/station/security/prison/safe) -"ivR" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"ivX" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L14" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"iwb" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/electrical, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"iwe" = ( -/turf/open/floor/carpet, -/area/station/service/chapel/office) -"iwf" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) -"iwi" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/vending/cigarette, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"iwl" = ( -/obj/structure/cable, -/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, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"iwn" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"iwy" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Central Hallway - Aft Port"; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"iwC" = ( -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"iwI" = ( -/obj/machinery/light/directional/south, -/obj/machinery/status_display/evac/directional/south, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/medical/virology) -"iwJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"iwW" = ( -/obj/machinery/computer/cargo{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"ixh" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/folder/blue, -/obj/item/pen, -/turf/open/floor/iron/grimy, -/area/station/command/bridge) -"ixm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Virology Access" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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/medical/virology, -/turf/open/floor/iron, -/area/station/medical/virology) -"ixA" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/taperecorder, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"ixE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/photocopier, -/obj/machinery/button/door/directional/east{ - id = "left_arrivals_shutters"; - name = "Left Arrivals Hallway Shutters"; - pixel_y = 6 - }, -/obj/machinery/button/door/directional/east{ - id = "right_arrivals_shutters"; - name = "Right Arrivals Hallway Shutters"; - pixel_y = -4 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/customs/fore) -"ixG" = ( -/obj/structure/loom, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/work) -"ixN" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/effect/landmark/start/captain, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/captain/private) -"ixO" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"ixR" = ( -/obj/structure/cable, -/obj/structure/table/wood, -/obj/item/taperecorder, -/obj/item/restraints/handcuffs, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"ixZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"iyc" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/blue/filled, -/obj/structure/transit_tube/station/dispenser/reverse/flipped, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"iyf" = ( -/obj/machinery/vending/coffee, -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"iyh" = ( -/obj/structure/closet/crate/freezer/blood, -/obj/machinery/vending/wallmed/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/theatre) -"iyj" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"iyp" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/station/service/library/abandoned) -"iyq" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/commons/storage/primary) -"iyw" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"iyy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/tcommsat/server) -"iyB" = ( -/obj/machinery/chem_dispenser, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/pharmacy) -"iyE" = ( -/obj/structure/dresser, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"iyH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"iyM" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/chair/sofa/bench/right{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"iyN" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"iyX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/tcommsat/server) -"iyY" = ( -/obj/structure/table/reinforced, -/obj/item/scalpel{ - pixel_y = 16 - }, -/obj/item/circular_saw, -/obj/structure/sign/warning/no_smoking/directional/south, -/obj/structure/mirror/directional/east, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"izj" = ( -/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/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"izo" = ( -/obj/structure/table/wood, -/obj/item/gavelblock, -/obj/item/gavelhammer, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"izp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"izs" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/clothing/head/helmet/sec{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/sec, -/obj/item/clothing/head/helmet/sec{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/suit/armor/vest/security{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/suit/armor/vest/security, -/obj/item/clothing/suit/armor/vest/security{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"izx" = ( -/obj/effect/spawner/structure/window/reinforced, -/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) -"izz" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/item/healthanalyzer, -/obj/item/clothing/glasses/hud/health, -/obj/structure/cable, -/obj/item/clothing/glasses/science, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/medical/virology) -"izG" = ( -/obj/machinery/light/small/directional/north, -/obj/item/kirbyplants/random, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/wood, -/area/station/service/electronic_marketing_den) -"izM" = ( -/obj/structure/table, -/obj/item/storage/box/donkpockets/donkpocketberry, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/mess) -"izS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/commons/locker) -"iAb" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"iAc" = ( -/obj/structure/cable, -/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, -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - sortType = 27 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"iAf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"iAi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"iAj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/bluespace_vendor/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"iAx" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"iAF" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"iBp" = ( -/obj/machinery/door/window/left/directional/north{ - name = "Engineering Delivery"; - req_access = list("construction") - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/main) -"iBr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner, -/area/station/maintenance/port/greater) -"iBO" = ( -/obj/machinery/power/turbine/inlet_compressor, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"iBR" = ( -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/ce) -"iBZ" = ( -/obj/structure/table/wood, -/obj/item/clothing/under/costume/geisha, -/obj/item/clothing/shoes/sandal, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/theater/abandoned) -"iCf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"iCo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"iCu" = ( -/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/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"iCx" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"iCA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/plaques/kiddie/library, -/turf/open/floor/plating, -/area/station/service/library) -"iCB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"iCK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"iCO" = ( -/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/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"iCZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"iDc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/brig) -"iDe" = ( -/obj/machinery/suit_storage_unit/hos, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/item/radio/intercom/directional/south, -/obj/machinery/button/door/directional/east{ - id = "hosroom"; - name = "Privacy Control"; - req_access = list("hos") - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hos) -"iDg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"iDp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"iDw" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/medical/virology) -"iDz" = ( -/turf/open/floor/iron/dark/red/side{ - dir = 4 - }, -/area/station/security/execution) -"iDC" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/spawner/random/vending/colavend, -/turf/open/floor/iron/dark, -/area/station/security/prison) -"iDG" = ( -/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/command/bridge) -"iDP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"iDS" = ( -/obj/machinery/computer/department_orders/engineering{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"iEe" = ( -/obj/effect/turf_decal/siding/yellow, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"iEi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departures Lounge" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"iEr" = ( -/obj/effect/turf_decal/siding/green{ - dir = 5 - }, -/obj/effect/landmark/start/botanist, -/turf/open/floor/iron/dark/smooth_large, -/area/station/service/hydroponics) -"iEs" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/chair/stool/bar/directional/south, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"iEt" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"iEz" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/station/science/research) -"iEI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/steam_vent, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"iEM" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/radio/intercom/directional/west, -/obj/item/storage/toolbox/electrical{ - pixel_y = 3 - }, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"iET" = ( -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"iFf" = ( -/obj/machinery/light/directional/east, -/obj/structure/closet/secure_closet/personal/patient, -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = 32 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"iFk" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/bluespace_vendor/directional/south, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/hallway/primary/central/aft) -"iFn" = ( -/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/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Break Room" - }, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"iFv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bodycontainer/morgue{ - dir = 2 - }, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"iFI" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"iFR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"iFV" = ( -/obj/structure/table/wood, -/obj/item/poster/random_contraband{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/poster/random_contraband{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/poster/random_contraband, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/electronic_marketing_den) -"iFX" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"iGd" = ( -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"iGg" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"iGj" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"iGm" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/poddoor/preopen{ - id = "engielock"; - name = "Engineering Lockdown Blast Door" - }, -/turf/open/floor/iron/half, -/area/station/engineering/main) -"iGv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"iGx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 5 - }, -/turf/open/floor/iron/dark/red/side{ - dir = 4 - }, -/area/station/security/execution) -"iGI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/command/minisat, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"iGU" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"iGZ" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"iHf" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/qm) -"iHg" = ( -/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/holding_cell) -"iHn" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"iHq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/security/execution/transfer) -"iHs" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"iHy" = ( -/obj/machinery/computer/crew{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hos) -"iHB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/security/warden) -"iHJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/pdapainter/research, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"iHS" = ( -/obj/machinery/light/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"iIg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"iIs" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistbot"; - name = "Chemistry Side Shutters"; - dir = 8 - }, -/turf/open/floor/plating, -/area/station/medical/pharmacy) -"iIz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/electric_shock/directional/west, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/processing) -"iIC" = ( -/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/wood, -/area/station/command/heads_quarters/hop) -"iIX" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/research_director, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"iJj" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/iron/white/side, -/area/station/service/kitchen/abandoned) -"iJl" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/button/door/directional/west{ - id = "chemisttop"; - name = "Pharmacy Top Shutter Control"; - pixel_y = 6; - req_access = list("pharmacy") - }, -/obj/machinery/button/door/directional/west{ - id = "chemistbot"; - name = "Pharmacy Bottom Shutter Control"; - pixel_y = -6; - req_access = list("pharmacy") - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"iJr" = ( -/obj/structure/chair/office, -/obj/effect/landmark/start/cargo_technician, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/office) -"iJF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"iJJ" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = 32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"iJS" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/firealarm/directional/west{ - pixel_x = -38 - }, -/obj/machinery/button/door/directional/west{ - id = "gulagdoor"; - name = "Transfer Door Control"; - normaldoorcontrol = 1 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"iJT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/space/nearstation) -"iJU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"iJY" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L10" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"iKd" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"iKl" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"iKr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Hydroponics Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"iKC" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"iKD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"iKH" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"iKL" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/mess) -"iKP" = ( -/obj/structure/table/wood, -/obj/item/clothing/under/rank/civilian/curator, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"iKZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"iLa" = ( -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/three, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"iLc" = ( -/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, -/obj/machinery/button/door/directional/north{ - id = "evashutters"; - name = "E.V.A. Shutters"; - req_access = list("command") - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"iLk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"iLp" = ( -/obj/machinery/gulag_item_reclaimer{ - pixel_y = 28 - }, -/obj/item/kirbyplants/random, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"iLr" = ( -/turf/closed/wall, -/area/station/service/theater/abandoned) -"iLu" = ( -/obj/structure/bodycontainer/morgue, -/obj/structure/sign/poster/official/ian{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"iLv" = ( -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"iLD" = ( -/turf/closed/wall, -/area/station/engineering/atmos/pumproom) -"iLF" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/food/chococoin, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den/gaming) -"iLH" = ( -/turf/closed/wall/r_wall, -/area/station/science/ordnance/burnchamber) -"iLK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"iLN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"iMf" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"iMg" = ( -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"iMh" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron, -/area/service/salon) -"iMy" = ( -/obj/structure/table/wood, -/obj/item/dice/d20, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/library/abandoned) -"iMB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"iMD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"iME" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Atmospherics - Mix Cell"; - name = "atmospherics camera" - }, -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"iMK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"iML" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/station/science/ordnance/burnchamber) -"iMU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/main) -"iMV" = ( -/obj/item/chair/stool/bar{ - pixel_y = -8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit/old, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"iNg" = ( -/obj/effect/landmark/start/hangover/closet, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"iNi" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/junction{ - 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/space/basic, -/area/space/nearstation) -"iNn" = ( -/obj/structure/barricade/wooden, -/obj/structure/girder, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"iNu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"iNw" = ( -/obj/machinery/light/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Medbay - Port"; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/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, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"iNA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/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/security/execution/transfer) -"iNH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"iNJ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 1 - }, -/obj/machinery/door/poddoor/preopen{ - id = "engielock"; - name = "Engineering Lockdown Blast Door" - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/half, -/area/station/engineering/main) -"iNR" = ( -/obj/item/kirbyplants/random, -/obj/machinery/status_display/evac/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"iNS" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"iNV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "ert-lz-starboard" - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - space_dir = 8 - }, -/turf/open/floor/plating, -/area/space) -"iNY" = ( -/obj/structure/sign/poster/official/help_others{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red{ - 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/starboard) -"iOc" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/prison) -"iOj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/meter, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"iOu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"iOA" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/paper_bin, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/grimy, -/area/station/command/bridge) -"iON" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/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/research) -"iOU" = ( -/obj/machinery/door/poddoor/shutters{ - id = "portbow_maint_shutters"; - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_y = 6 - }, -/obj/item/pen, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"iOV" = ( -/obj/item/storage/box/chemimp{ - pixel_x = 6 - }, -/obj/item/storage/box/trackimp{ - pixel_x = -3 - }, -/obj/item/storage/lockbox/loyalty, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"iPa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/starboard/aft) -"iPe" = ( -/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, -/area/station/engineering/lobby) -"iPi" = ( -/obj/effect/spawner/random/vending/snackvend, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"iPC" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/wood, -/area/station/service/library) -"iPE" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"iPJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"iPK" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark/blue/side{ - dir = 1 - }, -/area/brigofficer) -"iQg" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"iQy" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron, -/area/station/medical/pharmacy) -"iQV" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 8; - filter_type = list(/datum/gas/nitrogen) - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"iRc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"iRf" = ( -/obj/machinery/power/turbine/turbine_outlet, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"iRg" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"iRq" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"iRu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/rack, -/obj/item/weldingtool, -/obj/item/wrench, -/obj/item/clothing/head/welding, -/obj/item/clothing/gloves/color/yellow, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"iRv" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"iRx" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/obj/item/wrench, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/engineering/supermatter) -"iRJ" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/grimy, -/area/station/commons/dorms) -"iRP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/storage) -"iSb" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"iSf" = ( -/obj/machinery/photocopier, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"iSi" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"iSk" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"iSl" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/shutters{ - id = "custodialshutters"; - name = "Custodial Closet Shutters"; - dir = 1 - }, -/turf/open/floor/iron/dark/textured_half, -/area/station/service/janitor) -"iSR" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Security's Quarters" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/security/hos, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"iSS" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Departures Hallway - Fore"; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/yellow, -/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) -"iST" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"iTq" = ( -/obj/structure/table, -/obj/item/extinguisher/mini, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/mask/breath, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"iTA" = ( -/obj/structure/table, -/obj/item/toy/foamblade, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/locker) -"iTM" = ( -/obj/structure/table/reinforced, -/obj/item/computer_hardware/hard_drive/portable/quartermaster, -/obj/item/computer_hardware/hard_drive/portable/quartermaster, -/obj/item/computer_hardware/hard_drive/portable/quartermaster, -/obj/item/gps/mining, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/paper_bin/carbon, -/turf/open/floor/iron, -/area/station/cargo/qm) -"iTV" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/research) -"iUl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron, -/area/station/science/research) -"iUr" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/engineering/main) -"iUs" = ( -/obj/item/toy/plush/beeplushie{ - desc = "Maybe hugging this will make you feel better about yourself."; - name = "Therabee" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/brown/side{ - dir = 10 - }, -/area/station/security/prison/safe) -"iUz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"iUE" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/medical/morgue) -"iUV" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/computer/atmos_control/oxygen_tank{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"iUY" = ( -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/breakroom) -"iVb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/machinery/firealarm/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"iVn" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/qm) -"iVq" = ( -/turf/closed/wall, -/area/station/security/courtroom) -"iVr" = ( -/obj/structure/disposalpipe/segment, -/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/grimy, -/area/station/service/lawoffice) -"iVu" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"iVz" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"iVT" = ( -/obj/machinery/photocopier, -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"iVW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"iVZ" = ( -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"iWk" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Engineering Guard's Office" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engie_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"iWm" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/office) -"iWq" = ( -/obj/structure/cable, -/obj/machinery/door/window/brigdoor{ - id = "cargocell"; - name = "Cargo Holding Cell"; - req_access = list("brig_entrance") - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"iWx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"iWA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"iWF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"iWV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/furniture_parts, -/obj/effect/spawner/random/structure/crate_empty, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"iXc" = ( -/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 - }, -/obj/item/kirbyplants/random, -/obj/machinery/status_display/evac/directional/east, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"iXd" = ( -/obj/effect/landmark/start/shaft_miner, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"iXf" = ( -/obj/structure/curtain/cloth/fancy, -/turf/open/floor/wood/tile, -/area/station/security/execution/transfer) -"iXj" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"iXo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/maintenance/department/science) -"iXp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Turbine Generator Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"iXu" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"iXw" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"iXA" = ( -/obj/machinery/door/window/right/directional/west{ - name = "Ordnance Freezer Chamber Access"; - req_access = list("ordnance") - }, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible/layer2{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"iXB" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"iXD" = ( -/turf/closed/wall, -/area/station/security/interrogation) -"iXF" = ( -/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, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"iXM" = ( -/obj/structure/cable, -/obj/item/kirbyplants/random, -/obj/machinery/door_timer{ - id = "engcell"; - name = "Engineering Cell"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"iXO" = ( -/obj/machinery/light_switch/directional/south{ - pixel_x = -6 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"iYi" = ( -/turf/closed/wall, -/area/station/commons/toilet/locker) -"iYp" = ( -/obj/structure/cable, -/obj/machinery/nuclearbomb/selfdestruct{ - layer = 2 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"iYI" = ( -/obj/structure/sign/warning/secure_area/directional/west, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"iYK" = ( -/obj/machinery/chem_dispenser, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"iYL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/lockers) -"iYS" = ( -/obj/structure/cable, -/obj/machinery/light/small/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Technology Storage - Secure"; - name = "engineering camera" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"iYW" = ( -/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/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/structure/closet/crate/internals, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/aft) -"iYX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/station/service/library/abandoned) -"iZg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"iZn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"iZq" = ( -/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/mess) -"iZs" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"iZw" = ( -/obj/machinery/button/door/directional/east{ - id = "atmoslock"; - name = "Atmospherics Lockdown Control"; - pixel_y = 8; - req_access = list("atmospherics") - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"iZE" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/station/medical/medbay/lobby) -"iZL" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/station/security/checkpoint/medical) -"iZN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - 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) -"iZO" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/electronic_marketing_den) -"iZY" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/mix_input{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"jac" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"jap" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"jaq" = ( -/obj/structure/rack, -/obj/item/tank/internals/oxygen, -/obj/item/radio, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/command/teleporter) -"jau" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/south, -/obj/structure/noticeboard/directional/south, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/storage) -"jaA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"jaF" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/plaque{ - icon_state = "L4" - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"jaV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Command Hallway" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/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{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"jaX" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 9 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"jaZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"jbr" = ( -/obj/structure/curtain/cloth/fancy/mechanical/start_closed{ - desc = "A set of curtains serving as a fancy theater backdrop. They can only be opened by a button."; - id = "theater_curtains"; - name = "Theater Curtains" - }, -/turf/open/floor/wood/large, -/area/station/service/theater) -"jbu" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/chair/stool/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/kitchen/abandoned) -"jby" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall3"; - location = "serviceentrance" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"jbz" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/lesser) -"jbE" = ( -/obj/machinery/status_display/ai/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/service/chapel) -"jbI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"jbR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"jbU" = ( -/obj/structure/sign/warning/biohazard/directional/south, -/obj/effect/turf_decal/bot, -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/virology) -"jbV" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/engineering/main) -"jcd" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"jce" = ( -/obj/structure/table/wood, -/obj/machinery/light/directional/south, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/machinery/computer/security/telescreen/vault{ - dir = 8; - pixel_x = 26 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"jcg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"jcl" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"jcv" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/spawner/random/entertainment/cigar, -/turf/open/floor/iron, -/area/station/commons/lounge) -"jcy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/storage) -"jcA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/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) -"jcC" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase, -/obj/item/toy/figure/assistant, -/turf/open/floor/iron/grimy, -/area/station/commons/vacant_room/office) -"jcL" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/engineering/supermatter) -"jcS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"jcT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/commons/toilet/restrooms) -"jcU" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"jdc" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L7" - }, -/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/aft) -"jde" = ( -/obj/machinery/vending/wardrobe/chem_wardrobe, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"jdj" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/secondary/service) -"jdl" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/door/airlock/glass_large{ - dir = 8; - name = "Cafeteria" - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/mess) -"jdm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/greater) -"jdz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/medical/virology) -"jdB" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jdE" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"jdI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/office) -"jdL" = ( -/turf/closed/wall, -/area/station/maintenance/fore) -"jdT" = ( -/obj/item/stack/sheet/cardboard{ - amount = 10 - }, -/obj/structure/loom, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/work) -"jej" = ( -/obj/machinery/power/smes, -/obj/machinery/light/small/directional/south, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"jem" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/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/line{ - dir = 1 - }, -/obj/effect/turf_decal/siding/white, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"jex" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"jey" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"jeC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/smooth, -/area/station/hallway/secondary/entry) -"jeD" = ( -/obj/item/flashlight/seclite, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/commons/dorms) -"jeF" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"jeI" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32; - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"jeN" = ( -/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/security/range) -"jeO" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"jfe" = ( -/obj/structure/table, -/obj/item/storage/medkit/regular, -/obj/effect/turf_decal/delivery, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"jfn" = ( -/obj/machinery/vending/wardrobe/bar_wardrobe, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/iron/checker, -/area/station/service/bar) -"jfy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/commons/toilet/restrooms) -"jfE" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"jfK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"jfL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/secure_area/directional/west, -/turf/open/floor/plating, -/area/station/engineering/atmos/mix) -"jfO" = ( -/obj/structure/table, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"jfP" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/main) -"jgb" = ( -/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/side{ - dir = 1 - }, -/area/station/security/prison) -"jgq" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"jgv" = ( -/obj/structure/reflector/double, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"jgw" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp, -/obj/machinery/camera/directional/south{ - c_tag = "Security - Interrogation" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/radio/intercom/directional/south{ - broadcasting = 1; - frequency = 1423; - listening = 0; - name = "Interrogation Intercom" - }, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"jgz" = ( -/obj/structure/noticeboard/directional/south{ - name = "memorial board" - }, -/obj/machinery/holopad, -/obj/machinery/light/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Chapel - Aft"; - name = "chapel camera" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/service/chapel) -"jgG" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"jgK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"jgM" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window{ - dir = 8; - name = "Fitness Ring" - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"jgN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/east, -/obj/machinery/status_display/ai/directional/east, -/obj/structure/table/wood, -/obj/effect/spawner/random/entertainment/musical_instrument, -/obj/item/clothing/glasses/monocle, -/turf/open/floor/wood, -/area/station/service/theater) -"jgT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/obj/structure/tank_holder/extinguisher, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"jgZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/lightreplacer{ - pixel_y = 7 - }, -/obj/item/storage/box/lights/mixed, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/storage_shared) -"jhc" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor/right/directional/north{ - name = "Warden's Desk"; - req_access = list("armory") - }, -/obj/machinery/door/window/right/directional/south{ - name = "Warden's Desk" - }, -/obj/item/folder/red, -/obj/item/pen, -/obj/item/poster/random_official{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/poster/random_official, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/security/warden) -"jhh" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"jhl" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Port Mix to Starboard Ports" - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jhu" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/bookcase/random, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"jhA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"jhH" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/light_switch/directional/south{ - pixel_x = -6 - }, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"jhJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den/gaming) -"jhQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/firealarm/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"jhW" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron, -/area/station/science/research) -"jhY" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/cmo) -"jie" = ( -/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/flip{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"jim" = ( -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - color = "#c45c57"; - dir = 1 - }, -/obj/effect/landmark/start/captain, -/obj/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, -/area/station/command/heads_quarters/captain) -"jio" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"jiq" = ( -/turf/open/floor/engine, -/area/station/science/explab) -"jiC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"jiF" = ( -/obj/structure/cable, -/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/machinery/bluespace_vendor/directional/north, -/turf/open/floor/iron, -/area/station/commons/dorms) -"jiG" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/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{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"jiZ" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/science/breakroom) -"jjh" = ( -/obj/structure/sign/warning/secure_area/directional/north, -/obj/machinery/light/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/security/range) -"jjk" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Hydroponics" - }, -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"jjo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron, -/area/station/engineering/main) -"jjq" = ( -/obj/structure/fireaxecabinet/directional/south, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"jjv" = ( -/obj/machinery/light/directional/south, -/obj/machinery/newscaster/directional/south, -/obj/machinery/photocopier, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/qm) -"jjw" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Engineering - Supermatter"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/structure/sign/warning/radiation/directional/east, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"jjC" = ( -/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/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/half{ - dir = 8 - }, -/area/station/hallway/primary/port) -"jjQ" = ( -/obj/item/paper_bin, -/obj/item/assembly/prox_sensor{ - pixel_x = 5; - pixel_y = 7 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 5; - pixel_y = 7 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 5; - pixel_y = 7 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/bot, -/obj/item/mod/core/standard{ - pixel_x = -4 - }, -/obj/item/mod/core/standard{ - pixel_x = 4 - }, -/obj/item/mod/core/standard{ - pixel_y = 4 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"jjX" = ( -/obj/item/storage/medkit/fire, -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"jjZ" = ( -/obj/item/storage/box/teargas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/flashbangs{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/gun/grenadelauncher, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"jka" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - 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/virology) -"jkf" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L11" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"jko" = ( -/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, -/obj/machinery/door/airlock/command{ - name = "Chief Engineer's Office" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"jkr" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"jkA" = ( -/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/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"jkH" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"jkJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"jkK" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/mask/gas, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson/engine, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/main) -"jkL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"jkS" = ( -/obj/structure/bed, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/glasses/blindfold, -/obj/item/clothing/mask/muzzle, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Security - Prison Sanitarium"; - dir = 4; - network = list("ss13","prison") - }, -/turf/open/floor/iron/white, -/area/station/security/medical) -"jkZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/chair/stool/bar/directional/west, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"jlf" = ( -/obj/structure/closet, -/obj/effect/spawner/random/clothing/costume, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"jlh" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/research) -"jlp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/command/teleporter) -"jly" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"jlR" = ( -/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/white, -/area/station/security/medical) -"jlV" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/station/medical/chemistry) -"jlZ" = ( -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"jmj" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"jmm" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Atmospherics Maintenance" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/maintenance/department/engine/atmos) -"jmn" = ( -/obj/docking_port/stationary/random{ - dir = 4; - id = "pod_4_lavaland"; - name = "lavaland" - }, -/turf/open/space, -/area/space) -"jmF" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/carbon_input{ - dir = 4 - }, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"jmT" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/security/courtroom) -"jmY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"jnd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/cargo/storage) -"jnj" = ( -/obj/structure/bodycontainer/morgue, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"jnr" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"jnx" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"jnG" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/main) -"jnH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/meter, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jnY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/pumproom) -"joo" = ( -/obj/structure/closet/bombcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"jox" = ( -/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, -/area/station/engineering/hallway) -"joz" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 8 - }, -/obj/structure/sign/warning/secure_area/directional/south, -/turf/open/space/basic, -/area/space/nearstation) -"joH" = ( -/obj/item/kirbyplants/random, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"joJ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/hallway/primary/aft) -"joP" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Cargo Maintenance" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"joU" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/iron/checker, -/area/station/hallway/secondary/service) -"jpj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security{ - name = "Private Interrogation" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/security/detective, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"jpx" = ( -/obj/item/kirbyplants/random, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/theater/abandoned) -"jpA" = ( -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office/private_investigators_office) -"jpV" = ( -/obj/effect/turf_decal/tile/purple, -/obj/machinery/button/door/directional/south{ - id = "idquarters"; - name = "Privacy Control"; - req_access = list("rd") - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"jpW" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/arrows{ - dir = 8 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/hallway/secondary/entry) -"jqb" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"jqg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"jqs" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/effect/landmark/start/quartermaster, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"jrp" = ( -/turf/closed/wall, -/area/station/cargo/storage) -"jru" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/white, -/area/station/security/medical) -"jrA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/execution/transfer) -"jrB" = ( -/obj/machinery/computer/station_alert{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"jrG" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/obj/structure/cable, -/turf/open/floor/iron/dark/blue/side{ - dir = 6 - }, -/area/station/security/prison/safe) -"jrJ" = ( -/obj/machinery/button/door/directional/north{ - id = "teleporterhubshutters"; - name = "Teleporter Shutters"; - req_access = list("command") - }, -/obj/machinery/bluespace_beacon, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/teleporter) -"jsg" = ( -/obj/structure/chair, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"jsh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"jsm" = ( -/obj/machinery/light/directional/south, -/obj/machinery/status_display/supply{ - pixel_y = -32 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Cargo Bay - Aft Starboard"; - name = "cargo camera" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/cargo/storage) -"jsr" = ( -/obj/machinery/light/directional/north, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/structure/closet/secure_closet/security/med, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"jsI" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"jsL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"jta" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"jtb" = ( -/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, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/maintenance/department/science) -"jti" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"jtm" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/obj/machinery/door/window/right/directional/east{ - base_state = "left"; - dir = 1; - icon_state = "left"; - name = "Danger: Conveyor Access"; - req_access = list("maint_tunnels") - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"jtu" = ( -/obj/structure/chair/office, -/turf/open/floor/wood, -/area/station/commons/dorms) -"jtC" = ( -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"jtD" = ( -/obj/structure/mirror/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/theater/abandoned) -"jtH" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/station/hallway/secondary/construction) -"jtL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/security/range) -"jtQ" = ( -/obj/structure/bookcase/random/fiction, -/turf/open/floor/wood, -/area/station/service/library) -"jtV" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/maintenance/port/aft) -"juo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/ore_box, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"juv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "xeno4"; - name = "Creature Cell #4" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"juz" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigprison"; - name = "Prison Blast Door" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/button/door/directional/east{ - id = "brigprison"; - name = "Prison Lockdown" - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"juH" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"juP" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/pumproom) -"juU" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "QM #4" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/button/door/directional/west{ - id = "warehouse_shutters"; - name = "warehouse shutters control" - }, -/mob/living/simple_animal/bot/mulebot{ - beacon_freq = 1400; - home_destination = "QM #1"; - suffix = "#1" - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"juX" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"jvm" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"jvs" = ( -/turf/open/floor/wood, -/area/station/service/lawoffice) -"jvx" = ( -/obj/structure/table/wood, -/obj/machinery/light_switch/directional/south{ - pixel_x = 8 - }, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/circuitboard/machine/microwave, -/turf/open/floor/iron/dark, -/area/station/service/electronic_marketing_den) -"jvF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"jvO" = ( -/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/security/glass{ - name = "Security Checkpoint" - }, -/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/access/all/security/general, -/turf/open/floor/iron/dark/textured, -/area/station/security/checkpoint/customs/fore) -"jvQ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"jvT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"jvW" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/light/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/lockers) -"jwb" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/stool/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/theater) -"jwd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/medical/virology) -"jwg" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"jwq" = ( -/obj/structure/table, -/obj/item/folder, -/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/fitness/recreation) -"jwr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/customs/fore) -"jwt" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "cargodeliver"; - name = "crate return conveyor"; - pixel_x = -8 - }, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"jwA" = ( -/obj/structure/cable, -/obj/machinery/firealarm/directional/east, -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"jwP" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/machinery/newscaster/directional/north, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/medical/storage) -"jwT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"jwZ" = ( -/obj/machinery/vending/wardrobe/sec_wardrobe, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"jxd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/head/fedora, -/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/station/security/prison/upper) -"jxe" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"jxg" = ( -/obj/structure/closet/secure_closet/injection, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/dark/red/side{ - dir = 5 - }, -/area/station/security/execution) -"jxn" = ( -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"jxA" = ( -/obj/structure/table/wood, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_x = -3; - pixel_y = 5 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/breakroom) -"jxB" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"jxJ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"jxM" = ( -/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/aft) -"jxQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"jyb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Research Division Access" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/navigate_destination, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-entrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron, -/area/station/science/research) -"jye" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/space, -/area/space/nearstation) -"jyo" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"jyp" = ( -/obj/machinery/light/directional/north, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/prison) -"jys" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/office) -"jyu" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"jyz" = ( -/obj/structure/closet/radiation, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"jyA" = ( -/obj/item/kirbyplants/random, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"jyB" = ( -/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, -/area/station/commons/storage/tools) -"jyG" = ( -/obj/machinery/door/window/brigdoor/right/directional/west{ - name = "Shooting Range"; - req_access = list("security") - }, -/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/security/range) -"jyV" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/obj/effect/landmark/navigate_destination{ - location = "Escape" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"jzt" = ( -/obj/structure/table/wood, -/obj/item/paper_bin/construction, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"jzC" = ( -/obj/structure/cable, -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"jzE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"jzK" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/white, -/area/station/science/research) -"jzP" = ( -/obj/effect/turf_decal/tile/neutral/half{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"jzT" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album, -/obj/item/camera, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"jAi" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/chair/sofa/bench/left{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"jAk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Storage" - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/turf_decal/siding/yellow/corner, -/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, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"jAp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark/side, -/area/station/security/prison) -"jAs" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/obj/machinery/camera/directional/north{ - c_tag = "Departures - Center"; - name = "departures camera" - }, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"jAA" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"jAI" = ( -/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/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"jAK" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/lights/mixed{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/lights/mixed, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"jAW" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/medical/medbay/lobby) -"jBj" = ( -/obj/item/storage/toolbox/emergency, -/obj/item/tank/internals/oxygen, -/obj/item/wrench, -/obj/effect/spawner/random/structure/table_or_rack, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"jBt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair/comfy/black, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) -"jBE" = ( -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/effect/turf_decal/trimline/blue/end{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"jBM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"jBR" = ( -/obj/structure/cable, -/obj/machinery/modular_computer/console/preset/command, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"jCa" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/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 = 4 - }, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/command/teleporter) -"jCb" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/machinery/button/flasher{ - id = "brigflashdoor"; - name = "Flash Control"; - pixel_x = 26; - pixel_y = 7; - req_access = list("security") - }, -/obj/machinery/button/door/directional/east{ - id = "brigfront"; - name = "Brig Access Control"; - pixel_y = -6; - req_access = list("security") - }, -/obj/machinery/button/door/directional/east{ - id = "brigwindows"; - name = "Cell Window Control"; - pixel_x = 36; - pixel_y = -6; - req_access = list("security") - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/holding_cell) -"jCg" = ( -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"jCj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"jCt" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"jCv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/security/prison) -"jCx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/stamp/qm, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/qm) -"jCC" = ( -/obj/structure/sign/departments/medbay/alt/directional/east, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 6 - }, -/obj/item/reagent_containers/syringe, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"jCF" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/structure/mirror/directional/west, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/virology) -"jCI" = ( -/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/fitness/recreation) -"jCK" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"jCW" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) -"jDd" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/department/science) -"jDk" = ( -/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/neutral/fourcorners, -/obj/effect/turf_decal/siding/yellow, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"jDp" = ( -/turf/closed/wall, -/area/station/security/prison/shower) -"jDy" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigprison"; - name = "Prison Blast Door" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/pods/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"jDB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/security/brig) -"jDL" = ( -/obj/machinery/light/directional/west, -/obj/structure/chair/pew/left, -/turf/open/floor/iron{ - dir = 8; - icon_state = "chapel" - }, -/area/station/service/chapel) -"jDU" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den) -"jDX" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/medical/medbay/lobby) -"jDY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"jDZ" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"jEm" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/storage/gas) -"jEn" = ( -/obj/structure/railing, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"jEt" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"jED" = ( -/obj/structure/closet/secure_closet/chemical, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/iron, -/area/station/medical/pharmacy) -"jEF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"jEK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"jEN" = ( -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"jEY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"jFd" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/right/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"jFg" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"jFu" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/reagent_containers/dropper, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/iron/white, -/area/station/security/medical) -"jFz" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/tank_holder, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"jFC" = ( -/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, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/airlock/mining{ - name = "Cargo Bay" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron, -/area/station/cargo/office) -"jGe" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"jGl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jGr" = ( -/obj/structure/chair/pew, -/turf/open/floor/iron{ - dir = 8; - icon_state = "chapel" - }, -/area/station/service/chapel) -"jGs" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK" - }, -/turf/closed/wall/r_wall, -/area/station/maintenance/port/aft) -"jGx" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 10 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"jGD" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"jGG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/rnd/production/protolathe/department/engineering, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/bot, -/obj/machinery/camera/directional/north{ - c_tag = "Engineering - Shared Storage"; - name = "engineering camera" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage_shared) -"jGI" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jGO" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/virologist, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"jGR" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/qm) -"jHb" = ( -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"jHf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/office) -"jHi" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/half, -/area/station/service/hydroponics) -"jHn" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"jHq" = ( -/obj/structure/cable, -/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/commons/toilet/locker) -"jHs" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/item/stock_parts/cell/high, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/item/experi_scanner, -/obj/item/experi_scanner{ - pixel_x = 4 - }, -/obj/item/experi_scanner{ - pixel_x = -4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/science/lab) -"jHw" = ( -/obj/machinery/hydroponics/soil{ - desc = "A patch of fertile soil that you can plant stuff in."; - icon = 'icons/turf/floors.dmi'; - icon_state = "dirt"; - layer = 2.0001; - plane = -7; - self_sustaining = 1 - }, -/obj/structure/water_source{ - dir = 8; - name = "sink"; - pixel_x = 12; - pixel_y = -6 - }, -/turf/open/floor/plating, -/area/station/security/prison/garden) -"jHC" = ( -/obj/machinery/light/directional/east, -/obj/machinery/requests_console/directional/east{ - announcementConsole = 1; - department = "Quartermaster's Desk"; - departmentType = 2; - name = "Quartermaster's Requests Console" - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/cargo/qm) -"jHP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"jHX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"jIa" = ( -/obj/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/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/storage) -"jIf" = ( -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/white, -/area/station/science/research) -"jIs" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"jIB" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jIO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"jJc" = ( -/turf/closed/wall, -/area/station/security/checkpoint) -"jJe" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/layer2{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"jJw" = ( -/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/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"jJx" = ( -/obj/structure/closet/toolcloset, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"jJC" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"jJG" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: PRESSURIZED DOORS" - }, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) -"jJK" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Departures - Port"; - name = "departures camera" - }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"jJM" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"jJZ" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/wood, -/area/station/commons/dorms) -"jKg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"jKq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"jKu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/range) -"jKA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"jKB" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/black, -/obj/item/storage/toolbox/electrical, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/science/research/abandoned) -"jKD" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cafe_counter"; - name = "Kitchen Counter Shutters" - }, -/turf/open/floor/iron/white/smooth_corner{ - dir = 4 - }, -/area/station/service/kitchen) -"jKG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"jKY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/structure/table, -/obj/item/storage/medkit/regular, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"jLa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"jLh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/directional/west, -/obj/item/radio/intercom/directional/west, -/obj/machinery/status_display/ai/directional/north, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"jLi" = ( -/obj/machinery/computer/mech_bay_power_console, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"jLr" = ( -/obj/machinery/photocopier, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"jLs" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"jLt" = ( -/obj/machinery/door/airlock/research/glass/incinerator/ordmix_interior{ - name = "Burn Chamber Interior Airlock" - }, -/obj/machinery/button/ignition/incinerator/ordmix{ - pixel_x = -6; - pixel_y = -24 - }, -/obj/machinery/button/door/incinerator_vent_ordmix{ - pixel_x = 8; - pixel_y = -24 - }, -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_ordmix{ - pixel_y = 32 - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/engine, -/area/station/science/ordnance/burnchamber) -"jLx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/landmark/event_spawn, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"jLz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"jLA" = ( -/obj/structure/fluff/metalpole{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/station/hallway/secondary/entry) -"jLN" = ( -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"jMb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/tile/green/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"jMk" = ( -/obj/machinery/door/window/right/directional/east{ - base_state = "left"; - icon_state = "left"; - name = "Danger: Conveyor Access"; - req_access = list("maint_tunnels") - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor/inverted{ - dir = 6; - id = "garbage" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"jMq" = ( -/obj/structure/safe, -/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/stack/sheet/mineral/diamond, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c500, -/obj/item/stack/spacecash/c500, -/obj/item/stack/spacecash/c500, -/obj/item/stack/spacecash/c500, -/obj/item/stack/spacecash/c500, -/obj/machinery/light/small/directional/south, -/obj/item/gun/ballistic/automatic/pistol/deagle, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"jMr" = ( -/obj/effect/turf_decal/tile/purple{ - 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/white, -/area/station/science/research) -"jMs" = ( -/obj/effect/spawner/structure/window, -/obj/structure/curtain/cloth/fancy/mechanical{ - icon_state = "bounty-open"; - icon_type = "bounty"; - id = "prisonlibrarycurtain"; - name = "curtain" - }, -/turf/open/floor/plating, -/area/station/security/prison/garden) -"jMw" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"jMx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"jMH" = ( -/obj/machinery/holopad, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"jMM" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"jMQ" = ( -/obj/effect/landmark/start/hangover, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Fore Hallway - Aft Entrance"; - name = "hallway camera" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"jNm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"jNn" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xeno8"; - name = "Containment Control"; - req_access = list("xenobiology") - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"jNx" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Solar Access" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/maintenance/solars/port/aft) -"jNB" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/railing/corner, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"jNC" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"jNI" = ( -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/beakers, -/obj/structure/table/glass, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"jNN" = ( -/obj/structure/table, -/obj/item/paicard, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/locker) -"jNP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/customs/fore) -"jOg" = ( -/obj/structure/cable, -/obj/structure/rack, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"jOn" = ( -/obj/structure/sign/plaques/kiddie/library{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"jOw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/light/cold/no_nightlight/directional/north, -/turf/open/floor/iron/dark/brown/side{ - dir = 9 - }, -/area/station/security/prison/safe) -"jOD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/kitchen) -"jOK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"jOL" = ( -/obj/machinery/door/poddoor/preopen{ - id = "rdxeno"; - name = "Xenobiology Containment Door" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"jOW" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/plating, -/area/station/medical/morgue) -"jOY" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"jPd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"jPe" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"jPk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/office) -"jPm" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron, -/area/station/science/research) -"jPn" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"jPy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"jPz" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "cargoload" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/supply{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"jPC" = ( -/obj/machinery/telecomms/bus/preset_two, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/telecomms, -/area/station/tcommsat/server) -"jPD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/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{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/aft) -"jPG" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/medical/cryo) -"jPJ" = ( -/obj/item/kirbyplants/random, -/obj/machinery/status_display/ai/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"jPP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/main) -"jPQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"jPU" = ( -/obj/effect/landmark/start/cargo_technician, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"jQa" = ( -/obj/structure/filingcabinet/medical, -/obj/machinery/firealarm/directional/east, -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/aft) -"jQd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/railing{ - dir = 6 - }, -/obj/structure/rack, -/obj/item/wrench, -/obj/item/crowbar, -/obj/item/watertank, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"jQl" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Medbay - Surgery B"; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/structure/closet/secure_closet/medical2, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"jQn" = ( -/obj/machinery/light/directional/south, -/obj/item/kirbyplants/random, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"jQv" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/security/medical) -"jQw" = ( -/obj/machinery/telecomms/broadcaster/preset_right, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"jQx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security{ - name = "Isolation Cell" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark, -/area/station/security/prison/safe) -"jQy" = ( -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"jQI" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"jRb" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/commons/toilet/locker) -"jRc" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"jRg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den/gaming) -"jRj" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"jRk" = ( -/obj/machinery/light_switch/directional/north, -/obj/machinery/power/port_gen/pacman, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"jRq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"jRL" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"jRN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/aft) -"jSh" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemisttop"; - name = "Chemistry Lobby Shutters"; - dir = 1 - }, -/obj/machinery/door/window/left/directional/north{ - name = "Chemistry Desk" - }, -/obj/machinery/door/window/left/directional/south{ - name = "Chemistry Desk"; - req_access = list("pharmacy") - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/medical/chemistry) -"jSo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"jSw" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/closet/secure_closet/barber, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/service/salon) -"jSy" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/iron, -/area/station/service/theater) -"jSE" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/computer/arcade/orion_trail, -/turf/open/floor/iron/dark, -/area/station/security/prison/mess) -"jSH" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"jSI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jSP" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/folder/blue, -/obj/item/electronics/firelock, -/obj/item/stack/sheet/glass, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"jSY" = ( -/turf/closed/wall, -/area/station/science/robotics/mechbay) -"jTf" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"jTg" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/box, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/engine/atmos) -"jTu" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/dryer{ - dir = 4; - pixel_x = -6; - pixel_y = -6 - }, -/turf/open/floor/iron, -/area/service/salon) -"jTy" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/station/science/lab) -"jTK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"jUb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/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/aft) -"jUc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron/dark/corner, -/area/station/maintenance/disposal/incinerator) -"jUy" = ( -/turf/closed/wall, -/area/station/hallway/secondary/construction) -"jUz" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"jUN" = ( -/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/plating, -/area/station/maintenance/starboard) -"jUS" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table, -/obj/machinery/light/directional/north, -/obj/item/radio/intercom/directional/north, -/obj/item/storage/box/tail_pin, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"jUU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"jVd" = ( -/obj/structure/table, -/obj/item/camera_film{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/camera_film, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/locker) -"jVg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/processing) -"jVs" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/table/reinforced, -/obj/item/controller, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"jVE" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"jVN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/structure/cable, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"jWb" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/barman_recipes{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/holosign_creator/robot_seat/bar, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark/smooth_half{ - dir = 1 - }, -/area/station/service/bar) -"jWh" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/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/science/research) -"jWn" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table, -/obj/machinery/light/directional/south, -/obj/item/storage/photo_album/prison, -/obj/item/camera, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"jWq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/north, -/obj/structure/table/reinforced, -/obj/item/storage/box/lights/mixed, -/obj/machinery/airalarm/directional/north, -/obj/item/stock_parts/cell/high/empty, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"jWz" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/construction/plumbing, -/obj/item/construction/plumbing, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"jWB" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"jWG" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/bottle/toxin{ - pixel_x = 4; - pixel_y = 2 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"jWH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/warden) -"jWT" = ( -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"jWU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/auxlab) -"jWV" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/medical/morgue) -"jWX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/obj/machinery/airalarm/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Cargo - Warehouse"; - name = "cargo camera" - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"jXk" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"jXn" = ( -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"jXp" = ( -/obj/machinery/computer/prisoner/management{ - dir = 8 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Security - Warden's Office" - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/warden) -"jXy" = ( -/obj/machinery/door/airlock/research/glass/incinerator/ordmix_exterior{ - name = "Burn Chamber Exterior Airlock" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"jXz" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"jXD" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den) -"jXN" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"jXW" = ( -/obj/structure/table/glass, -/obj/item/stack/medical/suture, -/obj/item/stack/medical/mesh, -/obj/machinery/camera/directional/north{ - c_tag = "Medbay - Treatment Center"; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"jXZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jYc" = ( -/obj/effect/landmark/start/security_officer, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/lockers) -"jYg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"jYo" = ( -/obj/machinery/computer/security{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/prison{ - pixel_y = 32 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark/blue/side{ - dir = 9 - }, -/area/brigofficer) -"jYp" = ( -/obj/effect/landmark/start/cyborg, -/obj/structure/cable, -/obj/machinery/holopad/secure, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"jYt" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/closet/crate/wooden/toy, -/obj/item/toy/mecha/honk, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/iron, -/area/station/service/theater) -"jYv" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/machinery/firealarm/directional/south, -/obj/machinery/light_switch/directional/east, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"jYy" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"jYA" = ( -/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/engineering/atmos/storage) -"jYC" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"jYF" = ( -/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/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"jYK" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"jYM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"jYU" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/stool/bar/directional/west, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den/gaming) -"jYX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/poddoor/preopen{ - id = "bridgedoors"; - name = "Bridge Access Blast Door" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"jZj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/vacant_room) -"jZl" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/engineering/atmos) -"jZp" = ( -/obj/machinery/atmospherics/components/unary/passive_vent{ - dir = 4; - name = "killroom vent" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"jZF" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"jZH" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/chair/sofa/bench/right, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"jZT" = ( -/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/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"jZV" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"kab" = ( -/obj/effect/turf_decal/tile/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/research) -"kal" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"kam" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"kan" = ( -/obj/machinery/porta_turret/ai, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"kaD" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Xenobiology - Cell 1"; - name = "xenobiology camera"; - network = list("ss13","xeno","rd") - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"kaG" = ( -/obj/structure/cable, -/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/commons/locker) -"kaL" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink{ - dir = 8; - pixel_x = 12 - }, -/turf/open/floor/iron/checker, -/area/station/service/hydroponics/garden/abandoned) -"kaM" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"kaP" = ( -/obj/effect/spawner/random/trash/grille_or_waste, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"kbd" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"kbe" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/door/airlock/hydroponics/glass{ - name = "Hydroponics" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"kbm" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"kby" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/directional/south, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/firealarm/directional/south, -/obj/machinery/light_switch/directional/south{ - pixel_x = -25 - }, -/turf/open/floor/iron, -/area/station/science/lab) -"kbz" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"kbS" = ( -/obj/machinery/door/airlock{ - name = "Medbay Auxiliary Storage" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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/medical/general, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"kbT" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Central Hallway - Center Port"; - name = "hallway camera" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"kbY" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/spawner/random/structure/crate, -/obj/structure/sign/warning/secure_area/directional/west, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/engine/atmos) -"kca" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"kch" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) -"kcy" = ( -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"kcC" = ( -/obj/machinery/cryopod{ - dir = 1 - }, -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/camera/directional/east, -/turf/open/floor/iron/dark, -/area/station/common/cryopods) -"kcK" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/mob/living/basic/cockroach, -/turf/open/floor/wood, -/area/station/service/theater/abandoned) -"kcO" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/processing) -"kcR" = ( -/obj/structure/sign/warning/secure_area/directional/east, -/turf/closed/wall/r_wall, -/area/station/engineering/transit_tube) -"kcW" = ( -/obj/structure/disposalpipe/segment, -/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) -"kcZ" = ( -/obj/machinery/light/directional/north, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"kdd" = ( -/obj/structure/cable, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/obj/structure/closet/secure_closet/security/engine, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"kde" = ( -/obj/machinery/power/smes, -/obj/machinery/light/small/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"kdg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"kdh" = ( -/obj/structure/reagent_dispensers/plumbed{ - dir = 8 - }, -/obj/effect/turf_decal/delivery/white{ - color = "#52B4E9" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/textured, -/area/station/maintenance/port/fore) -"kdi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"kdn" = ( -/obj/structure/table, -/obj/item/storage/secure/briefcase, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"kdy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"kdJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/space) -"kdW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/research) -"kdX" = ( -/obj/machinery/piratepad/civilian, -/obj/effect/turf_decal/trimline/yellow, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"kdY" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"kdZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/security/range) -"keg" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/research) -"kel" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"ket" = ( -/obj/structure/table, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/machinery/cell_charger, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/north, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"keu" = ( -/obj/effect/turf_decal/tile/blue, -/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, -/area/station/hallway/primary/aft) -"kex" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/radio/intercom/directional/east, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/spawner/round_default_module{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"keE" = ( -/obj/structure/table/reinforced, -/obj/item/plant_analyzer, -/obj/item/plant_analyzer, -/obj/item/radio, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"keJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/structure/sign/poster/official/safety_eye_protection{ - pixel_x = -32; - pixel_y = -32 - }, -/turf/open/floor/glass, -/area/station/maintenance/space_hut/observatory) -"keL" = ( -/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/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"keO" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/electronic_marketing_den) -"keV" = ( -/obj/structure/urinal/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/science/breakroom) -"kfa" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/landmark/start/janitor, -/turf/open/floor/iron/checker, -/area/station/service/janitor) -"kfb" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office/private_investigators_office) -"kff" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"kfj" = ( -/obj/structure/table/reinforced, -/obj/item/mmi, -/obj/item/assembly/prox_sensor, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/science/research/abandoned) -"kfv" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"kfC" = ( -/obj/machinery/telecomms/processor/preset_two, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/telecomms, -/area/station/tcommsat/server) -"kfI" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L7" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/landmark/observer_start, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"kfL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"kfO" = ( -/obj/structure/cable, -/obj/structure/table, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/item/paper_bin/carbon, -/obj/item/pen, -/obj/structure/table, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"kfP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"kfR" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"kfV" = ( -/obj/machinery/button/curtain{ - id = "prisoncell5"; - pixel_y = 21 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/purple/side{ - dir = 1 - }, -/area/station/security/prison/safe) -"kfX" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"kfY" = ( -/obj/machinery/iv_drip, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"kgb" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop{ - dir = 1; - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"kgi" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/effect/decal/cleanable/dirt, -/obj/item/stock_parts/cell/emproof{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/effect/turf_decal/bot, -/obj/item/clothing/gloves/color/yellow, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron, -/area/station/engineering/storage) -"kgm" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"kgr" = ( -/obj/machinery/computer/crew{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"kgs" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"kgE" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/item/healthanalyzer, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) -"kgP" = ( -/obj/structure/closet/toolcloset, -/obj/machinery/light/small/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Engineering - Engine Foyer"; - name = "engineering camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"khb" = ( -/turf/closed/wall/r_wall, -/area/station/science/robotics/lab) -"khh" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/lesser) -"khn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"kho" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/prisoner, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/prison) -"khv" = ( -/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/security/medical) -"khE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"khK" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"khM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/light_switch/directional/south{ - pixel_x = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"khO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"khQ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"khX" = ( -/obj/machinery/door/airlock/security{ - name = "Interrogation Monitoring" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/security/general, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"kia" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/small/directional/west, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/dark/brown/side{ - dir = 9 - }, -/area/station/security/prison/safe) -"kic" = ( -/turf/closed/wall, -/area/station/maintenance/disposal) -"kii" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/cargo_technician, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/office) -"kim" = ( -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"kiq" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"kir" = ( -/obj/item/retractor, -/obj/item/hemostat, -/obj/item/cautery, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"kiv" = ( -/obj/machinery/light_switch/directional/east, -/obj/structure/chair/office/light, -/obj/effect/landmark/start/psychologist, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"kiw" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"kiD" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"kiI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/research/abandoned) -"kiL" = ( -/obj/item/storage/pod{ - pixel_x = 32 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/modular_computer/console/preset/cargochat/science, -/obj/effect/turf_decal/trimline/brown/filled/line, -/turf/open/floor/iron, -/area/station/science/research) -"kiQ" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"kjd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/plasticflaps/opaque, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Cargo Office" - }, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"kjg" = ( -/obj/structure/table, -/obj/item/flashlight/lamp, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"kjj" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"kju" = ( -/obj/effect/landmark/start/hangover, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/chair/stool/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/theater) -"kjz" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"kjM" = ( -/obj/effect/turf_decal/siding/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"kjO" = ( -/obj/structure/table/reinforced, -/obj/item/pipe_dispenser{ - pixel_x = 2; - pixel_y = -4 - }, -/obj/item/pipe_dispenser, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"kjZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/turret_protected/ai_upload) -"kkh" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"kkC" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"kkF" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty, -/obj/item/storage/box/lights/mixed, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"kkN" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Air to Mix" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/mix) -"kkO" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Research Division Access" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/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, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-toxins-circuits" - }, -/turf/open/floor/iron, -/area/station/science/research) -"kkP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"kkQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/service/theater/abandoned) -"kkU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - name = "Virology Access" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "viro-passthrough" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"kkV" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "prisonlockdown2"; - name = "Lockdown" - }, -/obj/machinery/button/door{ - id = "prisonlockdown1"; - name = "Lockdown"; - pixel_x = -24; - req_access = list("brig") - }, -/turf/open/floor/iron/dark, -/area/station/security/prison) -"klb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"kll" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/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/aft) -"klq" = ( -/obj/structure/chair/office/light, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"kls" = ( -/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 = 2 - }, -/obj/machinery/duct, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/main) -"klz" = ( -/obj/structure/table, -/obj/item/training_toolbox, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/commons/fitness/recreation) -"klA" = ( -/obj/structure/table/reinforced, -/obj/item/retractor, -/obj/item/hemostat, -/obj/machinery/light/directional/east, -/obj/machinery/status_display/ai/directional/east, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"klB" = ( -/obj/effect/turf_decal/tile/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/research) -"klM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"klX" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 30 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"klY" = ( -/obj/structure/rack, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash/handheld, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"kmb" = ( -/obj/structure/cable, -/obj/machinery/computer/security{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"kmg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"kmq" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"kmE" = ( -/obj/machinery/door/poddoor/incinerator_atmos_aux, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"kmX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) -"kmY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"knc" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/chair/sofa/bench{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"knu" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"knw" = ( -/obj/effect/landmark/blobstart, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"kny" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"knK" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/siding/brown{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"knT" = ( -/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/sorting/mail/flip{ - dir = 1; - sortType = 29 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"knY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/checker, -/area/station/engineering/supermatter/room) -"koc" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/chair/sofa/left{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron, -/area/station/commons/lounge) -"kol" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/port) -"koB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"koJ" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"koM" = ( -/turf/closed/wall, -/area/station/security/checkpoint/customs/fore) -"koS" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"koY" = ( -/obj/structure/dresser, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hos) -"kpl" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"kpn" = ( -/obj/structure/disposalpipe/segment, -/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/delivery, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"kpw" = ( -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"kpy" = ( -/obj/effect/decal/cleanable/dirt, -/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, -/turf/open/floor/iron, -/area/station/command/gateway) -"kpA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"kpD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"kpM" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Medbay - Aft Port"; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/item/clipboard, -/obj/item/healthanalyzer, -/obj/structure/table, -/obj/effect/turf_decal/tile/blue, -/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) -"kpR" = ( -/obj/machinery/power/solar{ - id = "aftstarboard"; - name = "Aft-Starboard Solar Array" - }, -/obj/structure/cable, -/turf/open/floor/iron/solarpanel/airless, -/area/station/solars/starboard/aft) -"kpX" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall13"; - location = "hall12" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"kqc" = ( -/obj/machinery/power/shieldwallgen/xenobiologyaccess, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"kql" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"kqo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/warden) -"kqL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "left_arrivals_shutters"; - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"kqO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"kqQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"kre" = ( -/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/fulltile, -/turf/open/floor/grass, -/area/station/hallway/secondary/exit/departure_lounge) -"krh" = ( -/obj/structure/cable, -/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, -/turf/open/floor/iron, -/area/station/command/teleporter) -"kri" = ( -/obj/effect/spawner/random/structure/tank_holder, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"krj" = ( -/obj/structure/sign/painting/library_private{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/newscaster/directional/east, -/obj/machinery/photocopier, -/turf/open/floor/iron/dark, -/area/station/service/library) -"krE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research/glass{ - name = "Robotics Lab" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/robotics, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"krK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/morgue) -"krO" = ( -/obj/effect/turf_decal/tile/red{ - 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/security/execution/transfer) -"krT" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"krW" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"ksa" = ( -/obj/structure/sign/warning/electric_shock/directional/east{ - pixel_y = -32 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/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/secondary/command) -"ksf" = ( -/obj/structure/sign/departments/court/directional/east, -/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/central/fore) -"ksq" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"ksH" = ( -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"ksK" = ( -/turf/closed/wall/r_wall, -/area/station/command/gateway) -"ksP" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ktd" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/stamp/hos, -/obj/structure/disposalpipe/segment{ - 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/grimy, -/area/station/command/heads_quarters/hos) -"ktf" = ( -/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/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/aft) -"ktg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/engineering{ - name = "Auxiliary Construction Storage" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"ktt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"ktv" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/command{ - name = "Telecomms Server Room" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"ktJ" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/public/glass{ - name = "Aft Primary Hallway" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/medical/medbay/lobby) -"ktK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor{ - dir = 5; - id = "cargoload" - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"ktO" = ( -/obj/machinery/smartfridge, -/turf/closed/wall, -/area/station/service/hydroponics) -"ktP" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/hallway/primary/fore) -"ktR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/grimy, -/area/station/commons/vacant_room/office) -"kub" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) -"kun" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space/basic, -/area/station/solars/port/aft) -"kur" = ( -/obj/machinery/light/directional/south, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/obj/machinery/light/directional/south, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"kuy" = ( -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"kuE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/command{ - name = "Auxiliary E.V.A. Storage" - }, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/command/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"kuI" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria, -/area/station/engineering/atmos/pumproom) -"kuM" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/common/cryopods) -"kuT" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"kuX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"kvq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"kvv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Science Guard's Office" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/sci_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) -"kvJ" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/easel, -/obj/item/canvas/twentythree_nineteen, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"kvK" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"kvW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/washing_machine, -/obj/structure/cable, -/turf/open/floor/iron/kitchen{ - dir = 1 - }, -/area/station/security/prison) -"kvX" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space/basic, -/area/space/nearstation) -"kwb" = ( -/obj/structure/table/wood, -/obj/item/gun/ballistic/automatic/pistol/toy, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"kwt" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/chair/office/light, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"kxb" = ( -/obj/machinery/sparker/directional/south{ - id = "justicespark" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark/red/side, -/area/station/security/execution) -"kxg" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/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/aft) -"kxj" = ( -/turf/closed/wall/r_wall, -/area/brigofficer) -"kxm" = ( -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/iron/dark, -/area/station/security/prison) -"kxq" = ( -/obj/effect/turf_decal/trimline/yellow/filled/warning, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"kxs" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"kxx" = ( -/obj/structure/table/reinforced, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/mmi, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"kxA" = ( -/obj/effect/turf_decal/delivery/blue, -/obj/machinery/door/airlock/security{ - req_access = list("brig") - }, -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "permaturnstile"; - name = "Lockdown" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/station/security/prison) -"kxC" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/suit/jacket{ - desc = "All the class of a trenchcoat without the security fibers."; - icon_state = "detective"; - name = "trenchcoat" - }, -/obj/item/clothing/suit/toggle/lawyer/purple, -/obj/item/clothing/head/fedora{ - icon_state = "detective" - }, -/obj/item/clothing/under/costume/geisha, -/obj/item/clothing/head/fedora{ - icon_state = "curator" - }, -/obj/item/clothing/suit/jacket{ - desc = "This looks awfully familiar..."; - icon_state = "curator" - }, -/obj/item/clothing/under/rank/civilian/curator/treasure_hunter, -/obj/machinery/airalarm/directional/north, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"kxE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron, -/area/station/science/research) -"kxH" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "atmoslock"; - name = "Atmospherics Lockdown Blast Door" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/half, -/area/station/engineering/atmos) -"kxJ" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) -"kxV" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/science/lobby) -"kxW" = ( -/obj/structure/sign/warning/secure_area/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Atmospherics - Fore Tanks"; - name = "atmospherics camera" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"kxZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/structure/tank_holder/extinguisher, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"kyj" = ( -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/maintenance/department/science) -"kyx" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"kyA" = ( -/obj/machinery/door/airlock/engineering{ - name = "Port Quarter Solar Access" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/maintenance/solars/port/aft) -"kyJ" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/theatre) -"kyN" = ( -/obj/structure/table, -/obj/item/paicard, -/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/fitness/recreation) -"kyR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue, -/obj/structure/railing/corner, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"kyW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"kzc" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/port/aft) -"kzI" = ( -/obj/structure/table/wood, -/obj/item/electronics/airalarm, -/obj/item/circuitboard/computer/med_data, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/electronic_marketing_den) -"kzV" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/computer/department_orders/service, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/checker, -/area/station/hallway/secondary/service) -"kAc" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"kAd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/spawner/random/structure/barricade, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"kAh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/construction) -"kAn" = ( -/obj/structure/bookcase, -/obj/machinery/light/directional/north, -/obj/structure/sign/plaques/kiddie/badger{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"kAo" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/sign/warning/electric_shock/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "AI Chamber - Fore"; - name = "motion-sensitive ai camera"; - network = list("aichamber") - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"kAv" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/newscaster/directional/north, -/obj/machinery/button/door/directional/south{ - id = "Arrivals_Toilet1"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/commons/toilet/restrooms) -"kAD" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/engineering/storage/tech) -"kAE" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/medical/medbay/lobby) -"kAS" = ( -/obj/structure/cable, -/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, -/area/station/hallway/primary/port) -"kAX" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"kAZ" = ( -/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/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"kBg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/computer/gateway_control, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/command/gateway) -"kBt" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/work) -"kBz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"kBE" = ( -/obj/structure/urinal/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/toilet/locker) -"kBJ" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"kBN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"kBO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xeno2"; - name = "Creature Cell #2" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"kBV" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/wood, -/area/station/service/electronic_marketing_den) -"kCf" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"kCq" = ( -/obj/structure/cable, -/obj/machinery/modular_computer/console/preset/id{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"kCN" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"kCV" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"kCY" = ( -/obj/machinery/computer/scan_consolenew, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"kDc" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"kDj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 6 - }, -/obj/machinery/firealarm/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics - Tables"; - name = "atmospherics camera" - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"kDq" = ( -/obj/machinery/camera/directional/north{ - c_tag = "AI Satellite - Transit Tube"; - name = "ai camera"; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/trimline/blue/filled/end{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"kDs" = ( -/obj/machinery/shieldgen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"kDw" = ( -/obj/machinery/chem_master, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/medical/pharmacy) -"kDE" = ( -/obj/machinery/airalarm/engine{ - dir = 1; - pixel_y = 23 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"kDL" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/effect/landmark/start/captain, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/captain) -"kDW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Surgery Maintenance" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"kDY" = ( -/obj/effect/turf_decal/siding/green{ - dir = 9 - }, -/obj/effect/landmark/start/botanist, -/turf/open/floor/iron/dark/smooth_large, -/area/station/service/hydroponics) -"kEa" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/plating, -/area/station/medical/morgue) -"kEg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"kEn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"kEo" = ( -/obj/structure/table/wood, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"kEv" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"kEE" = ( -/obj/structure/reagent_dispensers/plumbed{ - dir = 8 - }, -/obj/effect/turf_decal/delivery/white{ - color = "#52B4E9" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/textured, -/area/station/maintenance/port/fore) -"kEI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/airlock/public/glass{ - name = "Fore Hallway" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"kEJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/closet/secure_closet/brig/genpop, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"kEO" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Genetics Lab"; - name = "genetics lab camera" - }, -/obj/effect/landmark/start/geneticist, -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"kEQ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple{ - 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/science/lobby) -"kEZ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"kFc" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"kFi" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"kFr" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"kFs" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"kFt" = ( -/obj/effect/turf_decal/delivery, -/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/department/electrical) -"kFE" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"kFL" = ( -/obj/structure/easel, -/obj/item/canvas/twentythree_twentythree, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"kFM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/lockers) -"kFO" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"kFQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/moisture_trap, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"kFX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/electronic_marketing_den) -"kGe" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"kGg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"kGi" = ( -/turf/closed/wall, -/area/station/service/library/abandoned) -"kGj" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/aft) -"kGo" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"kGs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"kGt" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/right/directional/north{ - name = "Hydroponics Desk"; - req_access = list("hydroponics") - }, -/obj/machinery/door/window/right/directional/south{ - name = "Hydroponics Desk"; - req_one_access = list("kitchen","hydroponics") - }, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"kGx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Dormitories" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"kGI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"kGO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/cigarette, -/turf/open/floor/plating, -/area/station/commons/toilet/locker) -"kGS" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"kGY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/theater) -"kHa" = ( -/obj/machinery/vending/medical, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/medical/storage) -"kHd" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/light/directional/east, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: PRESSURIZED DOORS"; - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"kHm" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/razor, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/wood, -/area/station/commons/dorms) -"kHp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"kHC" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"kHG" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"kHV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/effect/turf_decal/trimline/blue/end{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"kHZ" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/holding_cell) -"kId" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"kIe" = ( -/obj/structure/cable, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"kIk" = ( -/turf/open/floor/iron{ - dir = 8; - icon_state = "chapel" - }, -/area/station/service/chapel) -"kIm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron, -/area/station/medical/cryo) -"kIr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"kID" = ( -/obj/machinery/light_switch/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/filingcabinet, -/turf/open/floor/iron/dark, -/area/station/service/library) -"kIP" = ( -/obj/item/radio/intercom/directional/south, -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/folder{ - pixel_x = -6; - pixel_y = 2 - }, -/obj/item/pen{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/laser_pointer{ - pixel_x = 3 - }, -/turf/open/floor/iron/dark, -/area/station/service/library) -"kIX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Storage Closet" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"kJa" = ( -/obj/structure/sign/poster/official/help_others{ - pixel_x = -32 - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"kJb" = ( -/obj/structure/cable, -/obj/structure/closet/secure_closet/detective, -/obj/item/clothing/head/fedora/det_hat{ - icon_state = "curator" - }, -/obj/item/clothing/suit/det_suit{ - icon_state = "curator" - }, -/obj/item/clothing/under/rank/security/detective, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"kJd" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"kJg" = ( -/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/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"kJj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/greater) -"kJr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics/garden/abandoned) -"kJx" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/green{ - 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) -"kJH" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/landmark/start/hangover, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"kKa" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/security/brig) -"kKf" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/radiation, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"kKg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"kKm" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall, -/area/station/hallway/secondary/entry) -"kKx" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"kKz" = ( -/obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/ai_upload"; - icon_state = "control_stun"; - name = "AI Upload Turret Control"; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"kKJ" = ( -/obj/structure/table/reinforced, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"kKX" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/comfy{ - color = "#596479"; - dir = 4 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"kLh" = ( -/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/machinery/light/directional/south, -/turf/open/floor/iron/dark/side, -/area/station/security/prison) -"kLu" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/bookcase/random, -/turf/open/floor/plating, -/area/station/service/library/abandoned) -"kLw" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Medbay - Psychology Office"; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/structure/tank_holder/extinguisher, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"kLA" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"kLL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"kLT" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/science/research) -"kLW" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L11" - }, -/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/aft) -"kMg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/checker, -/area/station/engineering/supermatter/room) -"kMh" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/siding/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"kMk" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/maintenance/department/science) -"kMn" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"kMt" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/sign/warning/radiation/directional/west, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"kMI" = ( -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/item/wrench, -/obj/item/crowbar, -/obj/effect/turf_decal/bot, -/obj/item/pipe_dispenser, -/turf/open/floor/iron, -/area/station/engineering/main) -"kML" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"kMS" = ( -/turf/open/floor/iron/white/side, -/area/station/commons/fitness/recreation) -"kNd" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/hallway/secondary/entry) -"kNt" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"kNw" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"kNA" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"kNC" = ( -/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/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"kND" = ( -/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/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"kNR" = ( -/obj/effect/turf_decal/tile/red{ - 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/security/brig) -"kNY" = ( -/obj/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/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"kOg" = ( -/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, -/area/station/security/processing) -"kOj" = ( -/turf/closed/wall, -/area/station/hallway/primary/central/fore) -"kOv" = ( -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"kOy" = ( -/obj/vehicle/sealed/mecha/working/ripley/cargo, -/turf/open/floor/iron/recharge_floor, -/area/station/cargo/storage) -"kOA" = ( -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/hos) -"kOE" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) -"kOI" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/status_display/evac/directional/north, -/obj/structure/chair/office, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/library) -"kOY" = ( -/obj/structure/closet/wardrobe/black, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"kPj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/obj/machinery/power/port_gen/pacman/pre_loaded, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"kPk" = ( -/obj/machinery/vending/wallmed/directional/north, -/obj/structure/table/glass, -/obj/item/stack/medical/gauze, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"kPs" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/work) -"kPQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"kPU" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/suit/jacket/letterman_nanotrasen, -/obj/item/clothing/suit/toggle/lawyer, -/obj/item/clothing/under/costume/maid, -/obj/item/clothing/head/kitty, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/wood, -/area/station/commons/dorms) -"kPY" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/science/research) -"kQf" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"kQm" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/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, -/area/station/security/checkpoint/escape) -"kQq" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"kQs" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/medical/break_room) -"kQw" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"kQB" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"kQG" = ( -/obj/item/stack/cable_coil, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/station/solars/port/aft) -"kQK" = ( -/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, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"kQR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"kQV" = ( -/obj/machinery/modular_computer/console/preset/cargochat/service, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/checker, -/area/station/hallway/secondary/service) -"kQX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"kRi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"kRw" = ( -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/work) -"kRE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hos) -"kRI" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"kRL" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"kRM" = ( -/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/security/prison) -"kRN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/spawner/random/structure/barricade, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"kRU" = ( -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"kSh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/research) -"kSk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/modular_computer/console/preset/cargochat/cargo, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"kSm" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"kSn" = ( -/obj/structure/table/reinforced, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"kSt" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/atmos/glass{ - name = "Upper Atmospherics" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"kSu" = ( -/turf/closed/wall, -/area/station/command/teleporter) -"kSA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"kSB" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/box, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/engine/atmos) -"kSQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"kTd" = ( -/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/engineering/break_room) -"kTk" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"kTn" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"kTs" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"kTy" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/station/service/library/abandoned) -"kTE" = ( -/obj/structure/table, -/obj/item/transfer_valve{ - pixel_x = 5 - }, -/obj/item/transfer_valve, -/obj/item/transfer_valve{ - pixel_x = -5 - }, -/obj/item/transfer_valve{ - pixel_x = 5 - }, -/obj/item/transfer_valve, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"kTK" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - normaldoorcontrol = 1; - pixel_x = 24 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"kTL" = ( -/obj/structure/closet/secure_closet/chief_medical, -/obj/item/clothing/head/nursehat, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/command/heads_quarters/cmo) -"kTU" = ( -/obj/machinery/door/poddoor/shutters{ - id = "mechbay"; - name = "Mech Bay Shutters"; - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"kTV" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/station/engineering/gravity_generator) -"kTX" = ( -/obj/machinery/photocopier, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/box/white, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"kUa" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"kUf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/north{ - pixel_x = 2 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light_switch/directional/north{ - pixel_x = -10 - }, -/obj/machinery/recharge_station, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"kUn" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"kUu" = ( -/obj/structure/disposalpipe/segment, -/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) -"kUA" = ( -/obj/item/storage/belt, -/obj/item/radio, -/obj/machinery/light/directional/south, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"kUD" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos/mix) -"kUG" = ( -/turf/closed/wall, -/area/station/construction/mining/aux_base) -"kUH" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/closet/crate, -/turf/open/space/basic, -/area/space/nearstation) -"kUM" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron, -/area/station/science/lobby) -"kUN" = ( -/obj/structure/sign/warning/electric_shock/directional/east, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"kUQ" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel Office" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/navigate_destination, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"kUZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"kVg" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"kVl" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"kVm" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/chapel/funeral) -"kVr" = ( -/obj/effect/turf_decal/siding/wideplating, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"kVt" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"kVw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"kVx" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Emergency Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor/heavy, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"kVy" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"kVL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"kVP" = ( -/turf/closed/wall, -/area/station/hallway/secondary/service) -"kVZ" = ( -/obj/structure/closet/secure_closet/freezer/fridge/open, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/plating, -/area/station/service/kitchen/abandoned) -"kWg" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xeno6"; - name = "Containment Control"; - req_access = list("xenobiology") - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"kWk" = ( -/obj/structure/sign/departments/chemistry/directional/north, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"kWp" = ( -/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/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"kWG" = ( -/obj/machinery/light/directional/south, -/obj/machinery/status_display/ai/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Security - Office Aft" - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/office) -"kWM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/processor{ - pixel_y = 8 - }, -/obj/structure/table/reinforced, -/obj/machinery/duct, -/obj/item/food/dough{ - pixel_x = 2; - pixel_y = -5 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"kWQ" = ( -/obj/item/instrument/violin, -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/theater/abandoned) -"kWS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"kXb" = ( -/obj/effect/landmark/start/head_of_personnel, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hop) -"kXf" = ( -/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/secondary/command) -"kXq" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"kXw" = ( -/obj/effect/spawner/random/vending/snackvend, -/turf/open/floor/iron/dark, -/area/station/security/prison) -"kXH" = ( -/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/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"kXJ" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"kXO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/commons/lounge) -"kXR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer4, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"kXV" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/components/unary/passive_vent{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"kYc" = ( -/obj/structure/rack, -/obj/item/clothing/gloves/color/black, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"kYf" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"kYk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/commons/fitness/recreation) -"kYn" = ( -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"kYq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "xeno5"; - name = "Creature Cell #5" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"kYu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"kYA" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/meeting_room/council) -"kYB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"kYF" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"kYT" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"kYV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"kYW" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/wrench, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/science/server) -"kZc" = ( -/turf/closed/wall, -/area/station/service/chapel/office) -"kZn" = ( -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"kZq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"kZt" = ( -/obj/machinery/door_timer{ - id = "scicell"; - name = "Science Cell"; - pixel_x = -32; - pixel_y = -32 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/machinery/button/door/directional/west{ - id = "scidoor"; - name = "Science Cell Control"; - normaldoorcontrol = 1; - pixel_y = -12; - req_access = list("brig_entrance") - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) -"kZP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/station/service/library/abandoned) -"kZT" = ( -/obj/machinery/air_sensor/mix_tank, -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"kZU" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 28 - }, -/turf/open/floor/iron, -/area/station/science/research) -"lae" = ( -/obj/machinery/light/directional/north, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/structure/closet/secure_closet/security/science, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) -"lah" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/structure/sign/warning/fire/directional/east, -/obj/structure/window/reinforced/plasma/spawner, -/obj/machinery/power/port_gen/pacman/pre_loaded, -/turf/open/floor/iron, -/area/station/maintenance/port/lesser) -"las" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=serviceentrance"; - location = "service5" - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"lav" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/engineering/main) -"laJ" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron, -/area/station/security/courtroom) -"laK" = ( -/obj/effect/decal/cleanable/dirt, -/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/plating, -/area/station/maintenance/port/greater) -"laN" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"laO" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/grimy, -/area/station/commons/dorms) -"laP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"lbf" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - space_dir = 4 - }, -/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, -/area/station/security/checkpoint/escape) -"lbh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_atmos{ - pixel_y = -24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"lbi" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/curved/flipped{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"lbj" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"lbl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/sign/warning/radiation/directional/south, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"lbo" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/item/radio/intercom/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"lbr" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/light/directional/south, -/obj/machinery/status_display/evac/directional/south, -/obj/item/paicard, -/turf/open/floor/wood, -/area/station/commons/dorms) -"lbt" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"lbu" = ( -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "garbage"; - name = "disposal conveyor" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"lbv" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron{ - icon_state = "chapel" - }, -/area/station/service/chapel) -"lbz" = ( -/obj/structure/table/reinforced, -/obj/item/bodypart/chest/robot, -/obj/item/bodypart/r_arm/robot{ - pixel_x = 6 - }, -/obj/item/bodypart/l_arm/robot{ - pixel_x = -6 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"lbF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/storage) -"lbR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"lbT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"lcf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/closet/radiation, -/turf/open/floor/iron, -/area/station/engineering/main) -"lcm" = ( -/turf/open/floor/wood, -/area/station/security/detectives_office/private_investigators_office) -"lct" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table/wood, -/turf/open/floor/iron/grimy, -/area/station/command/meeting_room/council) -"lcv" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Science - Mech Bay"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"lcA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"lcG" = ( -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/captain) -"lcK" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"lcO" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"lcS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock{ - name = "Bathroom" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron, -/area/station/science/breakroom) -"lcT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/greater) -"ldh" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ldm" = ( -/obj/machinery/camera/motion/directional/south{ - c_tag = "AI Chamber - Aft"; - name = "motion-sensitive ai camera"; - network = list("aichamber") - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"ldn" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"ldq" = ( -/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 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"lds" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/iron/dark/corner, -/area/station/maintenance/department/electrical) -"ldu" = ( -/obj/machinery/air_sensor/air_tank, -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"ldx" = ( -/obj/structure/bed/dogbed/mcgriff, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/mob/living/simple_animal/pet/dog/pug/mcgriff, -/turf/open/floor/iron, -/area/station/security/warden) -"ldD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"ldM" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"ldO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/science/lab) -"ldU" = ( -/obj/machinery/camera/motion/directional/west{ - c_tag = "Vault"; - network = list("vault") - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"leg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/greater) -"len" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"lep" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/event_spawn, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood, -/obj/item/storage/wallet/random, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"leE" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/storage_shared) -"leG" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"leH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/service/library/abandoned) -"leN" = ( -/obj/structure/window/reinforced, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"leR" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - dir = 1; - pixel_x = 3; - pixel_y = 9 - }, -/obj/item/storage/bag/tray, -/obj/item/kitchen/rollingpin, -/obj/item/clothing/suit/apron/chef, -/turf/open/floor/iron/kitchen, -/area/station/security/prison/mess) -"leU" = ( -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"lfb" = ( -/obj/effect/landmark/start/hangover, -/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/common/cryopods) -"lfu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible, -/obj/machinery/meter, -/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/white, -/area/station/science/ordnance/storage) -"lfC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/belt/utility, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"lfE" = ( -/obj/machinery/power/shieldwallgen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"lfK" = ( -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/north{ - c_tag = "Engineering - Hallway"; - name = "engineering camera" - }, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"lgc" = ( -/obj/machinery/light_switch/directional/north{ - pixel_x = 6 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"lgg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Project Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"lgh" = ( -/obj/structure/chair/stool/bar/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"lgk" = ( -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"lgm" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/north, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"lgs" = ( -/obj/machinery/camera/directional/north{ - c_tag = "AI Satellite - Antechamber"; - name = "ai camera"; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"lgv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"lgN" = ( -/obj/machinery/door/window/brigdoor/left/directional/west{ - name = "Captain's Bedroom"; - req_access = list("captain") - }, -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/captain/private) -"lhb" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"lhn" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/engineering_guard, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"lho" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"lhp" = ( -/obj/item/kirbyplants/random, -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"lhz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/science/research) -"lhE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/lesser) -"lhI" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"lhY" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/nuke_storage) -"lim" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"lin" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"liv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/prison) -"liC" = ( -/obj/structure/closet/secure_closet/exile, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/command/gateway) -"liD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/storage) -"liM" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"liQ" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"liU" = ( -/obj/machinery/light/directional/east, -/obj/structure/sign/warning/no_smoking/directional/east, -/obj/machinery/computer/mechpad{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"liY" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Courtroom - Fore" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"liZ" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Security Maintenance" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-side-entrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron, -/area/station/maintenance/starboard) -"lja" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/warden) -"ljc" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"ljd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"ljh" = ( -/obj/machinery/light/directional/west, -/obj/machinery/firealarm/directional/west, -/obj/machinery/suit_storage_unit/medical, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/medical/break_room) -"ljm" = ( -/obj/machinery/door/airlock/external{ - name = "Observatory" - }, -/turf/open/floor/plating, -/area/station/maintenance/space_hut/observatory) -"lju" = ( -/obj/machinery/status_display/ai/directional/west, -/obj/structure/table/wood, -/obj/item/storage/briefcase{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/secure/briefcase, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) -"ljK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"ljO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"ljP" = ( -/obj/structure/curtain/cloth/fancy/mechanical{ - icon_state = "bounty-open"; - icon_type = "bounty"; - id = "prisoncell5"; - name = "curtain" - }, -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"ljQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"ljZ" = ( -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"lkg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"lkh" = ( -/obj/machinery/computer/robotics{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/keycard_auth/directional/south{ - pixel_x = -5 - }, -/obj/machinery/light_switch/directional/south{ - pixel_x = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"lkl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron/cafeteria{ - dir = 8 - }, -/area/station/engineering/atmos/pumproom) -"lko" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/white, -/area/station/science/research) -"lkx" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK" - }, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/aft) -"lky" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"lkB" = ( -/obj/effect/spawner/random/trash/mess, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"lkG" = ( -/obj/effect/turf_decal/stripes/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/ai_monitored/command/storage/eva) -"lkK" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/security/processing) -"lkL" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/tcommsat/server) -"lkN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/power/emitter{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"lkS" = ( -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/obj/item/kirbyplants/random, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"llj" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"llv" = ( -/obj/structure/sign/directions/evac{ - pixel_y = -8 - }, -/obj/structure/sign/directions/science{ - dir = 8 - }, -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = 8 - }, -/turf/closed/wall, -/area/station/science/lobby) -"llx" = ( -/obj/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, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Storage" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engine_equipment, -/turf/open/floor/iron, -/area/station/engineering/storage) -"llz" = ( -/obj/effect/decal/cleanable/oil, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter/room) -"llB" = ( -/obj/structure/cable, -/obj/structure/chair/stool/bar/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"llD" = ( -/turf/open/floor/iron{ - dir = 1; - icon_state = "chapel" - }, -/area/station/service/chapel) -"llI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/iron, -/area/station/service/abandoned_gambling_den) -"llJ" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"llW" = ( -/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/plating, -/area/station/maintenance/port/fore) -"llX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"lml" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"lmP" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/bot, -/obj/machinery/computer/station_alert{ - dir = 1 - }, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/storage/gas) -"lnc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/medical/morgue) -"lnj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"lnm" = ( -/obj/structure/closet/secure_closet/captains, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/captain/private) -"lnp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"lnt" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"lnx" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/brig) -"lnH" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"lnI" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"lnK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"lnQ" = ( -/obj/structure/table/reinforced, -/obj/item/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/assembly/signaler, -/obj/item/assembly/signaler, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"lnT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"lnX" = ( -/obj/effect/spawner/structure/window, -/obj/structure/curtain/cloth/fancy/mechanical{ - icon_state = "bounty-open"; - icon_type = "bounty"; - id = "prisoncell8"; - name = "curtain" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"loa" = ( -/obj/machinery/door/window{ - name = "Secure Art Exhibition"; - req_access = list("library") - }, -/obj/structure/table/wood/fancy, -/obj/structure/sign/painting/library_secure{ - pixel_y = 32 - }, -/obj/effect/spawner/random/decoration/statue{ - spawn_loot_chance = 35 - }, -/turf/open/floor/carpet, -/area/station/service/library) -"lob" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"loe" = ( -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/cmo) -"loi" = ( -/obj/structure/grille/broken, -/obj/effect/spawner/random/trash/caution_sign, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"lor" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood, -/obj/item/modular_computer/tablet/preset/cheap, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"loA" = ( -/obj/effect/turf_decal/tile/purple, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/white, -/area/station/science/research) -"loB" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"loP" = ( -/obj/item/kirbyplants/random, -/obj/machinery/firealarm/directional/east, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/breakroom) -"lpb" = ( -/obj/structure/sign/departments/psychology/directional/east, -/obj/effect/turf_decal/tile/blue, -/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) -"lpl" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall6"; - location = "hall5" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"lpv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 9 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/mix) -"lpw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"lpF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/tank_holder/emergency_oxygen, -/turf/open/floor/iron, -/area/station/maintenance/starboard) -"lpL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"lpV" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"lqe" = ( -/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/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/station/science/lab) -"lql" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"lqv" = ( -/obj/machinery/dna_scannernew, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"lqO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/cargo/storage) -"lra" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/warden) -"lrc" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"lrH" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"lrI" = ( -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"lrM" = ( -/obj/machinery/firealarm/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"lrO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Arrivals - Starboard"; - name = "arrivals camera" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"lrY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"lsa" = ( -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Security - Head of Security's Office" - }, -/obj/structure/bed/dogbed/lia, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/reagent_dispensers/wall/peppertank/directional/west, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"lsg" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/station/commons/dorms) -"lsH" = ( -/obj/structure/chair/stool/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - 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/commons/vacant_room/commissary) -"ltr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"ltv" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/right/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"ltx" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"ltD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ltK" = ( -/obj/structure/chair{ - dir = 1; - name = "Jury" - }, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"ltM" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/south{ - c_tag = "Arrivals - Port Entrance"; - name = "arrivals camera" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"ltV" = ( -/obj/effect/turf_decal/stripes/white/line{ - color = "#52B4E9"; - dir = 10; - name = "blue line" - }, -/turf/open/floor/iron/dark/blue/side{ - dir = 5 - }, -/area/station/security/prison) -"ltY" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"ltZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/glass, -/turf/open/floor/plating, -/area/station/maintenance/space_hut/observatory) -"luc" = ( -/obj/structure/chair/office/light, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"lue" = ( -/obj/structure/table/glass, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"luo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"lut" = ( -/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/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"luG" = ( -/obj/structure/easel, -/obj/item/canvas/twentythree_twentythree, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/iron/grimy, -/area/station/maintenance/port/fore) -"luN" = ( -/obj/structure/disposalpipe/segment{ - 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/plating, -/area/station/maintenance/starboard) -"luS" = ( -/obj/structure/table/wood, -/obj/machinery/light/directional/north, -/obj/item/stack/rods{ - amount = 23 - }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/structure/sign/barsign{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"luW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"lvh" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"lvj" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/medical/pharmacy) -"lvl" = ( -/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/fore) -"lvt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"lvE" = ( -/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, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"lvF" = ( -/obj/structure/disposalpipe/segment{ - 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/plating, -/area/station/maintenance/port/fore) -"lvJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage) -"lvR" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"lvZ" = ( -/turf/closed/wall, -/area/station/medical/break_room) -"lwa" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"lwp" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/medical/break_room) -"lws" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"lwD" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/science/lab) -"lwE" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/seed_extractor, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/checker, -/area/station/service/hydroponics/garden/abandoned) -"lwF" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/meter, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"lwG" = ( -/obj/structure/table_frame/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/library/abandoned) -"lwH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/science/research) -"lwI" = ( -/obj/structure/cable, -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/electronics/airlock, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"lwM" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/folder/yellow, -/obj/item/folder/blue{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stamp/ce, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"lxb" = ( -/obj/structure/cable, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"lxc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"lxj" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Xenobiology - Port"; - name = "xenobiology camera"; - network = list("ss13","xeno","rd") - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"lxE" = ( -/turf/closed/wall/r_wall, -/area/station/science/auxlab) -"lxF" = ( -/obj/effect/turf_decal/stripes/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/central/aft) -"lxN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"lxS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/commons/toilet/locker) -"lxU" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"lyb" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/medical/pharmacy) -"lyd" = ( -/obj/structure/curtain/cloth/fancy/mechanical{ - icon_state = "bounty-open"; - icon_type = "bounty"; - id = "prisoncell8"; - name = "curtain" - }, -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"lyf" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/obj/item/assembly/flash/handheld, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"lyj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/abandoned_gambling_den) -"lyx" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/computer/shuttle/mining/common, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK"; - pixel_y = 32 - }, -/turf/open/floor/iron/smooth_large, -/area/station/hallway/secondary/entry) -"lyC" = ( -/obj/structure/table, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_y = 5 - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"lyK" = ( -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab" - }, -/obj/machinery/door/firedoor/heavy, -/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/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-toxins-circuits" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance_storage, -/turf/open/floor/iron, -/area/station/science/ordnance/office) -"lzp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"lzq" = ( -/obj/machinery/duct, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/engineering/main) -"lzL" = ( -/obj/structure/sign/warning/no_smoking/directional/east, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"lzP" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"lzQ" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/machinery/light_switch/directional/west{ - pixel_x = -22; - pixel_y = 10 - }, -/obj/machinery/firealarm/directional/south, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/theater) -"lAd" = ( -/obj/effect/turf_decal/bot, -/obj/structure/tank_holder/extinguisher, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"lAi" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"lAj" = ( -/turf/closed/wall, -/area/station/security/prison/visit) -"lAs" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/engineering/main) -"lAv" = ( -/obj/machinery/vending/cart, -/obj/machinery/computer/security/telescreen/entertainment/directional/east, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"lAx" = ( -/obj/machinery/telecomms/receiver/preset_right, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"lAA" = ( -/obj/machinery/power/port_gen/pacman/pre_loaded, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"lAE" = ( -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/main) -"lAK" = ( -/obj/machinery/door/morgue{ - name = "Confession Booth" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"lAM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"lAO" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"lAY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall, -/area/station/commons/fitness/recreation) -"lBa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/stool/bar/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"lBb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/landmark/event_spawn, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"lBe" = ( -/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, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-left" - }, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"lBh" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"lBn" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "ceprivacy"; - name = "Chief's Privacy Shutters" - }, -/turf/open/floor/plating, -/area/station/command/heads_quarters/ce) -"lBv" = ( -/obj/machinery/photocopier, -/obj/machinery/light_switch/directional/north, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/aft) -"lBz" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/storage) -"lBG" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"lBM" = ( -/obj/machinery/light/directional/east, -/obj/structure/closet/wardrobe/mixed, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"lBR" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) -"lCa" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/electronics/airlock, -/obj/item/stack/sheet/glass, -/obj/item/assembly/signaler, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"lCd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"lCg" = ( -/obj/machinery/duct, -/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/cable, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"lCi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"lCl" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"lCp" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"lCq" = ( -/obj/machinery/newscaster/directional/west, -/obj/structure/chair/pew/left, -/turf/open/floor/iron{ - dir = 1; - icon_state = "chapel" - }, -/area/station/service/chapel) -"lCs" = ( -/obj/machinery/deepfryer, -/obj/machinery/light/directional/north, -/obj/machinery/camera{ - c_tag = " Prison - Kitchen"; - dir = 1; - network = list("ss13","prison") - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/mess) -"lCy" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/taperecorder{ - pixel_x = 3 - }, -/obj/item/clothing/glasses/sunglasses, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"lCz" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron, -/area/station/security/warden) -"lCM" = ( -/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/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/door/poddoor/preopen{ - id = "atmoslock"; - name = "Atmospherics Lockdown Blast Door" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"lCQ" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - 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/security/prison/mess) -"lDi" = ( -/turf/closed/wall, -/area/station/cargo/warehouse) -"lDp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: PRESSURIZED DOORS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/greater) -"lDV" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/engineering/main) -"lDY" = ( -/obj/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 = "Maintenance Hatch" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"lEg" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/light/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"lEh" = ( -/obj/structure/cable, -/obj/machinery/power/tracker, -/turf/open/floor/iron/solarpanel/airless, -/area/station/solars/starboard/fore) -"lEi" = ( -/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/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/lobby) -"lEn" = ( -/turf/open/floor/iron/grimy, -/area/station/service/chapel) -"lEr" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"lEs" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"lEu" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/item/surgical_drapes, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"lEI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"lEL" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) -"lEM" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/solars/starboard/fore) -"lET" = ( -/turf/closed/wall/r_wall, -/area/station/security/medical) -"lEY" = ( -/obj/structure/table/glass, -/obj/item/clothing/glasses/science{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/glasses/science, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/screwdriver, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"lFc" = ( -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/structure/table/reinforced, -/obj/machinery/requests_console/directional/north{ - department = "Robotics"; - departmentType = 2; - name = "Robotics Requests Console"; - receive_ore_updates = 1 - }, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"lFo" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/station/medical/surgery/theatre) -"lFx" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"lFL" = ( -/obj/effect/spawner/structure/window, -/obj/structure/curtain/cloth/fancy/mechanical{ - icon_state = "bounty-open"; - icon_type = "bounty"; - id = "prisoncell6"; - name = "curtain" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"lFP" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/item/radio/intercom/prison/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/holding_cell) -"lFQ" = ( -/obj/structure/cable, -/obj/machinery/light/directional/east, -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"lFR" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"lFX" = ( -/obj/structure/closet/emcloset/anchored, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/north, -/obj/structure/sign/warning/vacuum/directional/north, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"lGf" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"lGo" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/box/red, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"lGq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/stool/directional/north, -/turf/open/floor/iron, -/area/station/commons/lounge) -"lGv" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison/work) -"lGE" = ( -/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/door/airlock/maintenance_hatch{ - name = "Kitchen Coldroom" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"lGF" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"lGI" = ( -/turf/closed/wall/r_wall, -/area/station/science/ordnance) -"lGL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/random/maintenance/three, -/obj/structure/closet/wardrobe/yellow, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard) -"lHl" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"lHu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"lHx" = ( -/obj/structure/dresser, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"lHz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"lHC" = ( -/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/decal/cleanable/dirt, -/obj/machinery/door/airlock/mining{ - name = "Cargo Warehouse" - }, -/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/supply/general, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"lHR" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"lHV" = ( -/obj/structure/rack, -/obj/item/airlock_painter, -/obj/item/toner, -/obj/machinery/status_display/evac/directional/west, -/obj/item/storage/box/shipping, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"lHY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/syringe{ - pixel_y = 5 - }, -/turf/open/floor/iron/grimy, -/area/station/maintenance/port/fore) -"lHZ" = ( -/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/port/fore) -"lIl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood, -/obj/structure/mirror/directional/north, -/obj/structure/table/wood/fancy, -/obj/item/toy/figure/clown, -/turf/open/floor/wood, -/area/station/service/theater) -"lIm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating{ - initial_gas_mix = "o2=0.01;n2=0.01;TEMP=2.7"; - luminosity = 2; - temperature = 2.7 - }, -/area/station/security/execution/transfer) -"lIu" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/obj/item/flashlight, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"lIC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"lID" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"lII" = ( -/obj/structure/railing, -/obj/structure/chair/sofa/bench{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"lIN" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/virologist, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/medical/virology) -"lIT" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"lJb" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"lJc" = ( -/turf/open/floor/iron, -/area/station/engineering/atmos) -"lJh" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) -"lJu" = ( -/obj/structure/sign/directions/evac{ - pixel_y = -8 - }, -/obj/structure/sign/directions/medical, -/obj/structure/sign/directions/security{ - pixel_y = 8 - }, -/turf/closed/wall, -/area/station/service/library) -"lJB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"lJJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"lJZ" = ( -/obj/machinery/door/poddoor/shutters{ - id = "evashutters"; - name = "E.V.A. Storage Shutters" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/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/ai_monitored/command/storage/eva) -"lKd" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = -8 - }, -/obj/effect/turf_decal/delivery, -/obj/item/reagent_containers/glass/rag, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"lKe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/mix) -"lKf" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"lKl" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Cargo Bay - Aft Port"; - name = "cargo camera" - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"lKp" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"lKr" = ( -/obj/item/radio/intercom/directional/east, -/obj/machinery/light/directional/east, -/obj/structure/closet/secure_closet/evidence{ - name = "Brig Officer's Locker" - }, -/obj/item/clothing/mask/whistle, -/turf/open/floor/iron/dark/blue/side{ - dir = 4 - }, -/area/brigofficer) -"lKy" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/table, -/obj/effect/spawner/random/food_or_drink/snack, -/obj/effect/spawner/random/food_or_drink/refreshing_beverage, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"lKC" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/highsecurity{ - name = "MiniSat Chamber" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "aicoredoor"; - name = "AI Core Access" - }, -/obj/machinery/flasher/directional/west{ - id = "AI" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"lKI" = ( -/obj/machinery/vending/wardrobe/viro_wardrobe, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"lKK" = ( -/obj/effect/turf_decal/trimline/darkblue/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/rec) -"lKR" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"lKU" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/plasma_input{ - dir = 4 - }, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"lKW" = ( -/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/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"lLb" = ( -/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/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"lLw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/west, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"lLy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"lLJ" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"lLU" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/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/aft) -"lLY" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"lMd" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/toy/figure/lawyer, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"lMg" = ( -/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/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"lMk" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/courtroom) -"lMn" = ( -/obj/structure/table/wood, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/carpet, -/area/station/service/chapel/office) -"lMu" = ( -/obj/structure/table, -/obj/item/storage/dice, -/obj/effect/turf_decal/delivery, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"lMy" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"lMz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"lMB" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/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/treatment_center) -"lMF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"lMH" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"lMN" = ( -/obj/structure/table, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/turf/open/floor/iron, -/area/station/security/prison) -"lMU" = ( -/obj/effect/spawner/random/structure/crate_abandoned, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"lMX" = ( -/obj/machinery/computer/scan_consolenew{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"lMZ" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/pumproom) -"lNc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"lNd" = ( -/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/grimy, -/area/station/service/library) -"lNk" = ( -/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/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"lNl" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"lNn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/starboard) -"lNo" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"lNA" = ( -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"lNB" = ( -/obj/structure/frame/computer{ - dir = 8 - }, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/carpet/blue, -/area/station/commons/vacant_room/office) -"lNL" = ( -/turf/closed/wall, -/area/station/tcommsat/server) -"lNR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/camera/directional/east{ - c_tag = "Engineering Hallway - Fore"; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"lOi" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"lOj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"lOA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"lOE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"lOM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"lOO" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/security/courtroom) -"lOW" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"lPa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/green{ - dir = 8 - }, -/turf/open/floor/iron/checker, -/area/station/service/hydroponics/garden/abandoned) -"lPh" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"lPj" = ( -/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/tile/green/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"lPm" = ( -/obj/machinery/telecomms/server/presets/service, -/obj/effect/turf_decal/tile/green/anticorner/contrasted, -/turf/open/floor/iron/telecomms, -/area/station/tcommsat/server) -"lPo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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, -/area/station/science/research) -"lPs" = ( -/obj/machinery/biogenerator, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"lPz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"lPA" = ( -/obj/structure/cable, -/turf/open/floor/iron{ - dir = 1; - icon_state = "chapel" - }, -/area/station/service/chapel) -"lPB" = ( -/obj/structure/table, -/obj/item/toy/gun, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/locker) -"lPE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"lPO" = ( -/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/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"lPS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"lPT" = ( -/obj/structure/table, -/obj/item/cane, -/obj/item/clothing/head/bowler{ - pixel_y = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"lQd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/service/library) -"lQu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/item/lipstick/random{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/lipstick/random, -/obj/item/lipstick/random{ - pixel_y = 3 - }, -/obj/machinery/light_switch/directional/south{ - pixel_x = -8 - }, -/turf/open/floor/iron/checker, -/area/station/service/theater) -"lQw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"lQN" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o, -/turf/open/floor/iron/cafeteria, -/area/station/engineering/atmos) -"lQP" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"lQR" = ( -/obj/structure/table/wood, -/obj/machinery/computer/med_data/laptop, -/obj/machinery/light_switch/directional/west{ - pixel_x = -38; - pixel_y = 8 - }, -/obj/machinery/button/flasher{ - id = "hopflash"; - pixel_x = -38; - pixel_y = -7; - req_access = list("kitchen") - }, -/obj/machinery/button/ticket_machine{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/radio/intercom/directional/north{ - pixel_y = 30 - }, -/obj/machinery/button/door/directional/west{ - id = "hopblast"; - name = "Lockdown Blast Doors"; - pixel_y = 6; - req_access = list("hop") - }, -/obj/machinery/button/door/directional/west{ - id = "hopline"; - name = "Queue Shutters Control"; - pixel_y = -6; - req_access = list("hop") - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hop) -"lQS" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Security - Gear Room" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/machinery/gun_vendor, -/turf/open/floor/iron, -/area/station/security/lockers) -"lQY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/research{ - name = "Genetics Lab" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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/science/genetics, -/turf/open/floor/iron, -/area/station/science/genetics) -"lQZ" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/radio, -/obj/machinery/status_display/ai/directional/north, -/obj/structure/reagent_dispensers/wall/peppertank/directional/east, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) -"lRi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/camera/directional/east{ - c_tag = "Cargo Bay - Delivery Office"; - name = "cargo camera" - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"lRs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - id_tag = "Dorm5"; - name = "Cabin 1" - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/commons/dorms) -"lRw" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/research) -"lRC" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/locker) -"lRG" = ( -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"lSb" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/security/brig) -"lSh" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"lSl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"lSp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "detectivewindows"; - name = "Detective Privacy Blast Door" - }, -/turf/open/floor/plating, -/area/station/security/detectives_office) -"lSz" = ( -/turf/closed/wall, -/area/station/security/detectives_office) -"lTg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"lTo" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = " Prison - Pool"; - dir = 8; - network = list("ss13","prison") - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/prison/rec) -"lTp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"lTv" = ( -/turf/closed/wall, -/area/station/security/prison/safe) -"lTx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/captain/private) -"lTz" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/directional/west, -/obj/item/crowbar, -/obj/item/radio, -/obj/structure/sign/poster/official/do_not_question{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/aft) -"lTG" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/pumproom) -"lTH" = ( -/obj/structure/flora/bush/grassy/style_random, -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/bush/flowers_pp/style_random, -/obj/structure/flora/bush/sunny/style_random, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/station/hallway/secondary/exit/departure_lounge) -"lTJ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/chair/comfy/barber_chair{ - dir = 4 - }, -/turf/open/floor/iron, -/area/service/salon) -"lTT" = ( -/obj/effect/turf_decal/stripes/white/line{ - color = "#52B4E9"; - dir = 1; - name = "blue line" - }, -/turf/open/floor/iron/dark/blue/side{ - dir = 1 - }, -/area/station/security/prison) -"lTZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"lUa" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/monkeycubes{ - pixel_x = 6; - pixel_y = 9 - }, -/obj/item/storage/box/monkeycubes{ - pixel_x = 4 - }, -/obj/item/storage/pill_bottle/mutadone{ - pixel_x = -8; - pixel_y = 9 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -10; - pixel_y = -1 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"lUu" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cmoshutter"; - name = "CMO Office Shutters"; - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/command/heads_quarters/cmo) -"lUy" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/entertainment/wallet_storage, -/obj/item/taperecorder, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"lUB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - name = "MiniSat Upload" - }, -/obj/machinery/flasher/directional/west{ - id = "AI" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"lUD" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/machinery/airalarm/mixingchamber{ - dir = 4; - pixel_x = 25 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/freezerchamber) -"lUI" = ( -/obj/structure/chair/office, -/obj/effect/landmark/start/head_of_personnel, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"lUJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/medical/medbay/lobby) -"lUK" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"lUX" = ( -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"lVn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"lVv" = ( -/obj/effect/landmark/start/cargo_technician, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"lVG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 8 - }, -/obj/machinery/meter, -/obj/effect/turf_decal/box/corners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"lVQ" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"lVR" = ( -/turf/closed/wall/r_wall, -/area/station/science/explab) -"lWj" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Robotics" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"lWk" = ( -/obj/machinery/monkey_recycler, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"lWp" = ( -/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/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"lWu" = ( -/turf/closed/wall, -/area/station/commons/toilet/restrooms) -"lWx" = ( -/obj/structure/chair/office, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/engineering_guard, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"lWy" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "atmoslock"; - name = "Atmospherics Lockdown Blast Door" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/half, -/area/station/engineering/atmos) -"lWA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"lWF" = ( -/obj/structure/table/reinforced, -/obj/item/radio{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/radio{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/radio, -/obj/machinery/light_switch/directional/east, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"lWL" = ( -/obj/structure/table, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/work) -"lWY" = ( -/obj/structure/chair, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"lWZ" = ( -/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/lesser) -"lXd" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"lXx" = ( -/obj/structure/table/wood, -/obj/item/lipstick/random{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/lipstick/random{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/lipstick/random, -/turf/open/floor/plating, -/area/station/service/theater/abandoned) -"lXz" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/break_room) -"lXB" = ( -/obj/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/central) -"lXD" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"lXV" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/pen/fourcolor, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/captain/private) -"lYt" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"lYv" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_y = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) -"lYG" = ( -/obj/structure/closet/l3closet/scientist, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/research) -"lYL" = ( -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"lYY" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"lZa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"lZm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/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/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"lZs" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"lZt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"lZw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/cargo/storage) -"lZx" = ( -/turf/closed/wall, -/area/station/command/heads_quarters/hop) -"lZz" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/roboticist, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"lZQ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron/white, -/area/station/maintenance/department/science) -"lZX" = ( -/obj/effect/turf_decal/tile/blue, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"mae" = ( -/obj/machinery/door/window/right/directional/east{ - name = "Hydroponics Center" - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"maz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"maI" = ( -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"maN" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"maP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Surgery Observation" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/theatre) -"maS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/command/gateway) -"maV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/service/general, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"mbp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/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/medical/medbay/central) -"mbu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - id_tag = "Dorm6"; - name = "Cabin 6" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/commons/dorms) -"mbw" = ( -/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/bot, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"mbz" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/virology) -"mbO" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/locker) -"mbQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"mbR" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"mcp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"mcs" = ( -/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/fore) -"mcz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Interrogation" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"mcA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"mcB" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/syringe, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"mcE" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/door/firedoor, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/hallway/secondary/entry) -"mcV" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "engine-entrance" - }, -/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/general, -/turf/open/floor/iron, -/area/station/engineering/main) -"mcW" = ( -/obj/machinery/flasher/directional/north{ - id = "AI" - }, -/obj/machinery/porta_turret/ai, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/turret_protected/ai) -"mcX" = ( -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 8 - }, -/obj/machinery/light/directional/north, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"mdb" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron, -/area/station/medical/medbay/lobby) -"mdc" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron, -/area/station/security/detectives_office/private_investigators_office) -"mdg" = ( -/obj/effect/turf_decal/tile/red{ - 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/security/brig) -"mdh" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/food/donut/jelly/choco, -/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/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"mdm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/science/ordnance/testlab) -"mdB" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"mdD" = ( -/obj/structure/table, -/obj/item/storage/photo_album, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"mdM" = ( -/obj/machinery/computer/med_data{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/obj/machinery/light/small/directional/south, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/customs/fore) -"mdP" = ( -/obj/item/kirbyplants/random, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"mea" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Medbay - Storage"; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/item/kirbyplants/random, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/storage) -"mef" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/station/maintenance/department/engine/atmos) -"mej" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"men" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"mes" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"met" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research/glass{ - name = "Ordnance Lab" - }, -/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/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance_storage, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"mez" = ( -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"meB" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron{ - dir = 1; - icon_state = "chapel" - }, -/area/station/service/chapel) -"meG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"meL" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"meS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"meZ" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/toilet{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/mess, -/obj/machinery/newscaster/directional/north, -/obj/machinery/button/door/directional/south{ - id = "Arrivals_Toilet2"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/commons/toilet/restrooms) -"mfb" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"mfl" = ( -/obj/machinery/computer/atmos_alert{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"mft" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/command/teleporter) -"mfy" = ( -/obj/docking_port/stationary{ - dheight = 4; - dir = 4; - dwidth = 4; - height = 9; - id = "aux_base_zone"; - name = "Aux Base Zone"; - roundstart_template = /datum/map_template/shuttle/aux_base/default; - width = 9 - }, -/turf/open/floor/plating, -/area/station/construction/mining/aux_base) -"mfC" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/commons/fitness/recreation) -"mfE" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/filled/warning, -/obj/effect/turf_decal/siding/yellow, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"mgd" = ( -/obj/structure/railing{ - dir = 10 - }, -/obj/item/kirbyplants/random, -/obj/machinery/light/floor, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"mgh" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/office) -"mgk" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/engineering/main) -"mgn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/stool/bar/directional/south, -/turf/open/floor/carpet/green, -/area/station/commons/lounge) -"mgv" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/command/heads_quarters/hos) -"mgy" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"mgP" = ( -/obj/structure/table/wood, -/obj/item/clothing/gloves/color/black, -/obj/item/storage/box/evidence, -/obj/item/taperecorder, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office/private_investigators_office) -"mgY" = ( -/turf/open/floor/glass/reinforced, -/area/station/commons/fitness/recreation) -"mha" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/commons/locker) -"mhd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"mhe" = ( -/obj/item/exodrone{ - pixel_y = 8 - }, -/obj/structure/table, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"mhg" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"mhj" = ( -/obj/structure/flora/bush/grassy/style_random, -/obj/structure/flora/rock/pile/jungle/style_random, -/obj/machinery/light/floor, -/turf/open/misc/grass, -/area/station/hallway/primary/fore) -"mho" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/item/folder/white{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/folder/yellow{ - pixel_x = -4 - }, -/obj/machinery/door/window/right/directional/west{ - name = "Hydroponics Desk"; - req_access = list("hydroponics") - }, -/obj/structure/desk_bell{ - pixel_x = 8; - pixel_y = 9 - }, -/turf/open/floor/plating, -/area/station/service/hydroponics) -"mhs" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/table/wood, -/obj/machinery/door/firedoor, -/obj/structure/displaycase/forsale/kitchen{ - pixel_y = 6 - }, -/turf/open/floor/iron/dark/smooth_half{ - dir = 1 - }, -/area/station/service/bar) -"mhz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "engine-side" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"mhA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/button/door/directional/south{ - id = "engielock"; - name = "Engineering Lockdown Control"; - pixel_x = -6; - req_access = list("engineering") - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"mhE" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/storage) -"mhV" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/lobby) -"mig" = ( -/obj/machinery/newscaster/directional/north, -/obj/effect/turf_decal/tile/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/research) -"mik" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"min" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/machinery/door/window/right/directional/north{ - name = "Kitchen Delivery"; - req_access = list("kitchen") - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"mir" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"miv" = ( -/obj/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) -"miC" = ( -/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/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"miD" = ( -/obj/effect/spawner/random/structure/tank_holder, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"miE" = ( -/obj/effect/turf_decal/stripes/white/line, -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/east, -/turf/open/floor/wood, -/area/station/engineering/break_room) -"miJ" = ( -/obj/structure/reagent_dispensers/wall/peppertank/directional/east, -/obj/structure/table/reinforced, -/obj/item/clothing/mask/gas/sechailer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/clothing/mask/gas/sechailer{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/flashlight/seclite, -/obj/item/flashlight/seclite, -/obj/item/flashlight/seclite, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"miK" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/directional/west, -/obj/item/storage/medkit/regular, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/item/storage/secure/safe/caps_spare/directional/west, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"miQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"miT" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/structure/chair/office{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/library) -"mja" = ( -/obj/machinery/teleport/station, -/obj/machinery/status_display/evac/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"mjm" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/newscaster/directional/north, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/medical/break_room) -"mjw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/closed/wall/r_wall, -/area/station/science/xenobiology) -"mjB" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/science/auxlab) -"mjC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/hangover, -/obj/machinery/newscaster/directional/west, -/obj/machinery/button/door/directional/south{ - id = "Toilet3"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/iron, -/area/station/commons/toilet/locker) -"mkb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/dorms) -"mkl" = ( -/obj/machinery/light/directional/south, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"mkm" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 4 - }, -/turf/open/floor/circuit/green, -/area/station/science/research/abandoned) -"mkD" = ( -/obj/machinery/vending/wardrobe/robo_wardrobe, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"mkJ" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"mkL" = ( -/obj/item/stack/rods/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/target, -/obj/item/target/syndicate, -/obj/item/target/alien, -/obj/item/target/clown, -/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("brig_entrance") - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/light_switch/directional/west{ - pixel_x = -38 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/north{ - pixel_x = -26 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron, -/area/station/security/range) -"mkM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos/mix) -"mkX" = ( -/obj/structure/cable, -/obj/structure/table/wood/fancy/blue, -/obj/structure/window/reinforced, -/obj/machinery/door/window{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Core Modules"; - req_access = list("captain") - }, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) -"mlh" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"mlt" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/service/theater) -"mlu" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/aft) -"mly" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/book/manual/wiki/tcomms, -/obj/item/wrench, -/obj/item/screwdriver{ - pixel_y = 5 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/tcommsat/server) -"mlz" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron, -/area/station/science/research) -"mlE" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) -"mlF" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/obj/structure/sign/poster/official/random/directional/west, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"mlT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"mmq" = ( -/obj/structure/bookcase, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"mmr" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/space/basic, -/area/space/nearstation) -"mmE" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"mmJ" = ( -/obj/item/folder/red, -/obj/item/pen, -/obj/structure/table/glass, -/obj/item/folder/white{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) -"mmM" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"mmN" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Air Outlet Pump" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"mmU" = ( -/obj/effect/turf_decal/trimline/blue/end{ - dir = 4 - }, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/status_display/ai/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/engineering/main) -"mno" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/science/lobby) -"mnz" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"mnF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/smooth_half{ - dir = 1 - }, -/area/station/hallway/secondary/entry) -"mnL" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/station/maintenance/port/greater) -"mnN" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Distro to Waste" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/pumproom) -"mnR" = ( -/obj/machinery/door/window/brigdoor{ - name = "Creature Pen"; - req_access = list("research") - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xeno6"; - name = "Creature Cell #6" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"mnW" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/security/office) -"moc" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/radio/intercom/chapel/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"mop" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Engineering" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/preopen{ - id = "engielock"; - name = "Engineering Lockdown Blast Door" - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"mor" = ( -/obj/machinery/door/window/left/directional/east, -/obj/structure/closet/crate, -/obj/item/tank/internals/oxygen/red{ - pixel_x = 3 - }, -/obj/item/tank/internals/oxygen/red{ - pixel_x = -3 - }, -/obj/item/wrench, -/turf/open/floor/iron/dark, -/area/station/security/execution) -"mou" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"moz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"moC" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"moG" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"moV" = ( -/turf/open/floor/carpet, -/area/station/command/bridge) -"moY" = ( -/obj/structure/flora/tree/jungle/style_random, -/obj/structure/flora/bush/fullgrass/style_random, -/turf/open/misc/grass, -/area/station/hallway/primary/fore) -"mpa" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"mpf" = ( -/obj/structure/table/wood, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"mpC" = ( -/turf/closed/wall/r_wall, -/area/station/science/server) -"mpH" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/landmark/start/botanist, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"mpL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"mpO" = ( -/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/prisoner, -/turf/open/floor/iron/dark/side, -/area/station/security/prison) -"mpR" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"mqc" = ( -/obj/structure/table, -/obj/item/folder, -/obj/item/pen, -/obj/effect/turf_decal/delivery, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"mqe" = ( -/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/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"mqr" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/pen, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"mqt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Courtroom" - }, -/obj/effect/landmark/event_spawn, -/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/mapping_helpers/airlock/access/all/security/court, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"mqz" = ( -/obj/effect/turf_decal/tile/blue, -/obj/structure/railing/corner, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"mqE" = ( -/obj/structure/closet/emcloset/anchored, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"mqQ" = ( -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"mqT" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/item/surgical_drapes, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"mqU" = ( -/obj/machinery/computer/prisoner/gulag_teleporter_computer{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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) -"mqV" = ( -/obj/structure/dresser, -/obj/structure/mirror/directional/south, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"mra" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"mrd" = ( -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/obj/machinery/airalarm/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"mrl" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"mru" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"mrw" = ( -/obj/effect/landmark/start/botanist, -/turf/open/floor/iron/half{ - dir = 8 - }, -/area/station/service/hydroponics) -"mrE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"mrT" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/siding/brown{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"msj" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/button/door{ - id = "Disposal Exit"; - name = "Disposal Vent Control"; - pixel_x = -25; - pixel_y = 4; - req_access = list("maint_tunnels") - }, -/obj/structure/chair/stool/directional/west, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/computer/pod/old/mass_driver_controller/trash{ - pixel_x = -24; - pixel_y = -7 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"msp" = ( -/obj/effect/spawner/random/decoration/carpet, -/obj/effect/spawner/random/structure/furniture_parts, -/obj/structure/closet/crate/decorations, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"msx" = ( -/obj/item/kirbyplants/random, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/wood, -/area/station/service/electronic_marketing_den) -"msB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"msF" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/chair/sofa/bench/left, -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"msI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/event_spawn, -/obj/structure/chair/stool/directional/west, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"msJ" = ( -/obj/structure/cable, -/obj/machinery/status_display/evac/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"msR" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/commons/lounge) -"mta" = ( -/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/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"mtb" = ( -/obj/structure/rack, -/obj/item/electronics/apc, -/obj/item/electronics/airalarm, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"mtd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Recovery Room" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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/medical/surgery, -/turf/open/floor/iron, -/area/station/medical/surgery/theatre) -"mti" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"mtm" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/mix) -"mtn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"mtp" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"mtq" = ( -/obj/structure/dresser, -/obj/structure/sign/nanotrasen{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/button/door/directional/south{ - id = "chapelprivacy"; - name = "Privacy Control"; - req_access = list("crematorium") - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"mtu" = ( -/obj/structure/table, -/obj/structure/cable, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark/blue/side{ - dir = 10 - }, -/area/station/security/prison/safe) -"mtv" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"mtw" = ( -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/storage) -"mtL" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"muh" = ( -/obj/structure/lattice/catwalk, -/obj/item/stack/cable_coil, -/turf/open/space/basic, -/area/station/solars/port/fore) -"muu" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"muz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/medical/pharmacy) -"muH" = ( -/obj/structure/noticeboard/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Science - Robotics Lab"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"muK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Primary Tool Storage" - }, -/obj/effect/landmark/navigate_destination, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"muN" = ( -/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/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Bar Backroom" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/duct, -/obj/effect/mapping_helpers/airlock/access/all/service/bar, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"muU" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Central Hallway - Aft"; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"mvg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard) -"mvk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"mvn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution) -"mvp" = ( -/obj/structure/rack, -/obj/item/storage/briefcase{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/secure/briefcase, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/security/detectives_office/private_investigators_office) -"mvq" = ( -/obj/structure/cable, -/obj/machinery/holopad, -/turf/open/floor/iron/grimy, -/area/station/command/meeting_room/council) -"mvv" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"mvA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Port Primary Hallway" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/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/port) -"mvF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark/side, -/area/station/security/prison) -"mvK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/brig) -"mvL" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"mvO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/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/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"mvP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"mwa" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"mwG" = ( -/obj/structure/cable, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"mwH" = ( -/obj/effect/landmark/start/chemist, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"mwK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"mwP" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"mwW" = ( -/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/cyclelink_helper{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"mxj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/engineering/lobby) -"mxy" = ( -/obj/machinery/door/window/brigdoor{ - name = "Creature Pen"; - req_access = list("research") - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"mxP" = ( -/obj/machinery/computer/crew{ - dir = 1 - }, -/obj/machinery/status_display/ai/directional/south, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/customs/fore) -"myc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/holding_cell) -"myF" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/item/restraints/handcuffs, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/storage/box/prisoner, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/security/processing) -"myI" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/space, -/area/space/nearstation) -"myV" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"mzb" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/newscaster/directional/west, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"mze" = ( -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark/side, -/area/station/security/prison) -"mzm" = ( -/obj/structure/cable, -/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, -/area/station/commons/locker) -"mzu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"mzw" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"mzO" = ( -/obj/structure/table/reinforced, -/obj/machinery/newscaster/directional/north, -/obj/item/clipboard, -/obj/item/toy/figure/engineer{ - pixel_x = -6 - }, -/obj/item/toy/figure/atmos{ - pixel_x = 6 - }, -/turf/open/floor/wood, -/area/station/engineering/break_room) -"mzP" = ( -/obj/machinery/smartfridge/extract/preloaded, -/obj/machinery/light_switch/directional/west, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"mzS" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/science/breakroom) -"mzV" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"mzZ" = ( -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"mAa" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"mAb" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/newscaster/directional/south, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"mAh" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"mAi" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"mAj" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/camera{ - c_tag = " Prison - (North-West) Blue Wing Upper"; - dir = 4; - network = list("ss13","prison") - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/prison) -"mAm" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/bluespace_vendor/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"mAv" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/station/solars/starboard/aft) -"mAA" = ( -/obj/effect/spawner/structure/window, -/obj/structure/curtain/cloth/fancy/mechanical{ - icon_state = "bounty-open"; - icon_type = "bounty"; - id = "prisoncell9"; - name = "curtain" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"mAB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Bathroom" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron, -/area/station/science/breakroom) -"mAG" = ( -/obj/structure/window/reinforced, -/obj/structure/lattice, -/turf/open/space, -/area/station/hallway/secondary/entry) -"mAJ" = ( -/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/structure/railing/corner, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"mAK" = ( -/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, -/obj/machinery/door/airlock{ - name = "Theater Backstage" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/access/all/service/theatre, -/turf/open/floor/iron, -/area/station/service/theater) -"mAQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Xenobiology Maintenance" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/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/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"mBd" = ( -/obj/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, -/area/station/command/heads_quarters/captain) -"mBe" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/greater) -"mBj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/medical/morgue) -"mBM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/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 = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/starboard) -"mBQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/east{ - c_tag = "Bridge - Gateway Chamber"; - name = "command camera" - }, -/obj/effect/turf_decal/bot_white/right, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"mCa" = ( -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/space_hut/observatory) -"mCf" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/cafeteria) -"mCp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel's Office" - }, -/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/command/hop, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"mCt" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - 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/aft) -"mCL" = ( -/obj/machinery/research/anomaly_refinery, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"mCM" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/tcomms, -/obj/item/radio{ - pixel_y = 5 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"mCV" = ( -/obj/structure/closet/l3closet/security, -/obj/effect/turf_decal/bot_blue, -/obj/item/clothing/suit/bio_suit/security, -/obj/item/clothing/suit/bio_suit/security, -/obj/item/clothing/head/bio_hood/security, -/obj/item/clothing/head/bio_hood/security, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"mCW" = ( -/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/white, -/area/station/medical/chemistry) -"mCY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"mDa" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"mDb" = ( -/obj/machinery/power/turbine/core_rotor{ - mapping_id = "main_turbine" - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"mDm" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"mDq" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/spawner/random/clothing/bowler_or_that, -/turf/open/floor/iron, -/area/station/commons/lounge) -"mDw" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"mDz" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/table/reinforced, -/obj/item/clothing/shoes/wheelys/rollerskates, -/obj/item/clothing/shoes/wheelys/rollerskates{ - pixel_y = 5 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"mDI" = ( -/obj/structure/cable, -/obj/structure/closet/secure_closet/freezer/kitchen/maintenance, -/obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"mDJ" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/newscaster/directional/east, -/obj/structure/table/wood, -/obj/effect/spawner/random/bureaucracy/folder{ - spawn_all_loot = 1; - spawn_loot_split = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/library) -"mDR" = ( -/obj/machinery/vending/wardrobe/law_wardrobe, -/obj/machinery/firealarm/directional/east, -/obj/machinery/light_switch/directional/north{ - pixel_x = -8 - }, -/obj/machinery/button/door/directional/north{ - id = "lawyerprivacy"; - name = "Lawyer's Privacy Control"; - pixel_x = 6 - }, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"mEi" = ( -/obj/structure/table, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"mEv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/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, -/area/station/maintenance/port/aft) -"mEx" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/table/reinforced, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"mEA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/service/abandoned_gambling_den) -"mEH" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/folder, -/obj/item/pen, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"mEI" = ( -/obj/effect/spawner/random/structure/girder{ - loot = list(/obj/structure/falsewall=50,/turf/closed/wall=50); - name = "fifty% falsewall, fifty% wall" - }, -/turf/open/floor/plating, -/area/station/security/prison/work) -"mEX" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"mFe" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/medical/surgery/theatre) -"mFh" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"mFp" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/warden) -"mFr" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"mFu" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Atmos to Loop" - }, -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"mGm" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"mGo" = ( -/obj/effect/spawner/random/entertainment/arcade, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light/dim/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"mGq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"mGr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"mGu" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/south, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/commons/dorms) -"mGw" = ( -/turf/open/floor/wood, -/area/station/command/meeting_room/council) -"mGB" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/arrows/white{ - color = "#800080"; - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/lobby) -"mGC" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"mGE" = ( -/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/tile/blue/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"mGF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/carpet/red, -/area/station/hallway/secondary/service) -"mGH" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"mGQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/medical/medbay/central) -"mHc" = ( -/obj/structure/cable, -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"mHg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"mHm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/storage) -"mHn" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "right_arrivals_shutters"; - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"mHw" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall5"; - location = "hall4" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"mHJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"mHM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"mHN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"mHR" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"mHX" = ( -/obj/machinery/holopad{ - pixel_x = -16 - }, -/obj/effect/landmark/start/chemist, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"mIf" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"mIq" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/telecomms, -/area/station/science/xenobiology) -"mIs" = ( -/turf/closed/wall, -/area/station/command/gateway) -"mIv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/rods/fifty, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"mIA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/storage) -"mIO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/corner, -/area/station/maintenance/disposal/incinerator) -"mIP" = ( -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den) -"mJd" = ( -/obj/structure/disposalpipe/segment{ - 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/door/airlock/public/glass{ - name = "Service Hall" - }, -/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/access/all/service/general, -/turf/open/floor/iron/checker, -/area/station/hallway/secondary/service) -"mJj" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"mJq" = ( -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"mJH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"mJN" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"mJR" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/greater) -"mJT" = ( -/obj/effect/landmark/start/orderly, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"mJZ" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/pen, -/obj/item/storage/dice, -/turf/open/floor/iron/dark, -/area/station/service/library) -"mKa" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"mKc" = ( -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"mKd" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/destructible/cult/item_dispenser/archives/library, -/obj/item/book/codex_gigas, -/turf/open/floor/iron/dark, -/area/station/service/library) -"mKp" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/electronic_marketing_den) -"mKu" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"mKv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/main) -"mKC" = ( -/obj/machinery/icecream_vat, -/obj/effect/turf_decal/bot/right, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"mKL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 5 - }, -/turf/open/floor/iron/dark/red/side{ - dir = 10 - }, -/area/station/security/execution) -"mKP" = ( -/obj/effect/landmark/blobstart, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"mKQ" = ( -/obj/structure/table/reinforced, -/obj/item/stock_parts/matter_bin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/micro_laser, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/science/lab) -"mKU" = ( -/obj/machinery/power/shieldwallgen, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"mLc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"mLr" = ( -/obj/item/stack/sheet/plasteel{ - amount = 15 - }, -/obj/item/wrench, -/obj/machinery/light/directional/west, -/obj/item/clothing/glasses/welding, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/west, -/obj/machinery/light_switch/directional/west{ - pixel_x = -38 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"mLt" = ( -/obj/structure/rack, -/obj/item/storage/briefcase{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/secure/briefcase, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"mLu" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"mLD" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"mLT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/detective, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"mMd" = ( -/obj/machinery/computer/upload/ai{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"mMn" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"mMr" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/obj/structure/tank_holder/oxygen, -/turf/open/floor/iron/smooth, -/area/station/hallway/secondary/entry) -"mMK" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"mMX" = ( -/obj/structure/reagent_dispensers/watertank, -/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) -"mNj" = ( -/obj/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/grimy, -/area/station/service/chapel) -"mNo" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"mNw" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"mNC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/commons/fitness/recreation) -"mNF" = ( -/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/highsecurity{ - name = "Gravity Generator Room" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"mNP" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/medical/psychology) -"mNX" = ( -/obj/machinery/status_display/evac/directional/west, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"mOe" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/cargo_technician, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/storage) -"mOf" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Telecomms - Monitoring"; - name = "telecomms camera"; - network = list("ss13","tcomms") - }, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"mOh" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"mOi" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"mOp" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/pumproom) -"mOv" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hop) -"mOz" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"mOA" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/structure/sign/poster/official/science{ - pixel_x = 32; - pixel_y = 32 - }, -/turf/open/floor/glass, -/area/station/maintenance/space_hut/observatory) -"mOB" = ( -/obj/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/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"mOD" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"mOH" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"mOI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/theater) -"mOM" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"mOP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/teleporter) -"mOX" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/plaque{ - icon_state = "L5" - }, -/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/aft) -"mPg" = ( -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/smooth_half{ - dir = 1 - }, -/area/station/hallway/secondary/entry) -"mPh" = ( -/obj/machinery/suit_storage_unit/ce, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"mPp" = ( -/obj/structure/table/reinforced, -/obj/item/electronics/apc{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/electronics/apc, -/obj/effect/turf_decal/delivery, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"mPu" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"mPI" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 10 - }, -/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/white, -/area/station/science/ordnance/storage) -"mPT" = ( -/obj/structure/table/wood, -/obj/item/storage/secure/safe/hos{ - pixel_x = 32 - }, -/obj/item/flashlight/lamp, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hos) -"mPV" = ( -/obj/structure/cable, -/obj/machinery/power/smes, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"mPW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"mQg" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"mQh" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/fore) -"mQt" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/light/directional/west, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"mQA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/stool/bar/directional/west, -/turf/open/floor/plating, -/area/station/service/theater/abandoned) -"mQC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/command/gateway) -"mQE" = ( -/obj/structure/table/glass, -/obj/item/storage/box/beakers{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/syringes, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/virology) -"mQF" = ( -/obj/structure/chair/office, -/obj/effect/landmark/start/station_engineer, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"mQM" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/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/aft) -"mQZ" = ( -/obj/machinery/gateway/centerstation, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"mRe" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Ordnance Lab" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"mRf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/abandoned_gambling_den/gaming) -"mRE" = ( -/obj/effect/turf_decal/tile/purple{ - 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/white, -/area/station/science/research) -"mRF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"mSe" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison/safe) -"mSl" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"mSp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"mSv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"mSA" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/mob/living/carbon/human/species/monkey/punpun, -/turf/open/floor/carpet/green, -/area/station/commons/lounge) -"mSB" = ( -/obj/structure/cable, -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"mSG" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/closet/secure_closet/brig/genpop, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"mSQ" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/port/greater) -"mSW" = ( -/obj/machinery/power/shieldwallgen, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/aft) -"mSX" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/clothing/gloves/color/latex, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"mTe" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"mTn" = ( -/obj/effect/turf_decal/siding/thinplating/dark, -/turf/open/floor/iron/grimy, -/area/station/service/bar) -"mTo" = ( -/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, -/area/station/engineering/supermatter/room) -"mTA" = ( -/turf/closed/wall/r_wall, -/area/station/security/holding_cell) -"mTS" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"mUa" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/maintenance/solars/starboard/fore) -"mUG" = ( -/obj/machinery/chem_master, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"mUJ" = ( -/obj/structure/chair/office, -/turf/open/floor/wood, -/area/station/security/prison) -"mUL" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/maintenance/space_hut/observatory) -"mUO" = ( -/obj/machinery/light/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area, -/turf/open/floor/iron, -/area/station/command/teleporter) -"mUR" = ( -/obj/structure/sign/poster/official/help_others{ - pixel_y = 32 - }, -/obj/structure/chair/sofa/left, -/obj/item/toy/plush/moth{ - name = "Moffee" - }, -/turf/open/floor/carpet, -/area/station/medical/psychology) -"mVB" = ( -/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/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/toilet/locker) -"mVO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/west{ - c_tag = "Security Hallway - Fore"; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"mVS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"mVZ" = ( -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/engineering/lobby) -"mWf" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/commons/dorms) -"mWn" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/five, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/commons/vacant_room/commissary) -"mWq" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/engineering/supermatter) -"mWw" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"mWy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "xeno2"; - name = "Creature Cell #2" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"mWF" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"mWO" = ( -/obj/structure/railing/corner, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"mWP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"mWU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"mXa" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"mXb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/cryo_cell, -/turf/open/floor/iron, -/area/station/medical/cryo) -"mXf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/starboard) -"mXl" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/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 = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"mXo" = ( -/obj/structure/table/wood, -/obj/item/taperecorder{ - pixel_x = 3 - }, -/obj/item/storage/box/deputy, -/obj/item/flashlight/seclite, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"mXr" = ( -/obj/structure/cable, -/obj/structure/table/wood, -/obj/item/clothing/mask/cigarette/cigar/cohiba{ - pixel_x = 3 - }, -/obj/item/clothing/mask/cigarette/cigar/havana{ - pixel_x = -3 - }, -/obj/item/clothing/mask/cigarette/cigar, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/captain) -"mXt" = ( -/obj/structure/table/wood, -/obj/item/camera, -/obj/machinery/light/small/directional/south, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, -/obj/item/hand_labeler, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"mXy" = ( -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hop) -"mXE" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "prisonlockdown2"; - name = "Lockdown" - }, -/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) -"mXQ" = ( -/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/central/aft) -"mYe" = ( -/obj/structure/cable, -/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/secondary/command) -"mYf" = ( -/obj/structure/table/wood, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/obj/machinery/requests_console/directional/south{ - department = "Chapel"; - departmentType = 2; - name = "Chapel Requests Console" - }, -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/camera/directional/south{ - c_tag = "Chapel Office"; - name = "chapel camera" - }, -/turf/open/floor/carpet, -/area/station/service/chapel/office) -"mYh" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"mYi" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/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/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"mYk" = ( -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"mYl" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/hydroponics/constructable, -/obj/item/radio/intercom/directional/north, -/obj/machinery/light/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Service - Hydroponics Front Fore"; - dir = 6; - name = "service camera" - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"mYo" = ( -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"mYy" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark/purple/side, -/area/station/security/prison/safe) -"mYA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/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, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"mYL" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/binary/tank_compressor{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"mYU" = ( -/obj/structure/disposalpipe/segment, -/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/chapel/office) -"mYV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/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/aft) -"mYY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/checkpoint/medical) -"mZf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - 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/plating, -/area/station/maintenance/starboard) -"mZi" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/service/theater/abandoned) -"mZj" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - color = "#FFFF00"; - name = "plasma mixer" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"mZm" = ( -/obj/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/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/spawner/random/structure/barricade, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/iron, -/area/station/service/abandoned_gambling_den/gaming) -"mZr" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Gas to Cooling" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"mZs" = ( -/obj/effect/turf_decal/stripes/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/ai_monitored/command/storage/eva) -"mZy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/landmark/start/botanist, -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"mZT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/anesthetic_mix, -/turf/open/floor/iron, -/area/station/medical/cryo) -"mZU" = ( -/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 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/storage) -"nae" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/requests_console/directional/south{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge Requests Console" - }, -/turf/open/floor/iron/grimy, -/area/station/command/bridge) -"nal" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/girder, -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"nat" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Law Office Maintenance" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/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/service/lawyer, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"nay" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"naB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/turf/open/floor/glass, -/area/station/maintenance/space_hut/observatory) -"naN" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/kitchen{ - dir = 1 - }, -/area/station/security/prison) -"naX" = ( -/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/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"nbc" = ( -/turf/open/floor/plating, -/area/station/service/theater/abandoned) -"nbi" = ( -/obj/structure/cable, -/obj/structure/grille, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/security/prison/work) -"nbv" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"nbw" = ( -/obj/machinery/flasher/directional/north{ - id = "justiceflash" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark/red/side{ - dir = 1 - }, -/area/station/security/execution) -"nbI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/meter, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"nbN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"nbP" = ( -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"nbQ" = ( -/obj/item/kirbyplants/random, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"nbU" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"nbZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"nce" = ( -/obj/structure/table/wood, -/obj/machinery/light/directional/west, -/obj/item/flashlight/lamp/green, -/obj/machinery/camera/directional/west{ - c_tag = "Bridge - Captain's Office"; - name = "command camera" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"ncr" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"ncu" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hop) -"ncB" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 28 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"ncE" = ( -/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, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/carpet/red, -/area/station/hallway/secondary/service) -"ncI" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/storage/gas) -"ncJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xeno4"; - name = "Creature Cell #4" - }, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"ncP" = ( -/obj/item/kirbyplants/random, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/processing) -"ncQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"ncW" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"ndz" = ( -/obj/machinery/shieldgen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"ndJ" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"ndQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/poddoor/shutters{ - id = "warehouse_shutters"; - name = "Warehouse Shutters"; - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"ndV" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/commons/dorms) -"nef" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/station/medical/treatment_center) -"nek" = ( -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"nez" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"neG" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - name = "Janitor Junction"; - sortType = 22 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"nfd" = ( -/obj/machinery/portable_atmospherics/canister/plasma, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"nfh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"nfi" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"nfn" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nfx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/flashlight/lamp, -/turf/open/floor/iron/grimy, -/area/station/command/bridge) -"nfE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"nfL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/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, -/area/station/science/robotics/lab) -"nfP" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"nfX" = ( -/obj/structure/rack, -/obj/item/tank/internals/plasmaman/belt{ - pixel_x = -6 - }, -/obj/item/tank/internals/plasmaman/belt{ - pixel_x = 3 - }, -/obj/item/tank/internals/nitrogen/belt{ - pixel_x = -6 - }, -/obj/item/tank/internals/nitrogen/belt, -/obj/item/tank/internals/nitrogen/belt{ - pixel_x = 6 - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/machinery/atmospherics/pipe/layer_manifold{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/security/prison/upper) -"nfY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible/layer2{ - dir = 4 - }, -/obj/machinery/meter/layer2, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"nga" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"ngc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/anesthetic_mix, -/turf/open/floor/iron, -/area/station/medical/cryo) -"ngi" = ( -/obj/machinery/airalarm/directional/east, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"ngp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"ngy" = ( -/obj/structure/table/wood, -/obj/item/food/grown/poppy/geranium{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/food/grown/poppy/lily, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"ngD" = ( -/obj/structure/table/wood, -/obj/machinery/light/directional/north, -/obj/item/paper_bin, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"ngQ" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/lobby) -"ngX" = ( -/obj/docking_port/stationary{ - dwidth = 3; - height = 5; - id = "commonmining_home"; - name = "SS13: Common Mining Dock"; - roundstart_template = /datum/map_template/shuttle/mining_common/meta; - width = 7 - }, -/turf/open/space/basic, -/area/space) -"nhj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"nhl" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"nhr" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/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/ai_monitored/command/storage/eva) -"nht" = ( -/obj/effect/landmark/event_spawn, -/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/security/brig) -"nhv" = ( -/obj/item/kirbyplants/random, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"nhA" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/light/small/directional/east, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/engine/atmos) -"nhE" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"nhJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/item/lipstick/random, -/obj/structure/table/wood, -/turf/open/floor/iron, -/area/service/salon) -"nhO" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/mining_voucher, -/obj/machinery/light/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Auxiliary Construction - Storage"; - name = "engineering camera" - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"nhS" = ( -/obj/structure/table/reinforced, -/obj/item/radio{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/radio{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/radio, -/obj/machinery/firealarm/directional/south{ - pixel_x = -26 - }, -/obj/machinery/airalarm/directional/west, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/lockers) -"nia" = ( -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"nib" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nic" = ( -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"nie" = ( -/obj/item/stack/cable_coil, -/obj/structure/frame/computer{ - anchored = 1; - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/electronic_marketing_den) -"nii" = ( -/obj/structure/chair/office, -/turf/open/floor/wood, -/area/station/security/detectives_office/private_investigators_office) -"nir" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"niA" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/obj/item/pen, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/aft) -"niL" = ( -/obj/structure/rack, -/obj/item/storage/secure/briefcase, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/status_display/ai/directional/south, -/obj/effect/turf_decal/bot, -/obj/item/reagent_containers/pill/patch/aiuri, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"niP" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"njs" = ( -/obj/machinery/status_display/ai/directional/east, -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"njx" = ( -/obj/effect/landmark/start/customs_agent, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"njz" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall, -/area/station/maintenance/starboard/aft) -"njJ" = ( -/obj/machinery/vending/autodrobe, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/service/theater/abandoned) -"njM" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"njS" = ( -/obj/structure/disposalpipe/segment{ - 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/grimy, -/area/station/command/heads_quarters/hos) -"njT" = ( -/obj/machinery/pipedispenser/disposal, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"njW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/locker) -"nkb" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"nkd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"nkk" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"nkn" = ( -/obj/machinery/light_switch/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark/red/side{ - dir = 6 - }, -/area/station/security/execution) -"nku" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"nkG" = ( -/obj/structure/table/wood/poker, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) -"nkH" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Cargo Lobby" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"nkU" = ( -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"nli" = ( -/obj/structure/table, -/obj/machinery/light/small/directional/east, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/electronics/firealarm, -/obj/item/stack/sheet/glass, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"nlB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/cargo/storage) -"nlS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"nlU" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/commons/dorms) -"nlV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"nlW" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/medical/medbay/lobby) -"nlZ" = ( -/obj/item/grenade/barrier{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/grenade/barrier, -/obj/item/grenade/barrier{ - pixel_x = 3; - pixel_y = -1 - }, -/obj/item/grenade/barrier{ - pixel_x = 6; - pixel_y = -2 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"nma" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"nmb" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"nmi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"nml" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/aft) -"nmw" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/port/fore) -"nmP" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nmQ" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/sign/warning/electric_shock/directional/north, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"nnc" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/scientist, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"nnh" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/recharge_station, -/turf/open/floor/iron/dark, -/area/station/security/warden) -"nnk" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"nnq" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"nnv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"nnD" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/medical/morgue) -"nnN" = ( -/obj/structure/table, -/obj/item/wrench, -/obj/item/crowbar, -/obj/item/clothing/under/misc/burial, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"nnR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Armoury" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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/security/armory, -/turf/open/floor/iron, -/area/station/ai_monitored/security/armory) -"nnU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/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/aft) -"nnW" = ( -/obj/machinery/door/airlock/security{ - name = "Permabrig Visitation" - }, -/obj/effect/turf_decal/delivery/blue, -/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/visit) -"nnZ" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"nob" = ( -/obj/structure/chair{ - dir = 1; - name = "Jury" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"noh" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"nou" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"noK" = ( -/obj/structure/table/reinforced, -/obj/machinery/reagentgrinder{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/machinery/requests_console/directional/west{ - department = "Kitchen"; - departmentType = 2; - name = "Kitchen Requests Console" - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"noM" = ( -/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/plating, -/area/station/maintenance/port/greater) -"noY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Primary Tool Storage" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"npc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/aft) -"nph" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover/closet, -/obj/effect/turf_decal/siding/wood, -/obj/structure/closet/secure_closet/personal/cabinet{ - name = "mime's closet" - }, -/turf/open/floor/wood, -/area/station/service/theater) -"nps" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"npE" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"npG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"npO" = ( -/obj/machinery/camera/motion/directional/east{ - c_tag = "E.V.A. Storage"; - name = "motion-sensitive command camera" - }, -/obj/machinery/requests_console/directional/east{ - department = "EVA"; - name = "EVA Requests Console" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"npR" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/effect/turf_decal/siding/yellow/corner, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"npZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"nqc" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/pen/red, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/medical/virology) -"nqi" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod 3"; - space_dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"nqj" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nqp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"nqt" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Salon" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/chair/sofa/bench/right, -/turf/open/floor/iron, -/area/service/salon) -"nqv" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/medical/break_room) -"nqJ" = ( -/obj/machinery/vending/wardrobe/medi_wardrobe, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/medical/storage) -"nqP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/door/airlock/public{ - name = "Massage Parlour" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/service/salon) -"nqV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/frame/machine, -/obj/item/stack/cable_coil/five, -/obj/item/multitool{ - pixel_x = 5; - pixel_y = -5 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"nrd" = ( -/obj/item/kirbyplants/random, -/obj/machinery/camera/directional/south{ - c_tag = "Bridge - Captain's Quarters"; - name = "command camera" - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"nru" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"nrv" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"nrI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor_switch/oneway{ - id = "cargoload" - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"nrP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer4, -/obj/structure/sign/warning/secure_area/directional/west, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"nsa" = ( -/obj/structure/table/glass, -/obj/item/book/manual/wiki/infections, -/obj/item/reagent_containers/syringe/antiviral, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/machinery/light/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/station/medical/virology) -"nsf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"nso" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos/storage/gas) -"nsG" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"nsW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) -"ntc" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/door/airlock/public/glass{ - name = "Garden" - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/garden) -"ntd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"nto" = ( -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/toilet/locker) -"ntq" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) -"ntz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/theater/abandoned) -"ntK" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"ntL" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"ntU" = ( -/obj/structure/table/reinforced, -/obj/machinery/microwave, -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/wood, -/area/station/engineering/break_room) -"ntZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/station/service/library/abandoned) -"nuj" = ( -/obj/item/kirbyplants/random, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"nup" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/interrogation) -"nuq" = ( -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"nuw" = ( -/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, -/area/station/commons/toilet/locker) -"nuy" = ( -/obj/item/clothing/head/bowler{ - pixel_y = 8 - }, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"nuz" = ( -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/iron/white/side, -/area/station/service/kitchen/abandoned) -"nuF" = ( -/obj/machinery/status_display/ai/directional/south, -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/folder/blue, -/obj/item/pen, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"nuI" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"nuY" = ( -/obj/structure/bed/dogbed/ian, -/obj/machinery/airalarm/directional/east, -/mob/living/simple_animal/pet/dog/corgi/ian, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"nvo" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"nvu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=arrivals1"; - location = "service2" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"nvA" = ( -/obj/machinery/photocopier, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/library/abandoned) -"nvB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"nvD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/lobby) -"nvK" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"nvO" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"nvQ" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"nvS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/opposingcorners, -/turf/open/floor/iron, -/area/station/commons/dorms) -"nvU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/qm) -"nwg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"nwm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"nwn" = ( -/obj/structure/table/reinforced, -/obj/item/hfr_box/body/waste_output, -/obj/item/hfr_box/body/moderator_input, -/obj/item/hfr_box/body/interface, -/obj/item/hfr_box/body/fuel_input, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"nwp" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"nwG" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L13" - }, -/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/aft) -"nwN" = ( -/obj/structure/table, -/obj/machinery/door/poddoor/shutters{ - id = "visitation"; - name = "Visitation Shutters" - }, -/obj/machinery/door/window/left/directional/south, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"nwW" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, -/obj/machinery/status_display/ai/directional/north, -/obj/structure/table/wood/fancy/red, -/obj/machinery/door/window/brigdoor/left/directional/south{ - dir = 4; - name = "High-Risk Modules"; - req_access = list("captain") - }, -/obj/effect/spawner/random/aimodule/harmful{ - pixel_y = -16 - }, -/obj/item/ai_module/reset/purge{ - pixel_y = 11 - }, -/turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) -"nwY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"nxb" = ( -/turf/closed/wall, -/area/station/hallway/secondary/exit/departure_lounge) -"nxf" = ( -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nxg" = ( -/obj/machinery/light/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Central Hallway - Port"; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"nxl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall, -/area/station/cargo/sorting) -"nxo" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/item/stamp/rd, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"nxv" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/newscaster/directional/east{ - pixel_y = -28 - }, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/aft) -"nxD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/starboard) -"nxI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/plasticflaps/opaque, -/obj/machinery/door/poddoor/preopen{ - id = "atmoslock"; - name = "Atmospherics Lockdown Blast Door" - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "Atmospherics" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"nxY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"nyv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"nyJ" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder, -/obj/item/toy/dummy, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/abandoned_gambling_den/gaming) -"nyN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/storage/bag/plants/portaseeder, -/obj/item/cultivator, -/obj/item/reagent_containers/glass/watering_can, -/obj/item/plant_analyzer, -/obj/structure/sign/poster/contraband/kudzu{ - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/siding/green{ - dir = 8 - }, -/turf/open/floor/iron/checker, -/area/station/service/hydroponics/garden/abandoned) -"nyP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/theater) -"nyS" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"nyW" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/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/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"nza" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash/handheld, -/turf/open/floor/iron/grimy, -/area/station/command/bridge) -"nzi" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/machinery/meter{ - name = "Mixed Air Tank Out" - }, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"nzm" = ( -/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/side{ - dir = 4 - }, -/area/station/security/prison) -"nzp" = ( -/obj/machinery/air_sensor/oxygen_tank, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"nzs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, -/obj/machinery/camera/directional/south{ - c_tag = "Engineering - Supermatter Room Aft"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"nzx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"nzB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"nzI" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"nzJ" = ( -/obj/docking_port/stationary/laborcamp_home{ - dir = 8 - }, -/turf/open/space/basic, -/area/space) -"nzP" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopline"; - name = "Queue Shutters"; - dir = 8 - }, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"nzS" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/chair/office/light, -/obj/effect/decal/cleanable/greenglow, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/evac/directional/east, -/obj/effect/turf_decal/tile/green/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"nAb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"nAs" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) -"nAt" = ( -/obj/structure/frame/machine, -/obj/item/circuitboard/machine/cyborgrecharger, -/turf/open/floor/plating, -/area/station/science/research/abandoned) -"nAz" = ( -/obj/machinery/pdapainter, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"nAF" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"nAP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"nAS" = ( -/obj/structure/chair{ - name = "Prosecution" - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"nAT" = ( -/obj/machinery/door/firedoor, -/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_y = 22; - req_access = list("virology") - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/turf/open/floor/iron, -/area/station/medical/virology) -"nAY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/filled/warning, -/obj/effect/turf_decal/siding/yellow, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nBf" = ( -/obj/structure/table/reinforced, -/obj/item/electronics/firelock, -/obj/item/electronics/firelock, -/obj/item/electronics/firealarm, -/obj/item/electronics/firealarm, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"nBh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"nBr" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"nBF" = ( -/obj/structure/cable, -/obj/machinery/computer/rdconsole, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"nBG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"nBH" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"nBJ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridgedoors"; - name = "Bridge Access Blast Door" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"nBO" = ( -/obj/structure/cable, -/obj/machinery/power/terminal, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"nBQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"nBR" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"nBT" = ( -/obj/machinery/suit_storage_unit/security, -/turf/open/floor/iron, -/area/station/security/warden) -"nBV" = ( -/obj/effect/decal/cleanable/dirt, -/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, -/turf/open/floor/iron, -/area/station/commons/toilet/locker) -"nBW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"nCd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/department/engine/atmos) -"nCf" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"nCg" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"nCj" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/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, -/area/station/science/robotics/mechbay) -"nCl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/meter, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"nCu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/landmark/navigate_destination, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"nCz" = ( -/obj/structure/chair/stool/directional/east, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/locker) -"nCI" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"nCN" = ( -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/table/reinforced, -/obj/item/compact_remote, -/obj/item/compact_remote, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"nCS" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/chair/sofa/right{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/commons/lounge) -"nDd" = ( -/obj/machinery/duct, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"nDk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor{ - dir = 1; - id = "cargounload" - }, -/obj/machinery/status_display/supply{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"nDn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"nDp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"nDt" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Exterior Access" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"nDv" = ( -/obj/machinery/shower{ - dir = 8; - name = "emergency shower" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"nDC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"nDM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/yellow, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"nDP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/table/wood, -/obj/item/toy/crayon/spraycan/lubecan, -/obj/item/bikehorn, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/iron, -/area/station/service/theater) -"nDT" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering Auxiliary Power" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"nDW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"nEa" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/checkpoint/escape) -"nEc" = ( -/turf/closed/wall, -/area/station/science/research/abandoned) -"nEg" = ( -/obj/structure/table/reinforced, -/obj/item/electronics/airalarm, -/obj/item/electronics/apc, -/obj/machinery/camera/directional/west{ - c_tag = "Technology Storage"; - name = "engineering camera" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"nEA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"nEE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"nEJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"nEO" = ( -/obj/machinery/light/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"nER" = ( -/obj/machinery/light/directional/west, -/obj/effect/spawner/random/vending/snackvend, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"nFc" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/hydroponics/constructable, -/obj/structure/railing, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"nFr" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/engineering/main) -"nFG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"nFX" = ( -/turf/closed/wall, -/area/station/service/kitchen/coldroom) -"nFY" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/theatre) -"nGK" = ( -/obj/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/central) -"nGS" = ( -/obj/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/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/siding/brown{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"nHc" = ( -/obj/structure/table/wood, -/obj/item/clothing/mask/cigarette/cigar/cohiba{ - pixel_x = 3 - }, -/obj/item/clothing/mask/cigarette/cigar/havana{ - pixel_x = -3 - }, -/obj/item/clothing/mask/cigarette/cigar, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) -"nHd" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/machinery/duct, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"nHf" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/turf/open/space/basic, -/area/space/nearstation) -"nHl" = ( -/obj/structure/weightmachine/weightlifter, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/prison) -"nHs" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"nHu" = ( -/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, -/area/station/command/meeting_room/council) -"nHw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"nHQ" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/primary/central/fore) -"nHT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/greater) -"nHW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/railing{ - dir = 5 - }, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"nHY" = ( -/turf/open/floor/iron/grimy, -/area/station/service/library) -"nIb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Desk" - }, -/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/red/half/contrasted{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron, -/area/station/security/holding_cell) -"nIg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Service Maintenance" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/general, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"nIr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/security/prison) -"nIv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/reagent_containers/blood/random, -/obj/item/roller, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"nIz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"nIB" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"nIC" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigprison"; - name = "Prison Blast Door" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"nIU" = ( -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/library) -"nIW" = ( -/obj/machinery/power/port_gen/pacman/pre_loaded, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"nJg" = ( -/obj/machinery/hydroponics/soil{ - desc = "A patch of fertile soil that you can plant stuff in."; - icon = 'icons/turf/floors.dmi'; - icon_state = "dirt"; - layer = 2.0001; - plane = -7; - self_sustaining = 1 - }, -/obj/item/seeds/cotton/durathread, -/turf/open/floor/plating, -/area/station/security/prison/garden) -"nJl" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/sign/warning/deathsposal/directional/south, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"nJp" = ( -/obj/machinery/vending/wardrobe/curator_wardrobe, -/turf/open/floor/iron/dark, -/area/station/service/library) -"nJr" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/light/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/official/safety_internals{ - pixel_y = 32 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/pumproom) -"nJt" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"nJx" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"nJB" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/chair/comfy, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/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, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/maintenance/department/science) -"nJC" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"nJK" = ( -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_ordmix, -/turf/open/floor/engine, -/area/station/science/ordnance/burnchamber) -"nJN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/hallway/primary/central/aft) -"nJP" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"nJS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cmoshutter"; - name = "CMO Office Shutters"; - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/command/heads_quarters/cmo) -"nJT" = ( -/obj/structure/table/reinforced, -/obj/machinery/airalarm/directional/north, -/obj/effect/spawner/random/food_or_drink/refreshing_beverage, -/obj/effect/spawner/random/food_or_drink/snack, -/turf/open/floor/wood, -/area/station/engineering/break_room) -"nJU" = ( -/turf/open/floor/iron/white, -/area/station/maintenance/department/science) -"nJV" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/hydroponics/soil, -/obj/item/shovel/spade, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics/garden/abandoned) -"nJY" = ( -/turf/open/space/basic, -/area/station/hallway/secondary/entry) -"nKc" = ( -/obj/structure/table, -/obj/item/stack/rods{ - amount = 23 - }, -/obj/item/stack/cable_coil, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/decoration/glowstick, -/turf/open/floor/plating, -/area/station/science/research/abandoned) -"nKk" = ( -/obj/machinery/door/window/brigdoor/security/cell/right/directional/west{ - id = "brig2"; - name = "Cell 2" - }, -/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/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"nKD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"nKG" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"nKM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"nKN" = ( -/obj/structure/cable, -/obj/machinery/modular_computer/console/preset/engineering{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"nKQ" = ( -/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/aft) -"nLk" = ( -/obj/structure/table, -/obj/machinery/light/directional/east, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/delivery, -/obj/machinery/airalarm/directional/north, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"nLl" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/pen/red, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"nLt" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"nLD" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - name = "Cargo Bay Junction"; - sortType = 2 - }, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"nLF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/duct, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"nLJ" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/warden) -"nLN" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"nLX" = ( -/obj/machinery/light/directional/west, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"nLY" = ( -/obj/item/kirbyplants/random, -/obj/machinery/status_display/ai/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"nMd" = ( -/obj/effect/spawner/random/structure/girder{ - loot = list(/obj/structure/falsewall=50,/turf/closed/wall=50); - name = "fifty% falsewall, fifty% wall" - }, -/turf/open/floor/plating, -/area/station/security/prison/shower) -"nMg" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"nMi" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"nMs" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/south, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"nMw" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/sink{ - dir = 1 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"nMD" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/hallway/secondary/entry) -"nMN" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/fore) -"nMT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nNb" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"nNc" = ( -/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/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"nNl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/starboard/aft) -"nNq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"nNs" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/machinery/camera{ - c_tag = "Security - Upper Brig"; - dir = 1; - network = list("ss13","prison") - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"nNz" = ( -/obj/machinery/computer/atmos_control/mix_tank{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/mix) -"nND" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/left/directional/west{ - name = "Medical Delivery"; - req_access = list("medical") - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/medical/storage) -"nNE" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/security/range) -"nNK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/right/directional/west, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"nNR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xeno5"; - name = "Creature Cell #5" - }, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"nNT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "xeno6"; - name = "Creature Cell #6" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"nOb" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison/shower) -"nOn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"nOr" = ( -/obj/structure/chair/comfy{ - color = "#596479"; - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark/blue/side, -/area/station/security/prison/safe) -"nOy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"nOz" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/south, -/obj/structure/cable, -/turf/open/floor/iron/dark/brown/side, -/area/station/security/prison/safe) -"nOI" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"nOO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate_abandoned, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"nOP" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"nOW" = ( -/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{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/lobby) -"nOX" = ( -/obj/machinery/libraryscanner, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"nOZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"nPa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"nPe" = ( -/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/plating, -/area/station/maintenance/port/aft) -"nPi" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Ordnance Lab" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - 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/science/ordnance, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"nPo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"nPs" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/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/command/heads_quarters/cmo) -"nPv" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"nPA" = ( -/obj/machinery/oven, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"nPF" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"nPL" = ( -/obj/effect/decal/cleanable/dirt, -/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/starboard/aft) -"nPP" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"nPQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"nPS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"nPV" = ( -/obj/structure/cable, -/turf/open/floor/iron{ - dir = 4; - icon_state = "chapel" - }, -/area/station/service/chapel) -"nPW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nQa" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"nQc" = ( -/obj/machinery/light/directional/west, -/obj/machinery/rnd/production/techfab/department/medical, -/obj/effect/turf_decal/stripes/box, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/storage) -"nQg" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nQI" = ( -/obj/structure/table/glass, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/dropper, -/obj/machinery/light/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Medbay - Pharmacy"; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"nQJ" = ( -/obj/structure/cable, -/obj/structure/chair, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"nQP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"nQQ" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/machinery/disposal/delivery_chute{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"nRc" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"nRd" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/computer/slot_machine, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"nRv" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "ceprivacy"; - name = "Chief's Privacy Shutters"; - dir = 4 - }, -/turf/open/floor/plating, -/area/station/command/heads_quarters/ce) -"nRy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"nRz" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"nRC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) -"nSh" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"nSj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"nSl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"nSv" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/captain/private) -"nSz" = ( -/obj/item/clothing/neck/stethoscope, -/obj/structure/table, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"nSA" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/security/courtroom) -"nSG" = ( -/obj/machinery/recharge_station, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/button/door/directional/south{ - id = "gatewayshutters"; - name = "Gateway Shutters" - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"nSJ" = ( -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"nSP" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"nSR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosroom"; - name = "HoS Room Blast Door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/command/heads_quarters/hos) -"nSZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Sanitarium" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark/red/side{ - dir = 8 - }, -/area/station/security/medical) -"nTh" = ( -/obj/docking_port/stationary/public_mining_dock{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/construction/mining/aux_base) -"nTs" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/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/command/gateway) -"nTx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"nTz" = ( -/obj/item/stack/sheet/plasteel/twenty, -/obj/item/stack/sheet/rglass{ - amount = 30; - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/crowbar, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"nTC" = ( -/obj/structure/table/reinforced, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"nTN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"nUc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"nUp" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/gravity_generator) -"nUt" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/newscaster/directional/north, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"nUu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/janitor, -/turf/open/floor/iron/checker, -/area/station/service/janitor) -"nUy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"nUz" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) -"nUC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"nUF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"nUI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/smooth, -/area/station/hallway/secondary/entry) -"nUT" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"nUY" = ( -/obj/machinery/firealarm/directional/east, -/obj/machinery/camera{ - c_tag = "Cargo Bay - Drone Bay"; - dir = 4; - name = "cargo camera" - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"nUZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/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) -"nVf" = ( -/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/structure/cable, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"nVr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"nVv" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/ai/directional/south, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"nVA" = ( -/obj/structure/cable, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"nVF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/spawner/random/trash/mopbucket, -/obj/effect/spawner/random/trash/soap, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"nVG" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"nVQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"nVR" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"nVU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/recharge_floor, -/area/station/science/research/abandoned) -"nVW" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/pen/red, -/obj/item/stack/sheet/mineral/plasma{ - amount = 5 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/requests_console/directional/north{ - department = "Virology"; - name = "Virology Requests Console"; - receive_ore_updates = 1 - }, -/turf/open/floor/iron, -/area/station/medical/virology) -"nWb" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"nWi" = ( -/obj/structure/table/wood, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_x = -3; - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/medical/break_room) -"nWk" = ( -/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/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"nWl" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_y = 4 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/carpet, -/area/station/medical/psychology) -"nWw" = ( -/obj/effect/spawner/structure/window, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/upper) -"nWH" = ( -/obj/effect/landmark/start/scientist, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/breakroom) -"nWI" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/commons/lounge) -"nWL" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Port to Fuel Pipe" - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nWT" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/white, -/area/station/science/research) -"nWU" = ( -/obj/structure/table/wood, -/obj/item/camera, -/obj/item/camera_film, -/obj/machinery/light_switch/directional/south{ - pixel_x = 8 - }, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"nXn" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/trimline/green/end{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/mid_joiner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/mid_joiner{ - dir = 8 - }, -/turf/open/floor/iron/half{ - dir = 8 - }, -/area/station/service/hydroponics/garden) -"nXo" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"nXs" = ( -/obj/structure/table, -/obj/item/flashlight/lamp, -/turf/open/floor/iron/checker, -/area/station/hallway/secondary/service) -"nXv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"nXw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 5 - }, -/turf/open/floor/iron/dark/corner, -/area/station/maintenance/disposal/incinerator) -"nXy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"nXA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"nXH" = ( -/turf/closed/wall, -/area/station/maintenance/starboard/aft) -"nXK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"nXM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/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/aft) -"nXY" = ( -/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, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"nXZ" = ( -/obj/structure/table/glass, -/obj/item/folder/blue{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/folder/white, -/obj/item/pen, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/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/command/heads_quarters/cmo) -"nYg" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"nYl" = ( -/obj/structure/cable, -/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/machinery/power/apc/auto_name/directional/north, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"nYn" = ( -/obj/structure/table/reinforced, -/obj/machinery/status_display/ai/directional/north, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash/handheld, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"nYV" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"nZb" = ( -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/customs/fore) -"nZf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/commons/fitness/recreation) -"nZk" = ( -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/commons/fitness/recreation) -"nZr" = ( -/obj/effect/turf_decal/tile/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/medbay/central) -"nZx" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"nZK" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"nZW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/mix) -"oae" = ( -/obj/structure/bed{ - dir = 4 - }, -/obj/item/bedsheet/medical{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"oag" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Gear Room" - }, -/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/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron, -/area/station/security/lockers) -"oal" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/security/range) -"oaF" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/obj/machinery/atmospherics/components/binary/pump/off/yellow/visible{ - dir = 4; - name = "Plasma to Pure" - }, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"oaP" = ( -/obj/machinery/vending/assist, -/obj/machinery/firealarm/directional/east, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron/white, -/area/station/science/auxlab) -"oaR" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/science/lab) -"obc" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"obf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/aft) -"obl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=service2"; - location = "service1" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"obm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron, -/area/station/service/theater/abandoned) -"obu" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/siding/white/corner{ - dir = 1 - }, -/obj/machinery/light/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/west, -/obj/structure/chair/sofa/bench/left{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"obw" = ( -/obj/machinery/power/solar_control{ - dir = 8; - id = "forestarboard"; - name = "Starboard Bow Solar Control" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"obx" = ( -/obj/effect/turf_decal/siding/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"obD" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/east, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/cmo) -"obH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"obI" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"obL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/large, -/obj/item/crowbar/red, -/obj/effect/spawner/random/contraband/prison, -/obj/effect/spawner/random/contraband/prison, -/obj/effect/spawner/random/contraband/prison, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/work) -"obP" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/directional/west, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/radio, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"obW" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen, -/obj/machinery/light_switch/directional/east{ - pixel_x = 38 - }, -/obj/machinery/keycard_auth/directional/north{ - pixel_x = 26 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/status_display/ai/directional/north, -/obj/machinery/button/door/directional/east{ - id = "hosprivacy"; - name = "Privacy Control"; - pixel_y = 6; - req_access = list("hos") - }, -/obj/machinery/button/door/directional/east{ - id = "hosspace"; - name = "Space Shutters Control"; - pixel_y = -6; - req_access = list("hos") - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"oca" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green, -/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/virology) -"ocj" = ( -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"ock" = ( -/obj/machinery/light/directional/east, -/obj/effect/landmark/start/geneticist, -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"ocl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"ocr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/machinery/light/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"ocB" = ( -/obj/structure/table/wood, -/obj/item/paicard, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"ocO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"ocR" = ( -/turf/open/floor/carpet/green, -/area/station/commons/lounge) -"ocV" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/duct, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"ocY" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Solar Access" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/maintenance/solars/port/aft) -"odb" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"odk" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/matches{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/lighter, -/obj/item/lighter{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/station/engineering/break_room) -"odn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"odw" = ( -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/structure/table/reinforced, -/obj/machinery/camera/directional/north{ - c_tag = "Bridge - E.V.A. Fore"; - name = "command camera" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"odA" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"odD" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron, -/area/station/engineering/main) -"odI" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/table/wood/poker, -/turf/open/floor/carpet/green, -/area/station/commons/lounge) -"odL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"odU" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"odW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/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/greater) -"oec" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"oei" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"oez" = ( -/obj/machinery/recharge_station, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/bot/left, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"oeC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/hallway/primary/central/aft) -"oeK" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"oeL" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/transit_tube/station/dispenser{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"oeV" = ( -/obj/structure/closet/secure_closet/quartermaster, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/cargo/qm) -"oeX" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"ofg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"ofu" = ( -/obj/structure/cable, -/obj/structure/sign/warning/no_smoking/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 6 - }, -/turf/open/floor/iron/checker, -/area/station/maintenance/disposal/incinerator) -"ofE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"ofF" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Mix Outlet Pump" - }, -/obj/structure/sign/warning/secure_area/directional/west{ - pixel_y = -32 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/mix) -"ofH" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Science - Aft"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/white, -/area/station/science/research) -"ofI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"ofM" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"ofN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor{ - dir = 1; - id = "cargounload" - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"ofR" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"ogb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"ogg" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/checkpoint) -"ogj" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"ogm" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/left/directional/west{ - dir = 4; - name = "'Monkey Pen"; - req_access = list("genetics") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"ogn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/kitchen/abandoned) -"ogp" = ( -/obj/machinery/chem_heater/withbuffer, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/medical/pharmacy) -"ogs" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hop) -"ogw" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"ogA" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/item/stock_parts/cell/high, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"ogG" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/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/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"ogK" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"ogN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"ogZ" = ( -/turf/open/floor/iron, -/area/station/service/hydroponics) -"ohj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"ohm" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"ohA" = ( -/obj/structure/table/wood, -/obj/item/camera_film{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/camera_film, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"ohH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/south, -/obj/machinery/light/directional/south, -/obj/structure/filingcabinet/filingcabinet, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/storage) -"ohP" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall11"; - location = "hall10" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/fore) -"ohZ" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/service_all, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"oib" = ( -/obj/structure/urinal/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/medical/break_room) -"oif" = ( -/obj/machinery/light_switch/directional/east{ - pixel_x = 22 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 4 - }, -/obj/machinery/modular_computer/console/preset/id{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"oig" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"oij" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"ois" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/structure/sign/poster/official/bless_this_spess{ - pixel_x = -32; - pixel_y = 32 - }, -/turf/open/floor/glass, -/area/station/maintenance/space_hut/observatory) -"oiw" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"oiH" = ( -/obj/structure/dresser, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"oiO" = ( -/obj/machinery/computer/station_alert{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage) -"oiP" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - 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/secondary/command) -"ojb" = ( -/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/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"oje" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"ojn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"ojx" = ( -/obj/structure/table/wood, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"ojD" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/processing) -"ojM" = ( -/obj/structure/chair/office, -/turf/open/floor/wood, -/area/station/service/library) -"ojP" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"ojS" = ( -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron{ - dir = 4; - icon_state = "chapel" - }, -/area/station/service/chapel) -"ojW" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/sign/warning/vacuum/directional/east, -/turf/open/floor/plating, -/area/station/security/execution/transfer) -"okb" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/station/maintenance/department/crew_quarters/bar) -"oke" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"okr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/meter, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"oks" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"okC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/space_hut/observatory) -"okE" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/siding/brown{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"okF" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on/coldroom{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/item/wrench{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/iron/dark, -/area/station/service/kitchen/coldroom) -"okK" = ( -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark/side, -/area/station/security/prison) -"okN" = ( -/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/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"okO" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"okP" = ( -/obj/machinery/camera{ - c_tag = "Prison Isolation Cell"; - dir = 4; - network = list("ss13","prison","isolation") - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark/brown/side{ - dir = 6 - }, -/area/station/security/prison/safe) -"oll" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/vending/autodrobe/all_access, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"oln" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"olC" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"olD" = ( -/obj/item/kirbyplants/random, -/obj/structure/sign/poster/official/ian{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"olH" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Airlock" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"olV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"omj" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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) -"omk" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"omI" = ( -/obj/machinery/door/airlock{ - name = "Custodial Closet" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/access/all/service/janitor, -/turf/open/floor/iron/checker, -/area/station/service/janitor) -"omK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/medical_doctor, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/medical/morgue) -"omS" = ( -/obj/structure/sign/poster/official/report_crimes{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"omZ" = ( -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"onf" = ( -/obj/structure/table/glass, -/obj/item/storage/box/beakers{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/syringes, -/obj/item/gun/syringe, -/obj/machinery/status_display/evac/directional/west, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/storage) -"onj" = ( -/obj/structure/chair{ - name = "Prosecution" - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"ons" = ( -/obj/structure/lattice, -/turf/open/space, -/area/station/hallway/secondary/entry) -"onv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/airlock{ - name = "Miscellaneous Storage" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"onD" = ( -/obj/machinery/door/airlock/security{ - name = "Brig" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/poster/official/nanotrasen_logo{ - pixel_x = -32 - }, -/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/security/general, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/security/brig) -"onT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/security/prison/work) -"ooa" = ( -/obj/machinery/modular_computer/console/preset/cargochat/engineering{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 5 - }, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"ooc" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/half{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half{ - dir = 4 - }, -/turf/open/floor/iron/dark/smooth_half{ - dir = 1 - }, -/area/station/engineering/gravity_generator) -"ooi" = ( -/obj/structure/cable, -/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/sorting/mail{ - dir = 8; - name = "HoP Junction"; - sortType = 15 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"oov" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron, -/area/station/science/research) -"oow" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/plasteel/twenty, -/obj/item/wrench, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/east, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/item/crowbar/red, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"ooD" = ( -/obj/machinery/cryopod{ - dir = 1 - }, -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/common/cryopods) -"ooF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"ooG" = ( -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 7; - pixel_y = 12 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -4; - pixel_y = 12 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/dropper, -/obj/structure/table/glass, -/obj/machinery/light_switch/directional/east, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"ooI" = ( -/obj/machinery/power/terminal, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"ooS" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"opq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"opv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"opD" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 6 - }, -/turf/open/space/basic, -/area/space/nearstation) -"opX" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/theater) -"opY" = ( -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"oqp" = ( -/obj/structure/dresser, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/wood, -/area/station/commons/dorms) -"oqt" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/door/firedoor, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/secondary/entry) -"oqx" = ( -/obj/machinery/deepfryer, -/obj/effect/turf_decal/bot, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"oqz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"oqM" = ( -/obj/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/window/reinforced/plasma/spawner/east, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"oqT" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"ore" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"orx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/aft) -"orL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Auxiliary Hallway" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"orR" = ( -/obj/machinery/firealarm/directional/west, -/obj/machinery/hydroponics/soil{ - desc = "A patch of fertile soil that you can plant stuff in."; - icon = 'icons/turf/floors.dmi'; - icon_state = "dirt"; - layer = 2.0001; - plane = -7; - self_sustaining = 1 - }, -/turf/open/floor/plating, -/area/station/security/prison/garden) -"osd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"osv" = ( -/obj/structure/training_machine, -/obj/item/target/syndicate, -/turf/open/floor/iron, -/area/station/science/auxlab) -"osG" = ( -/obj/structure/barricade/wooden, -/obj/structure/cable, -/obj/machinery/door/airlock{ - id_tag = "commissarydoor"; - name = "Commissary" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"osH" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Auxiliary Port" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"osY" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"otm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"ots" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 5 - }, -/obj/machinery/meter, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/execution) -"otB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=service3"; - location = "arrivals4" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"otX" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"ouc" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"ouo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Courtroom" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"ouu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"ouA" = ( -/obj/structure/bed, -/obj/machinery/light/directional/south, -/obj/machinery/status_display/evac/directional/south, -/obj/item/bedsheet/dorms, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"ouP" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/commons/locker) -"ouZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"ovb" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrous_input{ - dir = 4 - }, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"ovp" = ( -/obj/structure/lattice/catwalk, -/obj/structure/marker_beacon/burgundy, -/turf/open/space/basic, -/area/space) -"ovy" = ( -/turf/open/floor/plating, -/area/station/hallway/secondary/construction) -"ovz" = ( -/obj/structure/curtain/cloth, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"ovD" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/chair/stool/directional/north, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"ovH" = ( -/obj/structure/rack, -/obj/item/crowbar, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot, -/obj/item/gps/engineering{ - gpstag = "CE0" - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"ovQ" = ( -/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, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"ovS" = ( -/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, -/obj/machinery/door/airlock/command{ - name = "Chief Engineer's Quarters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"ovT" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"ovU" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"ovX" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/electrical, -/obj/structure/sign/poster/official/do_not_question{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"owb" = ( -/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/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"owf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"owg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/security/brig) -"owj" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/obj/item/wrench, -/obj/item/crowbar, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/command/teleporter) -"owu" = ( -/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/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"owG" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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) -"owH" = ( -/obj/machinery/door/airlock{ - name = "Bathroom" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron, -/area/station/medical/break_room) -"owI" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"owO" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"owR" = ( -/turf/open/floor/iron/grimy, -/area/station/commons/dorms) -"owW" = ( -/obj/structure/table/wood, -/obj/item/storage/bag/books, -/obj/item/taperecorder, -/obj/structure/noticeboard/directional/east, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"owZ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"oxg" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "AI Satellite - Fore Starboard"; - name = "ai camera"; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"oxh" = ( -/obj/item/kirbyplants/random, -/obj/machinery/camera/directional/north{ - c_tag = "Chapel Quarters"; - name = "chapel camera" - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"oxo" = ( -/turf/closed/wall/r_wall, -/area/station/science/ordnance/freezerchamber) -"oxD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/structure/tank_holder/oxygen/yellow, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"oxQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/button/door/directional/south{ - id = "evashutters2"; - name = "E.V.A. Shutters"; - req_access = list("command") - }, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"oxY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"oyb" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"oye" = ( -/obj/structure/cable, -/obj/effect/turf_decal/loading_area, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/security/office) -"oyr" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/sign/painting/large/library_private{ - dir = 8; - pixel_x = -29 - }, -/turf/open/floor/iron/dark, -/area/station/service/library) -"oyv" = ( -/obj/machinery/camera/motion/directional/west{ - c_tag = "Bridge - Captain's Emergency Escape"; - name = "motion-sensitive command camera" - }, -/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 - }, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/central) -"oyA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - id_tag = "Dorm2"; - name = "Cabin 2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/dorms) -"oyB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/random/clothing/beret_or_rabbitears, -/obj/effect/spawner/random/clothing/pirate_or_bandana, -/obj/effect/spawner/random/clothing/bowler_or_that, -/obj/effect/turf_decal/bot_red, -/obj/effect/landmark/blobstart, -/turf/open/floor/iron/white, -/area/station/maintenance/fore) -"oyC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/station/service/chapel) -"oyQ" = ( -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"oyW" = ( -/obj/structure/disposalpipe/segment{ - 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/plating, -/area/station/maintenance/starboard/aft) -"ozf" = ( -/obj/machinery/light/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Security Post - Science"; - network = list("ss13","rd") - }, -/obj/structure/cable, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) -"ozg" = ( -/obj/structure/bed/maint, -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"ozn" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L13" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"ozp" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"ozq" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/east, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"ozs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"ozw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"ozx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"ozz" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"ozJ" = ( -/obj/structure/table/wood, -/obj/item/rcl/pre_loaded, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"ozQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"ozU" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/commons/lounge) -"ozY" = ( -/obj/structure/window/reinforced, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"oAc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/office/light, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/structure/sign/poster/official/safety_internals{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/glass, -/area/station/maintenance/space_hut/observatory) -"oAm" = ( -/obj/machinery/pipedispenser/disposal/transit_tube, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"oAq" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"oAz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Checkpoint" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"oAD" = ( -/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/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"oAM" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"oAP" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/security/processing) -"oAT" = ( -/obj/machinery/power/energy_accumulator/tesla_coil, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/south{ - c_tag = "Engineering - Secure Storage"; - name = "engineering camera" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/main) -"oAV" = ( -/obj/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/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"oAW" = ( -/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/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"oBg" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"oBn" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/closet/emcloset/anchored, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/sign/warning/vacuum/directional/north, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"oBq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/cargo/storage) -"oBy" = ( -/obj/machinery/camera{ - c_tag = " Prison - (North-West) Blue Wing"; - dir = 5; - network = list("ss13","prison") - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/prison) -"oBM" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"oBN" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"oBO" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/aft) -"oBX" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"oCa" = ( -/obj/effect/spawner/structure/window, -/obj/structure/curtain/cloth/fancy/mechanical{ - icon_state = "bounty-open"; - icon_type = "bounty"; - id = "prisoncell7"; - name = "curtain" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"oCm" = ( -/obj/effect/decal/cleanable/dirt, -/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/aft) -"oCs" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/hallway/secondary/command) -"oCz" = ( -/obj/machinery/button/door/directional/north{ - id = "portbow_maint_shutters"; - name = "shutters" - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/iv_drip, -/turf/open/floor/iron/grimy, -/area/station/maintenance/port/fore) -"oCA" = ( -/obj/effect/decal/cleanable/dirt, -/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/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"oCB" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/computer/security/telescreen/entertainment/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/library) -"oCG" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/aft) -"oCJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/maintenance/department/engine/atmos) -"oCP" = ( -/turf/closed/wall, -/area/station/commons/locker) -"oDf" = ( -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"oDk" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"oDl" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"oDo" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"oDE" = ( -/turf/closed/wall, -/area/station/medical/cryo) -"oDH" = ( -/obj/structure/chair/office/light, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/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/command/heads_quarters/cmo) -"oDR" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"oDX" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemisttop"; - name = "Chemistry Lobby Shutters"; - dir = 1 - }, -/obj/item/folder/yellow{ - pixel_x = 5 - }, -/obj/machinery/door/window/left/directional/north{ - name = "Chemistry Desk" - }, -/obj/machinery/door/window/left/directional/south{ - name = "Chemistry Desk"; - req_access = list("pharmacy") - }, -/obj/effect/turf_decal/delivery, -/obj/structure/desk_bell{ - pixel_x = -8; - pixel_y = -2 - }, -/turf/open/floor/iron, -/area/station/medical/pharmacy) -"oDY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/machinery/status_display/ai/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Atmospherics - Distribution Loop"; - name = "atmospherics camera" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"oEb" = ( -/obj/structure/sign/departments/science, -/turf/closed/wall/r_wall, -/area/station/science/research) -"oEh" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Cargo - Quartermaster's Office"; - name = "cargo camera" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/qm) -"oEo" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"oEz" = ( -/obj/item/radio/intercom/directional/south, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"oEK" = ( -/obj/structure/bonfire, -/obj/item/reagent_containers/food/drinks/bottle/orangejuice{ - desc = "For the weary spacemen on their quest to rekindle the first plasma fire."; - name = "Carton of Estus" - }, -/obj/item/melee/moonlight_greatsword, -/obj/effect/decal/remains/human, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"oEL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security/glass{ - id_tag = "engdoor"; - name = "Engineering Holding Cell" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engie_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"oEV" = ( -/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/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"oEW" = ( -/obj/structure/chair/pew, -/turf/open/floor/iron{ - dir = 4; - icon_state = "chapel" - }, -/area/station/service/chapel) -"oFh" = ( -/obj/structure/disposalpipe/segment{ - 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/status_display/evac/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"oFk" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"oFu" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/machinery/light/small/directional/south, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"oFz" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/newscaster/directional/south, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"oFB" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/closet/crate/trashcart/laundry, -/obj/item/reagent_containers/hypospray/medipen, -/obj/item/toy/crayon/spraycan, -/obj/effect/spawner/random/contraband/prison, -/turf/open/floor/iron/kitchen{ - dir = 1 - }, -/area/station/security/prison) -"oFK" = ( -/turf/closed/wall/mineral/plastitanium, -/area/station/hallway/secondary/entry) -"oGb" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/lobby) -"oGi" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/cmo) -"oGr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"oGu" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/science/lab) -"oGv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rndlab1"; - name = "Research and Development Shutter"; - dir = 1 - }, -/turf/open/floor/plating, -/area/station/science/lab) -"oGH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/science/research) -"oGK" = ( -/turf/closed/wall, -/area/station/service/chapel) -"oGN" = ( -/obj/structure/table/glass, -/obj/item/storage/medkit/o2{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/medkit/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/medkit/regular, -/obj/item/storage/medkit/o2{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/machinery/door/window/left/directional/west{ - name = "First-Aid Supplies"; - red_alert_access = 1; - req_access = list("medical") - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/medical/storage) -"oGZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/commons/toilet/restrooms) -"oHa" = ( -/obj/structure/table/reinforced, -/obj/item/aicard, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"oHe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"oHm" = ( -/obj/structure/bed{ - dir = 4 - }, -/obj/item/bedsheet/medical{ - dir = 4 - }, -/obj/machinery/iv_drip, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"oHo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"oHx" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"oHy" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"oHz" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"oHA" = ( -/obj/structure/sign/departments/science, -/turf/closed/wall, -/area/station/science/robotics/lab) -"oHF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"oHJ" = ( -/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/secondary/command) -"oHM" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/station/science/ordnance/burnchamber) -"oHQ" = ( -/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/public/glass{ - name = "Kitchen" - }, -/obj/machinery/door/firedoor, -/obj/machinery/duct, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, -/turf/open/floor/iron, -/area/station/service/kitchen) -"oHR" = ( -/obj/machinery/iv_drip, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/green/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"oHS" = ( -/turf/closed/wall/r_wall, -/area/station/security/execution) -"oIi" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/obj/machinery/atmospherics/components/binary/pump/off/yellow/visible{ - dir = 4; - name = "Air to Pure" - }, -/turf/open/floor/iron/cafeteria, -/area/station/engineering/atmos) -"oIj" = ( -/obj/structure/table/wood, -/obj/machinery/light/small/directional/east, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/camera/directional/east{ - c_tag = "Security - Interrogation Monitoring" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"oIu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"oIE" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/structure/closet/radiation, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"oIG" = ( -/obj/machinery/atmospherics/components/binary/valve/digital, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"oIH" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"oIK" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Xenobiology - Cell 8"; - name = "xenobiology camera"; - network = list("ss13","xeno","rd") - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"oIL" = ( -/obj/item/computer_hardware/hard_drive/portable/atmos, -/obj/item/computer_hardware/hard_drive/portable/atmos, -/obj/item/computer_hardware/hard_drive/portable/atmos, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/bot, -/obj/item/computer_hardware/hard_drive/portable/engineering, -/obj/item/computer_hardware/hard_drive/portable/engineering, -/obj/item/computer_hardware/hard_drive/portable/engineering, -/obj/structure/rack, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"oIU" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "detectivewindows"; - name = "Detective Privacy Blast Door" - }, -/turf/open/floor/plating, -/area/station/security/detectives_office) -"oJj" = ( -/obj/structure/reagent_dispensers/watertank/high, -/obj/effect/turf_decal/delivery/white{ - color = "#52B4E9" - }, -/obj/item/reagent_containers/glass/watering_can, -/turf/open/floor/iron/dark/textured, -/area/station/service/hydroponics) -"oJv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"oJx" = ( -/obj/structure/cable, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/commons/dorms) -"oJP" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"oJR" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"oJY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"oKh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"oKk" = ( -/obj/item/kirbyplants/random, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"oKr" = ( -/turf/closed/wall, -/area/station/security/checkpoint/supply) -"oKt" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"oKu" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"oKD" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"oKM" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"oKV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"oKW" = ( -/obj/machinery/light/directional/south, -/obj/machinery/modular_computer/console/preset/curator{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/library) -"oKX" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"oKY" = ( -/obj/effect/turf_decal/tile/yellow, -/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) -"oLd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"oLk" = ( -/obj/machinery/vending/autodrobe, -/obj/effect/turf_decal/siding/wood, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/theater) -"oLz" = ( -/obj/structure/cable, -/obj/structure/chair/office{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/electronic_marketing_den) -"oLF" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"oLS" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/blue, -/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) -"oLT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/service/theater/abandoned) -"oLU" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"oLV" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"oMa" = ( -/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, -/area/station/command/heads_quarters/hop) -"oMq" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/commons/storage/tools) -"oMr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"oMw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark/side, -/area/station/security/prison) -"oMM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"oMP" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"oMS" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"oNb" = ( -/obj/structure/rack, -/obj/item/circuitboard/machine/teleporter_hub{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/circuitboard/machine/teleporter_station, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"oNk" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"oNr" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Xenobiology - Cell 3"; - name = "xenobiology camera"; - network = list("ss13","xeno","rd") - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"oNA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/detective, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"oNI" = ( -/obj/machinery/duct, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"oNM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/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) -"oNW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/iron, -/area/station/medical/cryo) -"oNY" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/iron/grimy, -/area/station/service/library/abandoned) -"oOh" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"oOp" = ( -/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/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"oOt" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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, -/area/station/science/server) -"oOw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"oOF" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"oOR" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"oOU" = ( -/obj/structure/cable, -/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/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/commons/dorms) -"oPc" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"oPi" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"oPm" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/security/prison/upper) -"oPn" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/horizontal, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/space/basic, -/area/space/nearstation) -"oPC" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/checkpoint/supply) -"oPL" = ( -/obj/machinery/door/window/right/directional/east{ - name = "Danger: Conveyor Access"; - req_access = list("maint_tunnels") - }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/machinery/conveyor/inverted{ - dir = 10; - id = "garbage" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"oPM" = ( -/obj/effect/decal/cleanable/dirt, -/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/effect/spawner/random/structure/crate, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"oPN" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rndlab1"; - name = "Research and Development Shutter"; - dir = 1 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/lab) -"oPP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/dorms) -"oPQ" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"oPR" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdrnd"; - name = "Research and Development Shutters"; - dir = 8 - }, -/obj/machinery/door/window/left/directional/south{ - dir = 4; - name = "Research Lab Desk"; - req_access = list("science") - }, -/obj/machinery/door/window/left/directional/west, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/lab) -"oPY" = ( -/obj/structure/closet/secure_closet/bar, -/obj/item/storage/photo_album/bar, -/obj/item/radio/intercom/directional/east, -/obj/item/storage/dice, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/checker, -/area/station/service/bar) -"oQp" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"oQw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"oQz" = ( -/obj/structure/cable, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/security/prison) -"oQI" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/rd) -"oQJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"oQU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"oRu" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/crossing/horizontal, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/space/basic, -/area/space/nearstation) -"oRE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/table, -/turf/open/floor/iron, -/area/station/medical/pharmacy) -"oRL" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/theatre) -"oRP" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"oRZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"oSa" = ( -/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, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"oSe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/cryo_cell, -/turf/open/floor/iron, -/area/station/medical/cryo) -"oSh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"oSk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/commons/fitness/recreation) -"oSs" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"oSt" = ( -/obj/structure/rack, -/obj/item/storage/briefcase{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/secure/briefcase, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"oSv" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/storage) -"oSF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock{ - name = "Mime's Backstage Room" - }, -/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/access/all/service/theatre, -/turf/open/floor/iron/dark, -/area/station/service/theater) -"oSJ" = ( -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"oSM" = ( -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - name = "Theater Junction"; - sortType = 18 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"oSZ" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/auxlab) -"oTm" = ( -/obj/structure/urinal/directional/north, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/toilet/locker) -"oTq" = ( -/obj/structure/chair/stool/directional/east, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/locker) -"oTs" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"oTu" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"oTv" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"oTB" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/siding/white, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1 - }, -/obj/machinery/light/small/directional/east, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"oTH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/ce) -"oTY" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"oUc" = ( -/obj/machinery/door/window/left/directional/north{ - name = "Crate Return Access"; - req_access = list("shipping") - }, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"oUh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/filled/warning, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"oUi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"oUj" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"oUk" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"oUm" = ( -/obj/structure/cable, -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"oUq" = ( -/turf/open/floor/carpet, -/area/station/medical/psychology) -"oUZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"oVm" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: BLAST DOORS"; - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/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/security/brig) -"oVo" = ( -/obj/structure/cable, -/obj/structure/sign/warning/no_smoking/circle{ - pixel_x = 28; - pixel_y = -28 - }, -/obj/machinery/modular_computer/console/preset/engineering{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"oVy" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Access" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"oVB" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/security/interrogation) -"oVD" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"oVH" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/newspaper{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/newspaper, -/obj/item/clothing/glasses/regular, -/turf/open/floor/iron/dark, -/area/station/service/library) -"oVI" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/command/gateway) -"oVM" = ( -/obj/machinery/dna_scannernew, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"oVS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green/fourcorners, -/turf/open/floor/iron, -/area/station/medical/virology) -"oWe" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/break_room) -"oWo" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/service/chapel) -"oWp" = ( -/obj/structure/table/reinforced, -/obj/item/assembly/timer, -/obj/item/assembly/timer, -/obj/item/assembly/voice, -/obj/item/assembly/voice, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"oWq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"oWA" = ( -/obj/structure/bed, -/obj/item/bedsheet/mime, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"oWR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"oWS" = ( -/obj/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/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"oWU" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Departures Hallway - Mech Bay"; - name = "hallway camera" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/button/door/directional/west{ - id = "mechbay"; - name = "Mech Bay Shutters Control"; - req_access = list("robotics") - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"oXi" = ( -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/anticorner{ - dir = 4 - }, -/turf/open/floor/iron/dark/smooth_corner{ - dir = 8 - }, -/area/station/engineering/gravity_generator) -"oXl" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"oXm" = ( -/obj/structure/chair/stool/directional/west, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/medical/break_room) -"oXv" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"oXS" = ( -/obj/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/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"oYd" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"oYg" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"oYh" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"oYm" = ( -/turf/closed/wall, -/area/station/commons/vacant_room/office) -"oYp" = ( -/obj/structure/disposalpipe/segment{ - 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/grimy, -/area/station/command/heads_quarters/hos) -"oYq" = ( -/obj/structure/table, -/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/item/plunger, -/obj/machinery/camera/autoname/directional/south, -/obj/machinery/requests_console/directional/south{ - department = "Chemistry"; - departmentType = 1; - name = "Chemistry Requests Console" - }, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"oYs" = ( -/turf/closed/wall, -/area/station/maintenance/port/fore) -"oYA" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"oYE" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/computer/shuttle/arrivals/recall{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"oYP" = ( -/obj/structure/table/reinforced, -/obj/item/storage/fancy/donut_box{ - pixel_x = -8; - pixel_y = -4 - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/item/inspector, -/obj/item/inspector{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"oZb" = ( -/obj/structure/dresser, -/obj/effect/turf_decal/siding/wood, -/obj/machinery/newscaster/directional/north, -/obj/item/flashlight/lamp/bananalamp{ - pixel_x = 4; - pixel_y = 18 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Service - Clown's Room"; - name = "service camera" - }, -/turf/open/floor/wood, -/area/station/service/theater) -"oZt" = ( -/obj/machinery/telecomms/server/presets/supply, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/telecomms, -/area/station/tcommsat/server) -"oZv" = ( -/obj/effect/decal/cleanable/dirt, -/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, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"paj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"pam" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/beakers{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/syringes, -/obj/item/extinguisher/mini, -/obj/item/storage/box/monkeycubes, -/obj/effect/turf_decal/delivery, -/obj/item/radio/intercom/directional/north, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"paq" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/service/theater) -"pas" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/office) -"pbk" = ( -/obj/structure/flora/bush/reed/style_random, -/obj/structure/flora/bush/leavy/style_random, -/turf/open/misc/grass, -/area/station/hallway/primary/fore) -"pbm" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"pbq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"pbv" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/sign/warning/radiation/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"pbF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/main) -"pbI" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"pbK" = ( -/obj/structure/table/reinforced, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"pbP" = ( -/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/simple/scrubbers/visible, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"pbT" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/mess) -"pbU" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"pbV" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/turf/open/floor/wood, -/area/station/service/library) -"pca" = ( -/obj/effect/landmark/start/hangover/closet, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"pcd" = ( -/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) -"pch" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"pci" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"pcw" = ( -/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) -"pcA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron{ - icon = 'icons/turf/floors.dmi' - }, -/area/station/security/prison/upper) -"pcC" = ( -/obj/structure/table/wood, -/obj/item/coin/antagtoken, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"pcS" = ( -/obj/structure/cable, -/obj/machinery/computer/station_alert{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot, -/obj/machinery/computer/security/telescreen/ce{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"pcW" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/reagent_dispensers/plumbed, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"pdl" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/storage) -"pdn" = ( -/obj/effect/turf_decal/bot/left, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/hfr_room) -"pdu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/command/gateway) -"pdB" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"pdC" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Detective's Office Maintenance" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/detective, -/turf/open/floor/iron, -/area/station/maintenance/starboard/greater) -"pdD" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/science/lobby) -"pdF" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/iron/dark/red/side{ - dir = 8 - }, -/area/station/security/execution) -"pdK" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/commons/vacant_room) -"pdT" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/entertainment/coin, -/obj/machinery/door/firedoor, -/obj/item/storage/wallet/random, -/turf/open/floor/iron/dark/smooth_half{ - dir = 1 - }, -/area/station/service/bar) -"pdV" = ( -/obj/structure/table/glass, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"peb" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"pec" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"peo" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/table/reinforced, -/obj/item/storage/belt/utility, -/obj/item/weldingtool, -/obj/effect/turf_decal/bot, -/obj/item/wrench, -/obj/item/clothing/head/welding, -/turf/open/floor/iron, -/area/station/engineering/main) -"pew" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Chapel Maintenance" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, -/turf/open/floor/iron, -/area/station/service/chapel/office) -"pey" = ( -/obj/machinery/light/directional/east, -/obj/machinery/status_display/evac/directional/east, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"peE" = ( -/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/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Foyer" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"peK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"peU" = ( -/turf/closed/wall/r_wall, -/area/station/science/breakroom) -"pfd" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"pfh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"pfi" = ( -/obj/effect/turf_decal/stripes/white/line{ - color = "#52B4E9"; - dir = 6; - name = "blue line" - }, -/obj/structure/sign/gym{ - pixel_y = 32 - }, -/turf/open/floor/iron/dark/blue/side{ - dir = 9 - }, -/area/station/security/prison) -"pfj" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"pfq" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/station/science/lab) -"pfs" = ( -/obj/structure/table/reinforced, -/obj/item/aicard, -/obj/item/circuitboard/aicore, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"pfy" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/medical/virology) -"pfF" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/item/flashlight/seclite, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/office) -"pfQ" = ( -/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/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/airlock/highsecurity{ - name = "Atmospherics Emergency Access" - }, -/obj/machinery/door/firedoor/heavy, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"pfV" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor/right/directional/south{ - dir = 8; - name = "Security Desk"; - pixel_x = -8; - req_access = list("security") - }, -/obj/item/folder/red, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"pga" = ( -/obj/item/radio/intercom/directional/east, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"pgb" = ( -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"pgl" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"pgn" = ( -/obj/machinery/firealarm/directional/north, -/obj/machinery/vending/hydroseeds, -/turf/open/floor/wood, -/area/station/security/prison/garden) -"pgo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/public{ - name = "Prison Cell" - }, -/turf/open/floor/iron/dark/brown, -/area/station/security/prison/safe) -"pgr" = ( -/obj/structure/cable, -/obj/machinery/duct, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"pgs" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/departments/medbay/alt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/medical) -"pgu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"pgz" = ( -/obj/item/chair/plastic, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/purple{ - dir = 9 - }, -/turf/open/floor/glass, -/area/station/maintenance/space_hut/observatory) -"pgA" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/engineering/main) -"pgB" = ( -/obj/structure/rack, -/obj/machinery/light/small/directional/south, -/obj/item/aicard, -/obj/item/storage/secure/briefcase, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"pgE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"pgF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"pgL" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"pgN" = ( -/obj/structure/disposalpipe/trunk, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/iron, -/area/station/commons/lounge) -"pgY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"phb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"phm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south{ - frequency = 1423; - name = "Interrogation Intercom" - }, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"phn" = ( -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"php" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/starboard) -"phq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"phI" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"phJ" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Pure to Ports" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"phN" = ( -/obj/machinery/door/airlock/grunge{ - name = "Crematorium" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/crematorium, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"phR" = ( -/obj/structure/table, -/obj/item/folder, -/obj/item/pen, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/locker) -"piv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"piA" = ( -/obj/machinery/vending/wardrobe/chap_wardrobe, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"piF" = ( -/obj/machinery/door/morgue{ - name = "Curator's Study"; - req_access = list("library") - }, -/obj/effect/landmark/navigate_destination, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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) -"piG" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/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/aft) -"pjb" = ( -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"pji" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/glass/reinforced, -/area/station/commons/fitness/recreation) -"pjk" = ( -/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/maintenance/fore) -"pjp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=engi3"; - location = "engi2" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"pjN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"pjS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/science/research/abandoned) -"pkc" = ( -/obj/machinery/vending/cigarette, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"pkd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK" - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"pke" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/checker, -/area/station/service/hydroponics/garden/abandoned) -"pkf" = ( -/obj/effect/turf_decal/tile/neutral/half{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"pkj" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"pkp" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 5 - }, -/turf/open/space/basic, -/area/space/nearstation) -"pkr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/stool/bar/directional/north, -/turf/open/floor/carpet/green, -/area/station/commons/lounge) -"pkx" = ( -/obj/structure/displaycase/labcage, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"pky" = ( -/obj/structure/cable, -/obj/machinery/power/smes/engineering, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/circuit/green, -/area/station/engineering/main) -"pkC" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/command/glass{ - name = "Customs Post" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/command/hop, -/turf/open/floor/iron/dark/textured, -/area/station/security/checkpoint/customs/fore) -"pkM" = ( -/obj/effect/landmark/start/research_director, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"pkN" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"pkW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"pkZ" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"pla" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xeno7"; - name = "Creature Cell #7" - }, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"plc" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/wall/r_wall, -/area/station/science/lab) -"plh" = ( -/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 = 1 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"pln" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/water_vapor, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/bot/right, -/turf/open/floor/iron/checker, -/area/station/service/janitor) -"pls" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/right/directional/west{ - name = "Cargo Office Delivery"; - req_access = list("cargo") - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/cargo/office) -"plF" = ( -/obj/effect/turf_decal/loading_area, -/turf/open/floor/iron, -/area/station/command/teleporter) -"plK" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"pma" = ( -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"pmp" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"pmx" = ( -/obj/structure/dresser, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/library/abandoned) -"pmE" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"pmG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"pmJ" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/research) -"pmS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet/green, -/area/station/commons/lounge) -"pmV" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"png" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"pnl" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/assembly/infra, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"pnm" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"pnq" = ( -/obj/machinery/computer/chef_order, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/kitchen) -"pnu" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"pnO" = ( -/obj/structure/closet/athletic_mixed, -/obj/effect/turf_decal/box/white, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/commons/fitness/recreation) -"pnR" = ( -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"pnV" = ( -/obj/structure/cable, -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"pob" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/entertainment/arcade{ - dir = 1 - }, -/obj/machinery/light/dim/directional/south, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den/gaming) -"pod" = ( -/obj/machinery/computer/operating{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"pok" = ( -/obj/structure/table/reinforced, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/cargo/storage) -"poA" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"poC" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"poP" = ( -/obj/machinery/light/warm/directional/west, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/item/kirbyplants/random, -/obj/machinery/button/curtain{ - id = "barbershopcurtains"; - pixel_x = -25; - pixel_y = -24 - }, -/turf/open/floor/iron, -/area/service/salon) -"pph" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"ppi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"ppF" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"ppS" = ( -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"ppU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"ppV" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/firealarm/directional/west, -/obj/item/multitool/circuit{ - pixel_x = 7 - }, -/obj/item/multitool/circuit{ - pixel_x = -8 - }, -/obj/item/multitool/circuit, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"ppY" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"pqq" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron{ - dir = 8; - icon_state = "chapel" - }, -/area/station/service/chapel) -"pqr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"pqv" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/bartender, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"pqw" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/iron/textured_large, -/area/station/engineering/atmos/project) -"pqF" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"pqP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"pqX" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"prh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/checkpoint/science/research) -"pri" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/stool/bar/directional/east, -/turf/open/floor/iron, -/area/station/commons/lounge) -"prl" = ( -/obj/effect/landmark/start/hangover/closet, -/obj/structure/closet/crate, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"prn" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/generic, -/obj/effect/spawner/random/structure/tank_holder, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"prp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"prt" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"prw" = ( -/obj/structure/table/reinforced, -/obj/item/assembly/timer, -/obj/item/assembly/timer, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"prB" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/comfy{ - color = "#596479"; - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"prH" = ( -/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/side{ - dir = 8 - }, -/area/station/security/prison) -"prJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"prL" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "External Airlock" - }, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"prZ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"psb" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"psd" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"psi" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/maintenance/department/engine/atmos) -"pso" = ( -/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/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"psq" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"pst" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/toilet/restrooms) -"psP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"psR" = ( -/obj/machinery/atmospherics/components/binary/valve, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"psV" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/iv_drip, -/obj/machinery/camera/directional/east{ - c_tag = "Medbay - Recovery Room"; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"psZ" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L2" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"pte" = ( -/obj/structure/disposalpipe/segment, -/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/chapel) -"pto" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"ptp" = ( -/obj/effect/landmark/start/mime, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/chair/stool/directional/north, -/turf/open/floor/iron/checker, -/area/station/service/theater) -"ptq" = ( -/obj/machinery/porta_turret/ai, -/obj/structure/sign/warning/electric_shock/directional/south, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) -"ptA" = ( -/obj/structure/cable, -/obj/structure/table/reinforced, -/obj/item/tank/jetpack/carbondioxide{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/tank/jetpack/carbondioxide, -/obj/effect/turf_decal/delivery, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron, -/area/station/engineering/storage) -"ptC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"ptG" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"ptM" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/power/emitter{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"ptO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/line, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"ptQ" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/warden) -"puc" = ( -/obj/structure/sign/painting/library{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/station/service/library) -"pud" = ( -/obj/machinery/stasis, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"puh" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"puj" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/siding/green{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"puv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"puD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/medical/pharmacy) -"puE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"puG" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Science - Server Room"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/machinery/atmospherics/components/unary/passive_vent{ - name = "server vent" - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/science/server) -"puN" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/red{ - 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, -/area/station/security/execution/transfer) -"puU" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"puX" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/directional/south, -/obj/item/storage/secure/briefcase, -/obj/item/taperecorder, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom{ - pixel_x = -26; - pixel_y = -26 - }, -/obj/machinery/newscaster/directional/south, -/obj/machinery/computer/security/telescreen/rd{ - dir = 4; - pixel_x = -26 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"puZ" = ( -/obj/effect/turf_decal/stripes/line{ - 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{ - sortType = 25 - }, -/turf/open/floor/iron, -/area/station/science/research) -"pvc" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating/airless, -/area/station/medical/virology) -"pvK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/sorting/mail{ - name = "CE's Junction"; - sortType = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/engineering/lobby) -"pvM" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder{ - pixel_y = 8 - }, -/obj/item/storage/fancy/egg_box, -/turf/open/floor/iron/dark, -/area/station/security/prison/mess) -"pvR" = ( -/obj/structure/cable, -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/bot, -/obj/machinery/camera/directional/west{ - c_tag = "Service - Hydroponics Back"; - dir = 10; - name = "hallway camera" - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"pwa" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/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/command/gateway) -"pwk" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Security - Brig Aft" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/security/brig) -"pwq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plating, -/area/station/science/ordnance/storage) -"pwr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"pwA" = ( -/obj/structure/cable, -/obj/structure/sink/kitchen{ - pixel_y = 24 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"pwE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron, -/area/station/medical/cryo) -"pwO" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"pwY" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"pxb" = ( -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) -"pxj" = ( -/turf/open/floor/iron/white/corner, -/area/station/commons/fitness/recreation) -"pxs" = ( -/obj/machinery/door/window/right/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"pxt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock{ - name = "Clown's Backstage Room" - }, -/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/access/all/service/theatre, -/turf/open/floor/iron/dark, -/area/station/service/theater) -"pxz" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/storage/gas) -"pxI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/checkpoint/customs/aft) -"pxN" = ( -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"pxS" = ( -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"pxT" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"pxU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"pyd" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison/upper) -"pyq" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/hallway/secondary/entry) -"pyw" = ( -/obj/effect/landmark/start/hangover, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"pyz" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp/green, -/obj/effect/spawner/random/entertainment/money_small, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"pyC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/west, -/obj/machinery/button/door/directional/west{ - id = "cafe_counter"; - name = "Counter Shutters Control"; - pixel_y = 8 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"pyK" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"pyL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/rack, -/obj/item/roller, -/obj/item/reagent_containers/blood, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"pyR" = ( -/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/sorting/mail/flip{ - dir = 4; - name = "Library Junction"; - sortType = 16 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"pyV" = ( -/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/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"pyY" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"pzd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/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 = "Chemistry Junction"; - sortType = 11 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"pzr" = ( -/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/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/customs/fore) -"pzt" = ( -/obj/structure/cable, -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"pzu" = ( -/obj/structure/cable, -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"pzA" = ( -/obj/structure/cable, -/obj/machinery/duct, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "engine-entrance" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/engineering/main) -"pzN" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/vending/drugs, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"pzP" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/security/brig) -"pzS" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/retractor, -/obj/item/hemostat, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"pAd" = ( -/obj/structure/disposalpipe/segment{ - 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/plating, -/area/station/maintenance/port/fore) -"pAu" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/machinery/light_switch/directional/south{ - pixel_x = 6 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"pAw" = ( -/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/kitchen, -/area/station/security/prison/mess) -"pAx" = ( -/obj/structure/chair/comfy{ - color = "#596479"; - pixel_y = 16 - }, -/turf/open/floor/wood, -/area/station/security/prison) -"pAy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"pAz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"pAH" = ( -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"pAI" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Emergency Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor/heavy, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"pAJ" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "forestarboard"; - name = "Fore-Starboard Solar Array" - }, -/turf/open/floor/iron/solarpanel/airless, -/area/station/solars/starboard/fore) -"pAP" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"pAR" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/hallway/primary/fore) -"pBs" = ( -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"pBw" = ( -/obj/machinery/status_display/supply{ - pixel_y = 32 - }, -/obj/effect/turf_decal/arrows{ - dir = 4 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Cargo - Waiting Room"; - name = "cargo camera" - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"pBB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "xeno3"; - name = "Creature Cell #3" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"pBF" = ( -/obj/structure/table, -/obj/item/camera, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/commons/locker) -"pBK" = ( -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Cargo - Quartermaster's Quarters"; - name = "cargo camera" - }, -/obj/machinery/computer/security/qm{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"pBM" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/machinery/requests_console/directional/south{ - department = "Law Office"; - name = "Law Office Requests Console" - }, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"pBT" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"pBV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/medical/break_room) -"pBY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"pBZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"pCw" = ( -/obj/structure/cable, -/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/starboard) -"pCx" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"pCy" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/toy/figure/cargotech, -/obj/machinery/status_display/supply{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/office) -"pCE" = ( -/obj/structure/cable, -/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, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"pCH" = ( -/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, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"pCL" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/door/morgue{ - name = "Curator's Study"; - req_access = list("library") - }, -/turf/open/floor/iron/dark, -/area/station/service/library) -"pCQ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 5 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/space/basic, -/area/space/nearstation) -"pCV" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/trimline/green/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/mid_joiner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/mid_joiner{ - dir = 8 - }, -/turf/open/floor/iron/half{ - dir = 8 - }, -/area/station/service/hydroponics/garden) -"pCZ" = ( -/obj/structure/cable, -/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/machinery/door/airlock/atmos{ - name = "Atmospherics" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"pDe" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Xenobiology - Secure Cell"; - name = "xenobiology camera"; - network = list("ss13","xeno","rd") - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"pDz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"pDD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/qm) -"pDE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/obj/structure/sign/poster/official/wtf_is_co2{ - pixel_y = 32 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"pDK" = ( -/obj/machinery/door/morgue{ - name = "Confession Booth"; - req_access = list("crematorium") - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"pDS" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/camera/detective, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"pDW" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning, -/obj/effect/turf_decal/siding/yellow, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"pDZ" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Air to Distro" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/white/corner{ - dir = 4 - }, -/area/station/engineering/atmos/pumproom) -"pEa" = ( -/obj/structure/cable, -/obj/machinery/light/directional/north, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/structure/closet/secure_closet/security/cargo, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"pEb" = ( -/obj/machinery/power/energy_accumulator/tesla_coil, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/main) -"pEi" = ( -/turf/open/floor/iron/grimy, -/area/station/service/theater/abandoned) -"pEk" = ( -/obj/effect/landmark/start/assistant, -/obj/structure/chair/stool/bar/directional/east, -/turf/open/floor/carpet/green, -/area/station/commons/lounge) -"pEm" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"pEx" = ( -/obj/machinery/cryopod, -/obj/effect/turf_decal/siding/white, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/common/cryopods) -"pEP" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"pEX" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"pEY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"pFd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"pFe" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/research) -"pFi" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"pFl" = ( -/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/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) -"pFq" = ( -/obj/structure/sign/warning/no_smoking/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/engineering/main) -"pFu" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"pFx" = ( -/obj/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/starboard) -"pFB" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"pFE" = ( -/turf/closed/wall/r_wall, -/area/station/medical/storage) -"pFF" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/kirbyplants/random, -/obj/machinery/camera/directional/north{ - c_tag = "Arrivals - Starboard Entrance"; - dir = 9; - name = "arrivals camera" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"pFT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/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/ai_monitored/command/storage/eva) -"pGe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"pGi" = ( -/obj/machinery/atmospherics/components/tank/oxygen{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"pGj" = ( -/obj/machinery/firealarm/directional/east, -/turf/open/floor/wood, -/area/station/security/prison) -"pGo" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/medbay/lobby) -"pGq" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/wooden_tv, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/captain/private) -"pGt" = ( -/obj/machinery/computer/turbine_computer{ - dir = 1; - mapping_id = "main_turbine" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/corner, -/area/station/maintenance/disposal/incinerator) -"pGy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/donkpockets, -/obj/item/stack/package_wrap, -/obj/effect/turf_decal/bot, -/obj/item/knife/kitchen, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"pGC" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light_switch/directional/north{ - pixel_x = -8 - }, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"pGJ" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/folder/yellow, -/obj/machinery/status_display/ai/directional/south, -/obj/item/aicard, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"pGN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/greater) -"pHj" = ( -/obj/machinery/status_display/ai/directional/east, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"pHl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"pHm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"pHt" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"pHv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/mirror/directional/west, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/commons/toilet/locker) -"pHx" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Access" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"pHz" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/stamp/denied{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/item/stamp{ - pixel_x = -7; - pixel_y = 1 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"pHO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"pHW" = ( -/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/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/warden) -"pId" = ( -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"pIk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/table/wood, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark/smooth_half{ - dir = 1 - }, -/area/station/service/bar) -"pIu" = ( -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"pIx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"pIz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/plastic, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"pIA" = ( -/obj/structure/mirror/directional/east, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit/old, -/obj/machinery/light/small/directional/north, -/obj/effect/landmark/blobstart, -/obj/structure/sign/poster/official/cleanliness{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/medical/break_room) -"pIG" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L3" - }, -/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/aft) -"pIJ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"pIS" = ( -/obj/structure/table/wood, -/obj/item/storage/box/actionfigure, -/turf/open/floor/iron/dark, -/area/station/service/library) -"pIW" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/spawner/random/engineering/atmospherics_portable, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"pJc" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 10 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"pJf" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/chair/office, -/obj/effect/turf_decal/siding/yellow, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"pJg" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/electronics/apc, -/turf/open/floor/wood, -/area/station/service/electronic_marketing_den) -"pJi" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"pJl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"pJo" = ( -/turf/open/floor/iron/dark/blue/side{ - dir = 1 - }, -/area/brigofficer) -"pJq" = ( -/obj/machinery/door/window/brigdoor/security/holding/right/directional/west{ - name = "Holding Cell"; - req_access = list("security") - }, -/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/security/holding_cell) -"pJx" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/commons/toilet/locker) -"pJL" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"pJM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"pJR" = ( -/obj/machinery/vending/wardrobe/cargo_wardrobe, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"pKb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/radio/intercom/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/prison) -"pKd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/abandoned_gambling_den) -"pKh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"pKm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"pKn" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"pKp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"pKv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"pKC" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/prison/mess) -"pKI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"pKN" = ( -/turf/open/floor/vault, -/area/station/commons/fitness/recreation) -"pKU" = ( -/obj/effect/landmark/event_spawn, -/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/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"pLg" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/poddoor/shutters/window{ - id = "gatewayshutters"; - name = "Gateway Chamber Shutters" - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"pLs" = ( -/turf/closed/wall, -/area/station/medical/medbay/central) -"pLt" = ( -/obj/machinery/door/airlock/command{ - name = "Chief Medical Officer's Office" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "CMO" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/cmo, -/turf/open/floor/iron, -/area/station/command/heads_quarters/cmo) -"pLx" = ( -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/vacant_room) -"pLz" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"pLD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"pLG" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/chair/sofa/right{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/lounge) -"pLH" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Library Access" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/service/library) -"pLI" = ( -/obj/structure/bookcase, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"pLP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"pLQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"pLV" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/paper/fluff/ids_for_dummies, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hop) -"pMa" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/button/curtain{ - id = "prisoncell3"; - pixel_x = -22; - pixel_y = 10 - }, -/turf/open/floor/iron/dark/side{ - dir = 10 - }, -/area/station/security/prison) -"pMu" = ( -/obj/machinery/door/window/brigdoor{ - name = "Creature Pen"; - req_access = list("research") - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xeno8"; - name = "Creature Cell #8" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"pMP" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/fore) -"pMT" = ( -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"pMW" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/status_display/evac/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Arrivals - Port"; - name = "arrivals camera" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"pNf" = ( -/obj/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/chapel) -"pNq" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"pNA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) -"pNJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/north, -/obj/machinery/suit_storage_unit/engine, -/obj/effect/turf_decal/stripes/line, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/storage) -"pNP" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"pNZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"pOf" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"pOi" = ( -/turf/open/floor/plating, -/area/station/maintenance/fore) -"pOn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"pOz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/aft) -"pOC" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"pOD" = ( -/obj/structure/cable, -/obj/machinery/seed_extractor, -/obj/item/seeds/tower, -/obj/item/seeds/watermelon, -/obj/item/seeds/wheat, -/obj/item/seeds/sugarcane, -/obj/item/seeds/orange, -/obj/item/seeds/grape, -/obj/item/seeds/cocoapod, -/obj/item/seeds/banana, -/obj/item/seeds/apple, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics/garden) -"pOV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"pOY" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/commons/toilet/restrooms) -"pPf" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"pPp" = ( -/obj/machinery/computer/security/mining{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"pPs" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/machinery/computer/security/telescreen/ordnance{ - dir = 1; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"pPt" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/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) -"pPv" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"pPx" = ( -/obj/structure/dresser, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"pPy" = ( -/turf/closed/wall/r_wall, -/area/station/hallway/primary/port) -"pPC" = ( -/obj/item/kirbyplants/random, -/obj/item/toy/plush/snakeplushie{ - name = "Quetzie" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/library) -"pPO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"pPT" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/vacuum/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"pPU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/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/aft) -"pQd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hos) -"pQe" = ( -/obj/machinery/door/firedoor/heavy, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "idquarters"; - name = "Director's Quarters Shutters" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/command/heads_quarters/rd) -"pQi" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"pQj" = ( -/obj/structure/chair/stool/bar/directional/south, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"pQm" = ( -/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/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"pQn" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"pQp" = ( -/obj/machinery/camera{ - c_tag = "Prison - Visition (Visitor)"; - network = list("ss13","prison") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"pQt" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"pQF" = ( -/obj/effect/landmark/start/lawyer, -/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/grimy, -/area/station/service/lawoffice) -"pQJ" = ( -/obj/machinery/computer/shuttle/mining{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/cargo/qm) -"pQS" = ( -/obj/structure/cable, -/obj/machinery/light/directional/west, -/obj/structure/table, -/obj/item/storage/box/shipping{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/folder/yellow, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/machinery/light_switch/directional/north{ - pixel_x = 12 - }, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"pQT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/electronic_marketing_den) -"pRf" = ( -/obj/machinery/computer/rdservercontrol{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/dark, -/area/station/science/server) -"pRp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"pRw" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"pRF" = ( -/obj/structure/table/glass, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/maintenance/department/science) -"pRG" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "prisonlockdown4"; - name = "Lockdown" - }, -/obj/machinery/button/door{ - id = "prisonlockdown4"; - name = "Lockdown"; - pixel_x = -24; - req_access = list("brig") - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/button/curtain{ - id = "prisoncell6"; - pixel_x = -22; - pixel_y = 10 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison) -"pRJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - space_dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"pRP" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"pRS" = ( -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/hop) -"pRZ" = ( -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"pSb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "right_arrivals_shutters"; - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"pSc" = ( -/obj/item/robot_suit, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"pSh" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/tcommsat/server) -"pSj" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/station/solars/port/aft) -"pSq" = ( -/obj/machinery/oven, -/turf/open/floor/iron/dark, -/area/station/security/prison/mess) -"pSt" = ( -/obj/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/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"pSy" = ( -/obj/structure/chair{ - dir = 1; - name = "Jury" - }, -/obj/machinery/status_display/ai/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"pSF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/chapel/funeral) -"pSH" = ( -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/white, -/area/station/science/research) -"pSJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"pSX" = ( -/obj/structure/table, -/obj/item/assembly/signaler{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/assembly/signaler{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/assembly/signaler{ - pixel_y = 8 - }, -/obj/item/assembly/signaler{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"pSY" = ( -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"pTb" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"pTc" = ( -/obj/machinery/door/airlock/silver{ - name = "Bathroom" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/command/captain, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/captain/private) -"pTi" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"pTj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"pTD" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/electronic_marketing_den) -"pTE" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=arrivals2"; - location = "arrivals1" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"pTU" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Science - Port"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/white, -/area/station/science/research) -"pTY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/security/office) -"pUd" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/spawner/random/medical/memeorgans{ - spawn_loot_count = 1 - }, -/turf/open/floor/plating, -/area/station/service/library/abandoned) -"pUf" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electric_shock/directional/north, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron, -/area/station/engineering/storage) -"pUh" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/camera/directional/east{ - c_tag = "AI Satellite - Port"; - name = "ai camera"; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"pUm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"pUp" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/pumproom) -"pUs" = ( -/obj/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/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"pUv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"pUy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/service/theater) -"pUE" = ( -/obj/structure/closet/secure_closet/warden, -/obj/item/clothing/under/rank/security/warden/grey, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/warden) -"pUF" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"pUG" = ( -/obj/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, -/area/station/command/heads_quarters/captain/private) -"pUJ" = ( -/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/fore) -"pUR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"pUT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/auxlab) -"pUU" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/chair/sofa/bench/left{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"pUW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"pVj" = ( -/obj/effect/decal/cleanable/glass, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"pVk" = ( -/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/service/abandoned_gambling_den) -"pVm" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Infirmary" - }, -/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/tile/red/half/contrasted{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) -"pVw" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/machinery/duct, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"pVD" = ( -/obj/effect/mapping_helpers/iannewyear, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hop) -"pVK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"pVR" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"pVS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"pWb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/prison) -"pWe" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"pWn" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"pWz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"pWK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"pWO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"pWQ" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"pWT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/medical) -"pXd" = ( -/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/tile/neutral/half{ - dir = 1 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/commons/dorms) -"pXg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"pXm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Project Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"pXp" = ( -/obj/machinery/cell_charger, -/obj/structure/table/reinforced, -/obj/item/stock_parts/cell/high, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"pXq" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/service/chapel/office) -"pXw" = ( -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"pXK" = ( -/obj/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, -/area/station/command/heads_quarters/captain) -"pXM" = ( -/obj/structure/table/wood, -/obj/item/storage/box/ids{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/silver_ids, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"pXO" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper_bin, -/turf/open/floor/plating, -/area/station/service/library/abandoned) -"pYl" = ( -/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/machinery/bluespace_vendor/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"pYo" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"pYs" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"pYA" = ( -/obj/structure/table, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"pYE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/service/library/abandoned) -"pYF" = ( -/turf/open/floor/glass/reinforced, -/area/station/commons/dorms) -"pYG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"pYL" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/hidden, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"pYT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table/wood, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 7 - }, -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/iron/grimy, -/area/station/command/meeting_room/council) -"pZa" = ( -/obj/structure/reagent_dispensers/wall/virusfood/directional/west, -/obj/structure/table/glass, -/obj/machinery/reagentgrinder{ - desc = "Used to grind things up into raw materials and liquids."; - pixel_y = 5 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/virology) -"pZl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/drone_dispenser, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"pZn" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"pZo" = ( -/obj/machinery/mineral/equipment_vendor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"pZs" = ( -/obj/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/table/wood, -/obj/item/folder/blue, -/obj/item/pen/fourcolor, -/obj/item/stamp/captain, -/obj/machinery/door/window/brigdoor/left/directional/north{ - name = "Captain's Desk"; - req_access = list("captain") - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"pZE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/port/aft) -"pZF" = ( -/obj/structure/cable, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"pZI" = ( -/obj/structure/chair/stool/bar/directional/south, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) -"qaq" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/restraints/handcuffs, -/obj/item/clothing/mask/muzzle, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"qat" = ( -/obj/machinery/portable_atmospherics/canister/plasma, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/main) -"qaA" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/station/science/ordnance/burnchamber) -"qaD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/theatre) -"qaF" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/storage) -"qaJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/smooth, -/area/station/hallway/secondary/entry) -"qaT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"qbj" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"qbp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - 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/plating, -/area/station/maintenance/port/greater) -"qbs" = ( -/obj/structure/cable, -/obj/machinery/biogenerator, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/siding/green{ - dir = 8 - }, -/turf/open/floor/iron/checker, -/area/station/service/hydroponics/garden/abandoned) -"qbu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"qbK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/commons/toilet/locker) -"qbM" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"qbT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch/directional/north{ - pixel_x = 8 - }, -/obj/machinery/oven, -/turf/open/floor/plating, -/area/station/service/kitchen/abandoned) -"qbW" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/hallway/secondary/entry) -"qbY" = ( -/obj/structure/curtain/cloth/fancy/mechanical{ - icon_state = "bounty-open"; - icon_type = "bounty"; - id = "prisoncell6"; - name = "curtain" - }, -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"qce" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/computer/arcade/battle, -/turf/open/floor/iron/dark, -/area/station/security/prison/mess) -"qcf" = ( -/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/grimy, -/area/station/security/detectives_office) -"qcp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/science/research/abandoned) -"qcJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/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, -/turf/open/floor/iron, -/area/station/science/breakroom) -"qcP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Holding Area" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"qcS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"qdc" = ( -/obj/effect/turf_decal/delivery, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"qdg" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/prison) -"qdi" = ( -/obj/structure/dresser, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"qdl" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/machinery/duct, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"qdn" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"qdA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"qdF" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/ai_monitored/aisat/exterior) -"qdK" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/closet/ammunitionlocker/useful, -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"qdP" = ( -/obj/item/kirbyplants/random, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"qdV" = ( -/obj/machinery/flasher/directional/south{ - id = "AI"; - pixel_x = -26 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"qee" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/dark, -/area/station/service/library) -"qeg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Office" - }, -/obj/effect/landmark/navigate_destination, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron, -/area/station/cargo/office) -"qel" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"qep" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/toilet/locker) -"qex" = ( -/obj/machinery/door/poddoor/incinerator_ordmix, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"qeB" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 2; - name = "Kitchen Junction"; - sortType = 20 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"qfa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"qfh" = ( -/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/security/checkpoint/medical) -"qfo" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"qfB" = ( -/obj/effect/spawner/random/vending/snackvend, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"qfH" = ( -/obj/structure/fluff/metalpole{ - dir = 10 - }, -/obj/structure/fluff/metalpole/end{ - dir = 4 - }, -/turf/open/space/basic, -/area/space) -"qfO" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"qfS" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/purple, -/obj/item/radio/intercom/directional/east, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"qga" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Dormitories" - }, -/obj/structure/cable, -/obj/effect/landmark/navigate_destination, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/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/commons/dorms) -"qgl" = ( -/obj/machinery/power/solar{ - id = "aftport"; - name = "Aft-Port Solar Array" - }, -/obj/structure/cable, -/turf/open/floor/iron/solarpanel/airless, -/area/station/solars/port/aft) -"qgo" = ( -/turf/closed/wall/r_wall, -/area/station/science/ordnance/storage) -"qgC" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/machinery/meter, -/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/white, -/area/station/science/ordnance/storage) -"qgH" = ( -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"qgM" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/command/heads_quarters/cmo) -"qgU" = ( -/obj/structure/disposalpipe/segment, -/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/fore) -"qgV" = ( -/obj/structure/table, -/obj/item/plant_analyzer, -/obj/item/hatchet, -/obj/item/cultivator, -/obj/item/shovel/spade, -/obj/machinery/light/small/directional/east, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics/garden) -"qhb" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"qhi" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/light/directional/south, -/obj/item/clothing/suit/jacket{ - desc = "All the class of a trenchcoat without the security fibers."; - icon_state = "noirdet"; - name = "trenchcoat" - }, -/obj/item/clothing/suit/toggle/lawyer/black, -/obj/machinery/status_display/evac/directional/south, -/obj/item/clothing/head/fedora, -/obj/item/clothing/under/dress/redeveninggown, -/obj/item/clothing/head/rabbitears, -/turf/open/floor/iron/grimy, -/area/station/commons/dorms) -"qhj" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"qhu" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/station/medical/virology) -"qhA" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/commons/lounge) -"qhB" = ( -/obj/structure/easel, -/obj/effect/decal/cleanable/dirt, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas/twentythree_twentythree, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/service/library/abandoned) -"qhI" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Ordnance Lab" - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/junction/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"qhN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"qhO" = ( -/obj/structure/table, -/obj/item/storage/medkit/regular, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"qhQ" = ( -/obj/effect/turf_decal/delivery/white, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"qhS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"qhU" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/button/door/directional/north{ - id = "transitlock"; - name = "Transit Tube Lockdown Control"; - req_access = list("command") - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/machinery/light_switch/directional/north{ - pixel_y = 34 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"qhW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"qhX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/item/radio/intercom/prison/directional/south, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"qif" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/hydroponics/soil{ - desc = "A patch of fertile soil that you can plant stuff in."; - icon = 'icons/turf/floors.dmi'; - icon_state = "dirt"; - layer = 2.0001; - plane = -7; - self_sustaining = 1 - }, -/obj/item/reagent_containers/glass/bottle/nutrient/rh, -/turf/open/floor/plating, -/area/station/security/prison/garden) -"qij" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"qil" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/security/glass{ - name = "Storage Closet" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"qix" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"qiK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Chemistry" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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/medical/chemistry, -/turf/open/floor/iron, -/area/station/medical/chemistry) -"qiL" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/greater) -"qiT" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/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/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"qiW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"qjb" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/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, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"qje" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"qjk" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"qjr" = ( -/obj/structure/flora/bush/sunny/style_random, -/obj/structure/flora/bush/jungle/c/style_random, -/turf/open/misc/grass, -/area/station/hallway/primary/fore) -"qjy" = ( -/turf/open/floor/circuit/green, -/area/station/science/research/abandoned) -"qjL" = ( -/obj/structure/sign/warning/electric_shock/directional/north, -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"qjO" = ( -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"qjQ" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"qkm" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"qko" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/clipboard, -/obj/item/toy/figure/miner, -/obj/machinery/light/directional/north, -/obj/machinery/light_switch/directional/west{ - pixel_x = -42 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"qkA" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/chair/stool/bar/directional/east, -/turf/open/floor/iron, -/area/station/commons/lounge) -"qkH" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/service/theater) -"qkJ" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison) -"qkS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood, -/obj/effect/spawner/random/trash/soap, -/obj/item/radio/intercom/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Service - Theater Backroom"; - name = "service camera" - }, -/turf/open/floor/wood, -/area/station/service/theater) -"qld" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"qlr" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/project) -"qlK" = ( -/obj/machinery/light, -/obj/structure/table, -/obj/item/fuel_pellet{ - pixel_x = 8 - }, -/obj/item/wrench{ - pixel_x = -4 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"qlQ" = ( -/obj/item/kirbyplants/random, -/obj/machinery/airalarm/directional/south, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/theater/abandoned) -"qlY" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"qmj" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"qmt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/suit_storage_unit/rd, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/computer/security/telescreen/entertainment/directional/west, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"qmy" = ( -/obj/structure/frame/computer, -/obj/item/circuitboard/computer/secure_data, -/obj/machinery/light/small/directional/west, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office/private_investigators_office) -"qmA" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"qmD" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/public/glass{ - name = "Aft Primary Hallway" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/science/lobby) -"qmG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/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) -"qmJ" = ( -/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) -"qmO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"qmT" = ( -/obj/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/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"qmX" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/north{ - c_tag = "Service - Cafeteria Fore"; - name = "service camera" - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"qna" = ( -/obj/structure/table, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = -2 - }, -/obj/machinery/light_switch/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Science - Ordnance Launch Site"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"qnc" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"qnd" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/random/entertainment/arcade{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den/gaming) -"qnh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/space_heater, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/aft) -"qnr" = ( -/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/cable, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"qnv" = ( -/obj/effect/turf_decal/stripes/white/line, -/obj/machinery/status_display/evac/directional/west, -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/west, -/turf/open/floor/wood, -/area/station/engineering/break_room) -"qnN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"qnQ" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"qnV" = ( -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Creature Pen"; - req_access = list("research") - }, -/obj/machinery/door/poddoor/preopen{ - id = "xeno2"; - name = "Creature Cell #2" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"qnY" = ( -/turf/closed/wall, -/area/station/science/lobby) -"qof" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "QM #3" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/cargo/storage) -"qoi" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hop) -"qom" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"qop" = ( -/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/cyclelink_helper_multi{ - cycle_id = "medbay-passthrough" - }, -/obj/machinery/door/airlock/medical{ - name = "Medbay" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"qoC" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"qoD" = ( -/obj/structure/sign/warning/electric_shock/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"qoN" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/machinery/status_display/ai/directional/south, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/lockers) -"qpz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/security/lockers) -"qpB" = ( -/obj/structure/bookcase/random/adult, -/obj/machinery/light/small/directional/north, -/turf/open/floor/wood, -/area/station/security/prison) -"qpD" = ( -/obj/structure/table/wood, -/obj/item/toy/plush/carpplushie{ - name = "Nemo" - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"qpE" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"qpG" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"qpM" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron, -/area/station/science/lab) -"qpT" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - space_dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"qqk" = ( -/obj/machinery/telecomms/message_server/preset, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"qqq" = ( -/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/public/glass{ - name = "Garden" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"qqA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"qqG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/engineering/main) -"qqL" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=arrivals4"; - location = "arrivals3" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"qqO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"qqY" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Psychology Maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/psychology, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"qqZ" = ( -/obj/structure/rack, -/obj/item/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/wrench, -/obj/item/crowbar/red, -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"qrt" = ( -/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/central/fore) -"qru" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Surgery B Access" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, -/turf/open/floor/iron, -/area/station/medical/surgery/theatre) -"qrv" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/wood, -/area/station/service/electronic_marketing_den) -"qrz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/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/secondary/exit/departure_lounge) -"qrN" = ( -/obj/structure/cable, -/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/machinery/bluespace_vendor/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"qrP" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/chair/stool/bar/directional/south, -/turf/open/floor/carpet/green, -/area/station/commons/lounge) -"qrV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"qsg" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"qsn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"qso" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"qsu" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/port) -"qsv" = ( -/obj/machinery/light/directional/south, -/obj/machinery/computer/station_alert{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"qsA" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/service/library) -"qsB" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "AI Satellite - Aft Starboard"; - name = "ai camera"; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"qsF" = ( -/obj/structure/cable, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"qsI" = ( -/obj/machinery/computer/security/labor, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/security/processing) -"qsL" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"qsQ" = ( -/obj/machinery/light/directional/south, -/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, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"qsS" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"qsY" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/captain) -"qtg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/station/medical/cryo) -"qts" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"qtO" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"qtS" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/cleanable/glass{ - dir = 1 - }, -/obj/effect/decal/cleanable/glass{ - dir = 4 - }, -/obj/effect/decal/cleanable/glass{ - dir = 8 - }, -/obj/structure/grille/broken, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/upper) -"quc" = ( -/obj/machinery/telecomms/server/presets/common, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, -/turf/open/floor/iron/telecomms, -/area/station/tcommsat/server) -"qul" = ( -/obj/structure/chair/stool/bar/directional/south, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) -"quy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Aft Primary Hallway" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"quA" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"quB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"quE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - 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/maintenance/port/greater) -"quI" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"quQ" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"quR" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"quU" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"quZ" = ( -/obj/structure/curtain/bounty, -/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/security/prison/rec) -"qvh" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"qvn" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/maintenance/port/fore) -"qvo" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"qvv" = ( -/obj/structure/table/wood, -/obj/item/clothing/head/papersack/smiley, -/obj/item/pen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/theater/abandoned) -"qvw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer2, -/obj/machinery/light/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/maintenance/disposal/incinerator) -"qvB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"qvW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"qwc" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"qwg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"qwv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Transit Tube Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/minisat, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"qwy" = ( -/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, -/area/station/science/ordnance/testlab) -"qwz" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"qwA" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"qwX" = ( -/obj/machinery/medical_kiosk, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"qwZ" = ( -/obj/machinery/light_switch/directional/north, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"qxa" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/science/research) -"qxi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) -"qxo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"qxq" = ( -/obj/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/maintenance/starboard/aft) -"qxu" = ( -/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/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"qxw" = ( -/obj/structure/cable, -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/captain) -"qxy" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall14"; - location = "hall13" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"qxC" = ( -/obj/machinery/button/curtain{ - id = "prisoncell8"; - pixel_y = 21 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/blue/side{ - dir = 1 - }, -/area/station/security/prison/safe) -"qxM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Law Office" - }, -/obj/structure/cable, -/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/mapping_helpers/airlock/access/all/service/lawyer, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/lawoffice) -"qye" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"qyj" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"qym" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plating, -/area/station/service/library/abandoned) -"qyX" = ( -/obj/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/decal/cleanable/dirt, -/obj/machinery/door/airlock/mining{ - name = "Mining Dock" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"qzc" = ( -/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/engineering/hallway) -"qzd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) -"qzg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/engineering/atmospherics_portable, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"qzA" = ( -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/engineering/main) -"qzF" = ( -/turf/open/floor/wood, -/area/station/commons/dorms) -"qzK" = ( -/obj/structure/sign/warning/secure_area/directional/south, -/obj/structure/table/reinforced, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"qzP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"qzT" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electric_shock/directional/east, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"qzX" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/execution/transfer) -"qzY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"qAe" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 5 - }, -/turf/open/space/basic, -/area/space/nearstation) -"qAn" = ( -/obj/structure/dresser, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/theater/abandoned) -"qAx" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"qAz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/mix) -"qAB" = ( -/obj/effect/spawner/random/maintenance/two, -/obj/structure/closet, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"qAC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - id_tag = "Dorm5"; - name = "Cabin 5" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"qAF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"qAT" = ( -/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/extinguisher_cabinet/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"qAV" = ( -/turf/closed/wall, -/area/station/maintenance/department/crew_quarters/bar) -"qAW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/aft) -"qBi" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"qBk" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"qBl" = ( -/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/aft) -"qBo" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/storage) -"qBp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/security/courtroom) -"qBz" = ( -/obj/structure/chair/office/light, -/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/command/heads_quarters/rd) -"qBD" = ( -/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/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"qBN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/ai/directional/south, -/obj/structure/reagent_dispensers/fueltank/large, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/textured, -/area/station/engineering/storage) -"qBS" = ( -/obj/structure/closet/wardrobe/miner, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/south, -/obj/item/storage/backpack/satchel/explorer, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"qBY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table/wood, -/obj/machinery/computer/security/wooden_tv, -/turf/open/floor/iron/grimy, -/area/station/command/bridge) -"qCj" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on, -/obj/machinery/light_switch/directional/east{ - pixel_x = 21 - }, -/turf/open/floor/iron/dark, -/area/station/science/server) -"qCk" = ( -/obj/structure/disposalpipe/segment, -/obj/item/kirbyplants/random, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"qCA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"qCC" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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, -/area/station/security/courtroom) -"qCR" = ( -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"qCZ" = ( -/obj/machinery/power/smes, -/obj/machinery/light/small/directional/south, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"qDa" = ( -/obj/structure/bookcase, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"qDo" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos/project) -"qDr" = ( -/obj/structure/frame/machine, -/obj/item/stack/cable_coil/five, -/obj/item/circuitboard/machine/chem_master, -/turf/open/floor/iron/grimy, -/area/station/maintenance/port/fore) -"qDT" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/wood, -/area/station/service/library) -"qDZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"qEg" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"qEo" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/airalarm/mixingchamber{ - dir = 1; - pixel_y = 24 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/burnchamber) -"qEv" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder{ - pixel_y = 5 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker/large, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"qEw" = ( -/obj/structure/table/glass, -/obj/effect/landmark/start/hangover, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"qET" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/greater) -"qEV" = ( -/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) -"qFe" = ( -/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/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"qFm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Auxilliary Surgical Theatres" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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/medical/surgery, -/turf/open/floor/iron, -/area/station/medical/surgery/aft) -"qFD" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution) -"qFF" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"qFI" = ( -/obj/structure/chair/stool, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"qFV" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"qGm" = ( -/turf/open/floor/iron/dark, -/area/station/service/theater) -"qGn" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/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/research) -"qGz" = ( -/obj/structure/bookcase, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"qGB" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/morgue) -"qGL" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/restaurant_portal/bar, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/light_switch/directional/south{ - pixel_x = 8 - }, -/turf/open/floor/iron, -/area/station/commons/lounge) -"qGW" = ( -/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, -/obj/machinery/door/airlock/command{ - name = "Council Chambers" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) -"qHl" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Distribution Loop" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"qHq" = ( -/obj/structure/sign/warning/no_smoking/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/valve{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"qHs" = ( -/obj/structure/statue/sandstone/venus{ - dir = 1; - name = "Honor" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"qHu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"qHx" = ( -/obj/machinery/newscaster/directional/south, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) -"qHz" = ( -/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/plating, -/area/station/maintenance/fore) -"qHB" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Bridge - Council Chamber"; - name = "command camera" - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) -"qHI" = ( -/obj/structure/table/wood, -/obj/item/storage/box/matches{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/iron/dark, -/area/station/service/electronic_marketing_den) -"qHJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/bot, -/obj/machinery/space_heater, -/turf/open/floor/iron/textured_large, -/area/station/engineering/atmos/project) -"qHL" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/cargo/storage) -"qHQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/newscaster{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"qHY" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/east, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"qIh" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/white, -/area/station/science/research) -"qIx" = ( -/obj/structure/table, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/station/science/research/abandoned) -"qIE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Primary Hallway" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"qIH" = ( -/turf/closed/wall/r_wall, -/area/station/security/execution/transfer) -"qII" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"qIK" = ( -/obj/effect/landmark/start/hangover, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"qIN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/closet/radiation, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"qIT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/service/library) -"qIX" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"qJb" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"qJd" = ( -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"qJf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdrnd"; - name = "Research and Development Shutters"; - dir = 8 - }, -/turf/open/floor/plating, -/area/station/science/lab) -"qJj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/pharmacy) -"qJl" = ( -/obj/structure/closet/emcloset/anchored, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/hallway) -"qJs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"qJF" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"qJI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"qJN" = ( -/obj/machinery/button/door{ - id = "brigwindows"; - name = "Cell Window Control"; - pixel_x = -32; - pixel_y = -26; - req_access = list("security") - }, -/obj/machinery/button/door{ - id = "brigfront"; - name = "Brig Access Control"; - pixel_x = -26; - pixel_y = -36; - req_access = list("security") - }, -/obj/machinery/button/door{ - id = "brigprison"; - name = "Prison Lockdown"; - pixel_x = -38; - pixel_y = -36; - req_access = list("brig") - }, -/obj/effect/landmark/start/warden, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/warden) -"qJZ" = ( -/turf/closed/wall, -/area/station/security/holding_cell) -"qKc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) -"qKd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/holding_cell) -"qKg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"qKi" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/spawner/random/engineering/tracking_beacon, -/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/ai_monitored/aisat/exterior) -"qKk" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/radio/intercom, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"qKm" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/lighter, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/wood, -/area/station/service/electronic_marketing_den) -"qKG" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/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/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/command/gateway) -"qKL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"qKN" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"qKW" = ( -/obj/machinery/light/directional/west, -/obj/structure/bookcase/random/fiction, -/turf/open/floor/wood, -/area/station/service/library) -"qKY" = ( -/obj/structure/table/wood, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"qLa" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/pen{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/flasher/directional/east{ - id = "hopflash"; - pixel_x = 0; - pixel_y = 26 - }, -/obj/structure/desk_bell{ - pixel_x = 7 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"qLc" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/bot, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"qLg" = ( -/obj/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/cargo/storage) -"qLh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/book/manual/chef_recipes{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/book/manual/wiki/cooking_to_serve_man, -/obj/item/knife/kitchen, -/obj/item/reagent_containers/glass/rag, -/obj/structure/table, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"qLp" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor{ - id = "cargodisposals" - }, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"qLG" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"qLH" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/theatre) -"qLJ" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/security/checkpoint/engineering) -"qLW" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/science/lab) -"qMb" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"qMm" = ( -/obj/structure/table, -/obj/item/storage/secure/safe/directional/north, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/button/door/directional/east{ - id = "commissaryshutters"; - name = "Commissary Shutters Control" - }, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"qMn" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/disposaloutlet, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"qMq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/random/clothing/gloves, -/obj/effect/spawner/random/clothing/gloves, -/obj/effect/turf_decal/bot_red, -/turf/open/floor/iron/white, -/area/station/maintenance/fore) -"qMt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"qMC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"qMP" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/security/detectives_office/private_investigators_office) -"qMS" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"qMY" = ( -/obj/machinery/door/window/left/directional/north{ - dir = 4; - name = "Jetpack Storage"; - pixel_x = -1; - req_access = list("eva") - }, -/obj/structure/window/reinforced, -/obj/structure/rack, -/obj/item/tank/jetpack/carbondioxide{ - pixel_x = 4; - pixel_y = -1 - }, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/tank/jetpack/carbondioxide{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"qNi" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/station/solars/port/fore) -"qNm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"qNo" = ( -/obj/structure/table/reinforced, -/obj/machinery/firealarm/directional/south, -/obj/machinery/light/directional/south, -/obj/item/stack/sheet/plasteel/fifty, -/obj/item/stack/sheet/rglass{ - amount = 20; - pixel_x = 2; - pixel_y = -2 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"qNp" = ( -/obj/machinery/bookbinder, -/turf/open/floor/carpet, -/area/station/service/library) -"qNy" = ( -/obj/structure/table, -/obj/item/crowbar, -/obj/item/shovel/spade, -/obj/item/hatchet, -/obj/item/cultivator, -/obj/item/reagent_containers/glass/bottle/nutrient/rh{ - pixel_x = 2; - pixel_y = 1 - }, -/obj/item/reagent_containers/glass/bottle/nutrient/ez, -/obj/machinery/requests_console/directional/east{ - department = "Garden"; - name = "Garden Requests Console" - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics/garden) -"qNF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hop) -"qNI" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdordnance"; - name = "Ordnance Lab Shutters"; - dir = 1 - }, -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/science/ordnance/storage) -"qNQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/reagent_dispensers/watertank/high, -/obj/effect/turf_decal/delivery/white{ - color = "#52B4E9" - }, -/obj/item/reagent_containers/glass/watering_can, -/turf/open/floor/iron/dark/textured, -/area/station/service/hydroponics) -"qOk" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"qOn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/station/commons/fitness/recreation) -"qOu" = ( -/obj/machinery/newscaster/directional/north, -/turf/open/floor/wood, -/area/station/service/theater/abandoned) -"qOL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"qOO" = ( -/obj/machinery/mineral/stacking_machine{ - input_dir = 2 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"qOT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"qPg" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/siding/yellow, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"qPn" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"qPp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/effect/landmark/start/janitor, -/turf/open/floor/iron/checker, -/area/station/service/janitor) -"qPw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/obj/structure/table/wood/poker, -/obj/effect/spawner/random/entertainment/deck, -/turf/open/floor/carpet/green, -/area/station/commons/lounge) -"qPX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"qPY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Surgery Theater" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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/medical/surgery, -/turf/open/floor/iron, -/area/station/medical/surgery/theatre) -"qQe" = ( -/obj/structure/table/wood, -/obj/item/toy/cards/deck/cas{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/toy/cards/deck/cas/black{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/carpet, -/area/station/service/library/abandoned) -"qQg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office/private_investigators_office) -"qQp" = ( -/obj/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/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"qQr" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - 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/virology) -"qQt" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/lobby) -"qQE" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"qQK" = ( -/obj/effect/spawner/random/structure/chair_maintenance, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"qQM" = ( -/turf/closed/wall, -/area/station/maintenance/port/aft) -"qQR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"qQW" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/color/orange, -/obj/item/storage/box/mousetraps{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/lights/mixed, -/obj/item/grenade/chem_grenade/cleaner, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"qRw" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/service/hydroponics/garden) -"qRx" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"qRB" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Science Maintenance" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/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, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"qRL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"qRN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"qRY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"qRZ" = ( -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = 12; - pixel_y = -6 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark/brown/side{ - dir = 5 - }, -/area/station/security/prison/safe) -"qSd" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"qSg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"qSl" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/table/wood, -/obj/item/clothing/glasses/regular/hipster, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"qSm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"qSL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"qSO" = ( -/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/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/aft) -"qTs" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/airlock/public/glass{ - name = "Fore Hallway" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"qTu" = ( -/obj/structure/chair/pew/left, -/turf/open/floor/iron{ - dir = 8; - icon_state = "chapel" - }, -/area/station/service/chapel) -"qTA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/stool/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/theater) -"qTF" = ( -/obj/machinery/porta_turret/ai, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"qTK" = ( -/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/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"qTP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"qTV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/machinery/power/port_gen/pacman/pre_loaded, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"qUb" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/lawyer, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"qUd" = ( -/obj/effect/turf_decal/trimline/darkblue/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/rec) -"qUk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"qUr" = ( -/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/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"qUw" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 9 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"qUE" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"qUK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chapelprivacy"; - name = "Chapel Privacy Shutters"; - dir = 8 - }, -/turf/open/floor/plating, -/area/station/service/chapel/office) -"qUL" = ( -/obj/machinery/light/directional/west, -/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/medbay/central) -"qUM" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/tcommsat/server) -"qVe" = ( -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"qVf" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"qVg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/half, -/area/station/engineering/atmos/project) -"qVl" = ( -/obj/machinery/door/poddoor/shutters{ - id = "evashutters2"; - name = "E.V.A. Storage Shutters"; - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"qVn" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/boozeomat/all_access, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"qVH" = ( -/obj/structure/bodycontainer/morgue{ - dir = 2 - }, -/turf/open/floor/plating, -/area/station/medical/morgue) -"qVO" = ( -/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/item/clothing/head/welding, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/bot, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"qVT" = ( -/obj/machinery/computer/med_data/laptop, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/mirror/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"qVU" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/engineering/lobby) -"qWk" = ( -/turf/closed/wall, -/area/station/science/xenobiology) -"qWr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"qWU" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron, -/area/station/science/lobby) -"qWY" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/north, -/obj/structure/closet/toolcloset, -/turf/open/floor/iron, -/area/station/engineering/main) -"qWZ" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison) -"qXa" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"qXi" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"qXt" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/photocopier, -/obj/item/newspaper{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/newspaper, -/turf/open/floor/plating, -/area/station/security/detectives_office/private_investigators_office) -"qXA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 9 - }, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"qXJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"qXM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/office) -"qXV" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"qYc" = ( -/obj/structure/sign/departments/xenobio, -/turf/closed/wall/r_wall, -/area/station/science/xenobiology) -"qYo" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"qYr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/abandoned_gambling_den) -"qYx" = ( -/obj/machinery/igniter/incinerator_atmos, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"qYy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"qYD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/mob/living/simple_animal/bot/secbot/pingsky, -/turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) -"qYL" = ( -/turf/closed/wall, -/area/station/medical/morgue) -"qYN" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"qZn" = ( -/obj/machinery/status_display/ai/directional/south, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"qZs" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"qZM" = ( -/obj/machinery/light/directional/north, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Security - Office Fore" - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/security/office) -"qZQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/library) -"qZZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/mechpad, -/obj/effect/turf_decal/bot, -/obj/machinery/button/door/directional/east{ - id = "mechbay"; - name = "Mech Bay Shutters Control"; - req_access = list("robotics") - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"rab" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"raf" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistbot"; - name = "Chemistry Side Shutters"; - dir = 8 - }, -/obj/machinery/door/window/left/directional/south{ - dir = 4; - name = "Chemistry Desk"; - req_access = list("pharmacy") - }, -/obj/item/folder/white, -/obj/item/pen, -/obj/machinery/door/window/left/directional/south{ - dir = 8; - name = "Chemistry Desk" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/medical/pharmacy) -"raj" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"rap" = ( -/obj/structure/cable, -/obj/effect/landmark/start/brigoff, -/turf/open/floor/iron/dark/blue/side, -/area/brigofficer) -"raz" = ( -/obj/machinery/shower{ - name = "emergency shower"; - pixel_y = 16 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/trimline/blue/end, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/atmos/project) -"raH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"raL" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/layer_manifold/green/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"rbg" = ( -/obj/effect/turf_decal/tile/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/lab) -"rbk" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/light/directional/east, -/obj/item/radio/intercom/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/commons/lounge) -"rbm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/engineering{ - name = "Starboard Bow Solar Access" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/maintenance/solars/starboard/fore) -"rbu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/circuit/green, -/area/station/science/robotics/mechbay) -"rbB" = ( -/obj/structure/table/wood, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"rbC" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"rbR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"rbS" = ( -/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/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"rbV" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/storage) -"rce" = ( -/obj/structure/disposalpipe/segment{ - 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/plating, -/area/station/maintenance/port/greater) -"rcw" = ( -/obj/structure/fireaxecabinet/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage) -"rcE" = ( -/obj/structure/bodycontainer/morgue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"rcH" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"rcI" = ( -/turf/open/floor/iron, -/area/station/cargo/sorting) -"rcP" = ( -/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/sign/barsign{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"rcY" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/plasteel/twenty, -/obj/item/stack/rods/fifty, -/obj/item/storage/box/lights/mixed, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"rde" = ( -/obj/machinery/space_heater/improvised_chem_heater, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"rdg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/tile/red/half/contrasted{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"rdr" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/hydroponics/constructable, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"rdu" = ( -/obj/machinery/computer/security/mining, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"rdx" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"rdA" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/machinery/light_switch/directional/north, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/carpet/blue, -/area/station/commons/vacant_room/office) -"rdI" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/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/surgery/theatre) -"rdJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"rdO" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/command/teleporter) -"rdR" = ( -/obj/machinery/firealarm/directional/north, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"rdS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/dark/side, -/area/station/engineering/lobby) -"rea" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/green{ - 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 = 5 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"reb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/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, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"reh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/starboard) -"rem" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/department/engine/atmos) -"res" = ( -/obj/effect/landmark/blobstart, -/obj/structure/disposalpipe/segment{ - 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/plating, -/area/station/maintenance/starboard) -"rex" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/machinery/door/poddoor/preopen{ - id = "ceblast"; - name = "Chief Engineer's Office Blast Doors" - }, -/turf/open/floor/plating, -/area/station/command/heads_quarters/ce) -"rey" = ( -/obj/machinery/computer/mecha{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) -"reH" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"reQ" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters{ - id = "commissaryshutters"; - name = "Vacant Commissary Shutters"; - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"reR" = ( -/obj/effect/landmark/start/roboticist, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"rfd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"rfe" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/dish_drive/bullet{ - succrange = 6 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"rfw" = ( -/obj/effect/landmark/start/scientist, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"rfG" = ( -/obj/item/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/masks, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"rfQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) -"rfS" = ( -/obj/structure/table, -/obj/item/storage/crayons, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/locker) -"rgf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"rgh" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"rgj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Custom Agent's Office" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/customs, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"rgu" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"rgC" = ( -/obj/structure/cable, -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/item/folder/yellow, -/obj/item/gps/mining, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"rgK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"rgL" = ( -/obj/structure/cable, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) -"rgM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/security/range) -"rgN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/engineering_guard, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"rgT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"rgW" = ( -/turf/open/floor/iron/grimy, -/area/station/command/meeting_room/council) -"rhb" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/qm) -"rhc" = ( -/obj/machinery/processor/slime, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"rhe" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/turf/open/floor/iron/dark, -/area/station/service/library) -"rhf" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/bot, -/obj/item/clothing/mask/gas, -/obj/item/airlock_painter, -/obj/machinery/camera/directional/west{ - c_tag = "Engineering - Center"; - dir = 10; - name = "engineering camera" - }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/engineering/main) -"rhg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 8 - }, -/obj/structure/chair/office{ - dir = 1 - }, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"rhh" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"rhx" = ( -/turf/closed/wall, -/area/station/security/prison/rec) -"rhy" = ( -/obj/machinery/light/directional/west, -/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, -/obj/machinery/airalarm/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"rhB" = ( -/obj/machinery/rnd/server, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/science/server) -"rhC" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"rhH" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"rhK" = ( -/obj/structure/flora/bush/stalky/style_random, -/obj/structure/flora/bush/lavendergrass/style_random, -/turf/open/misc/grass, -/area/station/hallway/primary/fore) -"rhN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"rhV" = ( -/obj/structure/table/wood, -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den) -"ria" = ( -/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/public/glass{ - name = "Cryopods" - }, -/turf/open/floor/iron/white, -/area/station/common/cryopods) -"rie" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/abandoned_gambling_den) -"rij" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"riq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"riv" = ( -/obj/effect/landmark/start/hangover/closet, -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"riD" = ( -/obj/structure/table/wood, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/storage/toolbox/electrical, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"riH" = ( -/obj/machinery/photocopier, -/obj/machinery/status_display/ai/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/reagent_dispensers/wall/peppertank/directional/east, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"riO" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/machinery/vending/dinnerware, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"riP" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "AI Satellite - Starboard"; - name = "ai camera"; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"riS" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/mess) -"rjd" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hop) -"rje" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/qm) -"rjk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/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/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"rjt" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/service/theater) -"rjD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"rjK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"rjL" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/electronic_marketing_den) -"rjM" = ( -/obj/structure/closet/boxinggloves, -/obj/effect/turf_decal/box/white, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/commons/fitness/recreation) -"rjR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/white, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"rjZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"rkb" = ( -/obj/structure/curtain/cloth/fancy/mechanical{ - id = "barbershopcurtains1" - }, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/service/salon) -"rkl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/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/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"rku" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder/red, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"rkC" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/chair/pew, -/turf/open/floor/iron{ - dir = 8; - icon_state = "chapel" - }, -/area/station/service/chapel) -"rkE" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemisttop"; - name = "Chemistry Lobby Shutters"; - dir = 1 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/pharmacy) -"rkF" = ( -/obj/structure/plaque/static_plaque/golden{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/security/office) -"rkN" = ( -/obj/item/kirbyplants/random, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/customs/fore) -"rkS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green/half/contrasted, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"rkW" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"rkZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "justicechamber"; - name = "Justice Chamber Blast Door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/execution) -"rlp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/warning/engine_safety/directional/south, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"rlr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"rlt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/clothing/gloves/color/fyellow, -/obj/effect/spawner/random/maintenance, -/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/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"rly" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"rlD" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"rlE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/air_sensor/incinerator_tank, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"rlL" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/item/radio/intercom/directional/south, -/obj/structure/table/glass, -/obj/item/food/grown/poppy/geranium, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"rlQ" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"rlY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"rme" = ( -/obj/structure/table/wood, -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 6 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"rmf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/r_wall, -/area/station/maintenance/port/aft) -"rmh" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/airlock/external{ - name = "External Atmos Access" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"rmi" = ( -/obj/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/greater) -"rmC" = ( -/mob/living/basic/cockroach, -/turf/open/floor/wood, -/area/station/security/detectives_office/private_investigators_office) -"rmH" = ( -/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/decal/cleanable/dirt, -/obj/machinery/door/airlock/mining{ - name = "Mining Dock" - }, -/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/supply/mining, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"rnp" = ( -/obj/structure/table/wood, -/obj/item/camera_film{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/camera_film, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"rnu" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/paper, -/obj/item/paper, -/obj/item/pen, -/obj/machinery/requests_console/directional/east{ - department = "Atmospherics"; - departmentType = 3; - name = "Atmospherics Requests Console" - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage) -"rnA" = ( -/obj/machinery/status_display/ai/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/closet/secure_closet/brig/genpop, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"rnM" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/evac/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"rnP" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"rnQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"roo" = ( -/mob/living/basic/cockroach, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"rou" = ( -/obj/structure/cable, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"rov" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/lobby) -"roZ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"rpm" = ( -/obj/structure/rack, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/wrench, -/obj/item/stock_parts/cell/emproof{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/lightreplacer, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage) -"rpH" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/siding/wideplating, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"rpK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"rpZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet/green, -/area/station/commons/lounge) -"rqb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"rqm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/starboard) -"rqn" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"rqx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/lesser) -"rqE" = ( -/obj/structure/cable, -/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/security/medical) -"rqW" = ( -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"rqY" = ( -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/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, -/area/station/science/research) -"rrp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/starboard) -"rrF" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/security/courtroom) -"rrQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"rsb" = ( -/obj/structure/table/wood, -/obj/item/taperecorder, -/obj/item/tape, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"rsg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/hallway/secondary/entry) -"rsq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"rsv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"rsw" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/ids, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/customs/fore) -"rsI" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/structure/mirror/directional/west, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/service/salon) -"rsR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/blue/filled/warning, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"rta" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"rtd" = ( -/obj/structure/frame/computer{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plating, -/area/station/science/research/abandoned) -"rtk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"rtz" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "xeno2"; - name = "Containment Control"; - req_access = list("xenobiology") - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"rtH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"rtJ" = ( -/obj/structure/cable, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"rtO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Port Primary Hallway" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"rtT" = ( -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/structure/flora/bush/sparsegrass/style_random, -/turf/open/misc/grass, -/area/station/hallway/primary/fore) -"rtX" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -3 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 3 - }, -/obj/item/reagent_containers/dropper, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"rua" = ( -/obj/machinery/newscaster/directional/west, -/obj/machinery/chem_master/condimaster{ - name = "CondiMaster Neo" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"rul" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"rum" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"rut" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/stool/bar/directional/east, -/turf/open/floor/iron, -/area/station/commons/lounge) -"ruN" = ( -/obj/machinery/porta_turret/ai, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"rva" = ( -/obj/effect/turf_decal/tile/blue, -/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) -"rvb" = ( -/obj/machinery/firealarm/directional/north, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) -"rve" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/office) -"rvj" = ( -/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/tile/neutral/fourcorners, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Transit Tube Access" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/all/command/minisat, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"rvC" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/ids, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/aft) -"rvG" = ( -/obj/effect/landmark/start/station_engineer, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"rvK" = ( -/turf/closed/wall, -/area/station/cargo/drone_bay) -"rvZ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/machinery/door/poddoor/preopen{ - id = "atmoslock"; - name = "Atmospherics Lockdown Blast Door" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/right/directional/west{ - name = "Atmospherics Desk"; - req_access = list("atmospherics") - }, -/obj/machinery/door/window/right/directional/east, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"rwn" = ( -/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/prisoner, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/security/prison) -"rwt" = ( -/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, -/area/station/command/meeting_room/council) -"rww" = ( -/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/medical/morgue) -"rwS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/south{ - c_tag = "Atmospherics - Project Room Closet"; - name = "atmospherics camera" - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron/half{ - dir = 8 - }, -/area/station/engineering/atmos/project) -"rwV" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"rxd" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"rxf" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"rxj" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Virology - Break Room"; - name = "virology camera"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"rxm" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den) -"rxw" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"rxx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"rxA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Primary Tool Storage" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"rxK" = ( -/obj/machinery/door/window/left/directional/south{ - name = "Mass Driver Door"; - req_access = list("ordnance") - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"rxW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"ryb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"ryg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/carpet/red, -/area/station/hallway/secondary/service) -"ryl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"ryA" = ( -/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, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/holding_cell) -"ryE" = ( -/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/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/command/gateway) -"ryG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/obj/item/storage/medkit/regular, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"ryI" = ( -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) -"ryQ" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den) -"ryY" = ( -/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/security/prison) -"rza" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"rzk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/chair/pew/left, -/turf/open/floor/iron{ - icon_state = "chapel" - }, -/area/station/service/chapel) -"rzt" = ( -/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/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"rzN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/science/auxlab) -"rzR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/solars/starboard/aft) -"rzU" = ( -/obj/structure/table/wood/poker, -/obj/item/reagent_containers/food/drinks/bottle/rum{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_y = 7 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) -"rzZ" = ( -/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, -/area/station/security/office) -"rAd" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "engine-entrance" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"rAe" = ( -/obj/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/grimy, -/area/station/service/chapel) -"rAk" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"rAl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor{ - id = "cargodisposals" - }, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"rAn" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"rAq" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, -/obj/machinery/atmospherics/components/binary/pump/off/yellow/visible{ - dir = 4; - name = "O2 To Pure" - }, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"rAx" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"rAC" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"rAH" = ( -/obj/structure/cable, -/obj/structure/closet/secure_closet/security/engine, -/obj/machinery/camera/directional/east{ - c_tag = "Security Post - Engineering" - }, -/obj/item/radio/intercom/directional/east, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/machinery/button/door/directional/north{ - id = "engdoor"; - name = "Engineering Cell Control"; - normaldoorcontrol = 1; - pixel_y = 37; - req_access = list("brig_entrance") - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"rAY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"rBB" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"rBC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/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/east, -/turf/open/floor/iron, -/area/station/commons/locker) -"rBH" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/locker) -"rBQ" = ( -/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, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-right" - }, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"rCx" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/tcomms_all, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"rCz" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"rCA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Research and Development Lab" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdrnd"; - name = "Research and Development Shutters"; - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron, -/area/station/science/lab) -"rCN" = ( -/obj/effect/spawner/random/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"rDb" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/medical/medbay/lobby) -"rDj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=service1"; - location = "hall2" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"rDk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"rDn" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/ordnance_burn_chamber_input{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"rDr" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/surgery/theatre) -"rDt" = ( -/obj/machinery/light/warm/directional/north, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/chair/comfy/barber_chair{ - dir = 4 - }, -/turf/open/floor/iron, -/area/service/salon) -"rDF" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cafe_counter"; - name = "Kitchen Counter Shutters"; - dir = 8 - }, -/obj/structure/displaycase/forsale/kitchen, -/turf/open/floor/iron/white/smooth_half{ - dir = 1 - }, -/area/station/service/kitchen) -"rDL" = ( -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"rDP" = ( -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"rEf" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron, -/area/station/science/breakroom) -"rEo" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/office) -"rEA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/window/left/directional/north{ - name = "Drone Launchsite" - }, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"rEF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"rEJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"rEP" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/left/directional/north{ - name = "Kitchen Desk"; - req_one_access = list("kitchen","hydroponics") - }, -/obj/machinery/door/window/left/directional/south{ - name = "Kitchen Desk"; - req_access = list("kitchen") - }, -/obj/item/storage/bag/plants, -/obj/item/reagent_containers/glass/watering_can, -/turf/open/floor/iron, -/area/station/service/kitchen) -"rES" = ( -/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{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/starboard/aft) -"rFf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"rFi" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"rFz" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/box, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"rFF" = ( -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"rFG" = ( -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"rFJ" = ( -/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 = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"rFZ" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"rGb" = ( -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"rGf" = ( -/obj/machinery/power/solar_control{ - dir = 4; - id = "aftport"; - name = "Port Quarter Solar Control" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"rGh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/insectguts, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"rGi" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/delivery_chute{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - layer = 3 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"rGo" = ( -/obj/item/kirbyplants/random, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/security/brig) -"rGO" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"rGW" = ( -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/prison/mess) -"rGZ" = ( -/obj/machinery/computer/cryopod{ - dir = 8; - pixel_x = 32 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/white, -/area/station/common/cryopods) -"rHc" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/meter{ - name = "Mixed Air Tank In" - }, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"rHd" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/port) -"rHh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/abandoned_gambling_den) -"rHq" = ( -/obj/structure/chair/office, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/customs/fore) -"rHB" = ( -/obj/item/kirbyplants/random, -/obj/machinery/camera/directional/east{ - c_tag = "Science Maintnence"; - network = list("ss13","rd"); - start_active = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/maintenance/department/science) -"rHQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/iron, -/area/station/engineering/main) -"rHS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/medical/virology) -"rHX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/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, -/area/station/hallway/secondary/exit/departure_lounge) -"rHY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 1 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"rHZ" = ( -/obj/structure/closet/secure_closet/freezer/fridge{ - req_access = null - }, -/obj/item/storage/box/ingredients/vegetarian, -/obj/item/storage/box/ingredients/italian, -/obj/item/storage/box/ingredients/fruity, -/obj/item/storage/box/ingredients/fiesta, -/obj/item/storage/box/ingredients/american, -/obj/item/reagent_containers/food/condiment/flour{ - list_reagents = list(/datum/reagent/consumable/flour=600); - name = "Premium All-Purpose Flour (16KG)"; - volume = 600 - }, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/enzyme{ - list_reagents = list(/datum/reagent/consumable/enzyme=500); - name = "universe-sized universal enyzyme"; - volume = 500 - }, -/obj/item/reagent_containers/food/condiment/rice{ - list_reagents = list(/datum/reagent/consumable/rice=150); - name = "Basmati Rice Sack (4KG)"; - volume = 150 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/security/prison/mess) -"rIa" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/warden) -"rIk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/spawner/random/structure/barricade, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"rIt" = ( -/obj/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/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron/grimy, -/area/station/service/chapel) -"rID" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"rIK" = ( -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/obj/machinery/camera/directional/west{ - c_tag = "Departures Hallway - Aft"; - name = "hallway camera" - }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"rIN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"rIP" = ( -/obj/structure/lattice/catwalk, -/obj/structure/sign/warning/secure_area/directional/east, -/turf/open/space/basic, -/area/space/nearstation) -"rIQ" = ( -/turf/closed/wall, -/area/station/command/heads_quarters/cmo) -"rJa" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/bot, -/obj/item/analyzer, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"rJe" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"rJf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"rJn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"rJp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/structure/reagent_dispensers/wall/peppertank/directional/west, -/turf/open/floor/iron, -/area/station/security/processing) -"rJt" = ( -/turf/closed/wall/r_wall, -/area/station/security/processing) -"rJy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/grimy, -/area/station/commons/vacant_room/office) -"rJC" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Security" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/starboard) -"rJN" = ( -/obj/effect/turf_decal/bot, -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"rJY" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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 - }, -/obj/effect/mapping_helpers/airlock/access/any/command/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"rKb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/turf/open/floor/plating, -/area/station/engineering/atmos/mix) -"rKh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"rKj" = ( -/obj/structure/table/glass, -/obj/item/clipboard, -/obj/item/toy/figure/cmo, -/obj/machinery/computer/security/telescreen/cmo{ - dir = 4; - pixel_x = -30 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/cmo) -"rKm" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/machinery/computer/atmos_control/nitrous_tank{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/engineering/atmos) -"rKr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum, -/turf/open/floor/plating, -/area/station/security/checkpoint/escape) -"rKC" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"rKF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"rKH" = ( -/obj/machinery/holopad, -/obj/effect/landmark/start/medical_doctor, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/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, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/medical/break_room) -"rKL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/security/detectives_office/private_investigators_office) -"rKN" = ( -/obj/structure/sign/directions/security{ - dir = 4; - pixel_y = 8 - }, -/obj/structure/sign/directions/supply{ - dir = 4 - }, -/obj/structure/sign/directions/medical{ - pixel_y = -8 - }, -/turf/closed/wall, -/area/station/maintenance/department/crew_quarters/bar) -"rKQ" = ( -/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/aft) -"rKR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/research) -"rKW" = ( -/obj/machinery/door/poddoor/massdriver_trash, -/obj/structure/fans/tiny, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"rLb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/cyborg, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"rLc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/item/pipe_dispenser, -/obj/item/pipe_dispenser, -/obj/item/pipe_dispenser, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson/engine, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"rLj" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - piping_layer = 2 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"rLl" = ( -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"rLn" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"rLt" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"rLw" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) -"rLF" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"rLI" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/locker) -"rLL" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/newscaster/directional/north, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"rLN" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"rLO" = ( -/obj/structure/janitorialcart, -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 4 - }, -/obj/effect/turf_decal/bot/left, -/obj/item/storage/bag/trash, -/turf/open/floor/iron/checker, -/area/station/service/janitor) -"rLQ" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/button/curtain{ - id = "barbershopcurtains1"; - pixel_x = -25; - pixel_y = 24 - }, -/turf/open/floor/iron, -/area/service/salon) -"rLS" = ( -/obj/structure/sign/warning/electric_shock/directional/north, -/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/secondary/command) -"rMa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/service/chapel) -"rMe" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/photo_album/library, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"rMi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"rMn" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/techstorage/arcade_boards, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/electronic_marketing_den) -"rMq" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"rMt" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/tcommsat/server) -"rMu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"rMz" = ( -/obj/structure/lattice/catwalk, -/obj/effect/landmark/xeno_spawn, -/turf/open/space, -/area/station/solars/starboard/fore) -"rMA" = ( -/obj/structure/table/wood, -/obj/item/instrument/guitar, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/theater/abandoned) -"rMN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/binary/pump/on/scrubbers/visible{ - dir = 1; - name = "Ports to Filter" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"rMR" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/landmark/start/hangover, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/engineering/lobby) -"rMZ" = ( -/obj/structure/chair/comfy/black, -/obj/effect/landmark/start/assistant, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"rNc" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"rNf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos/storage/gas) -"rNi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/station/maintenance/port/greater) -"rNo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"rND" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"rNH" = ( -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/landmark/navigate_destination, -/turf/open/floor/iron/smooth_half{ - dir = 1 - }, -/area/station/hallway/secondary/entry) -"rNL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"rNQ" = ( -/turf/closed/wall, -/area/station/medical/pharmacy) -"rNV" = ( -/obj/item/kirbyplants/random, -/obj/machinery/door_timer{ - id = "brig1"; - name = "Cell 1"; - pixel_x = -32 - }, -/obj/machinery/light/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Security - Brig Center" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"rNY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"rOa" = ( -/obj/structure/sign/warning/secure_area{ - pixel_y = -14 - }, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/storage/gas) -"rOc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/large, -/area/station/service/hydroponics) -"rOn" = ( -/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_hatch{ - name = "Maintenance Hatch" - }, -/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/effect/mapping_helpers/airlock/access/any/service/library, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"rOy" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"rOR" = ( -/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/delivery, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"rOU" = ( -/obj/effect/decal/cleanable/oil, -/obj/structure/reflector/single, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"rOX" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/research) -"rOY" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"rPc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"rPe" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/turret_protected/aisat_interior) -"rPh" = ( -/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/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/airlock/public/glass{ - name = "Fore Hallway" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"rPj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"rPn" = ( -/obj/structure/bed, -/obj/item/bedsheet/ce, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/ce) -"rPr" = ( -/obj/machinery/cell_charger, -/obj/structure/table/reinforced, -/obj/item/stock_parts/cell/high, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"rPt" = ( -/obj/structure/chair/pew/right, -/turf/open/floor/iron{ - dir = 4; - icon_state = "chapel" - }, -/area/station/service/chapel) -"rPA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"rPD" = ( -/obj/machinery/doppler_array{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"rPM" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/command/teleporter) -"rQd" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"rQp" = ( -/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/engineering/hallway) -"rQq" = ( -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"rQv" = ( -/turf/open/floor/iron/dark/red/side{ - dir = 10 - }, -/area/station/security/execution) -"rQw" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"rQB" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/treatment_center) -"rQI" = ( -/obj/machinery/airlock_sensor/incinerator_atmos{ - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/light/small/directional/south, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"rQJ" = ( -/obj/effect/spawner/random/trash/mess, -/obj/machinery/button/door/directional/west{ - id = "Dorm1"; - name = "Dormitory Door Lock"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"rQO" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-entrance" - }, -/obj/machinery/door/airlock/security/glass{ - name = "Brig" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron, -/area/station/security/brig) -"rQQ" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/white/corner, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"rRa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"rRm" = ( -/obj/structure/bookcase/random/fiction, -/turf/open/floor/wood, -/area/station/security/prison) -"rRn" = ( -/obj/machinery/rnd/destructive_analyzer, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/science/lab) -"rRB" = ( -/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/central/aft) -"rRC" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/carpet/blue, -/area/station/commons/vacant_room/office) -"rRD" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/main) -"rRL" = ( -/turf/open/floor/iron/dark/side, -/area/station/security/prison) -"rRP" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/science/xenobiology) -"rSa" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"rSc" = ( -/obj/effect/landmark/event_spawn, -/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/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/warden) -"rSi" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/right/directional/west{ - name = "Engineering Desk"; - req_access = list("engineering") - }, -/obj/item/paper_bin{ - pixel_x = -4 - }, -/obj/item/pen{ - pixel_x = -4 - }, -/obj/machinery/door/firedoor, -/obj/structure/desk_bell{ - pixel_x = 8; - pixel_y = 9 - }, -/turf/open/floor/iron/half{ - dir = 8 - }, -/area/station/engineering/lobby) -"rSm" = ( -/obj/machinery/power/shieldwallgen, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"rSq" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L8" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"rSJ" = ( -/obj/machinery/telecomms/server/presets/engineering, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/telecomms, -/area/station/tcommsat/server) -"rSW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"rSX" = ( -/obj/machinery/light_switch/directional/west, -/turf/open/floor/wood, -/area/station/service/theater/abandoned) -"rSZ" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/delivery, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"rTd" = ( -/obj/structure/sign/directions/evac{ - pixel_y = -8 - }, -/obj/structure/sign/directions/science{ - dir = 1 - }, -/obj/structure/sign/directions/engineering{ - dir = 1; - pixel_y = 8 - }, -/turf/closed/wall, -/area/station/hallway/secondary/exit/departure_lounge) -"rTe" = ( -/obj/machinery/light/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Central Hallway - Security Hallway"; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"rTo" = ( -/turf/closed/wall, -/area/station/maintenance/aft) -"rTv" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/table, -/obj/item/book/manual/wiki/ordnance{ - pixel_x = 4; - pixel_y = 1 - }, -/obj/item/analyzer, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"rTA" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"rTB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock{ - id_tag = "Toilet1"; - name = "Toilet Unit 1" - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/toilet/locker) -"rTH" = ( -/obj/machinery/duct, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"rTM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics/garden/abandoned) -"rTO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"rTP" = ( -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/obj/structure/punching_bag, -/turf/open/floor/iron/white, -/area/station/commons/fitness/recreation) -"rTQ" = ( -/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/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"rTT" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/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/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"rTX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"rUp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"rUw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"rUz" = ( -/obj/structure/table/wood, -/obj/item/food/grown/harebell{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/food/grown/harebell{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/food/grown/harebell, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"rUB" = ( -/obj/machinery/suit_storage_unit/cmo, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/cmo) -"rUM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"rUP" = ( -/obj/structure/disposalpipe/segment, -/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/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"rUU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"rUV" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"rVc" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron, -/area/station/service/library/abandoned) -"rVq" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"rVs" = ( -/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/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"rVt" = ( -/obj/machinery/computer/security{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) -"rVx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"rVz" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/service/library) -"rVD" = ( -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"rVE" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/sofa/corp/left{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"rVJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/security/prison/upper) -"rVX" = ( -/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/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"rWa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"rWj" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: BLAST DOORS"; - pixel_y = 32 - }, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"rWl" = ( -/obj/structure/table, -/obj/item/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"rWn" = ( -/obj/item/kirbyplants/random, -/obj/structure/sign/warning/no_smoking/directional/east, -/obj/machinery/light_switch/directional/east{ - pixel_x = 21 - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"rWo" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/miningoffice) -"rWq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics - Center"; - name = "atmospherics camera" - }, -/turf/open/floor/iron/textured, -/area/station/engineering/atmos) -"rWu" = ( -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/east{ - c_tag = "Arrivals Dock - Fore Port"; - name = "dock camera" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"rWw" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"rWy" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_y = -32 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) -"rWz" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"rWA" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/machinery/requests_console/directional/south{ - department = "Janitorial"; - departmentType = 1; - name = "Janitor's Request Console" - }, -/obj/item/storage/box/mousetraps{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/storage/box/mousetraps{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/item/restraints/legcuffs/beartrap{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/restraints/legcuffs/beartrap, -/turf/open/floor/iron/checker, -/area/station/service/janitor) -"rWC" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"rWF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"rWG" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"rWJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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) -"rXh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/security/prison/mess) -"rXq" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/turf/open/floor/iron/dark/telecomms, -/area/station/science/server) -"rXr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"rXA" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/command/heads_quarters/cmo) -"rXO" = ( -/obj/structure/cable, -/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/secondary/command) -"rXR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/main) -"rXS" = ( -/obj/structure/table/wood, -/obj/item/taperecorder, -/obj/machinery/light/small/directional/north, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/carpet/blue, -/area/station/commons/vacant_room/office) -"rXT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/decal/cleanable/plastic, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/commons/vacant_room) -"rYe" = ( -/obj/structure/easel, -/obj/item/canvas/twentythree_nineteen, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas/twentythree_twentythree, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/library) -"rYj" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/siding/yellow, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"rYr" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/transit_tube/curved/flipped{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"rYJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/science/research) -"rYN" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/plating, -/area/station/security/detectives_office/private_investigators_office) -"rYR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"rZf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"rZz" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"rZD" = ( -/obj/machinery/computer/security{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"rZE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"rZF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"rZL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"rZU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/maintenance/department/engine/atmos) -"sac" = ( -/obj/machinery/autolathe, -/obj/machinery/light/directional/west, -/obj/machinery/light_switch/directional/south{ - pixel_x = -20 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"sao" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/hydroponics/constructable, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"sau" = ( -/obj/machinery/blackbox_recorder, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"saA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"saB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"saC" = ( -/obj/machinery/photocopier, -/obj/machinery/computer/security/telescreen/entertainment/directional/west, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"saE" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Port to Filter" - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"saK" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/prison/upper) -"saR" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"sbh" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/interrogation) -"sbv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/clothing/gloves/color/latex{ - pixel_y = 6 - }, -/obj/item/screwdriver{ - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/station/medical/morgue) -"sbC" = ( -/obj/structure/sign/directions/engineering, -/obj/structure/sign/directions/evac{ - pixel_y = -8 - }, -/obj/structure/sign/directions/science{ - pixel_y = 8 - }, -/turf/closed/wall, -/area/station/commons/vacant_room/office) -"sbE" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/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/server) -"sbM" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"sbN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"sbP" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"sbQ" = ( -/turf/closed/wall, -/area/station/security/checkpoint/science/research) -"sbR" = ( -/obj/structure/cable, -/obj/machinery/light/directional/south, -/obj/machinery/computer/security{ - dir = 1 - }, -/obj/machinery/newscaster/directional/south, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"sbV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/main) -"sbW" = ( -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/table, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"sch" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/engineering/atmos/mix) -"scn" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"scp" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"scy" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"scE" = ( -/obj/effect/turf_decal/stripes/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/ai_monitored/command/storage/eva) -"scR" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 4 - }, -/obj/machinery/requests_console/directional/west{ - announcementConsole = 1; - department = "Captain's Desk"; - departmentType = 5; - name = "Captain's Requests Console" - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"sdd" = ( -/obj/machinery/door/firedoor/heavy, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"sdi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/supply/visible, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/meter/monitored/distro_loop, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/pumproom) -"sdq" = ( -/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/fore) -"sdz" = ( -/obj/structure/table/optable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/medical/morgue) -"sdB" = ( -/obj/item/kirbyplants/random, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"sdC" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/solars/port/fore) -"sdJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"sdK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"sdO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"sdQ" = ( -/obj/structure/table, -/obj/item/rcl/pre_loaded, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/locker) -"sef" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/port) -"sep" = ( -/obj/structure/dresser, -/obj/structure/mirror/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/light_switch/directional/north{ - pixel_x = -8 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"seE" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"seP" = ( -/obj/machinery/telecomms/server/presets/security, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"sfa" = ( -/obj/machinery/vending/cigarette, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/theater/abandoned) -"sfe" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"sfo" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder/white, -/obj/effect/turf_decal/delivery, -/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 = "Medical Desk"; - req_access = list("medical") - }, -/obj/machinery/door/window/left/directional/south{ - name = "Medbay Desk"; - req_access = list("medical") - }, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"sfs" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"sfw" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"sfC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall2"; - location = "hall1" - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L5" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"sfH" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"sfJ" = ( -/obj/structure/table/glass, -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"sfL" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/grimy, -/area/station/service/library/abandoned) -"sfN" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"sfT" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/effect/spawner/random/bureaucracy/briefcase{ - spawn_loot_count = 2; - spawn_random_offset = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/library) -"sgZ" = ( -/obj/structure/disposalpipe/segment, -/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/tile/neutral/fourcorners, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"shc" = ( -/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 = 8 - }, -/area/station/security/prison) -"shm" = ( -/obj/effect/spawner/random/structure/table_or_rack, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"shp" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron, -/area/station/medical/surgery/theatre) -"shq" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/science/lobby) -"shB" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/medbay/lobby) -"shJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_output{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"shK" = ( -/obj/structure/chair/pew/right, -/turf/open/floor/iron{ - icon_state = "chapel" - }, -/area/station/service/chapel) -"shR" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/lockers) -"shV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/security/medical) -"shW" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"sie" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"sii" = ( -/obj/structure/table/wood/poker, -/obj/item/storage/dice, -/obj/effect/spawner/random/entertainment/money_large, -/turf/open/floor/iron/grimy, -/area/station/service/abandoned_gambling_den) -"sij" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/starboard/aft) -"sik" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"sim" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/bed, -/obj/item/bedsheet/captain, -/obj/effect/landmark/start/captain, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"sio" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall10"; - location = "hall9" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"siq" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko, -/obj/effect/turf_decal/delivery, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"sis" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"siF" = ( -/obj/machinery/mineral/ore_redemption, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/box, -/obj/machinery/door/window/left/directional/south{ - name = "Ore Redemption Access"; - req_access = list("mineral_storeroom") - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"siI" = ( -/turf/open/floor/wood, -/area/station/service/library) -"siP" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"siT" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"siV" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/station/maintenance/fore) -"siX" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/theater) -"sjd" = ( -/obj/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/effect/turf_decal/tile/neutral/fourcorners, -/mob/living/simple_animal/sloth/citrus, -/turf/open/floor/iron, -/area/station/cargo/qm) -"sjg" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/manifold{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/kitchen_cold_room{ - dir = 1; - pixel_y = 24 - }, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"sjh" = ( -/obj/structure/statue/sandstone/venus{ - name = "Justice" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"sji" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/bot, -/obj/item/electronics/apc, -/turf/open/floor/iron, -/area/station/cargo/storage) -"sjo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"sjt" = ( -/turf/closed/wall, -/area/station/hallway/secondary/entry) -"sjy" = ( -/obj/machinery/light/directional/north, -/obj/item/kirbyplants/random, -/obj/machinery/button/door/directional/north{ - id = "evashutters2"; - name = "E.V.A. Shutters"; - req_access = list("command") - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"sjG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"sjK" = ( -/turf/open/floor/iron/dark, -/area/station/service/library/abandoned) -"sjP" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/security/telescreen{ - dir = 4; - network = list("xeno") - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"skd" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/surgery, -/obj/item/scalpel, -/obj/item/cautery, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"ske" = ( -/obj/effect/spawner/random/entertainment/arcade, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"sks" = ( -/turf/open/floor/iron, -/area/station/medical/surgery/aft) -"skx" = ( -/turf/open/floor/iron/dark/red/side{ - dir = 6 - }, -/area/station/security/execution) -"skD" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"skH" = ( -/obj/structure/table/wood, -/obj/structure/sign/poster/official/help_others{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/toy/figure/paramedic{ - pixel_x = 2; - pixel_y = 8 - }, -/obj/item/storage/dice{ - pixel_x = -4; - pixel_y = 2 - }, -/turf/open/floor/iron, -/area/station/medical/break_room) -"skI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"skP" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"skX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"skZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"sli" = ( -/obj/structure/table/glass, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/item/assembly/timer{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/assembly/timer{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/assembly/timer{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/machinery/newscaster/directional/west, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"slp" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/checkpoint/engineering) -"slF" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"slG" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"slH" = ( -/obj/structure/table/glass, -/obj/item/storage/medkit/fire{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/medkit/fire{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/medkit/regular, -/obj/item/storage/medkit/fire{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/storage) -"slN" = ( -/obj/effect/turf_decal/delivery, -/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/greater) -"slY" = ( -/obj/structure/cable, -/obj/structure/window/reinforced/plasma/spawner/west{ - dir = 1 - }, -/obj/machinery/power/energy_accumulator/grounding_rod/anchored, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"smu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "viro-passthrough" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"smy" = ( -/obj/structure/chair/stool/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/paramedic, -/turf/open/floor/iron, -/area/station/medical/break_room) -"smF" = ( -/obj/structure/chair{ - dir = 8; - name = "Judge" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron, -/area/station/security/courtroom) -"smG" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"smJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"smL" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = -8; - pixel_y = 12 - }, -/obj/structure/microscope{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/biopsy_tool{ - pixel_x = 14; - pixel_y = 4 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"smO" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/kitchen/abandoned) -"smR" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"smU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock{ - name = "Auxiliary Storage Closet" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"smZ" = ( -/obj/structure/cable, -/obj/machinery/holopad/secure, -/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, -/area/station/command/heads_quarters/captain/private) -"sna" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/sign/warning/pods/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"snu" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/wood, -/area/station/service/library) -"snv" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/orderly, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"snK" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"snQ" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album/chapel, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"snU" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden, -/obj/machinery/light_switch/directional/west{ - pixel_y = 8 - }, -/obj/machinery/light/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Atmospherics - Office"; - name = "atmospherics camera" - }, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/west{ - pixel_y = -8 - }, -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 4 - }, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/storage/gas) -"snW" = ( -/obj/machinery/door/window/left/directional/north{ - dir = 4; - name = "Magboot Storage"; - pixel_x = -1; - req_access = list("eva") - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/clothing/shoes/magboots{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"sog" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner, -/area/station/maintenance/disposal/incinerator) -"sov" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/department/electrical) -"sox" = ( -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hop) -"soy" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Science - Aft Center"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/tile/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/research) -"soD" = ( -/obj/item/circular_saw, -/obj/item/surgicaldrill{ - pixel_y = 5 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"soK" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"soN" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/security/telescreen/entertainment/directional/west, -/turf/open/floor/wood, -/area/station/engineering/break_room) -"soW" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/holding_cell) -"spa" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/chem_dispenser/drinks/beer{ - dir = 1 - }, -/obj/structure/table/wood/poker, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"spq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"spw" = ( -/obj/machinery/atmospherics/components/binary/valve/digital, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"spG" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) -"spI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"spJ" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"spQ" = ( -/turf/closed/wall, -/area/service/salon) -"spZ" = ( -/obj/structure/table, -/obj/machinery/status_display/ai/directional/west, -/obj/item/storage/box/donkpockets, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"sqd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"sqn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/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/white, -/area/station/medical/virology) -"sqx" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/medical/medbay/lobby) -"sqG" = ( -/obj/machinery/gulag_teleporter, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/processing) -"sqI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/half, -/area/station/service/hydroponics) -"sqM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/closet/secure_closet/freezer/meat, -/obj/effect/turf_decal/bot, -/obj/item/food/meat/slab/monkey, -/obj/item/food/meat/slab/monkey, -/turf/open/floor/iron/dark, -/area/station/service/kitchen/coldroom) -"sqW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"sqY" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/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/aft) -"sra" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/button/door/directional/west{ - id = "Dorm2"; - name = "Dormitory Door Lock"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"srd" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/disposal/bin, -/obj/structure/sign/warning/deathsposal/directional/south, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron/checker, -/area/station/maintenance/disposal/incinerator) -"srg" = ( -/obj/structure/table/glass, -/obj/item/food/pizzaslice/vegetable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/space_hut/observatory) -"srt" = ( -/obj/structure/curtain/cloth/fancy/mechanical{ - id = "barbershopcurtains1" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/service/salon) -"sry" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"srA" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/obj/structure/sign/warning/secure_area/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Atmospherics - Aft Tanks"; - name = "atmospherics camera" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"srC" = ( -/obj/structure/table/wood, -/obj/item/storage/dice, -/obj/machinery/computer/security/telescreen/entertainment/directional/south, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"srI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den) -"srO" = ( -/obj/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/green/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"srZ" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"sse" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: PRESSURIZED DOORS" - }, -/turf/closed/wall, -/area/station/security/courtroom) -"ssk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"ssq" = ( -/obj/structure/disposalpipe/segment{ - 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/auxlab) -"sst" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"ssy" = ( -/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/machinery/newscaster/directional/north, -/obj/machinery/duct, -/turf/open/floor/iron/grimy, -/area/station/service/bar) -"ssH" = ( -/obj/structure/filingcabinet/security, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/security/detectives_office/private_investigators_office) -"ssI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"ssQ" = ( -/turf/open/floor/iron, -/area/station/security/prison/visit) -"ssS" = ( -/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/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"ssX" = ( -/turf/open/floor/iron, -/area/station/science/auxlab) -"stc" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/medical/pharmacy) -"stf" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"stm" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"stz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"stD" = ( -/obj/machinery/suit_storage_unit/engine, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/storage) -"stN" = ( -/obj/structure/railing{ - dir = 10 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/theater) -"suj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/junction/yjunction, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"suk" = ( -/obj/effect/turf_decal/siding/white, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/kitchen) -"sup" = ( -/obj/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/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"suw" = ( -/obj/item/kirbyplants/random, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) -"suy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Locker Room" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/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/commons/locker) -"suz" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office/private_investigators_office) -"suA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light/small/directional/west, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/structure/sign/warning/no_smoking/directional/west, -/turf/open/floor/iron, -/area/station/maintenance/department/engine/atmos) -"suI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/machinery/ammo_workbench, -/turf/open/floor/iron, -/area/station/security/lockers) -"suZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/atmospherics, -/obj/item/book/manual/wiki/atmospherics{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/pipe_dispenser, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria, -/area/station/engineering/atmos) -"svk" = ( -/obj/structure/chair/office, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/service/library/abandoned) -"svl" = ( -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"svn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"svo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/obj/structure/sign/warning/fire/directional/east, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"svp" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/security/range) -"svq" = ( -/obj/machinery/status_display/supply{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Cargo Bay - Port"; - name = "cargo camera" - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"svu" = ( -/obj/structure/table/wood, -/obj/item/clothing/under/costume/maid, -/obj/item/clothing/head/kitty, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/theater/abandoned) -"svz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"svI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/directional/east{ - c_tag = "Engineering Hallway - Center"; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"svK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security/glass{ - name = "Security Checkpoint" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark/textured, -/area/station/security/checkpoint) -"svN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"svW" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"svX" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/event_spawn, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/main) -"swj" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/toy/figure/captain, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"swn" = ( -/obj/structure/table/reinforced, -/obj/item/electropack, -/obj/item/assembly/signaler, -/obj/machinery/light/directional/west, -/obj/item/clothing/head/helmet/sec, -/turf/open/floor/iron/dark/red/side{ - dir = 1 - }, -/area/station/security/execution) -"swt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron/grimy, -/area/station/service/chapel) -"swx" = ( -/obj/machinery/light/directional/west, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron{ - dir = 8; - icon_state = "chapel" - }, -/area/station/service/chapel) -"swD" = ( -/obj/machinery/power/emitter, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/main) -"swR" = ( -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/mask/cigarette/cigar/cohiba{ - pixel_x = 6 - }, -/obj/item/clothing/mask/cigarette/cigar/havana{ - pixel_x = 2 - }, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = 4.5 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"swS" = ( -/obj/machinery/cryopod, -/obj/effect/turf_decal/siding/white, -/turf/open/floor/iron/dark, -/area/station/common/cryopods) -"swT" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/port/lesser) -"sxe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/shower{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/medical/morgue) -"sxs" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rndlab1"; - name = "Research and Development Shutter"; - dir = 4 - }, -/turf/open/floor/plating, -/area/station/science/lab) -"sxD" = ( -/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/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"sxR" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/engineering/main) -"sxV" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/bluespace_vendor/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"sye" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"syo" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/medical/cryo) -"sys" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/engineering/lobby) -"syB" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"syF" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"syG" = ( -/obj/structure/bed/roller, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"syJ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/computer/pod/old/mass_driver_controller/ordnancedriver{ - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"syK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"syO" = ( -/obj/machinery/cryopod, -/obj/effect/turf_decal/siding/white, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/common/cryopods) -"sze" = ( -/turf/open/floor/iron/dark/side{ - dir = 9 - }, -/area/station/security/prison) -"szg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"szn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/ai_monitored/command/storage/eva) -"szs" = ( -/obj/structure/disposalpipe/segment{ - 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/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/siding/yellow, -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"szz" = ( -/obj/effect/turf_decal/stripes/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/science/research) -"szC" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/locker) -"szF" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/clothing/glasses/meson/engine/tray, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"szG" = ( -/obj/effect/turf_decal/box/white, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/hfr_room) -"szH" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Central Hallway - Science Aft"; - name = "hallway camera" - }, -/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/machinery/bluespace_vendor/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"szM" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"szN" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"szP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "E.V.A. Storage" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/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/command/eva, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"sAm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"sAu" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"sAD" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"sAE" = ( -/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) -"sAS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/commons/toilet/locker) -"sAU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"sAV" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "External Airlock" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"sAY" = ( -/obj/effect/landmark/start/hangover/closet, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/delivery, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"sBc" = ( -/turf/open/floor/iron, -/area/station/engineering/lobby) -"sBk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/turf/open/floor/plating, -/area/station/engineering/atmos/mix) -"sBt" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "xeno8"; - name = "Creature Cell #8" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"sBy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"sBG" = ( -/obj/structure/cable, -/turf/open/floor/iron/checker, -/area/station/service/janitor) -"sBJ" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"sBP" = ( -/obj/structure/table/wood, -/obj/item/wrench, -/obj/item/storage/secure/briefcase{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/briefcase, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/theater/abandoned) -"sBX" = ( -/turf/closed/wall, -/area/station/service/bar) -"sCd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/shieldgen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/main) -"sCh" = ( -/obj/item/kirbyplants/random, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hop) -"sCj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment, -/turf/open/floor/catwalk_floor/iron, -/area/station/commons/dorms) -"sCl" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/chair/sofa/bench{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/fore) -"sCm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) -"sCo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"sCp" = ( -/turf/closed/wall, -/area/station/maintenance/starboard/greater) -"sCs" = ( -/obj/effect/spawner/random/vending/snackvend, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/south, -/obj/machinery/camera/directional/south{ - default_camera_icon = "Service - Cafeteria Aft"; - dir = 5; - name = "service camera" - }, -/turf/open/floor/iron/dark, -/area/station/service/cafeteria) -"sCw" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/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/science/research) -"sCx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/engine/atmos) -"sCC" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"sCE" = ( -/obj/structure/table/wood, -/obj/item/poster/random_contraband{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/poster/random_contraband{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/poster/random_contraband, -/turf/open/floor/wood, -/area/station/service/electronic_marketing_den) -"sCF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/half, -/area/station/service/hydroponics) -"sCO" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/toy/figure/rd, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/requests_console/directional/west{ - announcementConsole = 1; - department = "Research Director's Desk"; - departmentType = 5; - name = "Research Director's Requests Console"; - receive_ore_updates = 1 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"sCW" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/mining/glass{ - name = "Delivery Office" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/supply/mining, -/obj/effect/mapping_helpers/airlock/access/any/supply/shipping, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"sCY" = ( -/obj/structure/cable, -/obj/machinery/power/tracker, -/turf/open/floor/iron/solarpanel/airless, -/area/station/solars/port/fore) -"sDe" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/airalarm/directional/south, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"sDh" = ( -/obj/machinery/power/port_gen/pacman/pre_loaded, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"sDk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/random/trash/caution_sign, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: PRESSURIZED DOORS"; - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"sDp" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "xeno4"; - name = "Containment Control"; - req_access = list("xenobiology") - }, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"sDL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"sDV" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/white/corner, -/area/station/hallway/primary/aft) -"sDW" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"sDX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/medical/morgue) -"sEb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/computer/department_orders/science, -/turf/open/floor/iron, -/area/station/science/research) -"sEf" = ( -/obj/effect/landmark/start/security_officer, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/security/lockers) -"sEi" = ( -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/vault{ - pixel_y = 30 - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"sEm" = ( -/obj/structure/cable, -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) -"sEn" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"sEq" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/space) -"sEr" = ( -/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/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"sEs" = ( -/turf/closed/wall, -/area/station/command/heads_quarters/captain/private) -"sEt" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/hydroponics/constructable, -/obj/item/radio/intercom/directional/south, -/obj/machinery/camera/directional/east{ - c_tag = "Service - Hydroponics Front Aft"; - name = "service camera" - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"sEv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"sEQ" = ( -/obj/structure/bed/roller, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"sFb" = ( -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = 32 - }, -/obj/effect/spawner/random/trash/mess, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/security/detectives_office/private_investigators_office) -"sFf" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"sFp" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall8"; - location = "hall7" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"sFB" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"sFS" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/external{ - name = "External Solar Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/maintenance/solars/port/fore) -"sFX" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"sGd" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"sGi" = ( -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"sGj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "aiuploadwindow"; - name = "AI Upload Lockdown Door" - }, -/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/ai_monitored/turret_protected/ai_upload) -"sGk" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"sGl" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron, -/area/station/security/lockers) -"sGx" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"sGz" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/station/command/heads_quarters/hop) -"sGB" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/warning, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"sGJ" = ( -/obj/machinery/holopad/secure, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"sGO" = ( -/obj/effect/spawner/structure/window, -/obj/structure/curtain/cloth/fancy/mechanical{ - icon_state = "bounty-open"; - icon_type = "bounty"; - id = "prisoncell5"; - name = "curtain" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"sGR" = ( -/obj/machinery/light/small/directional/north, -/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/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"sGS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/structure/sign/barsign{ - pixel_y = 32 - }, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"sHl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"sHm" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"sHr" = ( -/obj/structure/chair/office, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/office) -"sHA" = ( -/obj/machinery/computer/crew{ - dir = 8 - }, -/obj/machinery/keycard_auth/directional/south{ - pixel_x = 8; - pixel_y = -38 - }, -/obj/machinery/requests_console/directional/east{ - announcementConsole = 1; - department = "Chief Medical Officer's Desk"; - departmentType = 5; - name = "Chief Medical Officer's Requests Console" - }, -/obj/machinery/light_switch/directional/south{ - pixel_x = -8 - }, -/obj/machinery/button/door/directional/south{ - id = "cmoshutter"; - name = "CMO Office Shutters"; - pixel_x = 6; - pixel_y = -26; - req_access = list("cmo") - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/cmo) -"sHC" = ( -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"sHL" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"sHM" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/station/holodeck/rec_center) -"sHO" = ( -/obj/machinery/door/airlock{ - name = "Bar" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/bar, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"sHQ" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"sHT" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"sIb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/engine/atmos) -"sIk" = ( -/obj/structure/railing, -/obj/structure/chair/sofa/bench/left{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"sIl" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/transit_tube/curved, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"sIp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"sIx" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Treatment Center" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron, -/area/station/medical/treatment_center) -"sID" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"sIE" = ( -/obj/effect/turf_decal/siding/white/corner, -/obj/machinery/duct, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"sIJ" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"sIK" = ( -/turf/open/floor/iron/dark/side, -/area/station/commons/fitness/recreation) -"sIO" = ( -/obj/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/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/supply/qm, -/obj/machinery/door/airlock/command/glass{ - name = "Quartermaster's Office" - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"sIP" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, -/obj/structure/sign/poster/random/directional/south, -/obj/machinery/power/port_gen/pacman/pre_loaded, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"sIR" = ( -/obj/effect/spawner/random/vending/snackvend, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"sIU" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/service/lawoffice) -"sIX" = ( -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/rd) -"sJc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"sJd" = ( -/obj/structure/cable, -/obj/item/kirbyplants/random, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/light_switch/directional/west, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"sJi" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "cargoload" - }, -/obj/structure/plasticflaps, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/cargo/storage) -"sJj" = ( -/obj/structure/flora/bush/ferny/style_random, -/obj/structure/flora/bush/style_random, -/obj/structure/flora/bush/jungle/a/style_random, -/turf/open/misc/grass, -/area/station/hallway/primary/fore) -"sJm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"sJo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Mech Bay" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/robotics, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"sJr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) -"sJt" = ( -/obj/effect/landmark/start/scientist, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"sJD" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"sJE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/medical/morgue) -"sJF" = ( -/obj/machinery/button/ignition/incinerator/atmos, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"sJH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/aft) -"sJM" = ( -/obj/structure/table/wood, -/obj/item/clothing/suit/justice, -/obj/item/clothing/head/helmet/justice/escape{ - name = "justice helmet" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/theater/abandoned) -"sJO" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"sJZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"sKb" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics - Air Supply"; - name = "atmospherics camera" - }, -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"sKg" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/clothing/gloves/color/latex, -/obj/item/surgical_drapes, -/obj/item/cautery, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"sKo" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"sKy" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/station/solars/starboard/aft) -"sKC" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"sKH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "medbay-passthrough" - }, -/obj/machinery/door/airlock/medical{ - name = "Psychology" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/psychology, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"sKP" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"sKW" = ( -/obj/structure/cable, -/obj/item/circuitboard/computer/secure_data, -/obj/structure/frame/computer{ - anchored = 1; - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/electronic_marketing_den) -"sLb" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/breakroom) -"sLd" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/security/checkpoint/customs/fore) -"sLe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"sLg" = ( -/obj/machinery/rnd/bepis, -/obj/effect/turf_decal/box/white, -/turf/open/floor/iron, -/area/station/cargo/storage) -"sLm" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/office) -"sLx" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/iron/grimy, -/area/station/maintenance/port/fore) -"sLy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"sLz" = ( -/obj/structure/cable, -/obj/machinery/door/airlock{ - name = "Custodial Closet" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/janitor, -/turf/open/floor/iron/checker, -/area/station/hallway/secondary/service) -"sLF" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock{ - name = "Primary Restroom" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/toilet/locker) -"sLK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Central Hallway - Fore Starboard"; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"sLT" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"sLV" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"sMa" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den) -"sMb" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/dark/brown/side{ - dir = 10 - }, -/area/station/security/prison/safe) -"sMk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Bathroom" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/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/medical/general, -/turf/open/floor/iron, -/area/station/medical/break_room) -"sMw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"sMx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"sMN" = ( -/obj/structure/bookcase/random/religion, -/obj/item/radio/intercom/directional/east{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "prison intercom"; - prison_radio = 1 - }, -/turf/open/floor/wood, -/area/station/security/prison) -"sMP" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"sMU" = ( -/obj/effect/turf_decal/tile/blue, -/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/fore) -"sMV" = ( -/obj/machinery/light/directional/north, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"sMX" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"sNe" = ( -/obj/structure/cable, -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"sNf" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/iron, -/area/station/cargo/storage) -"sNj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"sNl" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"sNy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"sNA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/security/detectives_office/private_investigators_office) -"sNJ" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/locker) -"sNK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"sNN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/bot, -/obj/item/holosign_creator/engineering, -/obj/item/multitool, -/turf/open/floor/iron, -/area/station/engineering/main) -"sNU" = ( -/obj/structure/reagent_dispensers/plumbed{ - dir = 1 - }, -/obj/effect/turf_decal/delivery/white{ - color = "#52B4E9" - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/main) -"sOi" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron/textured_large, -/area/station/engineering/atmos/project) -"sOk" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/spawner/random/entertainment/arcade{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"sOw" = ( -/obj/structure/table/glass, -/obj/item/book/manual/wiki/chemistry{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/book/manual/wiki/grenades, -/obj/item/clipboard{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/toy/figure/chemist{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"sOy" = ( -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/assembly/igniter, -/obj/item/assembly/timer{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"sOA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/obj/machinery/button/door/directional/west{ - id = "Dorm4"; - name = "Dormitory Door Lock"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"sON" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/janitorialcart{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/kitchen{ - dir = 1 - }, -/area/station/security/prison) -"sOS" = ( -/obj/item/trash/energybar, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/prison) -"sOZ" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/chair, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/theatre) -"sPo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"sPq" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/library) -"sPT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"sPV" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Unfiltered to Mix" - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/mix) -"sPZ" = ( -/obj/structure/weightmachine/stacklifter, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/commons/fitness/recreation) -"sQb" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"sQn" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/vending/clothing, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"sQq" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/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/research) -"sQr" = ( -/obj/item/kirbyplants/random, -/obj/machinery/newscaster/directional/north, -/obj/effect/turf_decal/siding/yellow{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"sQA" = ( -/turf/closed/wall, -/area/station/command/meeting_room/council) -"sQD" = ( -/obj/effect/turf_decal/stripes/white/line{ - color = "#52B4E9"; - name = "blue line" - }, -/turf/open/floor/iron/dark/blue/side, -/area/station/security/prison) -"sQJ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"sQM" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/service/salon) -"sQN" = ( -/obj/structure/railing{ - dir = 6 - }, -/obj/item/kirbyplants/random, -/obj/machinery/light/floor, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"sQQ" = ( -/obj/machinery/power/port_gen/pacman, -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"sQR" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/landmark/navigate_destination, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"sQU" = ( -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 4 - }, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"sRh" = ( -/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, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"sRj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating, -/area/station/service/library/abandoned) -"sRB" = ( -/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/dark, -/area/station/hallway/secondary/service) -"sRI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/theater) -"sRP" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/item/pen, -/obj/machinery/light/directional/east, -/obj/item/storage/box/monkeycubes, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/item/reagent_containers/dropper{ - pixel_y = 12 - }, -/obj/item/reagent_containers/dropper{ - pixel_y = 8 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"sRQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/security/brig) -"sSb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) -"sSh" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "cargoload" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor{ - id = "cargoload"; - name = "Supply Dock Loading Door" - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"sSn" = ( -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron/half{ - dir = 8 - }, -/area/station/engineering/atmos/project) -"sSw" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/graffiti, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"sSz" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"sSH" = ( -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"sSS" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron, -/area/station/service/library/abandoned) -"sSU" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Security Hallway - Center"; - name = "hallway camera" - }, -/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/starboard) -"sTe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/break_room) -"sTn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"sTq" = ( -/obj/structure/table, -/obj/machinery/computer/secure_data/laptop{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/blue/side, -/area/brigofficer) -"sTC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/research) -"sTK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"sTN" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"sTQ" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/chair/sofa/left{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/commons/lounge) -"sUh" = ( -/obj/structure/bed/pod, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron, -/area/service/salon) -"sUk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"sUx" = ( -/obj/structure/table/reinforced, -/obj/item/stack/package_wrap, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/item/stock_parts/cell/high, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"sUz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"sUA" = ( -/obj/structure/table_frame/wood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"sUC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/blue/side{ - dir = 1 - }, -/area/brigofficer) -"sUQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"sUX" = ( -/obj/structure/curtain/bounty, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/station/security/prison/rec) -"sVb" = ( -/obj/effect/spawner/random/vending/snackvend, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"sVj" = ( -/obj/machinery/announcement_system, -/obj/machinery/status_display/ai/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"sVm" = ( -/obj/structure/lattice, -/obj/structure/sign/warning/electric_shock/directional/east, -/turf/open/space/basic, -/area/space) -"sVv" = ( -/obj/structure/sign/departments/science/directional/west{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"sVH" = ( -/obj/effect/turf_decal/tile/purple, -/obj/structure/sign/warning/secure_area/directional/south, -/turf/open/floor/iron/white, -/area/station/science/research) -"sVI" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"sWe" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/science/research) -"sWo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 - }, -/obj/structure/mirror/directional/north, -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Service - Bar Backroom"; - name = "service camera" - }, -/turf/open/floor/iron/grimy, -/area/station/service/bar) -"sWs" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"sWu" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"sWx" = ( -/obj/machinery/recharge_station, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"sWB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/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, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"sWI" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Central Hallway - Starboard"; - name = "hallway camera" - }, -/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/central/fore) -"sWJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/turf/open/floor/plating, -/area/station/service/library/abandoned) -"sWM" = ( -/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/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/greater) -"sWO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"sWS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - name = "Virology Break Room" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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/medical/virology, -/turf/open/floor/iron, -/area/station/medical/virology) -"sXb" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"sXd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - aiControlDisabled = 1; - name = "Education Chamber" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/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/security/brig, -/turf/open/floor/iron/dark, -/area/station/security/execution) -"sXf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"sXg" = ( -/obj/machinery/computer/teleporter{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"sXk" = ( -/obj/machinery/light/directional/west, -/obj/machinery/status_display/ai/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/cmo) -"sXB" = ( -/obj/machinery/igniter/incinerator_ordmix, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"sXE" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/obj/structure/lattice/catwalk, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/turf/open/space/basic, -/area/space/nearstation) -"sXJ" = ( -/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/starboard) -"sXL" = ( -/obj/machinery/vending/hydronutrients, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"sXM" = ( -/obj/structure/cable, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"sXO" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron/fifty, -/obj/item/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"sXX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"sYk" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"sYq" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"sYt" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/spawner/random/maintenance/two, -/obj/structure/closet, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"sYw" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder{ - pixel_x = -4 - }, -/obj/item/pen{ - pixel_x = -4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "roboticsprivacy"; - name = "Robotics Shutters"; - dir = 4 - }, -/obj/machinery/door/window/left/directional/west{ - name = "Robotics Desk"; - req_access = list("robotics") - }, -/obj/machinery/door/window/left/directional/east, -/obj/effect/turf_decal/delivery, -/obj/structure/desk_bell{ - pixel_x = 7 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"sYD" = ( -/obj/effect/turf_decal/trimline/yellow/corner, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"sYF" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/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, -/area/station/security/range) -"sYG" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"sYJ" = ( -/obj/machinery/light/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/commons/locker) -"sYM" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/dark/brown/side{ - dir = 10 - }, -/area/station/security/prison/safe) -"sYU" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"sZe" = ( -/obj/machinery/space_heater, -/obj/effect/turf_decal/bot, -/obj/machinery/requests_console/directional/east{ - department = "Atmospherics"; - departmentType = 3; - name = "Atmospherics Requests Console" - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"sZg" = ( -/obj/structure/table/wood, -/obj/machinery/status_display/evac/directional/east, -/obj/item/book/manual/wiki/engineering_hacking, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"sZn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"sZt" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"sZB" = ( -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab" - }, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/structure/cable, -/obj/machinery/door/firedoor/heavy, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance_storage, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"sZE" = ( -/obj/machinery/door/airlock/freezer, -/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/mess) -"sZL" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"sZM" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L9" - }, -/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/aft) -"sZT" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = 32 - }, -/turf/open/floor/carpet/blue, -/area/station/commons/vacant_room/office) -"sZY" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"sZZ" = ( -/obj/structure/bed, -/obj/item/bedsheet/hos, -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Security - Head of Security's Quarters" - }, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hos) -"tac" = ( -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"tah" = ( -/obj/structure/table, -/obj/item/hand_tele, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/command/teleporter) -"taj" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 1 - }, -/turf/open/floor/circuit/green, -/area/station/science/robotics/mechbay) -"tax" = ( -/turf/closed/wall, -/area/station/engineering/break_room) -"taL" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/captain/private) -"taO" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/chair/sofa/bench/right{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/service/salon) -"taY" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"tbc" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/medical/break_room) -"tbm" = ( -/obj/structure/bed/pod, -/obj/machinery/light/warm/directional/north, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/service/salon) -"tbC" = ( -/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/cable, -/obj/structure/mirror/directional/north, -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/toilet/restrooms) -"tbF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"tbJ" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/carpet/red, -/area/station/hallway/secondary/service) -"tbK" = ( -/obj/structure/sign/directions/supply{ - dir = 4 - }, -/obj/structure/sign/directions/security{ - dir = 4; - pixel_y = 8 - }, -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_y = -8 - }, -/turf/closed/wall, -/area/station/hallway/primary/central/fore) -"tbL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/port_gen/pacman/pre_loaded, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"tbR" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/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/aft) -"tbZ" = ( -/obj/item/kirbyplants/random, -/obj/machinery/door_timer{ - id = "brig2"; - name = "Cell 2"; - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/red{ - 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/security/brig) -"tch" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"tcl" = ( -/obj/machinery/light/directional/south, -/obj/machinery/status_display/evac/directional/south, -/obj/structure/cable, -/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/commons/toilet/locker) -"tcp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "perma-entrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron, -/area/station/security/brig) -"tcr" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"tcx" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"tcy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"tcB" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"tcG" = ( -/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/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"tcH" = ( -/obj/structure/table/glass, -/obj/item/folder/yellow, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"tcJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/medical/morgue) -"tcT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/structure/sign/warning/vacuum/directional/north, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"tcZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/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/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"tdf" = ( -/obj/effect/decal/cleanable/dirt, -/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/starboard) -"tdi" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 10 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria, -/area/station/engineering/atmos) -"tdt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"tdz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/security/interrogation) -"ter" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/west, -/obj/machinery/airalarm/directional/south, -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/wrench, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"tew" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"teA" = ( -/obj/structure/displaycase/captain, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/captain) -"teH" = ( -/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) -"teJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/door/airlock/public/glass{ - name = "Aft Primary Hallway" - }, -/turf/open/floor/iron, -/area/station/medical/medbay/lobby) -"teK" = ( -/obj/machinery/photocopier, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"teY" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/ai_monitored/command/nuke_storage) -"tfp" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"tfq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"tfw" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Telecomms - Chamber Port"; - name = "telecomms camera"; - network = list("ss13","tcomms") - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"tfy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/mob/living/basic/cockroach, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) -"tfC" = ( -/obj/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/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"tgl" = ( -/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, -/area/station/engineering/break_room) -"tgq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"tgv" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/dropper, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron, -/area/station/science/lab) -"tgx" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/aft) -"tgG" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"tgT" = ( -/turf/closed/wall/r_wall, -/area/station/medical/virology) -"thf" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/space) -"thg" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/obj/item/borg/upgrade/rename, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"thh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departures Lounge" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/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/aft) -"thj" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"thn" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/wrench, -/obj/item/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"tho" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"tht" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"thz" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"thB" = ( -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/machinery/camera/directional/east{ - c_tag = "Virology - Cells"; - name = "virology camera"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"thI" = ( -/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/iron/dark/side, -/area/station/security/prison) -"thK" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"thL" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"thO" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"thY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron, -/area/station/medical/cryo) -"til" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"tiv" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/lesser) -"tiC" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"tiE" = ( -/obj/structure/closet/secure_closet/contraband/heads, -/obj/item/storage/secure/briefcase, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/aft) -"tiS" = ( -/obj/machinery/vending/wardrobe/chef_wardrobe, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"tjl" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"tjp" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"tjq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"tjY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"tki" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/cook, -/obj/effect/decal/cleanable/food/flour, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"tkl" = ( -/obj/structure/table, -/obj/item/storage/briefcase, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"tkp" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"tkr" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) -"tkx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"tkS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/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, -/area/station/hallway/secondary/exit/departure_lounge) -"tlq" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/computer/atmos_alert{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/storage/gas) -"tly" = ( -/obj/structure/rack, -/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/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"tlA" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"tlF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/service/theater) -"tlH" = ( -/obj/structure/sign/painting/library{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/station/service/library) -"tlJ" = ( -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 8 - }, -/obj/structure/punching_bag, -/turf/open/floor/iron/white, -/area/station/commons/fitness/recreation) -"tlK" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light/dim/directional/north, -/turf/open/floor/iron, -/area/station/service/abandoned_gambling_den/gaming) -"tlL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"tlM" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/secure_closet/smartgun, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"tlU" = ( -/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/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"tlV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"tmc" = ( -/obj/structure/chair/stool/directional/west, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) -"tme" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/meter, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"tmq" = ( -/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/medical/surgery/aft) -"tms" = ( -/obj/structure/cable, -/obj/machinery/computer/security, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"tmx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 8 - }, -/obj/machinery/pdapainter/supply, -/turf/open/floor/iron, -/area/station/cargo/qm) -"tmy" = ( -/obj/machinery/light/directional/north, -/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, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"tnj" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Medbay - Surgery A"; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/structure/cable, -/obj/structure/closet/crate/freezer/surplus_limbs, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/theatre) -"tns" = ( -/obj/structure/table/wood, -/obj/machinery/keycard_auth/directional/west, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hop) -"tnu" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"tnB" = ( -/turf/closed/wall/r_wall, -/area/station/science/ordnance/bomb) -"tnG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Antechamber" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/command/minisat, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"tnJ" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"tnL" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop{ - dir = 8; - pixel_y = 1 - }, -/obj/machinery/computer/security/telescreen/entertainment/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"tnQ" = ( -/obj/machinery/status_display/ai/directional/east, -/obj/machinery/light/directional/east, -/obj/machinery/rnd/production/protolathe/department/science, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/science/lab) -"toc" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron{ - dir = 8; - icon_state = "chapel" - }, -/area/station/service/chapel) -"tod" = ( -/turf/open/floor/carpet, -/area/station/service/library) -"tol" = ( -/obj/machinery/camera/directional/north, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/commons/fitness/recreation) -"tox" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/processing) -"toy" = ( -/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/tile/brown/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"toI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 8 - }, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"toK" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/aft) -"toL" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/paicard, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"toR" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/obj/machinery/atmospherics/components/binary/pump/off/yellow/visible{ - dir = 4; - name = "CO2 to Pure" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"toS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Cargo Bay" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron, -/area/station/cargo/office) -"tpe" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"tpn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/security/range) -"tpp" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"tpr" = ( -/obj/machinery/firealarm/directional/west, -/obj/structure/table, -/obj/item/storage/box/beakers, -/obj/item/storage/box/syringes{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/machinery/light_switch/directional/south{ - pixel_x = 8 - }, -/turf/open/floor/iron/checker, -/area/station/service/hydroponics) -"tpI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/spawner/random/entertainment/arcade{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"tpJ" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/station/security/courtroom) -"tpP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"tpZ" = ( -/turf/closed/wall, -/area/station/maintenance/starboard/fore) -"tqa" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"tqe" = ( -/obj/structure/sign/poster/contraband/kudzu{ - pixel_x = -32 - }, -/obj/machinery/light/directional/west, -/obj/structure/table, -/obj/machinery/reagentgrinder, -/turf/open/floor/iron/checker, -/area/station/service/hydroponics) -"tqg" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"tqn" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/siding/green/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"tqo" = ( -/turf/closed/wall, -/area/station/engineering/main) -"tqp" = ( -/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/security/prison/upper) -"tqt" = ( -/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/commons/locker) -"tqG" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"tqO" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/firealarm/directional/west, -/obj/machinery/flasher/portable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"tqU" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"tqX" = ( -/obj/machinery/light/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/security/prison) -"trd" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/grimy, -/area/station/service/bar) -"tre" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"trf" = ( -/obj/structure/table/wood, -/obj/item/clothing/mask/cigarette/cigar/cohiba{ - pixel_x = 3 - }, -/obj/item/clothing/mask/cigarette/cigar/havana{ - pixel_x = -3 - }, -/obj/item/clothing/mask/cigarette/cigar, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"trg" = ( -/obj/effect/turf_decal/loading_area, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/lab) -"trk" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"trn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"trw" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/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/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"trC" = ( -/obj/item/reagent_containers/food/condiment/enzyme{ - layer = 5 - }, -/obj/item/kitchen/rollingpin, -/obj/structure/table, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 5 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"trI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/bluespace_vendor/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"trR" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/trinary/mixer/airmix/inverse, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"trT" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) -"trV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/holopad/secure, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hos) -"tsa" = ( -/obj/machinery/atmospherics/components/binary/pump/layer2{ - dir = 8; - name = "Gas to Chamber" - }, -/obj/machinery/atmospherics/components/binary/pump/layer4{ - dir = 4; - name = "Chamber to Cooling" - }, -/obj/effect/turf_decal/box, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"tse" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/brown/side{ - dir = 6 - }, -/area/station/security/prison/safe) -"tsj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair/comfy/brown, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) -"tsl" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/wall/r_wall, -/area/station/science/xenobiology) -"tsm" = ( -/obj/item/storage/pod{ - pixel_x = 32 - }, -/obj/effect/landmark/secequipment, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/office) -"tss" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"tsu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"tsz" = ( -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den/gaming) -"tsB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/dark/visible, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/meter, -/turf/open/floor/iron, -/area/station/engineering/atmos/mix) -"tsG" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder/yellow{ - pixel_x = -6 - }, -/obj/item/pen{ - pixel_x = -6 - }, -/obj/machinery/door/window/left/directional/south{ - dir = 1; - req_access = list("cargo") - }, -/obj/effect/turf_decal/delivery, -/obj/structure/desk_bell{ - pixel_x = 7 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"tsL" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/closet/crate/hydroponics, -/obj/item/wrench, -/obj/item/shovel/spade, -/obj/item/wirecutters, -/obj/effect/turf_decal/box, -/obj/machinery/firealarm/directional/north, -/obj/item/reagent_containers/glass/watering_can, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"tsU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"tsY" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Chemistry - Center"; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/structure/cable, -/obj/machinery/newscaster/directional/south, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"tte" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/mineral/plasma{ - amount = 20 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"tti" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"ttz" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/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, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/medical/break_room) -"ttE" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/ce) -"ttF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/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/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"ttH" = ( -/obj/structure/closet/secure_closet/contraband/armory, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/spawner/random/maintenance/three, -/obj/effect/spawner/random/contraband/armory, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"ttJ" = ( -/turf/closed/wall, -/area/station/security/execution) -"ttO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"ttP" = ( -/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/closet/crate, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"ttU" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/airalarm/directional/south, -/obj/machinery/camera/directional/west{ - c_tag = "Library Backroom 1"; - dir = 2; - name = "library camera" - }, -/turf/open/floor/iron/dark, -/area/station/service/library) -"ttY" = ( -/obj/structure/table/wood, -/obj/machinery/cell_charger, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"tug" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"tun" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) -"tup" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Theater Maintenance" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/theatre, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"tuG" = ( -/obj/machinery/light/directional/east, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"tuI" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"tuQ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"tvj" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/library) -"tvk" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"tvr" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Medbay - Center"; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"tvs" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"tvF" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access" - }, -/obj/effect/landmark/navigate_destination, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-right" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"tvG" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"tvJ" = ( -/obj/structure/table/wood, -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/mask/cigarette/cigar/cohiba{ - pixel_x = 6 - }, -/obj/item/clothing/mask/cigarette/cigar/havana{ - pixel_x = 2 - }, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = 4.5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hos) -"tvO" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron, -/area/station/commons/locker) -"tvP" = ( -/obj/item/retractor, -/obj/item/hemostat, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"tvQ" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"twd" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/white/corner, -/area/station/hallway/primary/aft) -"twh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"twl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/obj/item/kirbyplants/random, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/plating, -/area/station/security/detectives_office/private_investigators_office) -"twt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"tww" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"twF" = ( -/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/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/science/research) -"twN" = ( -/turf/open/floor/iron/white/side{ - dir = 8 - }, -/area/station/commons/fitness/recreation) -"twP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/flasher/directional/north{ - id = "brig1" - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"twZ" = ( -/obj/machinery/computer/message_monitor{ - dir = 4 - }, -/obj/item/paper/monitorkey, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"txd" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/item/stock_parts/scanning_module{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"txe" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/toy/figure/scientist, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"txi" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"txC" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/tcommsat/server) -"txH" = ( -/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/tile/purple/half/contrasted, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"txK" = ( -/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/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"txX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"tyj" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/table/reinforced, -/obj/item/t_scanner, -/obj/item/pipe_dispenser, -/obj/effect/turf_decal/bot, -/obj/item/pipe_dispenser, -/obj/item/storage/belt/utility, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"tyl" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/toy/figure/hos, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"tym" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"tyt" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"tyK" = ( -/obj/machinery/vending/wardrobe/jani_wardrobe, -/turf/open/floor/iron/dark, -/area/station/service/janitor) -"tyL" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/components/trinary/filter/atmos/o2, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"tyN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"tyU" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den/gaming) -"tyV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"tyY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos/hfr_room) -"tza" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/grimy, -/area/station/commons/dorms) -"tzb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/library) -"tzm" = ( -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"tzv" = ( -/obj/structure/lattice/catwalk, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/turf/open/space, -/area/station/ai_monitored/aisat/exterior) -"tzK" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8 - }, -/obj/machinery/airlock_sensor/incinerator_ordmix{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/turf/open/floor/engine, -/area/station/science/ordnance/burnchamber) -"tzS" = ( -/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/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/vault{ - name = "Vault Door" - }, -/obj/structure/sign/warning/electric_shock/directional/south, -/obj/structure/sign/warning/secure_area/directional/north, -/obj/effect/landmark/navigate_destination, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/vault, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"tAp" = ( -/obj/machinery/chem_heater/withbuffer, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"tAt" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"tAu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"tAA" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 12 - }, -/obj/effect/turf_decal/siding/green/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/east{ - c_tag = "Garden" - }, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"tAM" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Air to Ports" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/siding/yellow/corner, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"tAP" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/engineering/lobby) -"tAR" = ( -/obj/machinery/light/directional/north, -/obj/machinery/status_display/evac/directional/north, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/medical/virology) -"tAW" = ( -/obj/structure/closet/bombcloset/security, -/obj/effect/turf_decal/bot_blue, -/obj/item/clothing/suit/bomb_suit/security, -/obj/item/clothing/suit/bomb_suit/security, -/obj/item/clothing/head/bomb_hood/security, -/obj/item/clothing/head/bomb_hood/security, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"tBg" = ( -/obj/structure/table/reinforced, -/obj/machinery/firealarm/directional/south{ - pixel_x = -26 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/warden) -"tBm" = ( -/obj/structure/chair/stool/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"tBs" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/siding/yellow{ - dir = 6 - }, -/obj/structure/dresser, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"tBt" = ( -/obj/machinery/light/directional/east, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/structure/sign/warning/bodysposal/directional/east, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"tBx" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb, -/obj/machinery/camera/directional/east{ - c_tag = "Science - Break Room"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/breakroom) -"tBE" = ( -/obj/machinery/vending/wardrobe/sec_wardrobe, -/obj/structure/sign/poster/official/do_not_question{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/security/lockers) -"tBJ" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/chemist, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/medical/pharmacy) -"tBW" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plating, -/area/station/security/prison/upper) -"tBX" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"tCc" = ( -/obj/effect/turf_decal/tile/neutral{ - 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/fore) -"tCe" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"tCj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Chapel Hall" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/chapel) -"tCk" = ( -/obj/machinery/computer/cargo{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/office) -"tCm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"tCs" = ( -/turf/closed/wall, -/area/station/service/janitor) -"tCI" = ( -/obj/machinery/telecomms/server/presets/command, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"tCJ" = ( -/obj/effect/landmark/start/paramedic, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"tCQ" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"tCS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"tCY" = ( -/obj/structure/cable, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"tDo" = ( -/obj/structure/disposalpipe/segment, -/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/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"tDs" = ( -/turf/closed/wall, -/area/station/service/electronic_marketing_den) -"tDw" = ( -/turf/open/misc/grass, -/area/station/hallway/primary/fore) -"tDx" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/storage) -"tDB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"tDD" = ( -/obj/machinery/computer/shuttle/mining{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"tDL" = ( -/obj/docking_port/stationary{ - dheight = 3; - dir = 8; - dwidth = 8; - height = 11; - id = "ferry_home"; - name = "Port Bay 2"; - width = 20 - }, -/turf/open/space/basic, -/area/space) -"tDT" = ( -/obj/machinery/computer/operating{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"tDU" = ( -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/qm) -"tEc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/delivery, -/obj/structure/tank_holder/emergency_oxygen, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"tEd" = ( -/obj/machinery/flasher/directional/south{ - id = "AI"; - pixel_x = 26 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"tEh" = ( -/obj/structure/sign/directions/evac{ - pixel_y = -8 - }, -/obj/structure/sign/directions/medical{ - dir = 1 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = 8 - }, -/turf/closed/wall, -/area/station/hallway/secondary/exit/departure_lounge) -"tEj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/spawner/random/engineering/atmospherics_portable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"tEt" = ( -/obj/machinery/light/directional/south, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"tEv" = ( -/obj/structure/cable, -/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/white, -/area/station/medical/medbay/central) -"tEw" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/flashlight/lamp, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"tEC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - 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/science/research) -"tEE" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/keycard_auth, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"tEF" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/table/reinforced, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"tEI" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigfront"; - name = "Brig Blast Door" - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/security/brig) -"tEK" = ( -/obj/machinery/computer/security{ - dir = 4 - }, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/holding_cell) -"tEN" = ( -/obj/structure/table/optable, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/obj/machinery/light/cold/directional/east, -/obj/effect/gibspawner/human/bodypartless, -/turf/open/floor/iron/white/side{ - dir = 8 - }, -/area/station/service/kitchen/abandoned) -"tET" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/iron{ - dir = 4; - icon_state = "chapel" - }, -/area/station/service/chapel) -"tEW" = ( -/obj/effect/turf_decal/tile/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 = 10 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"tEX" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"tFc" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"tFg" = ( -/obj/machinery/light/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Central Hallway - Medbay Aft"; - name = "hallway camera" - }, -/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, -/area/station/hallway/primary/central/aft) -"tFm" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"tFn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"tFo" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"tFp" = ( -/obj/effect/turf_decal/siding/wood/corner{ - dir = 8 - }, -/obj/structure/sign/poster/official/random/directional/west, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"tFE" = ( -/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) -"tFF" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"tFO" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/iron/dark, -/area/station/security/execution) -"tFQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"tGd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/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/greater) -"tGf" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"tGj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"tGm" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/plasteel/fifty, -/obj/item/stack/sheet/rglass{ - amount = 50; - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/stock_parts/cell/emproof{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/newscaster/directional/east, -/obj/item/mod/module/plasma_stabilizer, -/obj/item/mod/module/thermal_regulator, -/obj/item/mod/module/magboot, -/turf/open/floor/iron, -/area/station/engineering/storage) -"tGp" = ( -/obj/machinery/mecha_part_fabricator, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"tGr" = ( -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/engineering/supermatter) -"tGt" = ( -/turf/closed/wall, -/area/station/service/lawoffice) -"tGD" = ( -/obj/effect/spawner/random/trash/bin, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"tGU" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/processing) -"tHf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"tHj" = ( -/obj/structure/cable, -/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, -/area/station/command/gateway) -"tHu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Warden's Office" - }, -/obj/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/security/armory, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/warden) -"tHw" = ( -/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, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/qm, -/obj/machinery/door/airlock/command/glass{ - name = "Quartermaster's Office" - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"tHB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/closet/bombcloset, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"tHC" = ( -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/newscaster/directional/west, -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"tHF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"tHK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/service/library) -"tHQ" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"tIb" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light_switch/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"tIt" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/service/salon) -"tIJ" = ( -/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/commons/fitness/recreation) -"tIK" = ( -/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, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/storage) -"tIP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/hallway/secondary/construction) -"tIS" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - 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/aft) -"tJi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/sign/warning/vacuum/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"tJk" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"tJo" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Cooling Bypass" - }, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"tJq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"tJt" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"tJz" = ( -/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/medbay/central) -"tJE" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) -"tJG" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/robotics/lab) -"tJP" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ - dir = 9 - }, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"tJU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"tJZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/main) -"tKb" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"tKi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Recreational Area" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/commons/dorms) -"tKj" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"tKo" = ( -/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, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"tKq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) -"tKv" = ( -/obj/machinery/mech_bay_recharge_port{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/science/robotics/mechbay) -"tKA" = ( -/obj/structure/table/reinforced, -/obj/machinery/camera/directional/west{ - c_tag = "Research Division - Circuits Lab"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/multitool{ - pixel_x = -4; - pixel_y = -2 - }, -/obj/item/multitool{ - pixel_x = 4; - pixel_y = 2 - }, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"tKF" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"tKH" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/item/bot_assembly/medbot, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"tKM" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/commons/dorms) -"tKV" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"tLa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"tLb" = ( -/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/requests_console/directional/east, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/theater) -"tLg" = ( -/obj/structure/table/reinforced, -/obj/item/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/assembly/signaler, -/obj/item/assembly/signaler, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"tLp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"tLr" = ( -/obj/structure/table/glass, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"tLy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"tLC" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter/room) -"tLI" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/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/science/research) -"tLN" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"tLU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"tLW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"tMl" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/chief_engineer, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"tMn" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"tMo" = ( -/obj/structure/bed{ - dir = 4 - }, -/obj/item/bedsheet/hop{ - dir = 4 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hop) -"tMA" = ( -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"tMF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/hydroponics/glass{ - name = "Hydroponics" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"tMK" = ( -/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, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"tML" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"tMN" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/chair/sofa/bench/right{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"tNa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"tNm" = ( -/obj/structure/table/reinforced, -/obj/item/gun/energy/laser/practice{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/gun/energy/laser/practice, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/ears/earmuffs, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/security/range) -"tNn" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/requests_console/directional/south{ - department = "Mining"; - name = "Mining Requests Console" - }, -/obj/machinery/requests_console/directional/south{ - department = "Mining"; - name = "Mining Requests Console" - }, -/obj/machinery/camera/directional/south{ - c_tag = "Cargo - Mining Dock"; - name = "cargo camera" - }, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"tNu" = ( -/turf/closed/wall, -/area/station/hallway/primary/fore) -"tNE" = ( -/obj/structure/weightmachine/stacklifter, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/station/commons/fitness/recreation) -"tNF" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"tNJ" = ( -/obj/structure/table/reinforced, -/obj/item/stack/rods/fifty, -/obj/item/wrench, -/obj/item/storage/box/lights/mixed, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"tNL" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) -"tNO" = ( -/obj/machinery/door/window/right/directional/west{ - name = "Stage Access"; - req_access = list("theatre") - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/theater) -"tNT" = ( -/obj/structure/closet/wardrobe/white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"tNV" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"tNZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/holding_cell) -"tOd" = ( -/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/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"tOf" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/duct, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/grimy, -/area/station/service/bar) -"tOm" = ( -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Solar Access" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/maintenance/solars/starboard/fore) -"tOs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover/closet, -/obj/effect/turf_decal/siding/wood, -/obj/structure/closet/secure_closet/personal/cabinet{ - name = "clown's closet" - }, -/obj/machinery/light_switch/directional/west{ - pixel_y = -6 - }, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/wood, -/area/station/service/theater) -"tOy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/main) -"tOz" = ( -/obj/machinery/stasis{ - dir = 4 - }, -/obj/machinery/defibrillator_mount/directional/west, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"tOE" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Engineering - Supermatter Emitters"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/power/emitter{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"tOM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/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/aft) -"tOP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/brig) -"tOY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"tPc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Command Hallway" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"tPk" = ( -/obj/structure/lattice/catwalk, -/obj/effect/landmark/xeno_spawn, -/turf/open/space, -/area/station/solars/port/aft) -"tPl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"tPr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lawyerprivacy"; - name = "Lawyer's Privacy Shutter"; - dir = 1 - }, -/turf/open/floor/plating, -/area/station/service/lawoffice) -"tPB" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/disks{ - pixel_x = 6; - pixel_y = 9 - }, -/obj/item/storage/box/bodybags{ - pixel_x = -4; - pixel_y = -1 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"tPD" = ( -/obj/machinery/biogenerator, -/obj/item/reagent_containers/glass/watering_can, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics/garden) -"tPE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"tPG" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"tPS" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"tPY" = ( -/obj/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/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"tQp" = ( -/obj/structure/table/wood, -/obj/machinery/door/firedoor, -/obj/item/storage/box/matches{ - pixel_y = 5 - }, -/obj/structure/desk_bell{ - pixel_x = 7; - pixel_y = 10 - }, -/turf/open/floor/iron/dark/smooth_half{ - dir = 1 - }, -/area/station/service/bar) -"tQz" = ( -/obj/machinery/door/poddoor/incinerator_atmos_main, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"tQP" = ( -/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/tile/purple/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/storage) -"tQW" = ( -/obj/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, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/storage) -"tQY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"tRa" = ( -/obj/structure/table/reinforced, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/effect/spawner/random/maintenance, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"tRb" = ( -/obj/item/clothing/gloves/cut, -/obj/effect/decal/remains/human{ - desc = "They look like human remains. The bones are charred and burned."; - name = "charred remains" - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"tRf" = ( -/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/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/structure/closet/crate/internals, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"tRg" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"tRh" = ( -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 8; - name = "Waste Release" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"tRo" = ( -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/item/food/meat/slab/human{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/food/meat/slab/human, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"tRO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/iron, -/area/station/commons/vacant_room) -"tRV" = ( -/obj/structure/dresser, -/obj/item/storage/secure/safe/directional/east, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"tSj" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"tSs" = ( -/obj/machinery/stasis, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/defibrillator_mount/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"tSH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"tSV" = ( -/obj/structure/chair/pew/right, -/turf/open/floor/iron{ - dir = 8; - icon_state = "chapel" - }, -/area/station/service/chapel) -"tTb" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/light/directional/west, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"tTd" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/west, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/aft) -"tTe" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/obj/item/bodypart/l_leg/robot, -/obj/item/bodypart/r_leg/robot, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"tTf" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/light/directional/north, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"tTg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"tTj" = ( -/obj/structure/plaque/static_plaque/golden/captain{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"tTn" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"tTy" = ( -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/crowbar, -/obj/item/paicard, -/obj/effect/turf_decal/bot, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"tTQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/blue, -/area/brigofficer) -"tUc" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"tUg" = ( -/obj/structure/closet/toolcloset, -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"tUl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"tUs" = ( -/obj/machinery/door/window/right/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution) -"tUB" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "permainner"; - name = "Permabrig Transfer" - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark, -/area/station/security/prison) -"tUL" = ( -/obj/effect/turf_decal/stripes/box, -/obj/machinery/light, -/obj/structure/table/reinforced, -/obj/machinery/processor{ - pixel_y = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/mess) -"tVb" = ( -/obj/item/kirbyplants/random, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"tVz" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"tVC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover/closet, -/obj/structure/closet/secure_closet/personal/cabinet{ - name = "clown's closet" - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"tVH" = ( -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/science) -"tVR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark/corner, -/area/station/maintenance/disposal/incinerator) -"tWd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"tWg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Primary Hallway" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"tWl" = ( -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"tWv" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"tWw" = ( -/obj/effect/decal/cleanable/glass, -/obj/item/shard, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"tWA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/warden) -"tWD" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/emergency{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/emergency, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/machinery/light_switch/directional/west, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"tWG" = ( -/obj/structure/closet/secure_closet/freezer/meat{ - req_access = null - }, -/obj/item/food/meat/slab/chicken, -/obj/item/food/meat/slab/chicken, -/obj/item/food/meat/slab/chicken, -/obj/item/food/meat/slab/chicken, -/obj/item/food/meat/slab/monkey, -/obj/item/food/meat/slab/monkey, -/obj/item/food/meat/slab/monkey, -/obj/item/food/meat/slab/monkey, -/obj/item/food/meat/rawbacon, -/obj/item/food/meat/rawbacon, -/obj/item/food/meat/rawbacon, -/obj/item/food/meat/rawbacon, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/security/prison/mess) -"tWI" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/door/window/left/directional/west{ - name = "Hydroponics Desk"; - req_access = list("hydroponics") - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"tWU" = ( -/obj/effect/turf_decal/siding/green{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"tXa" = ( -/obj/structure/table/wood, -/obj/machinery/light/directional/west, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"tXi" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"tXu" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"tXy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/greater) -"tXI" = ( -/turf/open/floor/plating, -/area/station/science/research/abandoned) -"tXJ" = ( -/obj/structure/falsewall, -/turf/open/floor/plating, -/area/station/security/prison) -"tXL" = ( -/obj/structure/cable, -/obj/machinery/camera{ - c_tag = " Prison - (East) Brown Wing"; - network = list("ss13","prison") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/button/curtain{ - id = "prisoncell9"; - pixel_x = 22; - pixel_y = -22 - }, -/turf/open/floor/iron/dark/side{ - dir = 6 - }, -/area/station/security/prison) -"tXQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"tYd" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Mix to Distro" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"tYe" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"tYl" = ( -/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/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"tYu" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 6 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/cafeteria{ - dir = 8 - }, -/area/station/engineering/atmos/pumproom) -"tYy" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/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) -"tYX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/commons/dorms) -"tYY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/east, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"tZa" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/requests_console/directional/south{ - department = "Engineering"; - departmentType = 3; - name = "Engineering Requests Console" - }, -/obj/structure/sign/poster/official/do_not_question{ - pixel_x = 32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/engineering/main) -"tZd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"tZj" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"tZw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"tZy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"tZD" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/medical/break_room) -"tZN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/large, -/area/station/service/hydroponics) -"uab" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"uag" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=arrivals3"; - location = "arrivals2" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"uam" = ( -/obj/effect/decal/cleanable/dirt, -/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/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"uao" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/mob/living/simple_animal/hostile/retaliate/goat{ - name = "Pete" - }, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"uaq" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"uau" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"uaz" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/random/clothing/costume, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/bot_red, -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/iron/white, -/area/station/maintenance/fore) -"uaA" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Security's Office" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/security/hos, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"uaF" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/kitchen{ - dir = 1 - }, -/area/station/security/prison) -"uaR" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/chair/comfy{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/maintenance/department/science) -"uaS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/rack_parts, -/obj/effect/spawner/random/engineering/tool, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"uaV" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/west, -/obj/item/radio/intercom/directional/north, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/aft) -"uaY" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"ubk" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"ubr" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = -32 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"ubs" = ( -/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_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"ubz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"ubE" = ( -/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/lesser) -"ubJ" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/structure/closet/emcloset, -/turf/open/floor/iron, -/area/station/medical/virology) -"ubL" = ( -/obj/structure/curtain/cloth/fancy/mechanical{ - icon_state = "bounty-open"; - icon_type = "bounty"; - id = "prisoncell7"; - name = "curtain" - }, -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"ubM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/rack, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/wirecutters, -/obj/item/crowbar, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"ubS" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"ucf" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/morgue) -"uch" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 9 - }, -/turf/open/space/basic, -/area/space/nearstation) -"uck" = ( -/obj/structure/chair/office, -/obj/machinery/newscaster/directional/east, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"ucv" = ( -/obj/effect/turf_decal/trimline/yellow/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"ucA" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/photocopier, -/turf/open/floor/iron/grimy, -/area/station/commons/vacant_room/office) -"ucR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/security/prison) -"ucW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/firealarm/directional/south, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"ucZ" = ( -/obj/structure/table/wood, -/obj/item/paper_bin/carbon, -/obj/item/stamp/hop, -/obj/machinery/requests_console/directional/north{ - announcementConsole = 1; - department = "Head of Personnel's Desk"; - departmentType = 5; - name = "Head of Personnel's Requests Console" - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"udb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/lockers) -"udc" = ( -/obj/structure/table, -/obj/machinery/light/directional/north, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/east, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"udk" = ( -/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/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"udl" = ( -/obj/structure/closet/radiation, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"udm" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/security/courtroom) -"udr" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"udB" = ( -/obj/structure/sign/departments/medbay/alt/directional/east, -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"udE" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/medical/morgue) -"udG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"uec" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"uex" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"ueB" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/requests_console/directional/west, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"ueJ" = ( -/turf/open/floor/iron/half, -/area/station/service/hydroponics) -"ueM" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "rdxeno"; - name = "Xenobiology Containment Control"; - pixel_x = -7; - pixel_y = 7; - req_access = list("rd") - }, -/obj/machinery/button/door{ - id = "rdordnance"; - name = "Ordnance Containment Control"; - pixel_x = -7; - pixel_y = -4; - req_access = list("rd") - }, -/obj/machinery/button/door{ - id = "rdrnd"; - name = "Research and Development Containment Control"; - pixel_x = 7; - pixel_y = 7; - req_access = list("rd") - }, -/obj/machinery/button/door{ - id = "rdoffice"; - name = "Privacy Control"; - pixel_x = 7; - pixel_y = -4; - req_access = list("rd") - }, -/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/command/heads_quarters/rd) -"ueU" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/storage) -"ueW" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/cable, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"ufm" = ( -/obj/machinery/iv_drip, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"ufO" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"ufR" = ( -/turf/closed/wall/r_wall, -/area/station/security/warden) -"ufS" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/dark/red/side, -/area/station/security/execution) -"ugc" = ( -/obj/effect/spawner/random/engineering/atmospherics_portable, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/department/engine/atmos) -"ugh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron, -/area/station/engineering/main) -"ugi" = ( -/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, -/area/station/service/electronic_marketing_den) -"ugq" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/prison/rec) -"ugr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"ugu" = ( -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, -/obj/structure/chair/stool/directional/south, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/iron/grimy, -/area/station/maintenance/port/fore) -"ugv" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Service Hall" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/general, -/turf/open/floor/iron/checker, -/area/station/hallway/secondary/service) -"ugA" = ( -/obj/machinery/light_switch/directional/south{ - pixel_x = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/south{ - pixel_x = -4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"ugF" = ( -/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{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Atmospherics - HFR"; - name = "atmospherics camera" - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"ugL" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"ugO" = ( -/obj/structure/table/reinforced/rglass, -/obj/item/hairbrush, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/item/lipstick/random, -/turf/open/floor/iron, -/area/service/salon) -"ugT" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Circuits Lab Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/research, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"uhb" = ( -/turf/closed/wall/r_wall, -/area/station/science/xenobiology) -"uhg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"uhk" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: BLAST DOORS" - }, -/turf/closed/wall/r_wall, -/area/station/command/gateway) -"uhl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/evac/directional/west, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Arrivals Dock - Aft Starboard"; - name = "dock camera" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"uhw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - name = "Virology Access" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/turf/open/floor/iron, -/area/station/medical/virology) -"uhC" = ( -/obj/structure/cable, -/obj/machinery/light/small/directional/north, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/item/radio/intercom/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Solar - Fore Starboard"; - name = "solar camera" - }, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"uhG" = ( -/obj/machinery/porta_turret/ai, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/firealarm/directional/north, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"uhH" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/command/bridge) -"uhV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/commons/vacant_room/commissary) -"uhY" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"uil" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"uiv" = ( -/obj/structure/reagent_dispensers/fueltank/large, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron/textured, -/area/station/engineering/atmos) -"uiH" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/processing) -"uiK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"uiP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/dark/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/mix) -"uja" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"ujt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"ujw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/library) -"ukl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Security Transferring Center" - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/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/security/general, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"uko" = ( -/obj/structure/bookcase/random/fiction, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"ukz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/poddoor/shutters{ - id = "custodialshutters"; - name = "Custodial Closet Shutters"; - dir = 1 - }, -/turf/open/floor/iron/dark/textured_half, -/area/station/service/janitor) -"ukN" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/aisat/exterior) -"ukR" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"ulb" = ( -/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/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"ult" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/transit_tube/curved/flipped{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/transit_tube) -"ulF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - 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/plating, -/area/station/maintenance/starboard/aft) -"ulH" = ( -/obj/structure/railing, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/wood, -/area/station/service/theater) -"ulQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/north{ - c_tag = "Arrivals - Garden Access"; - dir = 9; - name = "arrivals camera" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"ulU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/table, -/obj/item/clothing/mask/gas, -/obj/item/wrench, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"ulW" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"umb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xenosecure"; - name = "Secure Pen Shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"umc" = ( -/turf/open/floor/iron/grimy, -/area/station/service/abandoned_gambling_den) -"umf" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"umm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"umu" = ( -/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 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"umv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/mob/living/basic/cockroach, -/turf/open/floor/iron/grimy, -/area/station/commons/vacant_room/office) -"umz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"umG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/locker) -"umN" = ( -/turf/closed/wall, -/area/station/commons/vacant_room) -"umQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"umZ" = ( -/obj/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/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"unh" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"uni" = ( -/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/tile/brown/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"unj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"unm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Recreational Area" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"unt" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/duct, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/engineering/main) -"unK" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"unL" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"unO" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"unU" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "hopblast"; - name = "HoP Blast Door" - }, -/obj/machinery/door/window/brigdoor/left/directional/east{ - name = "Access Desk"; - req_access = list("hop") - }, -/obj/machinery/door/window/right/directional/west{ - name = "Access Queue" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"uot" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Arrivals - Fore Center"; - name = "arrivals camera" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"uoz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"uoC" = ( -/obj/structure/rack, -/obj/item/stack/sheet/iron{ - amount = 30 - }, -/obj/item/stack/package_wrap, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"uoJ" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"uoO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table/wood/fancy/green, -/obj/effect/spawner/random/aimodule/harmless, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) -"uoU" = ( -/obj/structure/displaycase/trophy, -/turf/open/floor/wood, -/area/station/service/library) -"uoV" = ( -/obj/effect/spawner/random/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"upa" = ( -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"upb" = ( -/obj/structure/sign/poster/official/science{ - pixel_x = -32 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"upp" = ( -/obj/item/kirbyplants/random, -/obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat_interior"; - name = "Antechamber Turret Control"; - pixel_x = -32; - req_access = list("minisat") - }, -/obj/machinery/camera/directional/west{ - c_tag = "AI Satellite - Teleporter"; - name = "ai camera"; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"upB" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"upC" = ( -/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/machinery/button/door/directional/north{ - id = "gatewayshutters"; - name = "Gateway Shutters"; - req_access = list("command") - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"upG" = ( -/obj/structure/table/reinforced, -/obj/item/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"upM" = ( -/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/prison) -"upQ" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Departures Hallway - Center"; - name = "hallway camera" - }, -/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) -"upX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"uqg" = ( -/turf/open/floor/iron{ - icon_state = "chapel" - }, -/area/station/service/chapel) -"uqk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"uql" = ( -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/commons/fitness/recreation) -"uqt" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/service/library, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"uqx" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"uqH" = ( -/obj/effect/turf_decal/tile/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 = 5 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"uqJ" = ( -/obj/machinery/light/directional/north, -/obj/item/kirbyplants/random, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"uqK" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"uqX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/wood, -/area/station/service/theater) -"urd" = ( -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"urh" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/end{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"url" = ( -/obj/structure/disposalpipe/segment{ - 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/genetics) -"urq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"urM" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"urN" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"urR" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"urV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/spawner/random/engineering/tracking_beacon, -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"urY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"usp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/structure/tank_holder/extinguisher, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"usD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"usF" = ( -/obj/machinery/disposal/bin, -/obj/structure/cable, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"usG" = ( -/obj/structure/bodycontainer/crematorium{ - dir = 4; - id = "cremawheat" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"usJ" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"usR" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"utk" = ( -/obj/machinery/newscaster/directional/north, -/obj/structure/table/wood, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/kitchen/abandoned) -"uto" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"utN" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"utO" = ( -/obj/structure/disposalpipe/segment, -/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, -/area/station/hallway/secondary/entry) -"uuf" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"uuh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/commons/dorms) -"uuj" = ( -/obj/structure/table/reinforced, -/obj/item/taperecorder, -/obj/item/restraints/handcuffs, -/obj/item/flashlight/lamp, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark/red/side{ - dir = 1 - }, -/area/station/security/execution) -"uum" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"uun" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/kitchen{ - dir = 1 - }, -/area/station/security/prison) -"uup" = ( -/obj/structure/bookcase/random/nonfiction, -/turf/open/floor/wood, -/area/station/service/library) -"uuv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"uuw" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"uuC" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/trinary/filter/flipped{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"uvb" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"uvg" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"uvl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/siding/green, -/turf/open/floor/iron/dark/smooth_large, -/area/station/service/hydroponics) -"uvq" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/science/auxlab) -"uvy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/chair/stool/directional/south, -/turf/open/floor/iron/grimy, -/area/station/maintenance/port/fore) -"uvF" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot, -/obj/machinery/module_duplicator, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"uvH" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/storage) -"uvQ" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Art Gallery"; - name = "library camera" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/effect/spawner/random/decoration/statue{ - spawn_loot_chance = 35 - }, -/obj/structure/table/wood/fancy, -/obj/structure/sign/painting/large/library{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/service/library) -"uvU" = ( -/obj/machinery/recharge_station, -/obj/effect/turf_decal/bot/right, -/obj/machinery/camera/directional/south{ - c_tag = "Engineering - Break Room"; - name = "engineering camera" - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"uwe" = ( -/obj/machinery/computer/prisoner/management{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"uwj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/iron/dark, -/area/station/service/electronic_marketing_den) -"uwt" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/folder, -/obj/item/paper/fluff/holodeck/disclaimer, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"uwu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel) -"uww" = ( -/obj/structure/table/wood/poker, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"uwB" = ( -/obj/item/retractor, -/obj/item/hemostat, -/obj/item/cautery, -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"uwJ" = ( -/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/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"uwK" = ( -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/suit/apron/surgical, -/obj/item/clothing/mask/surgical, -/obj/item/surgical_drapes, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/item/blood_filter, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"uxc" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/station/science/research) -"uxl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"uxn" = ( -/obj/structure/cable, -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/lighter, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) -"uxr" = ( -/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, -/obj/machinery/door/airlock/command{ - name = "Captain's Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/captain, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"uxy" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/door/poddoor/preopen{ - id = "transitlock"; - name = "Transit Tube Lockdown Door" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/edge{ - dir = 1 - }, -/area/station/engineering/transit_tube) -"uxz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Engineering - Supermatter Foyer"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/structure/rack, -/obj/item/analyzer, -/obj/item/geiger_counter, -/obj/item/geiger_counter{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/radio/intercom/directional/south, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/engineering/main) -"uxC" = ( -/obj/machinery/door_timer{ - id = "cargocell"; - name = "Cargo Cell"; - pixel_x = -32; - pixel_y = -32 - }, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"uxG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"uxS" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Medbay - Break Room"; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/recharge_station, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/medical/break_room) -"uxY" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"uyf" = ( -/obj/structure/table/reinforced, -/obj/item/stock_parts/matter_bin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/micro_laser, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"uyx" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/vending/dinnerware, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"uyW" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"uzb" = ( -/obj/effect/turf_decal/stripes/white/line, -/turf/open/floor/wood, -/area/station/engineering/break_room) -"uzn" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder/yellow{ - pixel_x = -6 - }, -/obj/item/pen{ - pixel_x = -6 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/right/directional/south{ - name = "Delivery Office Desk"; - req_access = list("shipping") - }, -/obj/structure/desk_bell{ - pixel_x = 7 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"uzv" = ( -/obj/structure/chair{ - dir = 1; - name = "Defense" - }, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"uzJ" = ( -/obj/machinery/duct, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"uzL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"uzM" = ( -/obj/structure/disposalpipe/sorting/wrap{ - dir = 2 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/storage) -"uzV" = ( -/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/tile/neutral/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"uAo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/courtroom) -"uAu" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"uAA" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/table/reinforced, -/obj/item/weldingtool, -/obj/machinery/light/directional/north, -/obj/item/wrench, -/obj/item/clothing/head/welding, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"uAD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"uAI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/engineering_guard, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"uAJ" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 8 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Security Post - Arrivals Customs" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/customs/fore) -"uAK" = ( -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"uBd" = ( -/obj/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/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"uBf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/meter, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"uBl" = ( -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/greater) -"uBm" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"uBv" = ( -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 5 - }, -/obj/machinery/computer/department_orders/medical{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/medical/storage) -"uBI" = ( -/obj/structure/table/wood, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/item/assembly/timer{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"uBM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/door/poddoor/preopen{ - id = "engielock"; - name = "Engineering Lockdown Blast Door" - }, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"uBR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos/storage/gas) -"uBW" = ( -/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/aft) -"uBZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"uCa" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/storage_shared) -"uCb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/chair/stool/directional/north, -/obj/effect/landmark/start/janitor, -/turf/open/floor/iron/checker, -/area/station/service/janitor) -"uCf" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/service/theater/abandoned) -"uCt" = ( -/obj/effect/spawner/random/structure/chair_maintenance{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"uCA" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"uCC" = ( -/obj/effect/landmark/start/cyborg, -/obj/structure/cable, -/obj/machinery/holopad/secure, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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, -/area/station/ai_monitored/turret_protected/aisat_interior) -"uCP" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"uCU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"uCY" = ( -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/machinery/light/floor, -/turf/open/misc/grass, -/area/station/hallway/primary/fore) -"uDb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"uDt" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"uDz" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"uDD" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/chair/stool/bar/directional/north, -/turf/open/floor/carpet/green, -/area/station/commons/lounge) -"uDM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/radio/intercom/directional/north{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "prison intercom"; - prison_radio = 1 - }, -/turf/open/floor/iron/dark/brown/side{ - dir = 9 - }, -/area/station/security/prison/safe) -"uDR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den) -"uEb" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"uEc" = ( -/obj/effect/spawner/random/structure/crate, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"uEy" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"uED" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"uEN" = ( -/obj/effect/turf_decal/tile/brown/anticorner/contrasted, -/obj/machinery/button/door/directional/east{ - id = "warehouse_shutters"; - name = "warehouse shutters control" - }, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"uEQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Desk" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"uET" = ( -/obj/structure/table/wood, -/obj/item/storage/secure/briefcase, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"uFa" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Security - Brig Desk" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/holding_cell) -"uFd" = ( -/obj/effect/turf_decal/tile/purple/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{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"uFi" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/robotics/mechbay) -"uFm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"uFn" = ( -/obj/structure/fluff/metalpole{ - dir = 10 - }, -/obj/structure/fluff/metalpole/end{ - dir = 8 - }, -/turf/open/space/basic, -/area/space) -"uFx" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/air_input{ - dir = 4 - }, -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"uFB" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"uFC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/theater/abandoned) -"uFM" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L6" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"uFO" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"uFQ" = ( -/obj/structure/table/glass, -/obj/item/storage/medkit/regular, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"uFX" = ( -/obj/structure/table, -/obj/item/clothing/suit/apron/chef, -/obj/item/clothing/under/color/white, -/obj/item/clothing/head/soft/mime, -/obj/item/clothing/mask/surgical, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"uGf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/smooth_large, -/area/station/service/hydroponics) -"uGl" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"uGp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/kitchen, -/area/station/security/prison/mess) -"uGw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Transferring Control" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/fourcorners, -/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/security/brig, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"uGx" = ( -/obj/structure/cable, -/obj/effect/spawner/liquids_spawner, -/turf/open/floor/iron/pool, -/area/station/security/prison/rec) -"uGH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"uGJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"uGQ" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"uGR" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"uGV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"uHa" = ( -/obj/machinery/light_switch/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"uHc" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/flashlight/lamp, -/turf/open/floor/plating, -/area/station/service/library/abandoned) -"uHd" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space/basic, -/area/space/nearstation) -"uHg" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Medbay - Fore Port"; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"uHk" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"uHl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/cargo/storage) -"uHr" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"uHB" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"uHG" = ( -/obj/structure/punching_bag, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/prison) -"uIg" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/glasses/science, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"uIq" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"uIw" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/locker) -"uIz" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/pdapainter/security, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"uIF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/air_output{ - dir = 4 - }, -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"uIJ" = ( -/obj/structure/table, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/work) -"uIN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"uIR" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"uIT" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/vending/coffee, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"uIY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"uJd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/maintenance/starboard) -"uJm" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"uJr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/port_gen/pacman/pre_loaded, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"uJB" = ( -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/bottle/beer{ - desc = "Whatever it is, it reeks of foul, putrid froth."; - list_reagents = list(/datum/reagent/consumable/ethanol/bacchus_blessing=15); - name = "Delta-Down"; - pixel_x = 5; - pixel_y = 5 - }, -/obj/effect/mapping_helpers/broken_floor, -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -6; - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"uJH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) -"uJI" = ( -/obj/structure/cable, -/obj/effect/turf_decal/plaque{ - icon_state = "L2" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"uJN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/firecloset, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"uKa" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"uKb" = ( -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/three, -/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/aft) -"uKw" = ( -/turf/closed/wall, -/area/station/commons/fitness/recreation) -"uKx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Evidence Storage" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/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/iron, -/area/station/security/warden) -"uKz" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/command/gateway) -"uKB" = ( -/obj/structure/cable, -/mob/living/simple_animal/hostile/carp/lia, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hos) -"uKD" = ( -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/structure/flora/rock/style_random, -/turf/open/misc/grass, -/area/station/hallway/primary/fore) -"uKI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/security/medical) -"uKQ" = ( -/obj/structure/chair{ - dir = 1; - name = "Defense" - }, -/obj/effect/turf_decal/tile/green/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/courtroom) -"uKR" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/wall, -/area/station/medical/virology) -"uKU" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Library Game Room" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"uKX" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/light/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"uKZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"uLj" = ( -/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, -/area/station/medical/treatment_center) -"uLv" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"uLB" = ( -/obj/structure/rack, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"uLH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"uLW" = ( -/obj/effect/spawner/random/vending/snackvend, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/maintenance/department/science) -"uMd" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/research) -"uMu" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/firealarm/directional/east, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"uMv" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/meeting_room/council) -"uMA" = ( -/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/fore) -"uMH" = ( -/obj/structure/disposalpipe/segment, -/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/maintenance/port/fore) -"uMP" = ( -/obj/structure/disposalpipe/segment{ - 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/grimy, -/area/station/service/lawoffice) -"uMU" = ( -/obj/effect/turf_decal/tile/blue, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"uNg" = ( -/obj/item/kirbyplants/random, -/obj/structure/railing{ - dir = 9 - }, -/obj/machinery/light/floor, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"uNh" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"uNp" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - space_dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"uNr" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/commons/toilet/locker) -"uNv" = ( -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"uNx" = ( -/obj/structure/table/wood, -/obj/item/folder/blue{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/carpet/blue, -/area/station/commons/vacant_room/office) -"uNy" = ( -/obj/machinery/computer/accounting{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"uNz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/loading_area, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"uND" = ( -/obj/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/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"uNH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"uNJ" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/bluespace_vendor/directional/east, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"uNR" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/reagent_containers/glass/beaker/cryoxadone, -/obj/item/reagent_containers/glass/beaker/cryoxadone, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/airalarm/directional/south, -/obj/item/reagent_containers/glass/beaker/cryoxadone, -/obj/item/reagent_containers/glass/beaker/cryoxadone, -/obj/item/storage/pill_bottle/mannitol, -/obj/item/reagent_containers/dropper, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"uNU" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/hop) -"uNY" = ( -/turf/closed/wall, -/area/station/medical/medbay/lobby) -"uOh" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/railing, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"uOk" = ( -/obj/structure/cable, -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"uOl" = ( -/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/machinery/button/door/directional/north{ - id = "teleportershutters"; - name = "Teleporter Shutters"; - req_access = list("command") - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"uOm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"uOr" = ( -/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 = "Chapel Junction"; - sortType = 17 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"uOs" = ( -/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/tile/purple/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/maintenance/department/science) -"uOF" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"uOO" = ( -/obj/effect/turf_decal/delivery, -/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/aft) -"uOR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/window/left/directional/north{ - name = "Security Delivery"; - req_access = list("security") - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron, -/area/station/security/range) -"uOZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"uPh" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"uPj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/pump/layer4{ - name = "Airmix Reserve to Distribution" - }, -/turf/open/floor/plating, -/area/station/security/prison/upper) -"uPk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor/inverted{ - dir = 10; - id = "cargoload" - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"uPr" = ( -/obj/structure/table, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/suture, -/obj/item/stack/medical/mesh, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"uPt" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/firealarm/directional/north, -/obj/machinery/newscaster/directional/east, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/theatre) -"uPv" = ( -/turf/closed/wall/r_wall, -/area/station/security/checkpoint/science/research) -"uPx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"uPz" = ( -/obj/structure/filingcabinet/medical, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"uPF" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/maintenance/department/science) -"uPH" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "brigwindows"; - name = "Brig Front Blast Door" - }, -/obj/item/folder/red, -/obj/item/pen, -/obj/machinery/door/window/brigdoor/right/directional/south{ - name = "Security Desk"; - req_access = list("security") - }, -/obj/machinery/door/window/right/directional/north{ - name = "Security Desk" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/security/holding_cell) -"uPM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/turf/open/space/basic, -/area/space/nearstation) -"uPS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/electronics/airalarm, -/obj/item/electronics/airlock, -/turf/open/floor/wood, -/area/station/service/electronic_marketing_den) -"uPV" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/command{ - name = "Telecomms Server Room" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"uQa" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/cargo/storage) -"uQk" = ( -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"uQr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"uQt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"uQD" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"uQN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/service/kitchen/abandoned) -"uQQ" = ( -/obj/structure/chair/office/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"uQY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"uRf" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/cafeteria) -"uRh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"uRr" = ( -/obj/structure/fluff/metalpole{ - dir = 10 - }, -/obj/structure/fluff/metalpole/end{ - dir = 8 - }, -/turf/open/space/basic, -/area/station/hallway/secondary/entry) -"uRt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"uRx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"uRy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/barricade/wooden, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"uRz" = ( -/obj/machinery/button/door{ - id = "isolationshutter"; - name = "Isolation Shutter"; - pixel_y = 23; - req_access = list("security") - }, -/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/prison) -"uRD" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Xenobiology - Killroom Chamber"; - name = "xenobiology camera"; - network = list("ss13","xeno","rd") - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/telecomms, -/area/station/science/xenobiology) -"uRF" = ( -/obj/structure/closet, -/obj/effect/spawner/random/food_or_drink/condiment, -/obj/item/circuitboard/machine/microwave, -/obj/item/stack/cable_coil/five, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"uRO" = ( -/obj/structure/rack, -/obj/machinery/light/small/directional/west, -/obj/item/storage/toolbox/emergency{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/electrical, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"uRU" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"uRY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"uSa" = ( -/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, -/area/station/security/processing) -"uSe" = ( -/obj/effect/turf_decal/arrows{ - dir = 4 - }, -/obj/structure/railing/corner, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/hallway/secondary/entry) -"uSh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/brigoff, -/turf/open/floor/iron/dark/blue, -/area/brigofficer) -"uSo" = ( -/obj/structure/chair/sofa/bench/right{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"uSp" = ( -/obj/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/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/storage) -"uSL" = ( -/obj/effect/turf_decal/box/white{ - color = "#9FED58" - }, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/hfr_room) -"uSM" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"uSO" = ( -/obj/machinery/light/directional/south, -/obj/effect/landmark/start/geneticist, -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"uSR" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"uTe" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"uTl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"uTq" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"uTu" = ( -/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, -/area/station/cargo/storage) -"uTz" = ( -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = -6 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark/purple/side{ - dir = 9 - }, -/area/station/security/prison/safe) -"uTB" = ( -/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/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"uTG" = ( -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"uTM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"uTS" = ( -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"uUg" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos/hfr_room) -"uUl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"uUv" = ( -/obj/machinery/computer/crew, -/obj/machinery/requests_console/directional/north{ - department = "Security"; - departmentType = 3; - name = "Security Requests Console"; - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/warden) -"uUA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/random/clothing/costume, -/obj/effect/spawner/random/clothing/costume, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"uUC" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"uUJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/meter, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/engine/atmos) -"uUM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"uUW" = ( -/turf/closed/wall, -/area/station/maintenance/space_hut/observatory) -"uVa" = ( -/obj/machinery/restaurant_portal/restaurant, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/light/directional/west, -/obj/item/radio/intercom/directional/west, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/white/smooth_large, -/area/station/service/cafeteria) -"uVd" = ( -/obj/effect/landmark/start/hangover, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"uVe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"uVk" = ( -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"uVo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/hangover, -/obj/machinery/newscaster/directional/west, -/obj/machinery/button/door/directional/south{ - id = "Toilet2"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/iron, -/area/station/commons/toilet/locker) -"uVu" = ( -/obj/machinery/light/directional/south, -/obj/machinery/status_display/ai/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hos) -"uVz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/warden) -"uVF" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"uVX" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/tank/air{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"uVZ" = ( -/obj/structure/cable, -/obj/machinery/duct, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"uWa" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"uWe" = ( -/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/service/kitchen/abandoned) -"uWg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"uWj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark/side{ - dir = 10 - }, -/area/station/engineering/lobby) -"uWl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair/comfy/brown{ - color = "#596479"; - dir = 1 - }, -/turf/open/floor/carpet, -/area/station/command/bridge) -"uWn" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"uWu" = ( -/obj/machinery/door/window{ - base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - name = "Primary AI Core Access"; - req_access = list("ai_upload") - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"uWG" = ( -/obj/item/kirbyplants/random, -/obj/structure/sign/warning/bodysposal/directional/south, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"uWI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/service/kitchen) -"uWL" = ( -/obj/machinery/firealarm/directional/north, -/obj/machinery/light_switch/directional/west, -/obj/machinery/vending/wardrobe/sec_wardrobe, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"uWN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/main) -"uWP" = ( -/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/tile/neutral/half/contrasted{ - dir = 4 - }, -/mob/living/basic/cockroach, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"uWT" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/hydroponics/soil{ - desc = "A patch of fertile soil that you can plant stuff in."; - icon = 'icons/turf/floors.dmi'; - icon_state = "dirt"; - layer = 2.0001; - plane = -7; - self_sustaining = 1 - }, -/obj/item/seeds/tomato, -/turf/open/floor/plating, -/area/station/security/prison/garden) -"uXB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron{ - icon_state = "chapel" - }, -/area/station/service/chapel) -"uXD" = ( -/obj/structure/bed, -/obj/item/bedsheet/purple, -/turf/open/floor/iron/dark/purple/side{ - dir = 6 - }, -/area/station/security/prison/safe) -"uXK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Courtroom" - }, -/obj/structure/cable, -/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/mapping_helpers/airlock/access/all/security/court, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/security/courtroom) -"uXV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "rdxeno"; - name = "Xenobiology Containment Door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"uXX" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/light/directional/east, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"uYc" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron{ - amount = 30 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"uYg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet/green, -/area/station/commons/lounge) -"uYi" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/station/service/theater/abandoned) -"uYm" = ( -/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/ai_monitored/command/nuke_storage) -"uYp" = ( -/obj/machinery/computer/med_data{ - dir = 8 - }, -/obj/machinery/requests_console/directional/east{ - department = "Detective's Office"; - name = "Detective's Requests Console" - }, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"uYr" = ( -/obj/machinery/status_display/evac/directional/east, -/obj/structure/closet/wardrobe/mixed, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"uYv" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/machinery/light/small/directional/south, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"uYy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"uYC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Waste to Filter" - }, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"uYH" = ( -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"uYV" = ( -/obj/structure/table/glass, -/obj/item/clipboard, -/obj/item/toy/figure/md, -/obj/machinery/light/small/directional/south, -/obj/structure/sign/poster/official/ian{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"uZp" = ( -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Creature Pen"; - req_access = list("research") - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"uZq" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/item/multitool, -/obj/effect/turf_decal/delivery, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"uZu" = ( -/obj/structure/table/wood, -/obj/item/paicard, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) -"uZL" = ( -/obj/structure/closet/secure_closet/atmospherics, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage) -"uZS" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/aft) -"uZY" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/external{ - name = "External Solar Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/maintenance/solars/port/fore) -"vac" = ( -/obj/structure/closet/l3closet/virology{ - pixel_y = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/medical/virology) -"vak" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/theater/abandoned) -"vap" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/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/tcommsat/server) -"vat" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public{ - name = "Service Hall" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/general, -/turf/open/floor/iron/checker, -/area/station/hallway/secondary/service) -"vaw" = ( -/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/stripes/line, -/turf/open/floor/iron, -/area/station/engineering/main) -"vaB" = ( -/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/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"vaD" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/sign/departments/medbay/alt/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"vaF" = ( -/obj/structure/rack, -/obj/item/book/manual/wiki/robotics_cyborgs, -/obj/item/storage/belt/utility/full, -/obj/machinery/light/directional/north, -/obj/item/circuitboard/mecha/ripley/main, -/obj/item/circuitboard/mecha/ripley/peripherals, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"vbf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"vbn" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor/right/directional/north{ - dir = 4; - name = "Warden's Desk"; - req_access = list("armory") - }, -/obj/machinery/door/window/left/directional/west{ - name = "Warden's Desk" - }, -/obj/item/folder/red, -/obj/item/pen, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/security/warden) -"vbp" = ( -/obj/machinery/duct, -/obj/machinery/light/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics - Project Room Aft"; - name = "atmospherics camera" - }, -/obj/machinery/status_display/ai/directional/north, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"vbt" = ( -/obj/machinery/smartfridge/chemistry/virology/preloaded, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/virology) -"vbz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/aft) -"vbK" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/chair/sofa/bench, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"vbP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"vbU" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"vbZ" = ( -/obj/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/grimy, -/area/station/command/heads_quarters/captain/private) -"vcc" = ( -/obj/machinery/holopad, -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/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, -/area/station/medical/virology) -"vcd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/plaque{ - icon_state = "L6" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"vcf" = ( -/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/prisoner, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/prison) -"vcl" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Vacant Commissary" - }, -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"vcz" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - 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, -/area/station/security/prison/mess) -"vcD" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/power/port_gen/pacman/pre_loaded, -/turf/open/floor/iron, -/area/station/maintenance/starboard) -"vcO" = ( -/obj/machinery/power/supermatter_crystal/engine, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer4, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"vcT" = ( -/obj/machinery/syndicatebomb/training, -/obj/structure/table, -/obj/item/wirecutters, -/obj/item/screwdriver, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"vcU" = ( -/obj/machinery/computer/security/mining{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hop) -"vdi" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"vdr" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"vdz" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"vdD" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/commons/dorms) -"vdF" = ( -/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) -"vdH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"vdI" = ( -/obj/structure/bookcase/random/reference, -/turf/open/floor/wood, -/area/station/service/library) -"vdM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/tile/yellow{ - dir = 4 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"vdN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"vdS" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/captain) -"vdT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bookcase/random/adult, -/turf/open/floor/iron/dark, -/area/station/service/library/abandoned) -"vdW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"vdX" = ( -/obj/effect/landmark/start/scientist, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/science/lab) -"vdZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/mob/living/simple_animal/hostile/lizard/wags_his_tail, -/turf/open/floor/iron/checker, -/area/station/service/janitor) -"veu" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"vev" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"vex" = ( -/obj/structure/bed/maint, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/lusty_xenomorph{ - pixel_x = 32 - }, -/turf/open/floor/iron{ - icon = 'icons/turf/floors.dmi' - }, -/area/station/security/prison/upper) -"veD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/engineering/storage) -"veM" = ( -/turf/closed/wall, -/area/station/medical/treatment_center) -"vfk" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/medical/morgue) -"vfl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/obj/structure/closet, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/lesser) -"vfw" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/airlock/public/glass{ - name = "Fore Hallway" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"vfx" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/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/security/execution/transfer) -"vfN" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/prison) -"vfP" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Access" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"vgf" = ( -/obj/machinery/door_timer{ - id = "medcell"; - name = "Medical Cell"; - pixel_x = -32; - pixel_y = -32 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Security Post - Medbay" - }, -/obj/structure/cable, -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"vgm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/filled/warning, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vgn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/brigofficer) -"vgA" = ( -/obj/structure/table/glass, -/obj/item/storage/medkit/regular, -/obj/item/reagent_containers/glass/bottle/multiver, -/obj/item/reagent_containers/syringe, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) -"vgE" = ( -/turf/open/floor/circuit/telecomms, -/area/station/science/xenobiology) -"vgK" = ( -/turf/closed/wall, -/area/station/security/range) -"vgP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"vgQ" = ( -/turf/closed/wall/r_wall, -/area/station/security/interrogation) -"vgR" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/east, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"vgU" = ( -/obj/item/kirbyplants/random, -/obj/machinery/firealarm/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"vgV" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/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, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"vgY" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"vgZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"vhu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"vhF" = ( -/obj/structure/table/glass, -/obj/item/storage/medkit/toxin{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/medkit/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/medkit/regular, -/obj/item/storage/medkit/toxin{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/machinery/light/directional/east, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/medical/storage) -"vhJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/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/grimy, -/area/station/service/bar) -"vhK" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"vhW" = ( -/obj/item/kirbyplants/random, -/obj/structure/sign/warning/pods/directional/south{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"vii" = ( -/turf/open/floor/iron/white/side{ - dir = 4 - }, -/area/station/commons/fitness/recreation) -"viu" = ( -/obj/structure/table/wood, -/obj/item/canvas, -/obj/item/canvas, -/obj/item/canvas, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"viy" = ( -/obj/machinery/door/firedoor, -/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, -/turf/open/floor/iron, -/area/station/medical/cryo) -"viB" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/button/door/directional/west{ - id = "engielock"; - name = "Engineering Lockdown Control"; - pixel_y = -8; - req_access = list("engineering") - }, -/obj/machinery/button/door/directional/west{ - id = "atmoslock"; - name = "Atmospherics Lockdown Control"; - pixel_y = 4; - req_access = list("atmospherics") - }, -/obj/machinery/button/door/directional/west{ - id = "engstorage"; - name = "Engineering Secure Storage Control"; - pixel_x = -36; - pixel_y = 4; - req_access = list("engine_equip") - }, -/obj/machinery/button/door/directional/west{ - id = "transitlock"; - name = "Transit Tube Lockdown Control"; - pixel_x = -36; - pixel_y = -8; - req_access = list("command") - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"viO" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/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/greater) -"viV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"viW" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/machinery/power/port_gen/pacman/pre_loaded, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"viX" = ( -/obj/item/wrench, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vja" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigfront"; - name = "Brig Blast Door" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/brig) -"vjr" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/maintenance/department/electrical) -"vjA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/theater/abandoned) -"vjF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/half{ - dir = 8 - }, -/area/station/engineering/atmos/project) -"vjN" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/structure/chair/stool/bar/directional/west, -/turf/open/floor/wood, -/area/station/service/electronic_marketing_den) -"vjU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/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, -/area/station/science/research) -"vke" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"vkg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/engineering/atmos/mix) -"vkF" = ( -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"vkG" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/turf_decal/bot_red, -/turf/open/floor/iron/white, -/area/station/maintenance/fore) -"vkK" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/reagent_containers/food/drinks/mug/tea{ - pixel_x = -7; - pixel_y = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"vkL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/yellow/corner, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics HFR Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"vkN" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"vkS" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/rglass{ - amount = 20; - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/stack/rods/fifty, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"vld" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"vlA" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/solars/port/fore) -"vlN" = ( -/obj/structure/cable, -/obj/structure/window/reinforced/plasma/spawner/west{ - dir = 4 - }, -/obj/machinery/power/energy_accumulator/tesla_coil/anchored, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"vlR" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/theatre) -"vlX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/engineering{ - name = "Starboard Quarter Solar Access" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/maintenance/solars/port/fore) -"vlY" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"vmc" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/iron/dark, -/area/station/security/warden) -"vmd" = ( -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole/bookmanagement, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"vmh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"vmn" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/table, -/obj/effect/spawner/random/trash/food_packaging, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"vmt" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/transit_tube) -"vmM" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"vmR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "left_arrivals_shutters"; - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"vno" = ( -/turf/closed/wall, -/area/station/service/kitchen/abandoned) -"vnq" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"vnu" = ( -/obj/machinery/airalarm/directional/north, -/obj/structure/rack, -/obj/item/crowbar, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/item/binoculars, -/obj/item/gps/engineering{ - gpstag = "CE0" - }, -/obj/machinery/camera/directional/north{ - c_tag = "AI Satellite - Transit Tube Entrance"; - name = "ai camera"; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"vnC" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/meter{ - name = "Mixed Air Tank Out" - }, -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"vnD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"vnQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"vnU" = ( -/turf/closed/wall, -/area/station/service/theater) -"vob" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/light/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Fore Hallway - Hydroponics"; - name = "hallway camera" - }, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/fore) -"vog" = ( -/obj/structure/reflector/box, -/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/engineering/supermatter/room) -"voi" = ( -/obj/machinery/telecomms/hub/preset, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"voE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"vpi" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/service/theater/abandoned) -"vpj" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/siding/white/corner{ - dir = 8 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cafe_counter"; - name = "Kitchen Counter Shutters"; - dir = 8 - }, -/turf/open/floor/iron/white/smooth_half{ - dir = 1 - }, -/area/station/service/kitchen) -"vpk" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"vpm" = ( -/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/commons/dorms) -"vpo" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/computer/atmos_control/nitrogen_tank{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vpx" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Science - Firing Range"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/structure/table/reinforced, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/ears/earmuffs, -/obj/item/gun/energy/laser/practice, -/obj/item/gun/energy/laser/practice{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/iron/white, -/area/station/science/auxlab) -"vpy" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"vpB" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/small/directional/south, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"vpJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"vpK" = ( -/turf/closed/wall/r_wall, -/area/station/hallway/secondary/command) -"vpV" = ( -/obj/structure/closet/toolcloset, -/obj/item/clothing/gloves/color/yellow, -/obj/item/storage/belt/utility, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"vqa" = ( -/obj/machinery/light/directional/north, -/obj/machinery/vending/modularpc, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"vqd" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Auxiliary Port" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"vqg" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/tank/internals/oxygen, -/obj/item/radio, -/obj/item/clothing/mask/breath, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"vqj" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/space, -/area/station/hallway/secondary/entry) -"vqr" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/warden) -"vqu" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"vqx" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Observatory" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"vqy" = ( -/obj/machinery/door/airlock{ - name = "Vacant Room" - }, -/obj/machinery/door/firedoor, -/obj/effect/spawner/random/structure/barricade, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/commons/vacant_room) -"vqJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"vqK" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron, -/area/service/salon) -"vqL" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - 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/corner{ - dir = 1 - }, -/area/station/hallway/primary/aft) -"vqY" = ( -/obj/effect/landmark/start/hangover, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/chair/stool/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/theater) -"vrd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"vrs" = ( -/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) -"vrv" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"vrE" = ( -/turf/open/floor/iron{ - dir = 4; - icon_state = "chapel" - }, -/area/station/service/chapel) -"vrN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"vsp" = ( -/obj/machinery/status_display/ai/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"vsu" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/white, -/obj/machinery/light/directional/west, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/hallway/primary/fore) -"vsv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"vsx" = ( -/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, -/area/station/service/library) -"vsA" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"vsH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"vsJ" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/computer/cargo/request{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"vsN" = ( -/obj/machinery/disposal/bin, -/obj/structure/cable, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"vsW" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"vsX" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"vtd" = ( -/obj/structure/fluff/metalpole{ - dir = 1 - }, -/obj/structure/fluff/metalpole/end/left{ - dir = 1 - }, -/turf/open/space/basic, -/area/space) -"vtf" = ( -/obj/item/target, -/obj/structure/training_machine, -/obj/effect/turf_decal/box/white, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/commons/fitness/recreation) -"vtj" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/item/radio/intercom/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Atmospherics - Project Room Side Entrance"; - name = "atmospherics camera" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"vtn" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"vtx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/radio/intercom/directional/north{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "prison intercom"; - prison_radio = 1 - }, -/turf/open/floor/iron/dark/blue/side{ - dir = 5 - }, -/area/station/security/prison/safe) -"vty" = ( -/obj/effect/turf_decal/delivery/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/public/glass{ - name = "Cafeteria" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/station/security/prison/mess) -"vtz" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/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/cyclelink_helper_multi{ - cycle_id = "genetics-passthrough" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/department/science) -"vtB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/cargo/storage) -"vtD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/roller, -/obj/item/crowbar{ - pixel_y = -6 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"vtQ" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"vuh" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vuz" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/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/secondary/command) -"vuG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/machinery/camera/directional/north{ - c_tag = "Engineering - Freezers"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"vuV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/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/aft) -"vvl" = ( -/obj/machinery/light/directional/north, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"vvp" = ( -/obj/machinery/door/poddoor/preopen{ - id = "engielock"; - name = "Engineering Lockdown Blast Door" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/half, -/area/station/engineering/main) -"vvu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - 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/plating, -/area/station/maintenance/starboard) -"vvD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"vvH" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/main) -"vvJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"vvL" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"vvO" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/south, -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/airalarm/directional/south, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"vvR" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"vvX" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"vwa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"vwd" = ( -/obj/structure/filingcabinet/security, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"vwg" = ( -/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/tile/brown/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"vwl" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"vwp" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/sofa/corp/left{ - dir = 8 - }, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"vwv" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"vwC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den) -"vwD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/brig) -"vwE" = ( -/obj/structure/table/wood, -/obj/item/food/grown/poppy{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/food/grown/poppy{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/food/grown/poppy, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"vwK" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"vwO" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"vwV" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"vwX" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"vwZ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/co2, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"vxf" = ( -/obj/structure/chair, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"vxg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/station/service/theater/abandoned) -"vxi" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"vxq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"vxr" = ( -/turf/open/floor/iron, -/area/station/security/prison) -"vxs" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Permabrig Visitation" - }, -/obj/effect/turf_decal/delivery/blue, -/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/security/brig, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"vxt" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/office, -/obj/machinery/status_display/supply{ - pixel_x = 32 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"vxu" = ( -/obj/effect/turf_decal/siding/green{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"vxL" = ( -/obj/structure/barricade/wooden, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"vxM" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"vxW" = ( -/obj/machinery/requests_console/directional/east{ - announcementConsole = 1; - department = "Research Lab"; - departmentType = 5; - name = "Research Requests Console"; - receive_ore_updates = 1 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Science - Research and Development"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/station/science/lab) -"vxY" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/grimy, -/area/station/service/library/abandoned) -"vxZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"vya" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"vyn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"vyr" = ( -/obj/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/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"vys" = ( -/obj/structure/flora/bush/jungle/c/style_random, -/turf/open/misc/grass, -/area/station/hallway/primary/fore) -"vyF" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"vyG" = ( -/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/service/abandoned_gambling_den/gaming) -"vyO" = ( -/obj/machinery/griddle, -/turf/open/floor/iron/kitchen, -/area/station/security/prison/mess) -"vyX" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Cargo Lobby" - }, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"vyY" = ( -/obj/machinery/smartfridge, -/turf/closed/wall, -/area/station/service/kitchen) -"vze" = ( -/obj/structure/bookcase/random, -/obj/item/radio/intercom/directional/south{ - pixel_y = -38 - }, -/obj/machinery/button/door/directional/south{ - id = "councilblast"; - name = "Council Blast Doors" - }, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) -"vzt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"vzv" = ( -/obj/structure/table, -/obj/machinery/door/poddoor/shutters{ - id = "visitation"; - name = "Visitation Shutters" - }, -/obj/machinery/door/window/right/directional/south, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"vzy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"vzK" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/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/maintenance/port/fore) -"vzY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"vAc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/carbon_output{ - dir = 4 - }, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"vAk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Fore Hallway" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"vAl" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) -"vAt" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"vAw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"vAB" = ( -/obj/structure/table/glass, -/obj/item/storage/belt/medical, -/obj/item/storage/belt/medical, -/obj/item/clothing/neck/stethoscope, -/obj/item/clothing/neck/stethoscope, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/machinery/status_display/evac/directional/east, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/medical/storage) -"vAC" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"vAF" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/wood/tile, -/area/station/security/execution/transfer) -"vAI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch/directional/east, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"vAN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"vAP" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"vAU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/commons/toilet/restrooms) -"vAX" = ( -/obj/structure/closet/cardboard, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"vBc" = ( -/obj/machinery/airalarm/directional/south, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/grimy, -/area/station/commons/vacant_room/office) -"vBj" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/storage) -"vBt" = ( -/obj/structure/closet/l3closet/janitor, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/janitor) -"vBx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/customs_agent, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"vBA" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"vBB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"vBM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/medical/virology) -"vBR" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/chair/office{ - dir = 1 - }, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/library) -"vBV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/prison) -"vBX" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/station/engineering/storage/tech) -"vBY" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"vCf" = ( -/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, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"vCl" = ( -/obj/structure/lattice/catwalk, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/space, -/area/space/nearstation) -"vCn" = ( -/obj/structure/cable, -/obj/machinery/duct, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Service Airlock" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"vCq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/server) -"vCt" = ( -/obj/structure/rack, -/obj/item/book/manual/wiki/engineering_guide, -/obj/effect/spawner/random/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"vCw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/toilet/restrooms) -"vCy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/curtain/cloth/fancy/mechanical/start_closed{ - desc = "A set of curtains serving as a fancy theater backdrop. They can only be opened by a button."; - id = "theater_curtains"; - name = "Theater Curtains" - }, -/turf/open/floor/wood/large, -/area/station/service/theater) -"vCB" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/outlet_injector/on, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"vCC" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"vCG" = ( -/obj/effect/turf_decal/tile/blue, -/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) -"vCM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "ert-lz-port" - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"vCP" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"vCV" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/right/directional/north{ - name = "Incoming Mail"; - req_access = list("shipping") - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"vDj" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"vDo" = ( -/obj/machinery/vending/boozeomat, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/captain) -"vDJ" = ( -/obj/machinery/teleport/hub, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"vDN" = ( -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/cargo/storage) -"vDS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/machinery/duct, -/turf/open/floor/iron/grimy, -/area/station/service/bar) -"vDY" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"vEb" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"vEg" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/storage) -"vEl" = ( -/obj/machinery/modular_computer/console/preset/engineering, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"vEo" = ( -/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/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"vEq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"vEr" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/door/airlock/medical/glass{ - name = "Pharmacy" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/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{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/pharmacy, -/turf/open/floor/iron, -/area/station/medical/pharmacy) -"vEs" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/table/reinforced, -/obj/item/crowbar, -/obj/item/stack/cable_coil, -/obj/item/wirecutters, -/obj/effect/turf_decal/bot, -/obj/item/screwdriver, -/turf/open/floor/iron, -/area/station/engineering/main) -"vEy" = ( -/obj/machinery/telecomms/server/presets/medical, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white/telecomms, -/area/station/tcommsat/server) -"vEE" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"vEI" = ( -/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) -"vFa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"vFe" = ( -/obj/structure/table/wood, -/obj/item/storage/secure/briefcase{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/lockbox/medal, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/captain) -"vFg" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "prisonlockdown1"; - name = "Lockdown" - }, -/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) -"vFh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/south{ - c_tag = "Medbay - Morgue"; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/structure/bodycontainer/morgue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"vFi" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/north, -/obj/machinery/power/apc/sm_apc/directional/north, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"vFo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/directional/east{ - c_tag = "Detective's Interrogation" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"vFw" = ( -/obj/structure/sign/warning/electric_shock/directional/east, -/obj/machinery/status_display/ai/directional/north, -/obj/structure/table/wood/fancy/blue, -/obj/machinery/door/window{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Core Modules"; - req_access = list("captain") - }, -/obj/effect/spawner/random/aimodule/neutral{ - pixel_y = -16 - }, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) -"vFC" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vFO" = ( -/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/orderly, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"vFU" = ( -/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/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"vFX" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/lockers) -"vGc" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"vGf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"vGj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Gateway Atrium" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/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/command/gateway, -/turf/open/floor/iron, -/area/station/command/gateway) -"vGn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Brig" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-entrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron, -/area/station/security/brig) -"vGu" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/paicard, -/turf/open/floor/carpet, -/area/station/service/library/abandoned) -"vGG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/bluespace_vendor/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"vGP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"vGR" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"vGX" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/station/medical/virology) -"vHh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/pipedispenser, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/textured, -/area/station/engineering/atmos) -"vHo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vHs" = ( -/obj/structure/cable, -/obj/machinery/power/smes, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"vHv" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"vHx" = ( -/obj/structure/table, -/obj/item/assembly/timer, -/obj/item/assembly/timer{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/assembly/timer{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/assembly/timer{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"vHI" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/detectives_office/private_investigators_office) -"vHO" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"vId" = ( -/obj/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/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"vIn" = ( -/obj/machinery/door/firedoor, -/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/door/airlock/public/glass{ - name = "Aft Primary Hallway" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/lobby) -"vIC" = ( -/obj/structure/mopbucket, -/obj/effect/decal/cleanable/dirt, -/obj/item/mop, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"vII" = ( -/obj/structure/bed, -/obj/item/bedsheet/purple, -/obj/structure/cable, -/turf/open/floor/iron/dark/purple/side{ - dir = 6 - }, -/area/station/security/prison/safe) -"vIQ" = ( -/turf/closed/wall/r_wall, -/area/station/command/teleporter) -"vJc" = ( -/obj/structure/rack, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/suture, -/obj/item/stack/medical/mesh, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/reagent_containers/syringe/multiver, -/obj/machinery/vending/wallmed/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Bridge - Gateway Atrium"; - name = "command camera" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/command/gateway) -"vJd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/rack, -/obj/item/storage/crayons, -/obj/item/storage/crayons{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/bikehorn/rubberducky, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/checker, -/area/station/service/theater) -"vJh" = ( -/obj/machinery/seed_extractor, -/obj/item/radio/intercom/directional/north, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/wood, -/area/station/security/prison/garden) -"vJq" = ( -/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/greater) -"vJB" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"vJG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hop) -"vJT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/command/gateway) -"vKx" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"vKK" = ( -/obj/effect/turf_decal/siding/brown/corner{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"vKQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/caution{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"vKR" = ( -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"vKY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/engineering/main) -"vLd" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/closet/secure_closet/brig{ - id = "engcell"; - name = "Engineering Cell Locker" - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"vLj" = ( -/obj/machinery/computer/med_data{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"vLk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"vLo" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"vLq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/library/abandoned) -"vLz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"vLA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/stack/ducts/fifty, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"vLH" = ( -/obj/structure/table/reinforced, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/lab) -"vLI" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/plating, -/area/station/service/library/abandoned) -"vLJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/obj/item/kirbyplants/random, -/obj/structure/sign/poster/official/do_not_question{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office/private_investigators_office) -"vLL" = ( -/obj/machinery/computer/security{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"vLP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/computer/slot_machine, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"vLR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"vLY" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/medical/storage) -"vMa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"vMc" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"vMj" = ( -/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/holding_cell) -"vMk" = ( -/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/grimy, -/area/station/service/lawoffice) -"vMp" = ( -/turf/closed/wall/r_wall, -/area/station/medical/chemistry) -"vMx" = ( -/obj/item/kirbyplants/random, -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"vMy" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/library) -"vMD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/aft) -"vME" = ( -/obj/effect/turf_decal/trimline/green/end, -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/trimline/green/mid_joiner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/mid_joiner{ - dir = 8 - }, -/turf/open/floor/iron/half{ - dir = 8 - }, -/area/station/service/hydroponics/garden) -"vMN" = ( -/obj/effect/spawner/random/trash/grille_or_waste, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"vMT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/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/aft) -"vMV" = ( -/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, -/area/station/commons/dorms) -"vMX" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = 4; - pixel_y = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/mess) -"vMZ" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "prisonlockdown1"; - name = "Lockdown" - }, -/obj/machinery/button/door{ - id = "prisonlockdown1"; - name = "Lockdown"; - pixel_y = 24; - req_access = list("brig") - }, -/turf/open/floor/iron/dark, -/area/station/security/prison) -"vNa" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/aft) -"vNe" = ( -/obj/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 - }, -/mob/living/basic/cockroach, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"vNu" = ( -/obj/structure/table/wood/fancy, -/obj/item/flashlight/lantern, -/turf/open/floor/iron/grimy, -/area/station/service/chapel) -"vNB" = ( -/obj/structure/table/optable, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"vNI" = ( -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"vNU" = ( -/obj/structure/cable, -/obj/machinery/firealarm/directional/south{ - pixel_x = -32 - }, -/obj/machinery/light_switch/directional/south{ - pixel_x = -20 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"vNV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"vOd" = ( -/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/machinery/light/directional/south, -/obj/item/multitool, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"vOh" = ( -/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) -"vOj" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"vOk" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"vOt" = ( -/obj/effect/landmark/start/virologist, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/medical/virology) -"vOA" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Observatory" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"vOH" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/door/window/brigdoor{ - dir = 4; - name = "Test Range" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/auxlab) -"vOI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"vOM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"vOZ" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"vPe" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/electric_shock, -/turf/open/floor/plating, -/area/station/engineering/lobby) -"vPl" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/radio, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"vPo" = ( -/obj/structure/fluff/metalpole{ - dir = 1 - }, -/turf/open/space/basic, -/area/space) -"vPp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"vPy" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"vPH" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"vPI" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"vPL" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral/anticorner{ - dir = 1 - }, -/turf/open/floor/iron/dark/smooth_corner, -/area/station/engineering/gravity_generator) -"vPQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/research) -"vPZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"vQb" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"vQe" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/chapel/funeral) -"vQh" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"vQj" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/mix) -"vQu" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"vQC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/two, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"vQS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/turf/open/floor/iron/white/corner{ - dir = 8 - }, -/area/station/service/kitchen) -"vRg" = ( -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/starboard/aft) -"vRk" = ( -/obj/machinery/vending/clothing, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"vRo" = ( -/obj/item/pillow{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/pillow, -/turf/open/floor/carpet/royalblue, -/area/station/security/prison) -"vRB" = ( -/obj/structure/disposalpipe/segment{ - 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/secondary/service) -"vRT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/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, -/area/station/security/range) -"vRW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"vSg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"vSk" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"vSn" = ( -/obj/effect/landmark/start/orderly, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"vSo" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"vSt" = ( -/obj/structure/disposalpipe/segment, -/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_hatch{ - name = "Engineering Maintenance" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"vSE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"vSK" = ( -/turf/open/floor/plating, -/area/station/construction/mining/aux_base) -"vSM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"vTc" = ( -/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/engineering/hallway) -"vTe" = ( -/obj/machinery/door/airlock{ - id_tag = "Arrivals_Toilet1"; - name = "Toilet Unit 1" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/toilet/restrooms) -"vTh" = ( -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"vTp" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/port) -"vTq" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron, -/area/station/science/lobby) -"vTy" = ( -/obj/structure/table/wood, -/obj/item/newspaper, -/obj/item/clothing/head/bowler, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/theater/abandoned) -"vTG" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/main) -"vTH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"vTL" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/science/server) -"vTO" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"vTP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/security/prison) -"vTZ" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/lockers) -"vUe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/science/research) -"vUk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Pure to Mix" - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/mix) -"vUl" = ( -/obj/structure/closet/crate/freezer/blood, -/obj/machinery/camera/directional/north{ - c_tag = "Virology - Lab"; - name = "virology camera"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/medical/virology) -"vUm" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vUr" = ( -/obj/machinery/power/terminal, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"vUJ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron, -/area/station/science/research) -"vUN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"vUO" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"vUT" = ( -/obj/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/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"vUU" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/toy/figure/warden, -/obj/machinery/light/directional/west, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/warden) -"vUV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"vVa" = ( -/turf/open/floor/iron/grimy, -/area/station/service/library/abandoned) -"vVc" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"vVe" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"vVp" = ( -/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/half/contrasted{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"vVu" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"vVx" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/station/security/checkpoint/customs/aft) -"vVC" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/station/medical/medbay/central) -"vVD" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"vVF" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"vVO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"vVW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/obj/structure/transit_tube/crossing/horizontal, -/turf/open/space/basic, -/area/space/nearstation) -"vWa" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/chapel/funeral) -"vWc" = ( -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Creature Pen"; - req_access = list("research") - }, -/obj/machinery/door/poddoor/preopen{ - id = "xeno1"; - name = "Creature Cell #1" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"vWe" = ( -/obj/structure/chair/stool/directional/east, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/breakroom) -"vWh" = ( -/obj/structure/table/wood, -/obj/machinery/computer/med_data/laptop, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/extinguisher_cabinet/directional/south{ - pixel_x = 26 - }, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"vWl" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/science/research/abandoned) -"vWm" = ( -/obj/structure/sign/warning/vacuum/external/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"vWp" = ( -/obj/structure/chair/office, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"vWu" = ( -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"vWv" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron/checker, -/area/station/hallway/secondary/service) -"vWA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"vWD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"vWX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/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/south, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"vXo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"vXr" = ( -/obj/effect/turf_decal/stripes/white/line{ - color = "#52B4E9"; - dir = 1; - name = "blue line" - }, -/obj/structure/sign/gym/right{ - pixel_y = 32 - }, -/turf/open/floor/iron/dark/blue/side{ - dir = 1 - }, -/area/station/security/prison) -"vXA" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/item/paicard, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/west, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"vXF" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Atmospherics - Ports"; - name = "atmospherics camera" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vXH" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 10 - }, -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"vXK" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/iron/checker, -/area/station/service/bar) -"vXN" = ( -/obj/effect/spawner/structure/window, -/obj/structure/curtain/cloth/fancy/mechanical{ - icon_state = "bounty-open"; - icon_type = "bounty"; - id = "prisoncell3"; - name = "curtain" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"vXP" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-left" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"vXQ" = ( -/obj/structure/disposalpipe/segment{ - 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/plating, -/area/station/service/abandoned_gambling_den/gaming) -"vXX" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"vXZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/iron, -/area/station/engineering/main) -"vYi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"vYk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/large, -/area/station/service/hydroponics) -"vYq" = ( -/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/manifold/scrubbers/visible{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"vYu" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "foreport"; - name = "Fore-Port Solar Array" - }, -/turf/open/floor/iron/solarpanel/airless, -/area/station/solars/port/fore) -"vYv" = ( -/obj/structure/cable, -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"vYH" = ( -/obj/structure/bed, -/obj/item/bedsheet/cmo, -/obj/machinery/light/directional/east, -/obj/machinery/status_display/evac/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"vYI" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/mix) -"vYK" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Science - Ordnance Mixing Lab"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"vYZ" = ( -/obj/structure/sign/directions/science, -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = 8 - }, -/obj/structure/sign/directions/command{ - dir = 4; - pixel_y = -8 - }, -/turf/closed/wall, -/area/station/commons/storage/primary) -"vZf" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/service/kitchen/abandoned) -"vZo" = ( -/obj/machinery/smartfridge, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"vZp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Surgery Observation" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/theatre) -"vZq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vZr" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/obj/machinery/atmospherics/components/binary/pump/off/yellow/visible{ - dir = 4; - name = "N2O to Pure" - }, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/engineering/atmos) -"vZv" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"vZw" = ( -/obj/structure/table, -/obj/item/toy/katana, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"vZE" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"vZK" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"vZL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"vZX" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"wae" = ( -/obj/effect/landmark/start/head_of_security, -/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/grimy, -/area/station/command/heads_quarters/hos) -"wak" = ( -/obj/structure/chair/stool/bar/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"wam" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/effect/landmark/start/security_medic, -/turf/open/floor/iron/white, -/area/station/security/medical) -"wan" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/security/courtroom) -"wap" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"waw" = ( -/obj/structure/cable, -/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, -/obj/structure/window/reinforced/plasma/spawner/east, -/turf/open/floor/iron, -/area/station/maintenance/port/lesser) -"waG" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/station/solars/port/fore) -"waI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"waK" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/cigarettes/cigpack_uplift{ - pixel_x = 6 - }, -/obj/item/storage/fancy/cigarettes/cigpack_carp{ - pixel_x = -3 - }, -/obj/item/lighter, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office/private_investigators_office) -"waU" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/obj/machinery/bluespace_vendor/directional/north, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/commons/locker) -"waZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/curtain/cloth/fancy/mechanical{ - id = "barbershopcurtains" - }, -/turf/open/floor/plating, -/area/service/salon) -"wbe" = ( -/turf/closed/wall, -/area/station/service/hydroponics/garden) -"wbh" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/captain/private) -"wbn" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"wbp" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/washing_machine, -/obj/machinery/camera{ - c_tag = " Prison - Janitorial"; - dir = 1; - network = list("ss13","prison") - }, -/obj/machinery/light/directional/north, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/kitchen{ - dir = 1 - }, -/area/station/security/prison) -"wbt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"wbw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"wbx" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/effect/spawner/random/clothing/twentyfive_percent_cyborg_mask, -/obj/effect/spawner/random/bureaucracy/briefcase, -/obj/effect/spawner/random/entertainment/wallet_storage, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"wby" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"wbD" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Library Access" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/service/library) -"wbE" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"wbF" = ( -/obj/structure/table, -/obj/item/toy/cards/deck, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"wbH" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"wbL" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"wbY" = ( -/obj/machinery/mech_bay_recharge_port{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/science/research/abandoned) -"wcd" = ( -/obj/structure/chair/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"wcp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/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/surgery/theatre) -"wct" = ( -/obj/item/stack/cable_coil, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/station/solars/starboard/aft) -"wcv" = ( -/obj/structure/rack, -/obj/machinery/light/small/directional/west, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"wcD" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark/purple/side, -/area/station/security/prison/safe) -"wcF" = ( -/obj/machinery/door/airlock/command{ - name = "Chief Medical Officer's Quarters" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/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, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "CMO" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/access/all/medical/cmo, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"wcG" = ( -/obj/structure/table/reinforced, -/obj/item/radio/intercom/directional/west, -/obj/item/book/manual/wiki/atmospherics, -/obj/item/holosign_creator/atmos, -/obj/item/holosign_creator/atmos, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"wcO" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - 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/kitchen{ - dir = 1 - }, -/area/station/security/prison) -"wcP" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"wcT" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"wcW" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Security E.V.A. Storage" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/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, -/turf/open/floor/iron, -/area/station/security/warden) -"wda" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/main) -"wdb" = ( -/turf/open/floor/circuit/green, -/area/station/science/robotics/mechbay) -"wdj" = ( -/obj/machinery/door/poddoor/preopen{ - id = "surgeryb"; - name = "Privacy Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/surgery/aft) -"wdp" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/storage/fancy/donut_box, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cafe_counter"; - name = "Kitchen Counter Shutters"; - dir = 8 - }, -/turf/open/floor/iron/white/smooth_half{ - dir = 1 - }, -/area/station/service/kitchen) -"wdt" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"web" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/box, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"wec" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/storage/gas) -"weh" = ( -/obj/structure/closet/secure_closet/brig{ - id = "cargocell"; - name = "Cargo Cell Locker" - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"wem" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"weo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/toilet/locker) -"wes" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 6 - }, -/turf/open/space/basic, -/area/space/nearstation) -"wex" = ( -/obj/structure/table/wood, -/obj/item/chisel{ - pixel_y = 7 - }, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"wey" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"weO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/service/theater) -"weQ" = ( -/obj/structure/rack, -/obj/item/storage/medkit, -/obj/item/storage/medkit, -/obj/structure/disposalpipe/segment, -/obj/item/healthanalyzer, -/obj/item/healthanalyzer, -/obj/item/paicard, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"weT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"weX" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den/gaming) -"weZ" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/chair/sofa/bench/right{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/fore) -"wfa" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"wff" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/wrapping_paper{ - pixel_y = 5 - }, -/obj/item/stack/wrapping_paper{ - pixel_y = 5 - }, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"wfm" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"wfv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/iron, -/area/station/maintenance/department/engine/atmos) -"wfA" = ( -/obj/machinery/vending/wardrobe/cargo_wardrobe, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"wfI" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 10 - }, -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"wfJ" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/south, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/station/science/research) -"wfT" = ( -/obj/structure/filingcabinet/security, -/obj/machinery/light_switch/directional/west{ - pixel_y = 26 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Security - Departures Port" - }, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"wfV" = ( -/obj/machinery/mass_driver/trash{ - dir = 4 - }, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"wgb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Telecomms Foyer" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/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/tcoms, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"wgf" = ( -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/two, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"wgl" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/light_switch/directional/north, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"wgx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"wgC" = ( -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/engineering/supermatter) -"wgF" = ( -/obj/structure/cable, -/obj/machinery/computer/station_alert{ - dir = 1 - }, -/obj/machinery/status_display/ai/directional/south, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"wgG" = ( -/obj/machinery/holopad/secure, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/turret_protected/ai) -"wgL" = ( -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"wgO" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wgP" = ( -/obj/effect/turf_decal/tile/purple{ - 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/research) -"wgQ" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/security/office) -"wgU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/mess, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/iron/grimy, -/area/station/maintenance/port/fore) -"wgX" = ( -/obj/item/chair/plastic{ - pixel_y = 10 - }, -/obj/item/chair/plastic{ - pixel_y = 10 - }, -/obj/item/chair/plastic{ - pixel_y = 10 - }, -/obj/item/chair/plastic{ - pixel_y = 10 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/work) -"whb" = ( -/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/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/mining/glass{ - name = "Delivery Office" - }, -/obj/effect/mapping_helpers/airlock/access/any/supply/shipping, -/obj/effect/mapping_helpers/airlock/access/any/supply/mining, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"whj" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/iron/dark/textured_large, -/area/station/service/janitor) -"whm" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"whu" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"whv" = ( -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"whA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"whE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Circuits Lab" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-toxins-circuits" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/research, -/turf/open/floor/iron, -/area/station/science/explab) -"whH" = ( -/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/plating, -/area/station/medical/morgue) -"whK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"whN" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"whS" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"whX" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"wif" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"wiw" = ( -/obj/machinery/computer/telecomms/monitor{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"wiA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/library/abandoned) -"wiR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"wiU" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/airalarm/directional/west, -/obj/structure/mirror/directional/north, -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/toilet/restrooms) -"wiW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/oxygen_output{ - dir = 4 - }, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"wiY" = ( -/obj/machinery/camera{ - c_tag = " Prison - East Hallway"; - network = list("ss13","prison") - }, -/turf/open/floor/iron/dark/side, -/area/station/security/prison) -"wiZ" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"wje" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Customs Desk" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/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/command/general, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"wjF" = ( -/obj/structure/cable, -/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, -/area/station/hallway/primary/port) -"wjO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"wjP" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"wjW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"wki" = ( -/obj/structure/bed/roller, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"wkj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"wkp" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/theater) -"wkr" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"wkt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"wkP" = ( -/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/bot, -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"wkS" = ( -/obj/effect/spawner/random/structure/tank_holder, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"wkT" = ( -/obj/machinery/computer/atmos_alert, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"wln" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/engineering/tracking_beacon, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"wlw" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/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/greater) -"wlG" = ( -/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/simple/scrubbers/visible, -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"wlH" = ( -/obj/structure/cable, -/obj/machinery/button/door/incinerator_vent_atmos_aux{ - pixel_x = -8; - pixel_y = 24 - }, -/obj/machinery/button/door/incinerator_vent_atmos_main{ - pixel_x = -8; - pixel_y = 36 - }, -/obj/machinery/button/ignition/incinerator/atmos{ - pixel_x = 8; - pixel_y = 36 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/closet/radiation, -/obj/item/analyzer, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/maintenance/disposal/incinerator) -"wlK" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "prisonlockdown3"; - name = "Lockdown" - }, -/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) -"wlS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/mix) -"wmc" = ( -/obj/structure/frame/computer{ - anchored = 1; - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/purple{ - dir = 5 - }, -/turf/open/floor/glass, -/area/station/maintenance/space_hut/observatory) -"wmh" = ( -/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/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/greater) -"wms" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Project 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, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"wmu" = ( -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: PRESSURIZED DOORS"; - pixel_y = -32 - }, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"wmy" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"wmK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/firealarm/directional/east{ - pixel_y = -26 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"wmM" = ( -/obj/machinery/door/airlock{ - name = "Jury" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/security/court, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"wmO" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/storage) -"wmV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/public{ - name = "Prison Cell" - }, -/turf/open/floor/iron/dark/blue, -/area/station/security/prison/safe) -"wnc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/library/abandoned) -"wnj" = ( -/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/external{ - name = "MiniSat Exterior Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron/dark, -/area/station/engineering/hallway) -"wnn" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos/storage/gas) -"wnI" = ( -/obj/item/sign, -/obj/effect/spawner/random/structure/crate_empty, -/obj/item/screwdriver, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"wnQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"won" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"wow" = ( -/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/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"woB" = ( -/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) -"woK" = ( -/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/mining/glass{ - name = "Drone Bay" - }, -/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/supply/general, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"woU" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"wpb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"wpi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"wps" = ( -/obj/effect/turf_decal/tile/blue, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"wpx" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/table, -/obj/item/wrench, -/obj/item/screwdriver, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/vacant_room) -"wpy" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"wpD" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/delivery, -/obj/machinery/mecha_part_fabricator/maint, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"wpE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"wpI" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"wpO" = ( -/obj/machinery/status_display/ai/directional/north, -/obj/structure/table, -/obj/item/paper_bin, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"wpS" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/closet/crate/hydroponics, -/obj/effect/spawner/random/food_or_drink/seed, -/obj/effect/spawner/random/food_or_drink/seed, -/obj/effect/spawner/random/food_or_drink/seed, -/obj/effect/spawner/random/maintenance, -/obj/machinery/light_switch/directional/east{ - pixel_y = 6 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/checker, -/area/station/service/hydroponics/garden/abandoned) -"wpT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"wpX" = ( -/obj/machinery/door/window/right/directional/east{ - name = "Detective's Morgue" - }, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"wqb" = ( -/obj/machinery/light/directional/south, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"wqk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/item/reagent_containers/food/condiment/flour, -/turf/open/floor/iron/dark, -/area/station/service/kitchen/coldroom) -"wqn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"wqo" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/cargo/storage) -"wqp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/spawner/random/trash/garbage, -/turf/open/floor/plating, -/area/station/maintenance/department/engine/atmos) -"wqs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"wqF" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"wqG" = ( -/obj/structure/table/wood, -/obj/machinery/light/directional/north, -/obj/item/storage/lockbox/loyalty, -/obj/item/storage/secure/safe/directional/east, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"wqO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"wqT" = ( -/obj/machinery/airalarm/directional/east, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"wqU" = ( -/obj/machinery/power/emitter{ - dir = 8 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"wri" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/obj/item/kirbyplants/random, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"wrj" = ( -/obj/structure/toilet/secret{ - dir = 4; - secret_type = /obj/item/card/emag/one_shot - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"wry" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"wrN" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters{ - id = "commissaryshutters"; - name = "Vacant Commissary Shutters"; - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/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, -/area/station/commons/vacant_room/commissary) -"wrO" = ( -/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/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/airlock/hydroponics/glass{ - name = "Hydroponics" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"wrP" = ( -/obj/structure/reagent_dispensers/cooking_oil, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/service/kitchen/coldroom) -"wrW" = ( -/obj/machinery/washing_machine, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/commons/dorms) -"wrZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wsg" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/cryo) -"wsp" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"wsw" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"wsy" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wsA" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"wsD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/lesser) -"wsH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/plate_press{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/work) -"wte" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"wtg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/obj/structure/chair/stool/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/theater) -"wth" = ( -/obj/machinery/light/directional/north, -/obj/structure/table/wood, -/obj/item/grown/log, -/obj/item/grown/log, -/obj/item/grown/log, -/obj/item/grown/log, -/obj/item/grown/log, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"wtn" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/blue, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"wtJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"wtL" = ( -/obj/machinery/computer/warrant{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - 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/starboard) -"wtW" = ( -/obj/structure/table/glass, -/obj/structure/sign/warning/deathsposal/directional/south, -/obj/item/paper_bin, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/medical/virology) -"wud" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/recharge_station, -/turf/open/floor/iron/dark, -/area/station/security/warden) -"wuh" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/theater) -"wuj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"wuz" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/main) -"wuB" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"wuF" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint) -"wuY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"wuZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/food/chococoin{ - pixel_y = 6 - }, -/obj/item/food/chococoin{ - pixel_x = 6 - }, -/obj/item/food/chococoin{ - pixel_x = -6 - }, -/turf/open/floor/iron, -/area/station/service/abandoned_gambling_den/gaming) -"wvb" = ( -/obj/machinery/light/directional/east, -/obj/item/radio/intercom/directional/east, -/obj/machinery/newscaster/directional/south, -/obj/structure/filingcabinet/filingcabinet, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/cargo/office) -"wvc" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/medical/virology) -"wvd" = ( -/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 = "Disposals Junction"; - sortType = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"wvg" = ( -/obj/structure/table/wood, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/captain) -"wvi" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"wvl" = ( -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"wvr" = ( -/obj/structure/table/wood, -/obj/item/folder/yellow{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/folder/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"wvv" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen/fourcolor, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/service/chapel/office) -"wvx" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/package_wrap, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"wvP" = ( -/obj/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/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"wvR" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"wwi" = ( -/obj/structure/cable, -/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/treatment_center) -"wwk" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/delivery, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"wwm" = ( -/obj/structure/chair/sofa/left{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/commons/lounge) -"wwr" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/siding/yellow, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"wwy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"wwM" = ( -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/neutral/opposingcorners, -/turf/open/floor/iron, -/area/station/commons/dorms) -"wwQ" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"wwV" = ( -/obj/effect/spawner/random/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"wxa" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"wxe" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/medical/morgue) -"wxf" = ( -/obj/machinery/power/emitter, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/main) -"wxi" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/item/stock_parts/scanning_module{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/radio/intercom/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/science/lab) -"wxo" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/vending/coffee, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"wxp" = ( -/obj/effect/landmark/blobstart, -/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/aft) -"wxs" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/spawner/random/structure/musician/piano/random_piano, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/theater/abandoned) -"wxt" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/suit/jacket{ - desc = "All the class of a trenchcoat without the security fibers."; - icon_state = "detective"; - name = "trenchcoat" - }, -/obj/item/clothing/suit/toggle/lawyer/purple, -/obj/item/clothing/head/fedora{ - icon_state = "detective" - }, -/obj/item/clothing/under/rank/civilian/lawyer/beige, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"wxG" = ( -/obj/structure/closet/secure_closet/security/science, -/obj/machinery/status_display/evac/directional/north, -/obj/structure/extinguisher_cabinet/directional/north{ - pixel_x = -32 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/light_switch/directional/west{ - pixel_x = -38 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) -"wxI" = ( -/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/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"wxO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/orderly, -/obj/structure/extinguisher_cabinet/directional/south{ - pixel_x = 26 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"wye" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"wyh" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"wyo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Interrogation" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/security/general, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"wyD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"wyH" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "bridgewindows"; - name = "Bridge View Blast Door" - }, -/turf/open/floor/plating, -/area/station/command/bridge) -"wyJ" = ( -/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, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"wyL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Aft Primary Hallway" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"wyN" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 10 - }, -/turf/open/space/basic, -/area/space) -"wyO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/morgue) -"wzb" = ( -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"wzl" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"wzq" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"wzr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "custodialshutters"; - name = "shutters control"; - pixel_x = 8 - }, -/obj/machinery/light/small/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Service - Janitorial Closet"; - dir = 9; - name = "service camera" - }, -/mob/living/simple_animal/hostile/lizard/eats_the_roaches, -/turf/open/floor/iron/checker, -/area/station/service/janitor) -"wzA" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"wzD" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/textured_large, -/area/station/engineering/atmos/project) -"wzM" = ( -/obj/machinery/light/directional/west, -/obj/effect/mapping_helpers/ianbirthday, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"wzT" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/west{ - c_tag = "Arrivals Dock - Publc Mining"; - name = "dock camera" - }, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron/smooth, -/area/station/hallway/secondary/entry) -"wzV" = ( -/obj/effect/turf_decal/stripes/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{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/science/research) -"wzY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/aft) -"wzZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/plastic, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"wAe" = ( -/obj/machinery/button/curtain{ - id = "prisoncell6"; - pixel_y = 21 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/blue/side{ - dir = 1 - }, -/area/station/security/prison/safe) -"wAt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/button/curtain{ - id = "prisoncell8"; - pixel_x = -22; - pixel_y = 10 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/prison) -"wAw" = ( -/obj/machinery/newscaster/directional/east, -/turf/closed/wall, -/area/station/medical/pharmacy) -"wAy" = ( -/obj/structure/bed/roller, -/obj/structure/sign/departments/chemistry/directional/south, -/obj/machinery/light/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Medbay - Waiting Room"; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"wAz" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen, -/turf/open/floor/wood, -/area/station/service/electronic_marketing_den) -"wAW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard) -"wBc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"wBl" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/sign/poster/official/do_not_question{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"wBn" = ( -/obj/machinery/duct, -/obj/effect/turf_decal/trimline/yellow/warning, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"wBp" = ( -/obj/machinery/vending/wallmed/directional/west, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"wBu" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner, -/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/purple/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/maintenance/department/science) -"wBB" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L9" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall15"; - location = "hall14" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"wBG" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/iron/dark, -/area/station/service/library) -"wBX" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating, -/area/station/service/library/abandoned) -"wCa" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/east, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/sign/poster/official/help_others{ - pixel_x = 32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"wCc" = ( -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/bush/grassy/style_random, -/obj/structure/flora/bush/large/style_random, -/turf/open/misc/grass, -/area/station/hallway/primary/fore) -"wCd" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/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/command/heads_quarters/cmo) -"wCe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"wCl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"wCp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/turf/open/floor/iron, -/area/station/engineering/main) -"wCz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/engine/atmos) -"wCB" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Upper Atmospherics" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wCI" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"wDf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/hydroponics/garden/abandoned) -"wDi" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/spawner/random/structure/musician/piano/random_piano, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/theater) -"wDk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"wDr" = ( -/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/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"wDy" = ( -/obj/structure/curtain/cloth/fancy/mechanical{ - icon_state = "bounty-open"; - icon_type = "bounty"; - id = "prisoncell4"; - name = "curtain" - }, -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"wDL" = ( -/obj/structure/table/reinforced, -/obj/machinery/reagentgrinder{ - pixel_y = 5 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Xenobiology - Starboard"; - name = "xenobiology camera"; - network = list("ss13","xeno","rd") - }, -/obj/structure/sign/warning/deathsposal/directional/east, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"wDW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/virology) -"wDX" = ( -/obj/effect/turf_decal/stripes/white/line{ - color = "#52B4E9"; - dir = 5; - name = "blue line" - }, -/turf/open/floor/iron/dark/blue/side{ - dir = 10 - }, -/area/station/security/prison) -"wEa" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/machinery/vending/wallmed/directional/north, -/turf/open/floor/plating, -/area/station/medical/morgue) -"wEn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"wEx" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/mining_voucher, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"wEy" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"wEz" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) -"wEI" = ( -/turf/closed/wall, -/area/station/maintenance/department/science) -"wEX" = ( -/obj/machinery/computer/atmos_alert{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage) -"wFc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/valve, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"wFg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"wFo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"wFq" = ( -/obj/structure/table/reinforced, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"wFz" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - 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/mess) -"wFC" = ( -/obj/structure/cable, -/obj/effect/spawner/random/trash/grille_or_waste, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"wFF" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/chemist, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/medical/pharmacy) -"wFG" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/lounge) -"wFJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/turf/open/space/basic, -/area/space/nearstation) -"wFO" = ( -/obj/structure/closet/secure_closet/security, -/obj/machinery/light/directional/south, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"wFR" = ( -/obj/structure/lattice, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/turf/open/space/basic, -/area/space/nearstation) -"wGa" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"wGy" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/hallway) -"wGz" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"wGA" = ( -/turf/closed/wall/r_wall, -/area/station/security/checkpoint/engineering) -"wGH" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/storage/gas) -"wGJ" = ( -/obj/structure/bed/roller, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/white, -/area/station/security/medical) -"wGK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"wGS" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder/white, -/obj/item/reagent_containers/hypospray/medipen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/medical/medbay/lobby) -"wHa" = ( -/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/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"wHj" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/storage/gas) -"wHm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/iron, -/area/station/maintenance/starboard) -"wHs" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"wHC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green/fourcorners, -/turf/open/floor/iron, -/area/station/medical/virology) -"wHL" = ( -/obj/structure/table, -/obj/item/binoculars, -/obj/structure/window/reinforced, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"wHM" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/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{ - heat_capacity = 1e+006 - }, -/area/station/commons/dorms) -"wIe" = ( -/obj/machinery/holopad, -/turf/open/floor/carpet, -/area/station/command/bridge) -"wIf" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos/storage) -"wIk" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Access" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"wIu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"wIL" = ( -/obj/structure/disposalpipe/segment, -/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, -/area/station/service/lawoffice) -"wIO" = ( -/obj/structure/frame/machine, -/obj/machinery/light/small/directional/south, -/obj/item/stack/sheet/glass, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/science/research/abandoned) -"wIW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"wJa" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"wJb" = ( -/obj/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) -"wJd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/courtroom) -"wJm" = ( -/obj/structure/closet/secure_closet/hos, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hos) -"wJz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "right_arrivals_shutters"; - dir = 1 - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/secondary/entry) -"wJB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"wJG" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/iron/smooth_half{ - dir = 1 - }, -/area/station/hallway/secondary/entry) -"wJQ" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/flask/gold, -/obj/item/razor, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/captain/private) -"wJT" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"wJU" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"wJY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wKl" = ( -/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/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"wKo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/meter/monitored/waste_loop, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/pumproom) -"wKs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/plaque{ - icon_state = "L1" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"wKu" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/engineering/glass/critical{ - heat_proof = 1; - name = "Supermatter Chamber" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"wKF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/engineering/storage) -"wKV" = ( -/obj/structure/table/reinforced, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/gps, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"wLb" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder{ - pixel_x = -6 - }, -/obj/item/pen{ - pixel_x = -6 - }, -/obj/machinery/door/window/left/directional/south{ - name = "Research Lab Desk"; - req_access = list("science") - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rndlab1"; - name = "Research and Development Shutter"; - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/desk_bell{ - pixel_x = 7 - }, -/turf/open/floor/iron, -/area/station/science/lab) -"wLK" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"wLM" = ( -/obj/machinery/door/airlock{ - id_tag = "Toilet3"; - name = "Toilet Unit" - }, -/turf/open/floor/plating, -/area/station/commons/toilet/locker) -"wLR" = ( -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"wLT" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "permaouter"; - name = "Permabrig Transfer" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery/blue, -/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/security/brig, -/turf/open/floor/iron/dark, -/area/station/security/prison) -"wLX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/turret_protected/aisat_interior) -"wLZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"wMs" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"wMz" = ( -/obj/machinery/power/shieldwallgen/xenobiologyaccess, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"wNa" = ( -/obj/structure/table, -/obj/item/toy/cards/deck, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/locker) -"wNk" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"wNn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/hydroponics/garden/abandoned) -"wNo" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"wNy" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover, -/obj/machinery/atmospherics/components/binary/pump/on/scrubbers/hidden/layer2{ - name = "Public Scrubbers to Waste" - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"wNG" = ( -/obj/structure/table, -/obj/item/assembly/prox_sensor{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 5; - pixel_y = 7 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 9; - pixel_y = -2 - }, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"wNP" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/box, -/obj/structure/sign/poster/official/random/directional/west, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/engineering/atmos/storage/gas) -"wNU" = ( -/obj/structure/chair/stool/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/locker) -"wOq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"wOr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"wOF" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/medical/surgery/theatre) -"wOR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"wOS" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/mess) -"wOU" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/office) -"wPb" = ( -/obj/machinery/light/directional/west, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"wPj" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/lobby) -"wPk" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"wPl" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"wPn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"wPs" = ( -/obj/structure/bed, -/obj/machinery/light/directional/north, -/obj/machinery/status_display/evac/directional/north, -/obj/item/bedsheet/dorms, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"wPV" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"wPW" = ( -/obj/structure/table/reinforced, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/aft) -"wPY" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison/rec) -"wQi" = ( -/obj/structure/table/wood, -/obj/item/newspaper{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -4; - pixel_y = 2 - }, -/turf/open/floor/iron/dark, -/area/station/service/library) -"wQn" = ( -/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, -/obj/machinery/door/airlock/security{ - name = "Detective's Office" - }, -/obj/effect/landmark/navigate_destination, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/detective, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/detectives_office) -"wQq" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/sofa/corp/right{ - dir = 8 - }, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"wQv" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/hangover, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"wQx" = ( -/mob/living/simple_animal/slime, -/turf/open/floor/circuit/green, -/area/station/science/xenobiology) -"wQy" = ( -/obj/structure/filingcabinet, -/obj/item/folder/documents, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"wQD" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/toy/figure/borg, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/radio/intercom/directional/south{ - freerange = 1; - frequency = 1447; - listening = 0; - name = "Private Channel" - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"wQF" = ( -/obj/structure/table/wood, -/obj/item/storage/dice, -/turf/open/floor/carpet, -/area/station/service/library/abandoned) -"wQN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/storage) -"wQT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"wQU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"wQY" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/wood, -/area/station/service/library) -"wRf" = ( -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"wRp" = ( -/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/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"wRy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"wRM" = ( -/obj/machinery/computer/piratepad_control/civilian{ - dir = 4 - }, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"wRP" = ( -/obj/structure/chair/office, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"wRQ" = ( -/obj/structure/table/reinforced, -/obj/item/ai_module/reset, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"wRR" = ( -/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/starboard/aft) -"wRS" = ( -/obj/machinery/telecomms/processor/preset_four, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/telecomms, -/area/station/tcommsat/server) -"wSi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/research) -"wSv" = ( -/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/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"wSy" = ( -/obj/structure/cable, -/obj/structure/table/wood, -/obj/item/folder/yellow, -/turf/open/floor/carpet, -/area/station/command/meeting_room/council) -"wSR" = ( -/turf/closed/wall, -/area/station/maintenance/disposal/incinerator) -"wTl" = ( -/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, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"wTn" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"wTo" = ( -/obj/structure/closet/wardrobe/botanist, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"wTv" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"wTB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/station/service/library/abandoned) -"wTF" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/fore) -"wTJ" = ( -/obj/machinery/vending/hydronutrients, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics/garden) -"wTP" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"wTQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) -"wTU" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/chair/stool/bar/directional/west, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"wTV" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/syringe/antiviral, -/obj/item/reagent_containers/dropper, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/medical/virology) -"wUa" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/lab) -"wUh" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"wUi" = ( -/obj/structure/cable, -/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/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"wUE" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"wUN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/dead_body_placer, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/medical/morgue) -"wUQ" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopline"; - name = "Queue Shutters"; - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/ticket_machine/directional/north, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"wUU" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/recharge_station, -/turf/open/floor/iron/dark, -/area/station/command/meeting_room/council) -"wUZ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"wVa" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/newscaster/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint) -"wVj" = ( -/obj/effect/landmark/carpspawn, -/turf/open/space/basic, -/area/space) -"wVy" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"wVJ" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"wVO" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/toy/figure/secofficer, -/obj/machinery/newscaster/directional/west, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/holding_cell) -"wVU" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"wWn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/glass, -/area/station/maintenance/space_hut/observatory) -"wWy" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wWz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"wWH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Lockerroom" - }, -/obj/effect/landmark/navigate_destination, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/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/commons/locker) -"wWZ" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"wXb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/turf/open/floor/plating, -/area/station/science/server) -"wXg" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Chapel - Starboard"; - name = "chapel camera" - }, -/obj/machinery/firealarm/directional/east, -/obj/structure/chair/pew/right, -/turf/open/floor/iron{ - icon_state = "chapel" - }, -/area/station/service/chapel) -"wXi" = ( -/obj/machinery/computer/med_data{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/aft) -"wXq" = ( -/obj/structure/disposalpipe/segment{ - 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/fore) -"wXy" = ( -/obj/structure/chair/stool/bar/directional/north, -/obj/machinery/light/small/directional/west, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/iron/grimy, -/area/station/service/abandoned_gambling_den) -"wXR" = ( -/obj/machinery/hydroponics/soil{ - desc = "A patch of fertile soil that you can plant stuff in."; - icon = 'icons/turf/floors.dmi'; - icon_state = "dirt"; - layer = 2.0001; - plane = -7; - self_sustaining = 1 - }, -/obj/item/seeds/tobacco, -/turf/open/floor/plating, -/area/station/security/prison/garden) -"wXU" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"wXW" = ( -/obj/effect/landmark/blobstart, -/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) -"wYf" = ( -/obj/structure/dresser, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/commons/dorms) -"wYx" = ( -/obj/structure/sign/warning/vacuum, -/turf/closed/wall/r_wall, -/area/station/medical/virology) -"wYN" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"wYZ" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"wZa" = ( -/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/surgery/aft) -"wZd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/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, -/area/station/science/robotics/lab) -"wZf" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/iron, -/area/station/medical/break_room) -"wZv" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/airalarm/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"wZx" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"wZB" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/grimy, -/area/station/commons/vacant_room/office) -"wZE" = ( -/turf/closed/wall, -/area/station/maintenance/department/electrical) -"wZF" = ( -/obj/structure/table/reinforced, -/obj/item/storage/belt/utility, -/obj/item/wrench, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"wZT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"wZW" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/toy/figure/roboticist, -/obj/effect/turf_decal/bot, -/obj/machinery/button/door/directional/north{ - id = "roboticsprivacy"; - name = "Robotics Privacy Controls"; - pixel_x = 24; - req_access = list("robotics") - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"wZY" = ( -/obj/machinery/button/curtain{ - id = "prisoncell11"; - pixel_y = 21 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/brown/side{ - dir = 1 - }, -/area/station/security/prison/safe) -"xab" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/closet/crate/bin, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"xak" = ( -/obj/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/tile/green/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"xap" = ( -/obj/structure/flora/bush/flowers_br/style_random, -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/grassy/style_random, -/turf/open/misc/grass, -/area/station/hallway/primary/fore) -"xav" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/west, -/obj/item/clothing/gloves/color/fyellow, -/obj/structure/rack, -/obj/item/multitool, -/obj/item/clothing/suit/hazardvest, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"xax" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK" - }, -/turf/closed/wall/r_wall, -/area/station/maintenance/solars/starboard/fore) -"xaF" = ( -/obj/machinery/firealarm/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"xaO" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/lights/mixed, -/obj/item/clothing/gloves/color/fyellow, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"xaP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"xaZ" = ( -/obj/machinery/light/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"xbb" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"xbi" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/iron, -/area/station/commons/vacant_room/office) -"xbp" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"xbq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/cargo/qm) -"xbs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"xbu" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"xbw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/frame/machine, -/obj/item/stack/cable_coil/five, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"xbx" = ( -/obj/structure/closet/toolcloset, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"xby" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Bridge - Port"; - name = "command camera" - }, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"xbD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/effect/turf_decal/trimline/blue/end{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"xbG" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hop) -"xbO" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/item/storage/fancy/egg_box, -/obj/item/storage/fancy/egg_box, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/soymilk, -/turf/open/floor/iron/dark, -/area/station/service/kitchen/coldroom) -"xbR" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/medical/virology) -"xbT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/security/range) -"xbV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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) -"xbW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"xca" = ( -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/stamp/cmo, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"xcd" = ( -/obj/item/stack/cable_coil, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/station/solars/starboard/fore) -"xcs" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"xcz" = ( -/obj/structure/table/wood, -/obj/item/camera_film{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/camera_film, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"xcI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"xcJ" = ( -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"xcK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"xcU" = ( -/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) -"xcW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating/airless, -/area/station/medical/virology) -"xcZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/built, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron{ - icon = 'icons/turf/floors.dmi' - }, -/area/station/security/prison/upper) -"xds" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/research/abandoned) -"xdC" = ( -/obj/effect/spawner/structure/window, -/obj/structure/curtain/cloth/fancy/mechanical{ - id = "barbershopcurtains" - }, -/turf/open/floor/plating, -/area/service/salon) -"xdE" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"xdJ" = ( -/obj/structure/table, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/obj/item/clothing/glasses/blindfold, -/obj/item/clothing/ears/earmuffs, -/obj/item/gun/syringe, -/obj/item/clothing/glasses/eyepatch, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"xdL" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/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/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"xdP" = ( -/obj/machinery/hydroponics/soil{ - desc = "A patch of fertile soil that you can plant stuff in."; - icon = 'icons/turf/floors.dmi'; - icon_state = "dirt"; - layer = 2.0001; - plane = -7; - self_sustaining = 1 - }, -/turf/open/floor/plating, -/area/station/security/prison/garden) -"xdV" = ( -/obj/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/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/medical/storage) -"xdY" = ( -/obj/structure/cable, -/obj/machinery/computer/cargo/request, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"xee" = ( -/obj/effect/turf_decal/tile/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/medbay/central) -"xef" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/closet/crate, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"xeh" = ( -/obj/structure/cable, -/obj/machinery/duct, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"xei" = ( -/obj/machinery/door/morgue{ - name = "Relic Closet"; - req_access = list("crematorium") - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"xeo" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "QM #1" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/light/directional/west, -/mob/living/simple_animal/bot/mulebot{ - home_destination = "QM #3"; - suffix = "#3" - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"xev" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/command/heads_quarters/ce) -"xex" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Project Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"xeA" = ( -/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/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"xeF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"xeH" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"xeP" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xeT" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"xfd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"xfx" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/lesser) -"xfE" = ( -/obj/structure/lattice/catwalk, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/turf/open/space/basic, -/area/space/nearstation) -"xfX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"xgt" = ( -/obj/structure/cable, -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/ce) -"xgE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/field/generator, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/main) -"xgL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"xgP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/computer/communications, -/turf/open/floor/iron/grimy, -/area/station/command/bridge) -"xgQ" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/hallway) -"xgR" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xgX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "cargounload" - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"xhd" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"xhi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/door/directional/east{ - id = "service_maint_shutters"; - name = "shutters control"; - pixel_y = -8 - }, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/table, -/obj/item/stack/sheet/iron/ten, -/obj/item/stack/rods/ten, -/obj/item/stack/cable_coil, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Vacant Room" - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/commons/vacant_room) -"xhp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"xhz" = ( -/obj/structure/closet/secure_closet/evidence, -/obj/machinery/camera/directional/south{ - c_tag = "Security - Evidence Storage" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/warden) -"xhC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"xhE" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/disposal/bin, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"xhR" = ( -/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/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/iron, -/area/station/service/electronic_marketing_den) -"xhW" = ( -/turf/closed/wall, -/area/station/cargo/sorting) -"xic" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"xiG" = ( -/obj/machinery/power/port_gen/pacman/pre_loaded, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"xiM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"xiV" = ( -/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, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/fore) -"xiW" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"xjd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"xju" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"xjx" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"xjF" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"xkh" = ( -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/storage) -"xkw" = ( -/turf/closed/wall/r_wall, -/area/station/tcommsat/server) -"xkz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/vending/tool, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/storage_shared) -"xkT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"xlp" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/warden, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/warden) -"xly" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral, -/obj/item/mod/module/plasma_stabilizer, -/obj/item/mod/module/thermal_regulator, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron, -/area/station/medical/break_room) -"xlD" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/science/server) -"xlG" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"xlI" = ( -/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/prison) -"xlJ" = ( -/obj/structure/cable, -/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, -/area/station/commons/dorms) -"xlN" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"xlQ" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/science/explab) -"xmc" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/crowbar/red, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"xme" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"xmg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"xmi" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 10 - }, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"xmk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Prison - Visitation (Prisoner)"; - dir = 1; - network = list("ss13","prison") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"xms" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/primary/central/fore) -"xmv" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"xmG" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/theatre) -"xna" = ( -/obj/effect/turf_decal/siding/wood/corner{ - dir = 4 - }, -/obj/structure/noticeboard/directional/north, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"xnf" = ( -/obj/item/storage/book/bible, -/obj/structure/altar_of_gods, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/service/chapel) -"xnh" = ( -/obj/effect/landmark/start/hangover/closet, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/closet/secure_closet/personal, -/obj/effect/spawner/random/food_or_drink/cups, -/obj/item/storage/secure/briefcase, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/commons/vacant_room) -"xnj" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = 4; - pixel_y = 13 - }, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -6; - pixel_y = 14 - }, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_y = 8 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 5 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"xnm" = ( -/obj/structure/bed, -/obj/machinery/iv_drip, -/obj/item/bedsheet/medical, -/obj/machinery/vending/wallmed/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Security - Medbay" - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) -"xns" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/trimline/green/end{ - dir = 1 - }, -/obj/item/reagent_containers/glass/watering_can, -/obj/effect/turf_decal/trimline/green/mid_joiner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/mid_joiner{ - dir = 4 - }, -/turf/open/floor/iron/half{ - dir = 8 - }, -/area/station/service/hydroponics/garden) -"xnu" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"xnw" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/wooden_tv, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"xnJ" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"xnK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/security/range) -"xnM" = ( -/obj/effect/turf_decal/stripes/white/line{ - color = "#52B4E9"; - dir = 9; - name = "blue line" - }, -/obj/machinery/camera{ - c_tag = " Prison - (West) Purple Wing"; - dir = 4; - network = list("ss13","prison") - }, -/turf/open/floor/iron/dark/blue/side{ - dir = 6 - }, -/area/station/security/prison) -"xnT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/service/theater/abandoned) -"xnU" = ( -/obj/machinery/light/directional/east, -/obj/machinery/requests_console/directional/east{ - department = "Xenobiology"; - name = "Xenobiology Requests Console"; - receive_ore_updates = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/chem_master, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"xod" = ( -/obj/effect/landmark/start/librarian, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"xof" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"xop" = ( -/obj/machinery/atmospherics/components/tank, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"xoq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/button/door/directional/north{ - id = "brigprison"; - name = "Prison Lockdown" - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"xos" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/random/trash/grille_or_waste, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/port/lesser) -"xot" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"xoD" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction) -"xoK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xoR" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"xoU" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"xpa" = ( -/obj/structure/chair/stool/directional/north, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"xpm" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/wood/fancy, -/obj/structure/sign/painting/library_secure{ - pixel_y = 32 - }, -/obj/effect/spawner/random/decoration/statue{ - spawn_loot_chance = 35 - }, -/turf/open/floor/carpet, -/area/station/service/library) -"xpp" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/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/security/brig) -"xpr" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/crate, -/obj/item/inflatable/door, -/obj/item/melee/chainofcommand{ - damtype = "stamina"; - desc = "Feels a lot softer than a real whip. Looks like it'll still sting and hurt, but it won't leave deep lacerations."; - force = 30; - name = "leather whip" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/light/small/red/directional/west, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/stack/cable_coil, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) -"xpt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"xpE" = ( -/obj/effect/turf_decal/trimline/yellow/filled/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/white, -/area/station/medical/chemistry) -"xpO" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/project) -"xpS" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/space_heater, -/obj/machinery/firealarm/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/textured_large, -/area/station/engineering/atmos/project) -"xpY" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/turf_decal/trimline/yellow/filled/warning, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xqe" = ( -/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/neutral/fourcorners, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/hallway) -"xqp" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"xqs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"xqG" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/newscaster/directional/north, -/obj/effect/turf_decal/bot, -/obj/item/clipboard, -/obj/item/toy/figure/ce, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"xqM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"xqN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"xqR" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"xqW" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/clothing/gloves/color/yellow, -/turf/open/floor/iron, -/area/station/engineering/main) -"xqY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - name = "HoS Junction"; - sortType = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"xra" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"xrd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"xrg" = ( -/obj/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/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/main) -"xrr" = ( -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/structure/sink{ - pixel_y = 22 - }, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"xrA" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"xrB" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/maintenance/port/greater) -"xrI" = ( -/obj/structure/cable, -/obj/machinery/computer/med_data, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"xrY" = ( -/obj/machinery/chem_master/condimaster, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/security/prison/mess) -"xsb" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"xsc" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/half{ - dir = 8 - }, -/area/station/hallway/primary/port) -"xsq" = ( -/obj/structure/table, -/obj/item/storage/box/lights/mixed, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"xsr" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/machinery/lapvend, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"xsy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/storage/bag/tray, -/obj/item/clothing/suit/apron/chef, -/obj/item/clothing/head/chefhat, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cafe_counter"; - name = "Kitchen Counter Shutters"; - dir = 8 - }, -/turf/open/floor/iron/white/smooth_half{ - dir = 1 - }, -/area/station/service/kitchen) -"xsG" = ( -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"xsI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plating, -/area/station/security/range) -"xsP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"xsQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/window/left/directional/north{ - name = "Robotics Delivery"; - req_access = list("robotics") - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"xsS" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/commons/locker) -"xsV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - 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/security/office) -"xsW" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/warden) -"xtg" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-right" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"xth" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/science/auxlab) -"xtj" = ( -/obj/machinery/computer/prisoner/management{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hos) -"xtl" = ( -/obj/effect/landmark/start/clown, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/chair/stool/directional/north, -/turf/open/floor/iron, -/area/station/service/theater) -"xtm" = ( -/obj/structure/chair/sofa/right{ - dir = 8 - }, -/obj/structure/sign/painting/library{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/station/service/library) -"xtp" = ( -/turf/closed/wall, -/area/station/service/kitchen) -"xtq" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/command/teleporter) -"xtM" = ( -/obj/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/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"xtQ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cafe_counter"; - name = "Kitchen Counter Shutters"; - dir = 8 - }, -/obj/structure/desk_bell{ - pixel_x = -7; - pixel_y = 6 - }, -/turf/open/floor/iron/white/smooth_half{ - dir = 1 - }, -/area/station/service/kitchen) -"xtV" = ( -/obj/machinery/photocopier, -/obj/machinery/light/directional/north, -/obj/machinery/requests_console/directional/north{ - announcementConsole = 1; - department = "Head of Security's Desk"; - departmentType = 5; - name = "Head of Security's Requests Console" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/radio/intercom/directional/north{ - pixel_x = 32 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"xtZ" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/landmark/start/hangover, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"xug" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"xui" = ( -/obj/item/target, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"xum" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/lobby) -"xuy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/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/medbay/central) -"xuO" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/bot, -/obj/effect/spawner/random/structure/tank_holder, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"xva" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"xvc" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/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/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/engineering/main) -"xvl" = ( -/obj/machinery/power/shieldwallgen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"xvo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"xvq" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/directional/south, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/button/door/directional/south{ - id = "rndlab1"; - name = "Primary Research Shutters Control"; - pixel_x = -8; - req_access = list("science") - }, -/obj/machinery/button/door/directional/south{ - id = "rndlab2"; - name = "Secondary Research Shutters Control"; - pixel_x = 8; - req_access = list("science") - }, -/turf/open/floor/iron, -/area/station/science/lab) -"xvy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"xvC" = ( -/obj/machinery/door/airlock{ - name = "Medbay Auxiliary Storage" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/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/medical/general, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"xvJ" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel Morgue" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"xwa" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"xwq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xwu" = ( -/turf/open/floor/iron, -/area/station/engineering/storage) -"xwA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"xwF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "E.V.A. Storage" - }, -/obj/structure/cable, -/obj/effect/landmark/navigate_destination, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/command/eva, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"xwK" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"xwN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Tool Storage" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"xwO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den/gaming) -"xwU" = ( -/obj/machinery/vending/security, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/lockers) -"xwW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/port/lesser) -"xwY" = ( -/obj/machinery/iv_drip, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"xxd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"xxf" = ( -/obj/structure/chair/comfy{ - color = "#596479"; - dir = 4 - }, -/turf/open/floor/wood, -/area/station/security/prison) -"xxk" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"xxp" = ( -/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/airlock/external{ - name = "External Atmos Access" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"xxq" = ( -/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/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"xxB" = ( -/turf/closed/wall, -/area/station/cargo/lobby) -"xxE" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"xxF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/processing) -"xxH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/moisture_trap, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"xxK" = ( -/obj/structure/frame/computer{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/purple{ - dir = 10 - }, -/turf/open/floor/glass, -/area/station/maintenance/space_hut/observatory) -"xxZ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xya" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/command/heads_quarters/ce) -"xyd" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/processing) -"xyt" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"xyJ" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"xyL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"xzc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"xzd" = ( -/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/lesser) -"xzh" = ( -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/science/lab) -"xzk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"xzn" = ( -/obj/structure/table/reinforced, -/obj/item/healthanalyzer, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/item/healthanalyzer, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"xzo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"xzx" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"xzC" = ( -/obj/structure/railing, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/camera/directional/east{ - c_tag = "Service - Theater Stage"; - name = "service camera" - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/wood, -/area/station/service/theater) -"xzN" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/status_display/ai/directional/south, -/obj/machinery/camera/directional/south{ - default_camera_icon = "Service - Bar Aft"; - dir = 5; - name = "service camera" - }, -/turf/open/floor/iron, -/area/station/commons/lounge) -"xzQ" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/obj/machinery/camera/directional/north{ - c_tag = "Engineering - Chief Engineer's Quarters"; - name = "engineering camera" - }, -/obj/machinery/button/door/directional/east{ - id = "ceprivacy"; - name = "Privacy Control"; - pixel_y = 5; - req_access = list("ce") - }, -/obj/machinery/light_switch/directional/east{ - pixel_y = -6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"xzV" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig) -"xzW" = ( -/obj/structure/window/reinforced, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"xAa" = ( -/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/library) -"xAc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 5 - }, -/turf/open/floor/iron/dark/red/side{ - dir = 8 - }, -/area/station/security/execution) -"xAo" = ( -/turf/closed/wall, -/area/station/security/detectives_office/private_investigators_office) -"xAt" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/duct, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"xAB" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"xAD" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/electrolyzer, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/textured_large, -/area/station/engineering/atmos/project) -"xAN" = ( -/obj/structure/table/wood, -/obj/item/radio/intercom, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/security/courtroom) -"xAR" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/space) -"xAT" = ( -/obj/structure/table, -/obj/item/folder, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/locker) -"xAX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"xBj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"xBu" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"xBw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"xBA" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"xBG" = ( -/obj/structure/chair/office/light, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"xBJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"xBK" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"xBR" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/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/aft) -"xCa" = ( -/obj/machinery/telecomms/broadcaster/preset_left, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"xCf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"xCt" = ( -/obj/machinery/computer/telecomms/server{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"xCu" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"xCA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/window/reinforced/plasma/spawner/east, -/turf/open/floor/iron, -/area/station/maintenance/port/lesser) -"xCC" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/blood/random{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/reagent_containers/blood/random, -/obj/effect/turf_decal/bot, -/obj/item/reagent_containers/food/condiment/enzyme{ - layer = 5; - pixel_x = -6; - pixel_y = 8 - }, -/turf/open/floor/iron, -/area/station/service/kitchen/abandoned) -"xDc" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/stool/bar/directional/east, -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet/green, -/area/station/commons/lounge) -"xDd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"xDf" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xDi" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Engineering - Power Monitoring"; - name = "engineering camera" - }, -/obj/machinery/computer/atmos_alert{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"xDm" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmoslock"; - name = "Atmospherics Lockdown Blast Door" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/half, -/area/station/engineering/atmos) -"xDn" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigfront"; - name = "Brig Blast Door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/security/brig) -"xDq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"xDu" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"xDQ" = ( -/obj/structure/sign/warning/vacuum, -/turf/closed/wall/r_wall, -/area/station/maintenance/port/greater) -"xDU" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"xDV" = ( -/obj/machinery/field/generator, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/main) -"xDW" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "cargounload" - }, -/obj/machinery/door/poddoor{ - id = "cargounload"; - name = "Supply Dock Unloading Door" - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"xDX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"xDY" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"xEa" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"xEs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"xEt" = ( -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"xEw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"xEA" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"xEE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Courtroom" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"xEM" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"xEN" = ( -/obj/machinery/computer/monitor{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"xEO" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "cargounload" - }, -/obj/structure/plasticflaps, -/turf/open/floor/plating, -/area/station/cargo/storage) -"xEV" = ( -/obj/item/target, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/preset/ordnance{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"xEW" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Chapel Maintenance" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/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/service/chapel_office, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"xEY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/effect/spawner/random/maintenance/three, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/cargo/storage) -"xFg" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xeno5"; - name = "Containment Control"; - req_access = list("xenobiology") - }, -/obj/machinery/light/directional/south, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"xFh" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"xFo" = ( -/obj/item/radio/intercom/directional/north, -/obj/machinery/mech_bay_recharge_port, -/obj/effect/turf_decal/delivery, -/obj/machinery/camera/directional/north{ - c_tag = "Cargo Bay - Fore"; - name = "cargo camera" - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"xFw" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"xFz" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"xFP" = ( -/turf/open/floor/plating, -/area/station/security/execution/transfer) -"xFQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"xFZ" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/firealarm/directional/south, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"xGh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"xGi" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/chair/sofa/bench/left{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"xGj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/vending/wallmed/directional/west, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"xGl" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/machinery/button/flasher{ - id = "transferflash"; - pixel_y = 24 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"xGm" = ( -/obj/structure/table/wood, -/obj/item/storage/box/donkpockets, -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/breakroom) -"xGC" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"xGH" = ( -/obj/structure/disposalpipe/segment, -/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/grimy, -/area/station/security/detectives_office) -"xGL" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/shower{ - dir = 1; - name = "emergency shower" - }, -/obj/effect/turf_decal/trimline/blue/end{ - dir = 1 - }, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/atmos/project) -"xGQ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"xGR" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/left/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"xHe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"xHs" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xHw" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/item/radio/intercom/directional/south, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/iron, -/area/station/engineering/atmos/hfr_room) -"xHz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"xHE" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"xHM" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/circuit/green, -/area/station/science/xenobiology) -"xIb" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/hfr_room) -"xIl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/brigoff, -/turf/open/floor/iron/dark/blue, -/area/brigofficer) -"xIL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"xIR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/grimy, -/area/station/commons/vacant_room/office) -"xIU" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"xJf" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"xJn" = ( -/obj/structure/table/reinforced, -/obj/item/airlock_painter/decal, -/obj/effect/turf_decal/bot, -/obj/item/toner, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"xJo" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"xJw" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"xJF" = ( -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"xJJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"xJZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/radiation, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"xKi" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/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/security/range) -"xKn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/start/customs_agent, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"xKv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"xKD" = ( -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/captain) -"xKE" = ( -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"xKF" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"xKJ" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"xKL" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/electrical, -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = 32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"xKN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"xKS" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/meter{ - name = "Mixed Air Tank In" - }, -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"xLi" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 10 - }, -/obj/machinery/status_display/evac/directional/east, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xLq" = ( -/obj/machinery/computer/med_data/laptop{ - dir = 8; - pixel_y = 1 - }, -/obj/item/toy/figure/geneticist, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"xLr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/kitchen/abandoned) -"xLs" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"xLE" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/toilet/restrooms) -"xLG" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"xLL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/commons/fitness/recreation) -"xLN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"xLQ" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/theater) -"xLT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Vacant Room" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/iron, -/area/station/commons/vacant_room) -"xLZ" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/storage/gas) -"xMe" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"xMi" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"xMo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den/gaming) -"xMp" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/station/hallway/secondary/entry) -"xMy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/turret_protected/ai) -"xMI" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall, -/area/station/medical/virology) -"xMK" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"xMM" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"xMX" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"xMZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"xNe" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/turf/open/space/basic, -/area/space/nearstation) -"xNg" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/tank/air, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"xNh" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/bucket/wooden, -/obj/structure/cable, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark/purple/side{ - dir = 10 - }, -/area/station/security/prison/safe) -"xNk" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cafe_counter"; - name = "Kitchen Counter Shutters" - }, -/turf/open/floor/iron/white/smooth_corner{ - dir = 8 - }, -/area/station/service/kitchen) -"xNn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"xNu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/structure/sink/kitchen{ - pixel_y = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"xNE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"xNI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/lesser) -"xNR" = ( -/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{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"xNU" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark/blue/side{ - dir = 8 - }, -/area/brigofficer) -"xNV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"xNW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/commons/toilet/locker) -"xOn" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/secure/briefcase, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron, -/area/station/security/courtroom) -"xOt" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/hop) -"xOv" = ( -/obj/machinery/status_display/evac/directional/west, -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) -"xOz" = ( -/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/cable, -/obj/structure/mirror/directional/north, -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/toilet/restrooms) -"xOD" = ( -/obj/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/table/wood/fancy/red, -/obj/machinery/door/window/brigdoor/left/directional/south{ - dir = 4; - name = "High-Risk Modules"; - req_access = list("captain") - }, -/turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) -"xOH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Research Director's Office" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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/science/rd, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"xOI" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Service - Kitchen Coldroom"; - dir = 10; - name = "service camera" - }, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"xOM" = ( -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"xOP" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"xPc" = ( -/turf/closed/wall, -/area/station/medical/virology) -"xPh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/auxlab) -"xPo" = ( -/obj/structure/bed/roller, -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/white, -/area/station/security/medical) -"xPt" = ( -/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/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/vault{ - name = "Vault Door" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/vault, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"xPz" = ( -/obj/machinery/camera{ - c_tag = " Prison - Entrance"; - network = list("ss13","prison") - }, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron, -/area/station/security/prison) -"xPM" = ( -/obj/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/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/cmo) -"xPO" = ( -/obj/machinery/door/poddoor/shutters{ - id = "evashutters2"; - name = "E.V.A. Storage Shutters"; - dir = 1 - }, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"xPW" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"xQa" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"xQq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/mob/living/basic/cockroach, -/turf/open/floor/iron/dark, -/area/station/service/abandoned_gambling_den) -"xQr" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 6 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"xQv" = ( -/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/directional/north, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"xQz" = ( -/obj/effect/turf_decal/tile/blue{ - 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/white, -/area/station/medical/medbay/central) -"xQN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"xQY" = ( -/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/fitness/recreation) -"xRo" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"xRv" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/cargo/storage) -"xRC" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrogen_input{ - dir = 4 - }, -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"xRE" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"xRO" = ( -/obj/structure/fireplace, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/captain) -"xSe" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Library"; - name = "library camera" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"xSf" = ( -/obj/structure/bed, -/obj/item/bedsheet/clown, -/obj/machinery/newscaster/directional/east, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"xSk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/abandoned_gambling_den) -"xSn" = ( -/obj/item/kirbyplants/random, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/commons/dorms) -"xSq" = ( -/obj/effect/spawner/random/vending/snackvend, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/kitchen/abandoned) -"xSx" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"xSz" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/railing{ - dir = 10 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"xSC" = ( -/obj/machinery/suit_storage_unit/engine, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/ai/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/storage) -"xSD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"xSO" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/maintenance/department/science) -"xTi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"xTm" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"xTr" = ( -/turf/closed/wall, -/area/station/science/robotics/lab) -"xTC" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage) -"xTJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/command/gateway) -"xTK" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"xTL" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/primary/central/aft) -"xTO" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"xTQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"xTT" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/yellow, -/obj/item/storage/toolbox/electrical, -/obj/item/multitool, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"xUl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/directional/east{ - c_tag = "Engineering - Supermatter Room Starboard"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"xUm" = ( -/obj/structure/cable, -/obj/structure/window/reinforced/plasma/spawner/west{ - dir = 4 - }, -/obj/machinery/power/energy_accumulator/grounding_rod/anchored, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"xUq" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"xUt" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"xUy" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/hallway) -"xUL" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/service/library) -"xUP" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/item/pen, -/obj/machinery/door/window/brigdoor/right/directional/south{ - dir = 1; - name = "Security Desk"; - pixel_y = 8; - req_access = list("brig_entrance") - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"xVa" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"xVe" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"xVv" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"xVE" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"xVI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/rack, -/obj/item/analyzer, -/obj/item/wrench, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/pumproom) -"xVT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/sign/poster/official/moth_piping{ - pixel_x = -32 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"xVV" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Holodeck - Aft 2"; - name = "holodeck camera" - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/station/holodeck/rec_center) -"xWb" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/component_printer, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"xWc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"xWd" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/iron/grimy, -/area/station/service/abandoned_gambling_den) -"xWf" = ( -/turf/closed/wall, -/area/station/science/research) -"xWw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Bar Maintenance" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/duct, -/obj/effect/mapping_helpers/airlock/access/all/service/bar, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"xWC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"xWD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Research Director's Quarters" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/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/science/rd, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"xWI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/valve, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"xWJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_output{ - dir = 4 - }, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"xWQ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/crew_quarters/bar) -"xWS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Mech Bay" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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/science/robotics, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"xXd" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"xXj" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder/red, -/turf/open/floor/carpet, -/area/station/service/library/abandoned) -"xXm" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Central Hallway - Fore"; - name = "hallway camera" - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L12" - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"xXw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood, -/obj/structure/mirror/directional/north, -/obj/structure/table/wood/fancy/royalblack, -/obj/item/toy/figure/mime, -/turf/open/floor/wood, -/area/station/service/theater) -"xXE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/nuclearbomb/beer, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"xXI" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/prisoner, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"xXR" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/science/research) -"xYe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/door/airlock/research{ - name = "Ordnance Launch Site" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-toxins-passthrough" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/iron, -/area/station/science/ordnance/testlab) -"xYl" = ( -/obj/structure/lattice, -/obj/item/toy/figure/ninja, -/turf/open/space, -/area/space/nearstation) -"xYy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison) -"xYB" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"xYC" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"xYI" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"xYJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"xYO" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"xYP" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"xYT" = ( -/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, -/area/station/command/gateway) -"xYZ" = ( -/obj/machinery/exodrone_launcher, -/obj/effect/turf_decal/box, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"xZw" = ( -/obj/structure/fluff/metalpole{ - dir = 1 - }, -/obj/structure/lattice/catwalk, -/obj/structure/marker_beacon/burgundy, -/turf/open/space/basic, -/area/station/hallway/secondary/entry) -"xZy" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Medbay - Aft Starboard"; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/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, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"xZz" = ( -/obj/machinery/plate_press{ - pixel_y = -3 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/work) -"xZF" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/theater/abandoned) -"xZM" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 1; - height = 4; - name = "escape pod loader"; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/turf/open/space/basic, -/area/space) -"xZN" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Ordnance Launch Site" - }, -/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_multi{ - cycle_id = "sci-toxins-passthrough" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/iron, -/area/station/science/ordnance) -"xZV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"yah" = ( -/obj/machinery/computer/bank_machine, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"yaG" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall/r_wall, -/area/station/medical/virology) -"yaI" = ( -/turf/closed/wall, -/area/station/commons/dorms) -"yaP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"yaT" = ( -/obj/structure/table/wood, -/obj/item/taperecorder, -/obj/item/camera, -/obj/machinery/status_display/ai/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/library) -"yaW" = ( -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) -"yba" = ( -/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) -"ybb" = ( -/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/directional/north, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Engineering - Foyer"; - name = "engineering camera" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/lobby) -"ybg" = ( -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/turf/open/floor/iron/grimy, -/area/station/commons/dorms) -"ybr" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 6 - }, -/obj/structure/closet/crate, -/turf/open/space/basic, -/area/space/nearstation) -"ybw" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/science/research) -"ybJ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/storage) -"ybN" = ( -/obj/machinery/vending/assist, -/obj/machinery/camera/directional/west{ - c_tag = "Primary Tool Storage"; - name = "engineering camera" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"ybS" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"ybV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"yca" = ( -/obj/item/food/pie/cream, -/obj/structure/table, -/obj/machinery/duct, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"ycq" = ( -/obj/machinery/door/airlock/external{ - name = "Security External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/plating, -/area/station/security/execution/transfer) -"ycz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"ycO" = ( -/obj/machinery/mech_bay_recharge_port{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/science/robotics/mechbay) -"ycS" = ( -/obj/machinery/button/curtain{ - id = "prisoncell9"; - pixel_y = 21 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/brown/side{ - dir = 1 - }, -/area/station/security/prison/safe) -"ycW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"ydb" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/chair/stool/bar/directional/west, -/turf/open/floor/iron/cafeteria, -/area/station/service/cafeteria) -"yde" = ( -/obj/structure/cable, -/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/east, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"ydg" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/white, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/food/flour, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"ydj" = ( -/obj/structure/chair/stool/directional/east, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/science/breakroom) -"ydw" = ( -/obj/structure/bed/dogbed/runtime, -/obj/machinery/light/directional/west, -/obj/machinery/airalarm/directional/west, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/mob/living/simple_animal/pet/cat/runtime, -/turf/open/floor/iron, -/area/station/command/heads_quarters/cmo) -"ydB" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/chair/sofa/right{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/commons/lounge) -"ydE" = ( -/obj/structure/chair/stool/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/abandoned_gambling_den) -"ydL" = ( -/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/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"ydY" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"yef" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/effect/spawner/random/bureaucracy/pen, -/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/fitness/recreation) -"yei" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"yem" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"yeo" = ( -/obj/structure/table, -/obj/effect/spawner/random/entertainment/drugs{ - pixel_y = 4 - }, -/obj/effect/spawner/random/entertainment/drugs{ - pixel_y = 1 - }, -/obj/machinery/reagentgrinder{ - pixel_y = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/maintenance/port/fore) -"yex" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/open/floor/engine, -/area/station/science/ordnance/burnchamber) -"yeE" = ( -/obj/structure/table, -/obj/item/storage/briefcase, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/locker) -"yeK" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"yeO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"yfo" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/conveyor{ - id = "cargodisposals" - }, -/obj/structure/plasticflaps, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"yfB" = ( -/turf/closed/wall, -/area/station/command/heads_quarters/rd) -"yfC" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"yfI" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/lobby) -"yfL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"yfO" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hos) -"yfR" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"yfX" = ( -/obj/structure/dresser, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/security/detectives_office/private_investigators_office) -"yga" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/turret_protected/ai) -"yge" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"ygi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/service/chapel) -"ygk" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"ygx" = ( -/obj/machinery/computer/security/telescreen/entertainment/directional/south, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"ygD" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/clipboard, -/obj/item/hand_labeler, -/turf/open/floor/iron/checker, -/area/station/hallway/secondary/service) -"ygL" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 4; - id = "cargodeliver" - }, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"ygM" = ( -/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, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"ygP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - id_tag = "Dorm3"; - name = "Cabin 3" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"ygT" = ( -/obj/effect/turf_decal/tile/brown, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"ygW" = ( -/obj/machinery/vending/hydroseeds, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"yhd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"yhh" = ( -/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/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/storage) -"yhm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/maintenance/port/aft) -"yhv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"yhw" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"yhJ" = ( -/turf/open/floor/plating/airless, -/area/space/nearstation) -"yhM" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/medical/virology) -"yhP" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"yhS" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/theatre) -"yie" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/splatter, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"yil" = ( -/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/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"yiw" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"yiA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - 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/security/execution/transfer) -"yiC" = ( -/obj/structure/table/wood, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_x = -3; - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"yiI" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"yiX" = ( -/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/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"yiZ" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"yjb" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/research) -"yjp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/station/commons/fitness/recreation) -"yjQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green/fourcorners, -/turf/open/floor/iron, -/area/station/medical/virology) -"yjT" = ( -/obj/machinery/holopad, -/obj/effect/landmark/start/medical_doctor, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/medical/medbay/lobby) -"ykb" = ( -/obj/structure/table, -/obj/item/storage/bag/plants/portaseeder, -/obj/item/hatchet, -/obj/item/cultivator, -/obj/item/shovel/spade, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics/garden) -"ykc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"yks" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/half, -/obj/effect/turf_decal/tile/neutral/half{ - dir = 1 - }, -/turf/open/floor/iron/dark/smooth_half, -/area/station/engineering/gravity_generator) -"ykw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/wood/corner, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"ykB" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"ykE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/computer/rdconsole{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/lab) -"ykJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock{ - id_tag = "Toilet2"; - name = "Toilet Unit 2" - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/toilet/locker) -"ykL" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Library Access" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/library) -"ykM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/commons/vacant_room) -"ykP" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/delivery, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"ykX" = ( -/obj/structure/table/wood, -/obj/item/electronics/firelock, -/obj/item/electronics/airlock, -/turf/open/floor/wood, -/area/station/service/electronic_marketing_den) -"ylf" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"yli" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"ylj" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"yll" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-side-entrance" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Security Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron, -/area/station/maintenance/starboard) -"yly" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/radio/intercom/directional/west, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"ylB" = ( -/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) -"ylM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/engineering/atmos/project) -"ymc" = ( -/obj/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/status_display/evac/directional/south, -/turf/open/floor/iron, -/area/station/commons/toilet/restrooms) -"yme" = ( -/obj/structure/bookcase{ - name = "Forbidden Knowledge" - }, -/turf/open/floor/iron/dark, -/area/station/service/library) -"ymi" = ( -/obj/machinery/light/directional/south, -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/station/command/meeting_room/council) - -(1,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(2,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(3,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(4,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(5,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(6,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(7,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(8,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(9,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(10,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(11,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(12,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(13,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(14,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(15,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(16,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(17,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(18,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(19,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -xTK -xTK -xTK -qYo -xTK -xTK -xTK -qYo -xTK -xTK -xTK -aad -xTK -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(20,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aaa -xxk -gNH -xxk -gNH -xxk -gNH -xxk -gNH -xxk -gNH -bmD -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(21,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -bkE -krW -xBK -pUh -xBK -gvN -tLN -ltv -xBK -xBK -xBK -dFF -nir -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(22,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -xTK -xTK -xTK -xTK -xTK -qYo -xTK -xTK -qYo -xTK -xTK -xTK -xTK -bkF -vgY -lNl -bmH -bRx -jQI -dtc -agy -mOH -bmH -boj -vgY -kRI -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(23,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -bpF -bmD -bmD -bpF -bmD -bmD -bpF -bmD -bmD -bpF -bmD -bpF -boe -vgY -jye -bPC -bPC -bPC -iGI -fvZ -bPC -bPC -bRO -vgY -nir -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(24,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -xzW -xGR -jvm -jvm -jvm -jvm -eRo -jGD -xBK -xBK -xBK -xBK -xBK -xBK -uuw -fEY -bPC -bRy -eQF -krT -uTG -tte -bPC -bkE -vgY -kRI -xTK -xTK -xTK -xTK -xTK -xTK -qYo -xTK -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(25,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -fvS -vXX -mOH -btF -bmH -bmH -bmH -btF -bmH -bmH -btF -bmH -bmH -btF -bLw -aaa -bPC -bRz -aAh -krT -xRo -caa -bPC -bkE -vgY -sJD -bmD -bpF -bmD -bmD -bpF -bmD -bpF -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(26,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -fvS -vXX -jOY -aad -aad -aad -btH -btH -btH -btH -btH -btH -btH -btH -btH -btH -bPC -bRA -bTq -jYp -kkh -cab -bPC -bRO -gCh -xBK -xBK -xEa -jvm -fch -jvm -jvm -goW -nir -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(27,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -xzW -vXX -fEY -aad -aad -btH -btH -btH -btH -btH -btH -btH -btH -btH -btH -btH -bPC -nmQ -bTq -wRy -kkh -cac -bPC -aaa -btF -bmH -bmH -btF -bmH -bmH -bpN -cqj -vXX -kRI -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(28,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -fvS -vXX -fEY -aaa -btH -btH -btH -tTe -cKE -btH -bEf -btH -rhH -ueB -lbz -btH -bPC -bRC -bTs -rPe -vvL -cad -bPC -cdt -cdt -chi -chi -cdt -cdt -aad -aad -bkF -vXX -nir -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(29,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -xTK -xTK -xzW -vXX -jye -aad -btH -btH -cQh -vOZ -xnu -kXJ -sGJ -kXJ -kXJ -jPe -kXJ -cQh -bPC -bRD -bPC -tnG -bPC -bPC -bPC -cdt -nwW -xOD -eCk -fKM -cdt -cdt -aad -bkE -vXX -kRI -xTK -xTK -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(30,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aaa -xxk -cwk -vXX -fEY -aaa -btH -btH -sGd -bCu -hGF -bCu -bEl -abJ -abJ -tKq -abJ -jXk -bPC -dLq -ikT -wLX -ikT -qTF -bRD -ruN -aRr -csk -fDO -hmU -bAK -cdt -cdt -bkE -vXX -xDu -bpF -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(31,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -fvS -fiE -mQg -ojP -fRw -sSb -sSb -sSb -lMy -aBN -yga -lMy -upB -tfp -lMy -lMy -abJ -tHQ -bPC -uNh -bTu -pFl -bYe -mlh -bPC -gwu -hmU -sdK -xpt -sdK -qdV -pnu -cdt -bRO -nJt -aWw -oNk -kRI -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(32,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -xzW -nJt -hwa -kCf -fEY -btH -btH -bwo -wJU -bCu -yga -btH -bIW -btH -btH -lMy -abJ -ldm -bPC -lgs -bYe -pFl -bYe -kkh -bPC -hmU -hmU -sdK -mMd -hmU -cfu -ptq -cdt -bkE -nJt -xRE -kCf -nir -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(33,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -fvS -nJt -cEq -dMN -tzv -btH -btH -kAo -siP -bEl -xMy -bCt -eUq -bFT -btH -mcW -trT -wgG -lKC -dYL -bhn -qYD -pFl -wLX -lUB -kjZ -kjZ -hVm -kjZ -bpT -kmX -uoO -sGj -vCl -ukN -fRa -kCf -kRI -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(34,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -xzW -nJt -hwa -kCf -fEY -btH -btH -cQw -wJU -bCu -yga -btH -uWu -btH -btH -jnr -abJ -gcI -bPC -bFY -bYe -pFl -bYe -kKz -bPC -apT -hmU -sdK -gjl -hmU -cfu -asO -cdt -bkE -nJt -rAn -kCf -nir -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(35,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -fvS -ppF -qhb -srZ -myI -uJH -uJH -uJH -deX -hGF -yga -deX -uQY -fHp -deX -deX -abJ -kXJ -bPH -uNh -bYe -pFl -bYf -aHr -bPC -gwu -hmU -sdK -tDB -hmU -tEd -aBi -cdt -bRO -nJt -bWb -nMi -kRI -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(36,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aaa -bmH -boj -vXX -fEY -aaa -btH -btH -sGd -bCu -aBN -bCu -bEl -abJ -abJ -kub -abJ -jXk -bPC -dKK -asa -wLX -asa -kan -bPC -uhG -yaW -dBO -wVJ -hmU -enc -cdt -cdt -bkE -vXX -lNl -bpN -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(37,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -xTK -xTK -bkF -vXX -jye -aad -btH -btH -cQh -nkb -eLP -kXJ -sGJ -kXJ -kXJ -xMX -kXJ -cQh -bPC -bRD -bPC -dNg -bPC -bPC -bPC -cdt -vFw -mkX -eCk -kex -cdt -cdt -aad -bkE -vXX -jOY -xTK -xTK -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(38,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -bkE -vXX -fEY -aaa -btH -btH -btH -aLQ -pUF -btH -bEm -btH -kxx -lyf -jIs -btH -bPC -uNh -upp -rPe -rKC -tIb -bPC -cdt -cdt -chi -chi -cdt -cdt -aad -aad -bkF -vXX -fEY -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(39,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -bkE -vXX -fEY -aad -aad -btH -btH -btH -btH -btH -btH -btH -btH -btH -btH -btH -bPC -bRK -skD -wLX -kkh -eae -bPC -aaa -btJ -bmD -bmD -btJ -bmD -bmD -bpF -cqn -vXX -jOY -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(40,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -bkE -vXX -jOY -aad -aad -aad -btH -btH -btH -btH -btH -btH -btH -btH -btH -btH -bPC -bRL -kkh -uCC -kkh -wQD -bPC -bRO -krW -xBK -xBK -xEa -jvm -qsB -jvm -jvm -aXm -fEY -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(41,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -bkE -vXX -tkp -btJ -bmD -bmD -bmD -btJ -bmD -bmD -btJ -bmD -bmD -btJ -bmD -aaa -bPC -bRM -kkh -wLX -tWv -pGJ -bPC -bkE -vgY -usR -bmH -bpN -bmH -bmH -bpN -bmH -bmH -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(42,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -bkF -jFd -jvm -jvm -jvm -jvm -oxg -jGD -xBK -xBK -xBK -moG -xBK -xBK -dFF -fEY -bPC -uNh -asa -wLX -asa -olD -bPC -bkE -vgY -jOY -xTK -xTK -qYo -xTK -xTK -xTK -qYo -xTK -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(43,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aaa -bpN -bmH -bmH -bpN -bmH -bmH -bpN -bmH -bmH -bpN -bmH -bpN -boj -vgY -jye -bPC -bPC -bPC -anC -bPC -bPC -bPC -bRO -vgY -fEY -xTK -aaa -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(44,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -xTK -xTK -xTK -qYo -xTK -xTK -xTK -qYo -xTK -xTK -xTK -xTK -xTK -bkF -vgY -xDu -bmD -bRN -ldM -fkB -ozY -tkp -bmD -boe -vgY -jOY -xTK -aaa -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(45,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaa -qYo -xTK -bkE -gCh -tLN -riP -xBK -pxs -fkB -eAf -xBK -xBK -xBK -uuw -aCV -qYo -qYo -qYo -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(46,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaa -qYo -qYo -aaa -boj -cVx -lNl -bRx -nJt -qdF -kCf -mOH -kmq -aNs -kmq -aaa -xTK -aaa -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aaa -abj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(47,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wVj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaa -qYo -xTK -xTK -bkF -nDt -jOY -bRO -nJt -qKi -jDZ -jye -xTK -xTK -xTK -qYo -xTK -qYo -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(48,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aaa -qYo -aaa -qYo -aaa -vVc -aaa -bRO -nJt -siT -kCf -jye -aaa -qYo -aaa -aaa -aaa -qYo -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aaa -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(49,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -qYo -xTK -aaa -qYo -aaa -vVc -aaa -bRO -sCC -fkB -kCf -jye -aaa -qYo -aaa -aaa -aaa -xTK -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -oec -tnB -oec -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(50,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aaa -xTK -qYo -qYo -aad -vVc -aad -bRP -pRw -qdF -qPn -aJD -aad -aad -aad -aad -qYo -xTK -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -tnB -oec -fSW -oec -tnB -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(51,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaa -xTK -aaa -qYo -aaa -vVc -aaa -bkF -sIl -oeL -rYr -jOY -aaa -aad -aaa -aaa -aaa -xTK -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -oec -oec -fSr -xEV -rlQ -oec -oec -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(52,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -qYo -xTK -aaa -qYo -aaa -vVc -aaa -bRQ -bmH -aXo -bmH -cap -aaa -aad -aaa -aaa -aaa -qYo -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aad -aad -tnB -tnB -ebF -hZT -jbR -nEA -iXw -tnB -tnB -aad -aad -abj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(53,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aaa -xTK -qYo -qYo -aad -vVc -aad -bRR -aad -mmr -aad -bRR -aad -aad -aad -aad -qYo -xTK -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oec -erQ -itR -itR -gJj -dBc -jbR -xui -oec -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(54,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aaa -qYo -aaa -qYo -aaa -vVc -aaa -bRS -aaa -mmr -aaa -caq -aaa -aad -aaa -aaa -aaa -xTK -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aad -aad -tnB -tnB -pPf -qbj -itR -mcA -pqX -tnB -tnB -aad -aad -abj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(55,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaa -xTK -aaa -qYo -aaa -vVc -aaa -aad -bTJ -mmr -bYm -aad -aaa -aad -aaa -aaa -aaa -xTK -aaa -xTK -aaa -aaa -aaa -aaa -wVj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -oec -oec -jCK -jbR -fkd -oec -oec -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(56,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -qYo -xTK -aaa -qYo -aaa -vVc -aaa -aad -aaa -iNi -aaa -aad -aaa -aad -aaa -aaa -aaa -xTK -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -tnB -oec -lob -oec -tnB -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(57,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aaa -xTK -qYo -qYo -aad -vVc -vVc -vVc -aad -oRu -aad -aad -aad -aad -aad -qYo -qYo -qYo -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -oec -eln -oec -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(58,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aaa -qYo -aaa -qYo -aaa -aad -aaa -vVc -aaa -oPn -aaa -aad -aaa -aad -aaa -aaa -aaa -xTK -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aaa -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(59,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -qYo -xTK -aaa -qYo -aaa -aad -aaa -vVc -aaa -oPn -aaa -aad -aaa -aad -aaa -aaa -aaa -xTK -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(60,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaa -xTK -qYo -qYo -aad -aad -aad -vVc -aad -cXx -aad -aad -aad -aad -aad -qYo -qYo -xTK -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aaa -abj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(61,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -uHd -qYo -uHd -qYo -qYo -aaa -aad -aaa -vVc -aaa -oPn -aaa -aad -aaa -aad -aaa -aaa -aaa -xTK -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaa -aaa -qYo -qYo -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(62,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaa -aad -eqU -qYo -aaa -aad -aaa -vVc -aaa -oPn -aaa -aad -aaa -aad -aaa -aaa -aaa -qYo -aaa -xTK -aaa -aaa -aaa -qYo -aaa -aaa -aaa -qYo -aaa -aaa -aaa -qYo -aaa -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(63,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -uHd -aaa -qYo -qYo -qYo -aaa -qYo -aad -vVc -aad -oRu -aad -aad -aad -aad -aad -qYo -qYo -xTK -qYo -xTK -qYo -uHd -uHd -uHd -uHd -qYo -uHd -uHd -uHd -uHd -qYo -uHd -uHd -uHd -uHd -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(64,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -uHd -aaa -uHd -aaa -qYo -aaa -qYo -aaa -vVc -aaa -oPn -aaa -aad -aaa -aad -aaa -aaa -aaa -xTK -aaa -qYo -aaa -aaa -qYo -aaa -aaa -aaa -aaa -aaa -qYo -aaa -aaa -aaa -qYo -aaa -aaa -qYo -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(65,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wVj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -qYo -uHd -aaa -qYo -aaa -qYo -aaa -vVc -aaa -oPn -aaa -aad -aaa -aad -aaa -aaa -aaa -xTK -aaa -xTK -aaa -aaa -qYo -aaa -aaa -aaa -aaa -aaa -qYo -aaa -aaa -aaa -qYo -aaa -aaa -uHd -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(66,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wVj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -uHd -aaa -uHd -qYo -uHd -uHd -uHd -qYo -vVc -aad -cXx -aad -aac -aac -aac -aad -uHd -qYo -xTK -qYo -xTK -uHd -uHd -uHd -qYo -uHd -uHd -uHd -qYo -uHd -uHd -uHd -uHd -qYo -qYo -qYo -uHd -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(67,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -qYo -uHd -uHd -qYo -uHd -uHd -aaa -qYo -aaa -qYo -aaa -qYo -aaa -vVc -aaa -dVg -aaa -aad -aaa -aad -aaa -aaa -aaa -xTK -aaa -xTK -aaa -qYo -aaa -aaa -qYo -aaa -aaa -aaa -qYo -aaa -aaa -aaa -qYo -aaa -aaa -qYo -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(68,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -aac -aad -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wVj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaa -aaa -qYo -aaa -aaa -aaa -uHd -aaa -qYo -aaa -qYo -aaa -vVc -aaa -dVg -aaa -aad -aaa -aad -aaa -aaa -aaa -xTK -aaa -qYo -aaa -qYo -aaa -aaa -qYo -aaa -aaa -aaa -qYo -qYo -qYo -qYo -uHd -aaa -vVc -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(69,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aFo -aac -aac -aaa -aad -aaa -aad -aaa -aac -aac -aad -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -uHd -qYo -uHd -uHd -uHd -qYo -uHd -uHd -qYo -uHd -qYo -uHd -qYo -vVc -aad -alZ -qYo -uHd -qYo -uHd -uHd -uHd -qYo -aac -aaa -qYo -uKa -rxf -rxf -rxf -rxf -rxf -rxf -rxf -rxf -fBG -aaa -aaa -uHd -qYo -vVc -aad -qYo -xTK -xTK -xTK -xTK -qYo -xTK -xTK -qYo -xTK -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(70,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aad -aaa -aad -aaa -vYu -fKU -vYu -aaa -aad -aaa -aad -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xNe -aaa -aaa -qYo -aaa -aaa -qYo -aaa -aaa -qYo -aaa -qYo -aaa -vVc -aaa -dVg -aaa -qYo -aaa -qYo -aaa -qYo -aaa -qYo -aaa -qYo -ksq -kXq -kvX -frC -kvX -frC -kvX -frC -kvX -tGf -aaa -aaa -uHd -aaa -vVc -aaa -qYo -aaa -qYo -aaa -qYo -qYo -qYo -aaa -qYo -aaa -qYo -qYo -xTK -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(71,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -vYu -fKU -vYu -aaa -vYu -fKU -vYu -aaa -vYu -fKU -vYu -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -qYo -wes -gnH -sXE -gnH -wFJ -wFJ -uPM -wFJ -wFJ -wFJ -wFJ -wFJ -wFJ -vVW -fgB -fgB -qAe -qYo -uHd -uHd -uHd -uHd -qYo -qYo -ksq -hIH -kvX -frC -kvX -frC -kvX -frC -kvX -fBG -qYo -qYo -qYo -qYo -vVc -aad -xTK -xTK -xTK -qYo -xTK -mnL -xTK -qYo -xTK -qYo -xTK -qYo -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(72,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaa -vYu -fKU -vYu -aaa -vYu -fKU -vYu -aaa -vYu -fKU -vYu -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaa -nUT -qYo -wGy -wGy -wnj -wGy -wGy -vVc -vVc -vVc -sVm -abj -abj -lbi -wFR -aaa -nUT -aaa -aaa -qYo -aaa -qYo -aaa -qYo -ksq -kXq -kvX -frC -kvX -frC -kvX -frC -kvX -tGf -qYo -aaa -uHd -aaa -vVc -aaa -qYo -aaa -qYo -qYo -qYo -rNi -qYo -qYo -qYo -aaa -qYo -xTK -qYo -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(73,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -qYo -vYu -fKU -vYu -qYo -vYu -fKU -vYu -qYo -vYu -fKU -vYu -aad -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -uHd -qYo -nUT -qYo -wGy -qJl -xqe -hPO -wGy -dgk -dgk -dgk -vmt -dgk -ult -dgk -vmt -vmt -nUT -qYo -qYo -qYo -qYo -qYo -qYo -qYo -ksq -hIH -kvX -frC -kvX -frC -kvX -frC -kvX -fBG -vVc -vVc -gRZ -qYo -vVc -geZ -geZ -tFF -geZ -geZ -geZ -maN -geZ -geZ -geZ -tFF -geZ -geZ -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(74,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -vYu -fKU -vYu -aaa -vYu -fKU -vYu -aaa -vYu -fKU -vYu -aaa -aFo -aaa -aaa -qYo -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eqU -aaa -qYo -aaa -aaa -aaa -xNe -aaa -joz -wGy -wGy -wGy -aQv -wGy -wGy -vnu -cnH -hqV -vmt -kDq -iyc -kNA -nuF -kcR -nUT -aaa -aaa -qYo -aaa -bEu -eTe -qYo -ksq -vVc -vVc -rIP -vVc -vVc -rIP -vVc -vVc -ksq -jZp -xfE -mSQ -geZ -dfD -geZ -ndz -rlr -kYc -geZ -iTq -ilz -eZG -geZ -vIC -qQW -fKT -geZ -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(75,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aFo -aac -aac -aaa -vYu -fKU -vYu -aaa -qYo -fKU -qYo -aaa -vYu -fKU -vYu -aaa -aFo -uHd -xTK -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -xTK -xTK -qYo -xTK -xTK -xTK -qYo -xTK -xTK -xTK -xTK -qYo -xNe -xTK -xTK -xTK -xTK -xTK -qYo -xTK -xTK -xTK -xTK -xTK -qYo -xTK -qYo -xTK -xTK -qYo -xTK -xTK -qYo -nUT -wGy -vWm -aoM -qzc -gcu -vmt -tqG -fkg -cak -dgk -eqg -uYy -uck -qzK -vmt -nUT -aaa -aaa -qYo -aaa -gAw -gAw -cCY -qmJ -cCY -gAw -gAw -cCY -cCY -gAw -gAw -cCY -qmJ -xKv -mSQ -mSQ -mqE -gfS -geZ -fhj -gtM -aNY -geZ -xbb -xBJ -kmY -geZ -fhM -wFg -xkT -geZ -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(76,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aad -aad -aaa -aad -fKU -aad -qYo -aad -fKU -aad -qYo -aad -fKU -aad -aad -aad -aaa -aaa -qYo -qYo -xTK -xTK -uHd -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaa -qYo -aaa -qYo -aaa -qYo -aaa -qYo -aaa -qYo -aaa -qYo -aaa -qYo -aaa -qYo -aaa -qYo -aaa -qYo -aaa -qYo -aaa -qYo -aaa -qYo -aaa -aaa -aaa -aaa -qYo -aaa -aaa -nUT -xUy -xqR -cIA -irJ -duD -rvj -txK -dPD -rsR -qwv -xYJ -jEY -vmt -vmt -vmt -hSa -fgB -dPN -fgB -fgB -azR -mFu -oke -mZr -lin -ciB -fSE -iga -cGh -tBX -vAC -lin -hXo -mvk -mSQ -hcx -xDQ -cYX -geZ -geZ -jgG -geZ -geZ -geZ -cVl -geZ -geZ -geZ -jgG -geZ -geZ -qYo -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(77,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -sCY -fKU -fKU -awk -awk -awk -qNi -awk -awk -awk -qNi -awk -awk -awk -qNi -qNi -aaa -aaa -qYo -aaa -aaa -qYo -edx -kmE -edx -edx -pEP -edx -edx -qYo -xTK -xTK -xTK -xNe -xTK -xTK -xTK -xTK -xTK -qYo -xTK -xTK -xTK -xTK -xTK -qYo -xTK -xTK -xTK -xTK -xTK -qYo -xTK -xTK -xTK -xTK -xTK -qYo -qYo -xTK -xTK -xTK -qYo -nUT -xUy -xqR -lvE -qqO -uxy -vmt -qhU -jFz -vwl -dgk -bzd -dld -vmt -oEK -gAw -gAw -cCY -gAw -cCY -gAw -gAw -sXO -ykB -oTu -qbu -fsD -cdE -cdE -tJo -cbs -ike -cbs -wry -kim -ciG -iWV -cEx -rhN -wbw -hYJ -pci -hYJ -pci -pUv -vqJ -hQd -eiS -amJ -rWF -fpB -geZ -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(78,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aad -aad -eqU -aad -fKU -aad -qYo -aad -fKU -aad -qYo -aad -fKU -aad -qYo -qNi -qYo -qYo -qYo -qYo -vVc -vVc -edx -adA -qYx -iBO -mDb -iRf -tQz -qYo -aad -aad -eqU -aad -aaa -aad -aad -aad -aaa -aad -aad -aad -aaa -aad -aad -aad -aaa -aad -aad -aad -aaa -aad -aad -aad -aaa -qYo -qYo -xQr -gnH -gnH -gnH -gnH -gnH -uch -xUy -spI -qzc -qnc -nUp -nUp -nUp -nUp -nUp -nUp -nUp -nUp -nUp -nUp -gAw -gpy -gpy -imQ -gpy -rVD -gAw -llz -meL -ehD -nEO -haw -tqa -gnw -lFQ -mWF -jcg -jcg -sst -pgY -mSQ -cEx -gfS -lcT -icE -adE -hag -jTK -guw -guw -oyQ -cEx -jTK -bPV -abg -oyQ -geZ -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(79,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aad -aad -aaa -vYu -fKU -vYu -aaa -qYo -fKU -qYo -aaa -vYu -fKU -vYu -qYo -waG -aaa -aaa -qYo -vVc -jZp -wEy -edx -rlE -jJe -edx -luo -edx -edx -vVc -pxN -gDD -lnI -lnI -pxN -gDD -lnI -lnI -pxN -vnC -lnI -xKS -pxN -abj -pxN -pxN -pxN -pxN -pxN -pxN -pxN -pxN -pxN -pxN -pxN -pxN -pxN -yfC -pxN -pxN -rZL -pxN -pxN -qYo -xUy -xqR -qzc -oLF -kTV -chv -eir -oIE -fFu -whA -whA -tPS -aCy -aCy -gAw -cRv -feO -rOU -mHg -ntd -wvl -gmx -xGh -cxp -sHT -wgC -iRx -wgC -sHT -glb -dRK -wcP -yeO -nbZ -mSQ -eIw -vWA -cEx -icE -geZ -geZ -geZ -geZ -geZ -geZ -geZ -geZ -geZ -leg -kmY -geZ -qYo -qYo -aaa -nCI -nCI -fYR -nCI -fYR -nCI -nCI -aaa -aaa -xTK -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(80,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -vYu -fKU -vYu -aaa -vYu -fKU -vYu -aaa -vYu -fKU -vYu -aaa -waG -aaa -aaa -qYo -opD -eKr -pkp -edx -hfb -edx -sJF -asm -pGt -pEP -qYo -pxN -uQk -akz -uQk -pxN -jWT -kuT -jWT -pxN -tMA -rbC -tMA -pxN -aad -pxN -uVk -ahV -uVk -pxN -kpw -csU -kpw -pxN -pgb -fIB -pgb -pxN -yfC -pxN -fZO -wJa -fZO -pxN -vVc -wGy -lfK -qzc -vgZ -nUp -dWk -khE -cna -fFu -whA -vPL -ooc -dPY -aCy -gAw -vTh -ntd -ntd -sAm -rVD -jMM -gAw -jPd -ehD -sHT -dHx -fNc -ivH -sHT -vrs -vrs -qJI -iQV -nbZ -ciG -dYy -gfS -gCX -oei -geZ -cKu -xWI -ddl -chc -iia -qHq -scp -geZ -uBl -sbN -geZ -aad -aad -aad -nCI -cza -xWd -gtx -wXy -jtC -nCI -aad -aad -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(81,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -vYu -fKU -vYu -aaa -vYu -fKU -vYu -qYo -vYu -fKU -vYu -aaa -waG -aaa -aaa -qYo -kvq -aaa -wyN -mJH -pHl -rQI -lHz -vvD -clx -edx -aaa -pxN -aso -kca -uQk -pxN -cIs -smR -jWT -pxN -sKb -crE -tMA -pxN -abj -pxN -hUK -spJ -uVk -pxN -aIA -nfd -kpw -pxN -boV -fjS -pgb -pxN -yfC -pxN -fZO -fZO -iME -pxN -qYo -xUy -xqR -irJ -rQp -mNF -kuX -rtH -iLK -bkj -rpK -yks -haI -imV -pbv -gAw -wqU -ntd -amr -jgv -mHg -rLN -pqr -cZv -tcy -sHT -vlN -xUm -vlN -sHT -sHT -sHT -mHc -yeO -iKl -mSQ -nOO -cEx -qET -uNH -gZB -jyo -wFc -dlK -xEs -aGb -fXT -for -geZ -chk -kkC -geZ -fYR -nCI -fYR -nCI -pBY -umc -fUf -hSE -pNA -nCI -fYR -nCI -fYR -fYR -aad -xTK -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(82,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -vYu -fKU -vYu -qYo -vYu -fKU -vYu -aaa -vYu -fKU -vYu -aaa -waG -aaa -aaa -qYo -kvq -qYo -edx -edx -lbh -edx -edx -ltx -aIp -edx -vVc -pxN -wiW -nzp -cAU -pxN -fHM -eqD -xRC -pxN -uFx -ldu -uIF -pxN -aad -pxN -vAc -eEo -jmF -pxN -cMG -eLb -lKU -pxN -xWJ -bba -ovb -pxN -yfC -pxN -iZY -kZT -shJ -pxN -vVc -xUy -qKN -irJ -lZX -nUp -jRk -khE -mWU -fFu -anL -oXi -ooc -hgz -aCy -gAw -ptM -ntd -hWY -heZ -bpr -bpr -anB -ilG -cwI -sHT -msB -kXR -owf -bdt -kMt -chY -vUV -sst -wmu -mSQ -mSQ -mSQ -dDU -odW -vqd -kFt -dCL -hcu -bDs -gDF -vjr -sNj -osH -slN -sbN -geZ -pWQ -pkc -bBf -rxm -pxb -sii -cME -hSE -pNA -wcd -axH -hHX -nQa -fYR -aad -xTK -xTK -aaa -aaa -aaa -aaa -qYo -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(83,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -vYu -fKU -vYu -aaa -vYu -fKU -vYu -aaa -vYu -fKU -vYu -qYo -waG -qYo -qYo -qYo -hNg -rIP -edx -qvw -dtS -snK -snK -xMi -dvA -eiK -kXV -pxN -dlj -xlG -psb -pxN -dlj -xlG -psb -pxN -rHc -xlG -nzi -pxN -abj -pxN -dlj -xlG -psb -pxN -dlj -xlG -psb -pxN -dlj -xlG -psb -pxN -yfC -pxN -hWh -xlG -xic -pxN -qYo -xUy -xqR -vTc -iky -kTV -oow -qzT -nAF -fFu -urq -urq -ouZ -vEq -aCy -gAw -tOE -wvl -rVD -jgv -ntd -rVD -cCY -oUZ -vqu -mWq -msB -vcO -owf -slY -fNc -jcL -vUV -ugr -nbZ -tLC -epC -xrB -adE -laK -geZ -qwZ -eYp -mHJ -lds -abe -lds -aJi -gZB -jdm -oyQ -geZ -nqp -lyj -rie -vWD -eCD -eCD -tfy -eCD -bMe -rie -mEA -fNa -jXz -nCI -aad -qYo -qYo -qYo -aaa -aaa -aaa -qYo -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(84,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aaa -aad -aaa -aad -aaa -vYu -fKU -vYu -aaa -aad -aaa -qYo -aaa -waG -aaa -aaa -qYo -kvq -edx -edx -cDK -vPZ -vPZ -vPZ -kGI -sog -edx -dnW -qYo -pEX -qYo -utN -qYo -pEX -qYo -utN -qYo -pWn -qYo -pEX -aaa -qYo -aaa -pEX -qYo -utN -qYo -pEX -qYo -utN -xQr -qIX -fgB -qij -fgB -uch -qYo -khQ -qYo -tXi -qYo -qYo -xUy -xqR -jox -uDt -nUp -nUp -nUp -nUp -nUp -nUp -fFu -nUp -fFu -nUp -gAw -aXK -rVD -ntd -bzY -cMA -vog -anB -aVW -lbl -sHT -msB -kXR -owf -bdt -jjw -tGr -hCE -sst -nbZ -kVx -uBM -pAI -tXy -noM -geZ -bNt -pyK -tFo -upG -tEF -oAq -gvA -geZ -wmh -kQq -geZ -rxm -vWD -hva -nsW -pBY -lEL -ntq -jXz -jtC -pNA -qzd -sMa -rhV -fYR -aad -aaa -aaa -qYo -xTK -aaa -aaa -qYo -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(85,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -xTK -qYo -xTK -qYo -aaa -qYo -aaa -qYo -aaa -qYo -xTK -aaa -aaa -waG -aaa -aaa -qYo -iZn -edx -wlH -raL -kRi -thO -tug -qfO -srd -edx -umf -fXF -rHY -act -tYe -fXF -rHY -act -tYe -fXF -mcp -quR -ohj -act -fXF -quR -obI -quR -tYe -fXF -obI -quR -tYe -yfR -obI -quR -tYe -quR -vQj -hhM -mkM -hhM -kUD -vQj -qYo -wGy -dMQ -jox -oxD -xgQ -aaa -qYo -qYo -aaa -aaa -qYo -aaa -qYo -aaa -gAw -vFi -ntd -jMM -sAm -mHg -hQK -pqr -qJs -tcy -sHT -sHT -ePU -sHT -sHT -sHT -sHT -jzC -sLe -nzs -tLC -eYG -xrB -nHT -fJQ -geZ -wZE -tFQ -wZE -tFQ -wZE -tFQ -wZE -geZ -iif -adE -geZ -ttY -rie -ydE -fsp -puh -puh -puh -puh -puh -mhg -qzd -fms -fWZ -nCI -nCI -nCI -aaa -qYo -xTK -aaa -aaa -qYo -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(86,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -xTK -xTK -xTK -xTK -xTK -xTK -xTK -xTK -xTK -qYo -qNi -aaa -aaa -qYo -jGx -elx -gqR -uuC -qCA -koB -lzp -fTC -bFs -gAL -tRh -cIO -rMi -eoY -lZs -kxW -rMi -hmY -lZs -idF -oOh -gvk -rMi -kCN -iYI -mmN -udG -jxJ -hka -srA -uaY -tAt -slG -baY -unO -tAt -avX -tiC -jfL -mtm -guU -nNz -ofF -vQj -bAR -bAR -bAR -dLd -bAR -bAR -bAR -iBR -iBR -dEL -iBR -dEL -iBR -dEL -iBR -gAw -nOZ -rsq -qSL -dPB -nVr -sTn -eHy -qJs -cxp -sHT -kDE -tsa -bPI -sHT -enR -enR -uxl -sst -atl -mSQ -mSQ -mSQ -oyQ -cKN -geZ -siq -qBD -mfl -xEN -jrB -kYF -eKN -geZ -beZ -ikq -geZ -riD -pVk -wTQ -blI -sMa -sMa -jXD -jXD -jtC -ibp -eon -pNA -pNA -pBY -jtC -nCI -aaa -qYo -xTK -qYo -qYo -qYo -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(87,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaa -qNi -qYo -qYo -qYo -qYo -edx -ofu -dMD -lcO -sIp -szN -fzx -jUc -wSR -sdO -oBX -rAq -iUV -tyL -sAD -bbR -vpo -mpa -sAD -jZl -dYK -oIi -kfX -iGU -jly -toR -eDY -vwZ -sAD -oaF -hBr -tqg -aIY -vZr -rKm -lQN -wri -sBk -sPV -uiP -vkg -wlS -vQj -ntU -soN -qnv -kTd -wwr -rSZ -bAR -dxl -viB -kCq -hrK -nKN -pcS -vyn -eMN -gAw -uTe -iRu -xbw -lkN -cwp -ubM -gAw -eNt -ehD -sHT -sHT -wKu -sHT -sHT -pOf -pOf -oQw -fuA -nbI -mSQ -tRb -mSQ -lDp -fJQ -geZ -mPp -wey -cJZ -xKF -cJZ -gqM -ovX -geZ -sWM -ikq -geZ -luS -pKd -pNA -fEI -srI -srI -jtC -fNa -sMa -ibp -qUk -qul -gvG -nsW -spa -fYR -aad -vVc -aaa -aaa -aaa -qYo -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(88,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aaa -muh -aaa -aaa -qYo -aaa -edx -byr -rhC -dnM -gFb -qUE -mTe -nXw -wSR -aqc -lJc -sLV -iVz -iMf -iMf -cSr -iVz -iMf -iMf -iVz -iMf -lcA -hgs -jXN -sXb -lcA -ltD -iMf -qJb -mZj -iMf -qJb -dUx -lcA -tHF -iMf -jGI -rKb -vUk -tsB -sch -cKK -vQj -mzO -agA -uzb -tgl -uLv -fiB -bAR -saR -pFB -ylf -ylf -ylf -ylf -eDp -oIL -gAw -phn -gAw -jZV -jZV -jZV -gAw -gAw -ljO -okr -bWa -nrP -bKp -exA -vYv -qJI -qJI -nCl -gAw -dtX -ciG -mSQ -mSQ -qET -noM -geZ -sQQ -eBE -wpE -gWn -ihh -vUr -qCZ -geZ -sWM -kkC -geZ -nQa -qYr -gli -hUD -jDU -srI -mIP -jDU -pBY -ibp -llX -qul -bZe -jtC -rzU -nCI -aaa -vVc -aaa -aaa -aaa -qYo -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(89,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -qYo -qNi -aaa -aaa -qYo -aaa -edx -imI -wGz -qbM -nBQ -szN -sQb -fEr -gAL -aqc -sID -nmP -gqF -kaM -kaM -kaM -trR -xgR -kaM -aYs -nmP -nmP -qZn -fXF -cmu -hnL -nmP -sID -sID -nmP -sID -uvg -lwF -sID -tme -nmP -oUh -hYD -kkN -lKe -nZW -qAz -vQj -nJT -agA -uzb -jLx -dFw -uvU -bAR -cEO -gsV -auh -tMl -apu -swR -aHE -niL -gAw -qje -xVT -bmf -oLd -oLd -gNd -kZq -fzm -ehD -xEt -nlS -xEt -nlS -mWF -nlS -xEt -nlS -cCY -jxQ -nlS -xuO -mSQ -lcT -laK -eal -rqn -bFM -mLu -gWn -cKR -rxd -cjd -geZ -gXA -oyQ -geZ -bub -qYr -wcd -hUD -jDU -pBY -djv -sMa -srI -ibp -hEH -qul -fWJ -pNA -qVn -fYR -aad -vVc -qYo -qYo -qYo -vVc -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(90,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aaa -qNi -aaa -aaa -qYo -aaa -pEP -sWu -wGz -ios -hjp -szN -oTs -mIO -cGz -uvb -hdL -cRs -cRs -cRs -wgO -vuh -cRs -cRs -vuh -cRs -wsy -nqj -gZV -fXF -ijC -cEM -cEM -mGm -mGm -nmP -nmP -hUb -sID -nmP -lLY -eSJ -eNj -cVf -hUB -ciD -vYI -lpv -vQj -odk -gsf -miE -tgl -dFw -oez -bAR -xqG -gsV -lwM -fzY -tEE -tEw -aHE -iov -gAw -ikh -cel -oLd -vld -fvE -dIm -gmx -hRS -qbu -sMw -oDl -sMw -sMw -jcS -sMw -oDl -sMw -cCY -hsB -kMg -iKH -mSQ -mBe -bLc -nDT -gcy -gGc -sov -yiZ -xSD -nDW -koS -gjt -tGd -cEx -geZ -pBY -qYr -bcg -hUD -pBY -jtC -jtC -sMa -jXD -ibp -qzd -pZI -nkG -pBY -bTW -nCI -aaa -vVc -aaa -aaa -aaa -qYo -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(91,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xNe -aaa -waG -aaa -aaa -qYo -aaa -pEP -hZq -rnM -udr -ojb -pwr -iMK -tVR -gAL -xLi -lMz -qMC -cbz -wJY -gzV -tNF -fbZ -svW -gDq -uFB -uFB -vFC -eso -kSt -nWL -iOj -aLN -klb -uBf -gEB -nfn -nfn -phJ -pPv -mGH -xeP -npR -vQj -hhM -hhM -vQj -fGT -vQj -uCa -uCa -leE -wyJ -kyW -vOd -bAR -ovH -xya -egT -erY -erY -xev -qpG -kTX -gAw -vuG -jKg -iho -uRx -nkd -vFa -kZq -lxN -ehD -xEt -mWF -mWF -vzt -mWF -xEt -cVU -xEt -cCY -nSh -knY -eKQ -mSQ -sWs -fJQ -geZ -cEL -twt -raj -gWn -cKR -pIx -bep -eal -sWM -lnT -eGk -wbL -xQq -bfz -bsY -vOk -vOk -vOk -ncr -bPK -urh -xSk -fiu -egk -nCI -nCI -nCI -aaa -qYo -qYo -qYo -qYo -vVc -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(92,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aaa -waG -ixO -ixO -ixO -ixO -vlA -vlA -vlA -gAL -iXp -wSR -wSR -wSR -wSR -cUF -qDo -lgg -qDo -eWR -qDo -cUF -cUF -cUF -uiv -sID -qXV -tlA -qSm -quR -inv -hSx -sID -urV -pUW -nMT -sID -jIB -gqH -chn -chn -aEA -cTy -gen -cTp -lOW -fXF -jgZ -mrd -rDL -iDS -uCa -wkj -bqP -jYv -bAR -gHt -bAV -tgq -hyj -tgq -coj -hbB -edS -gAw -qoC -nqV -aoO -kGe -kGe -gtj -gAw -tYY -mTo -pjN -ckC -pjN -xUl -xJZ -uJN -rLc -mTo -ojn -pjN -pjN -qdP -mSQ -sWs -aHn -geZ -xKL -twt -gcx -rrQ -qhj -ooI -jej -geZ -avu -vJq -llI -rHh -rie -gGW -uww -amW -fWZ -jCW -nsW -pNA -tmc -hva -sMa -cIe -fYR -aad -aaa -aaa -qYo -aaa -aaa -aaa -qYo -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aad -aFo -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(93,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -qYo -waG -sFS -sdC -uZY -aYK -nBO -mPV -aaf -sHl -dEP -mWP -dYj -biO -fcW -mtn -uGJ -uGJ -jti -jti -uGJ -uGJ -uGJ -cUF -uAA -sID -sID -ivg -xpY -wCB -saE -jnH -hPJ -viX -lVG -jhl -nfn -nfn -tAM -eVy -fyP -uhY -nAY -lql -tdi -web -fXF -eYr -ikV -gIk -ooa -leE -bfq -iFn -tax -bAR -ggB -jko -dEL -ttE -rex -ovS -rex -ttE -gAw -mwW -anB -cCY -cCY -cCY -gAw -gAw -gAw -tLC -cCY -rAd -cCY -tLC -gAw -gAw -gAw -cCY -gAw -gAw -mhz -gAw -mSQ -rFi -oPM -geZ -uZq -gWc -tPl -tPl -fyZ -hJL -uEb -geZ -jdm -rFi -geZ -pnR -vwC -iCZ -sMa -sMa -sMa -sMa -srI -gGO -sMa -sMa -srI -uDR -nCI -aad -aad -aad -qYo -xTK -aaa -aaa -qYo -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -aFo -aac -aac -aaa -aaa -aad -aaa -aaa -aac -aac -aad -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(94,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aaa -qYo -ixO -ixO -ixO -gKT -tHf -rxW -vlX -xDX -gZW -rNo -pXm -kdi -pPO -rGb -rGb -umm -rGb -rGb -rGb -ilq -ylM -cUF -rWq -pUW -sID -ksP -aBp -icY -vHh -szF -gKW -vXF -gKW -thn -ilH -nQg -kMh -mEx -pwO -bSx -mfE -tsu -suZ -ccK -nmi -jGG -oQJ -xJJ -lvh -uCa -aTz -ygM -fzF -ocr -sys -pvK -uWj -iBR -sQr -iAf -tBs -iBR -jjX -deY -azi -uoz -rPc -rHQ -jjo -whu -rRD -mmU -jBE -fSG -jBE -bIa -rRD -xqW -azi -lbR -pFq -dqX -nRy -xsb -mSQ -mBe -rlt -geZ -jAK -rPr -aiA -cmj -fqk -lzL -rNc -geZ -jdm -fbE -geZ -nQa -qsS -uDR -eze -uDR -gGO -cza -hdC -sZg -uBI -ryQ -jtC -cza -fYR -aad -aaa -aaa -qYo -xTK -qYo -qYo -qYo -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aaa -aad -aaa -aaa -qgl -bbD -qgl -aaa -aaa -aad -aaa -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(95,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaa -xTK -aaa -aaa -vlA -ffi -jRj -feK -vlA -ecH -rVx -xHw -dYj -vSE -rGb -yhw -fWN -yhw -fWN -yhw -doR -rGb -jti -cUF -dgo -sID -mlT -urM -cwY -cwY -wIf -cwY -wIf -hUV -wIf -cwY -cwY -vHo -rYj -bsc -tyj -wWy -pDW -dCH -itF -rFz -fXF -gho -ebh -cCU -csE -djd -xNR -sYD -nLt -wbE -wbE -whv -rdS -fxW -xgt -oTH -gQV -lBn -hiJ -qiT -tJZ -cui -kMn -gme -dvK -sxR -mcV -gIt -lAE -qzA -lAE -lzq -mcV -sxR -vvH -vEs -gJF -qYy -rXR -cCn -mSQ -aHy -noM -geZ -geZ -geZ -eal -eHB -geZ -geZ -geZ -geZ -avu -rFi -geZ -geZ -geZ -geZ -geZ -mSQ -lxE -lxE -lxE -lxE -nEc -nEc -nEc -nEc -nEc -nEc -nEc -nEc -qYo -xTK -aaa -aaa -qYo -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -qgl -bbD -qgl -aaa -qgl -bbD -qgl -aaa -qgl -bbD -qgl -aaa -aFo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(96,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aaa -xTK -aaa -aaa -vlA -vlA -vlA -vlA -vlA -epV -vkL -dYj -dYj -lbo -rGb -doR -bCn -rQw -hWW -bwG -yhw -umm -uGJ -qDo -fQm -vUm -sID -xxZ -cwY -hKZ -pbU -fFw -iEe -uZL -uZL -eYy -cwY -kDj -jdB -hen -nib -ldh -hUE -rMN -iCB -wiZ -fXF -xkz -hwe -jwA -vpV -uCa -gQk -nEJ -oGb -vPe -oGb -nvO -blj -fxW -rPn -bIm -ayh -lBn -kTn -ttO -cYY -cui -kMn -kMI -mKv -bOL -rRD -hUt -lcf -euT -wCp -uxz -rRD -qWY -fbn -sNN -lav -qYy -rIN -enU -mSQ -mBe -quE -vJq -beZ -miC -icG -viO -miC -rkl -icG -beZ -beZ -beZ -icG -avu -geZ -bcS -kKJ -mSQ -rzN -xPh -xth -lxE -eCq -hEZ -aUA -nVQ -nAt -qIx -nKc -nEc -qYo -xTK -aaa -aaa -qYo -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -qgl -bbD -qgl -aaa -qgl -bbD -qgl -aaa -qgl -bbD -qgl -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(97,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aaa -qYo -aaa -dYj -dYj -nwn -ugF -kjO -wcG -bpg -nDM -pnm -dYj -vZX -umm -yhw -mYo -cUF -kKf -kAX -yhw -rGb -jti -bSU -mRF -sID -sID -cBL -wIf -eOs -fee -kPQ -rFG -mqQ -mqQ -wLZ -wIf -aMw -eLo -bsx -xDf -cyR -eQu -fXF -quR -quR -fXF -nmi -fXF -leE -uCa -leE -xQv -mez -oGb -aaa -oGb -lGF -mxj -ttE -xzQ -hIf -mPh -ttE -kTn -sBy -vvH -vaw -kMn -jkK -fbn -gTr -rRD -pgA -aYU -pzA -aYU -pgA -rRD -dOr -dvK -peo -gJF -qxu -lAs -iBp -mop -vAt -wlw -iRg -svn -oyQ -jTK -oyQ -guw -guw -guw -jTK -jTK -guw -gIl -beZ -geZ -oKt -lFR -mSQ -jWU -osv -mjB -lxE -dwD -ofI -eKz -qel -tXI -fin -vWl -nEc -qYo -aaa -aaa -aaa -qYo -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -qgl -bbD -qgl -aad -qgl -bbD -qgl -aad -qgl -bbD -qgl -aad -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(98,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -qYo -qYo -qYo -dYj -dYj -mcX -tZj -cqA -cqA -cqA -oKM -ewi -qNo -dYj -tTf -umm -doR -mYo -cUF -raz -cFe -doR -rGb -jti -qDo -vZq -xoK -wrZ -piv -jAk -rRa -bGr -cCd -wlG -pbP -vYq -jJw -dsS -qnr -kMh -foL -cBC -axg -khM -fXF -icb -kHV -cDM -qIN -fXF -xDm -sBc -aiS -lEi -mez -oGb -qYo -oGb -lGF -rlp -iBR -iBR -nRv -iBR -iBR -tqo -eYu -bfX -cui -maI -rvG -vtQ -vtQ -lIu -rhf -cRW -pgr -oSh -xJn -hIK -vtQ -glW -rvG -aIV -qYy -rQq -gqv -mSQ -mBe -kqO -roo -gfJ -mSQ -mSQ -mSQ -mSQ -mSQ -mSQ -mSQ -mSQ -mSQ -cEx -beZ -geZ -wfa -gfS -mSQ -epE -ssX -mjB -lxE -pjS -gGl -tWl -tXI -bSN -lTZ -pZl -nEc -qYo -qYo -vVc -aaa -vVc -aad -abj -aad -abj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -qgl -bbD -qgl -aaa -qgl -bbD -qgl -aaa -qgl -bbD -qgl -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(99,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aaa -qYo -aaa -dYj -hWz -pFu -cxc -nBW -iaS -uAK -cij -bzf -wUZ -epV -cIn -rGb -doR -emr -cUF -cUF -vbp -doR -umm -kdi -xex -xwq -sID -nmP -qSm -wIf -rpm -lvJ -jYA -xTC -eVG -wqF -npE -wIf -gqd -qPg -anp -wfI -sFf -vgm -jGl -rWz -nhE -nyv -bBz -pCZ -lWy -iCx -nvD -lEi -ucv -oGb -qYo -oGb -lGF -qOL -iNJ -elK -jyz -xbD -kgP -lDV -bVI -vvH -oks -fSG -ogw -fSG -fSG -fSG -vXZ -tPG -dwY -adF -sbV -lbR -lbR -lbR -lbR -jwT -mPW -xvc -uzL -vSt -pfd -avu -avu -vQC -mSQ -sfN -sfN -sfN -pDe -sfN -sfN -sfN -mSQ -oyQ -uam -geZ -gfS -gfS -mSQ -jWU -ssX -aSF -lxE -agb -gGl -tXI -prp -iuc -lTZ -sZL -nEc -qYo -aaa -vVc -qYo -qYo -aaa -aad -aaa -abj -aad -aad -aad -abj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -xTK -aaa -xTK -xTK -aaa -aac -aaa -qgl -bbD -qgl -aaa -aad -bbD -aad -aaa -qgl -bbD -qgl -aaa -aad -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(100,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aaa -xTK -qYo -uUg -kVL -lEr -uAK -aEb -ekZ -pdn -uAK -ryl -lEr -fbg -cIn -rGb -yhw -hQu -xGL -cUF -ksH -yhw -rGb -uGJ -qDo -bJM -rQd -sID -udl -cwY -fFL -rcw -cBr -rnu -fFr -wEX -oiO -cwY -aYA -jSI -len -ded -qwg -nPW -jXZ -cHY -pYL -oIH -eMu -dby -kxH -jyu -xum -nOW -mez -oGb -aaa -oGb -lGF -gkB -iGm -jbV -xrA -czy -pjb -ics -bls -ahw -vTG -pbF -jnG -hOY -jnG -hOY -vTG -hOY -svX -jfP -vTG -jfP -ioe -pbF -uWN -kls -uWN -unt -sNU -mSQ -rce -oyQ -atX -vCt -mSQ -kFc -diD -gCt -xHM -gCt -gCt -hKC -mSQ -oyQ -fMC -dYt -dyl -dyl -mSQ -jWU -pUT -mjB -lxE -aUr -kSm -qjy -hQp -qjy -iFR -pjS -nEc -qYo -qYo -vVc -aaa -vVc -aad -abj -aad -abj -aaa -aaa -aaa -abj -aad -aad -aad -abj -aaa -aaa -qYo -qYo -qYo -xTK -qYo -qYo -qYo -qYo -qYo -aad -aaa -aaa -bbD -aad -aad -aad -bBc -aad -aad -aad -bbD -aad -aaa -aaa -aad -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(101,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -qYo -xTK -aaa -uUg -kVL -lEr -gwM -uSL -xIb -szG -exP -fTz -dPi -epV -cIn -umm -fWN -wBn -kiQ -cUF -oNI -yhw -umm -fPf -cUF -fpv -xHs -fWA -iem -boR -boR -boR -boR -boR -wIf -blJ -wIf -cwY -pDE -nxf -dNU -rMq -iqa -qUw -fXF -qqZ -irr -ehL -eOQ -fXF -fCf -iZw -aiS -lEi -mez -oGb -vPe -oGb -uDb -jmj -djp -dQu -kpn -sgZ -sKo -dwv -bNZ -wuz -qqG -iKD -goV -lJb -iKD -ugh -iKD -jvF -tOy -iUr -lJb -msJ -gor -goV -jPP -xrg -goV -nuq -eVU -mSQ -qmO -dTZ -wOr -ejW -mSQ -sfN -sfN -sfN -vCB -tgG -tgG -tgG -mSQ -oUi -pKU -geZ -gfS -rgT -mSQ -uvq -vOH -fRH -lxE -guc -kSm -mkm -nVU -wbY -pmE -tFc -nEc -qYo -aaa -aaa -aaa -qYo -aaa -aad -aaa -abj -qYo -qYo -qYo -vVc -aaa -aaa -aaa -vVc -qYo -qYo -vVc -aaa -aaa -xTK -qYo -pSj -pSj -pSj -pSj -bBc -bBc -bBc -bBc -bBc -bBc -kQG -tPk -bBc -bBc -bBc -bBc -bBc -bbD -bbD -etr -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(102,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aaa -xTK -qYo -uUg -hJz -lEr -uAK -pdn -cpw -aEb -nBW -kfL -dPi -fbg -cIn -rGb -yhw -rTH -aZF -nDd -uzJ -yhw -umm -dOW -cUF -boR -boR -jmm -boR -boR -hRy -kSB -jTg -boR -exX -cBd -xVI -iLD -heX -qHl -exi -dOG -xLZ -xLZ -xLZ -aPr -nso -gvj -rNf -xLZ -xLZ -rOa -xLZ -ybb -cZY -wbn -eSk -eSk -wif -pEY -vvp -lDV -tUg -gmP -fQx -ceV -nFr -bfX -gRE -bEN -ogj -jaZ -eXN -tqo -grl -iJU -pJM -pec -bpL -fii -fii -lBz -lBz -llx -lBz -lBz -fii -mSQ -pGN -oyQ -cEx -bfD -mSQ -uhb -fIy -sfN -sfN -ewE -fIy -mjw -mSQ -oUi -gPg -geZ -ibT -urN -mSQ -vpx -hMG -cDc -lxE -kfj -maz -kiI -iLN -hRT -pmE -guc -nEc -qYo -xTK -aaa -aaa -qYo -aaa -aad -aaa -aaa -aaa -qYo -aaa -vVc -qYo -qYo -qYo -vVc -aaa -aaa -vVc -qYo -qYo -qYo -qYo -pSj -qYo -qYo -qYo -aad -aaa -aaa -bbD -aad -aad -aad -bBc -aad -aad -aad -bbD -aad -aaa -aaa -aad -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(103,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aaa -qYo -aaa -dYj -rJa -hGt -beo -uAK -grV -uAK -sHl -jvT -lEr -epV -vSE -rGb -fWN -yhw -fWN -yhw -leU -yhw -umm -nVf -xhE -boR -kbY -sIb -suA -rem -wCz -sCx -dpQ -boR -lTG -tJU -rFf -oDY -dbT -sWO -nbU -fNO -aPr -jEm -wHj -jEm -vnq -ftU -dCX -snU -guI -bYK -xLZ -iXc -pyV -pyV -fTP -sJZ -iVb -mhA -bJI -bJI -slp -slp -slp -bJI -vKY -mgk -cui -kpD -vvH -hcQ -dsj -rRD -pgA -hOa -aGo -auD -pgA -fii -pUf -bID -xwu -fAe -ybJ -etW -euV -mSQ -pGN -nSP -rjD -jHX -mSQ -kqc -imx -imx -dGr -umb -imx -wMz -mSQ -uEc -vJq -geZ -oyQ -nic -mSQ -dtb -bRX -oSZ -lxE -hHE -pjS -fux -iLN -bqo -lTZ -hdV -nEc -qYo -xTK -aaa -aaa -qYo -aaa -aad -aaa -aaa -aaa -qYo -aaa -aaa -aaa -qYo -aaa -vVc -qYo -qYo -vVc -aaa -aaa -xTK -qYo -kun -qYo -aaa -aaa -aac -aaa -qgl -bbD -qgl -aaa -aad -bbD -aad -aaa -qgl -bbD -qgl -aaa -aFo -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(104,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -qYo -qYo -qYo -dYj -dYj -pga -xmv -isc -isc -ppU -nbv -plK -nJl -dYj -cIn -vev -rGb -umm -umm -rGb -gMl -gMl -egd -lCg -aBX -boR -psi -hCX -gnZ -wqp -rZU -rZU -gHS -boR -nJr -uYC -wuj -gEF -dVT -fhQ -tYu -jnY -aPr -wGH -wGH -wGH -vnq -lCd -koJ -bcR -vXH -tlq -xLZ -rov -rSi -oGb -peE -rov -rov -oEL -wGA -wGA -iXM -sfe -vNU -iWk -cec -eOe -bTN -kpD -geR -odD -tZa -rRD -adb -odL -etS -hGd -iMU -fii -xSC -wmO -vEg -tIK -gQh -wKF -aLx -mSQ -qmO -mSQ -mSQ -mAQ -mSQ -doy -sjP -ghn -fec -rLF -pwY -yhd -mSQ -adE -bFa -geZ -oyQ -oyQ -mSQ -aUm -ssq -ifH -lxE -ehb -eJF -hRT -iLk -nSj -luc -rtd -nEc -qYo -xTK -aaa -aaa -qYo -aaa -aad -aaa -aaa -aaa -qYo -aaa -aaa -aaa -qYo -aaa -aaa -aaa -aaa -qYo -qYo -qYo -xTK -qYo -kun -qYo -aaa -aaa -aac -aaa -qgl -bbD -qgl -aaa -qgl -bbD -qgl -aaa -qgl -bbD -qgl -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(105,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aaa -qYo -aaa -dYj -dYj -eba -czB -aul -psR -nUc -jaX -dYj -dYj -bJg -auP -eQi -cyD -jsh -dEC -jsh -jsh -xxq -hxj -aBX -boR -fBk -aZp -mef -dDT -uUJ -oCJ -cFq -boR -mOp -lkl -iuf -kuI -fpM -tYd -pDZ -juP -aPr -hmJ -hmJ -hmJ -bua -hiK -jqb -iGZ -pJf -lmP -xLZ -tAP -bUQ -oLV -iPe -uGQ -oGb -qHu -tpP -chs -dVC -lhn -wgF -wGA -wda -clq -wda -wda -mSQ -mSQ -mSQ -mSQ -fDS -sCd -bxc -qat -gNP -fii -pNJ -hDT -elP -byX -qBo -veD -jau -mSQ -rce -mSQ -rLn -bMN -uhb -lxj -gLO -tJq -tLp -tLp -qiW -qXa -mSQ -dRG -gPg -geZ -clE -uJr -mSQ -fKK -ssq -oaP -lxE -wpD -kGg -uil -xds -tFc -pmE -wIO -nEc -aad -xTK -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -qYo -aaa -aaa -aaa -qYo -aaa -aaa -xTK -xTK -xTK -qYo -qYo -aad -aad -bbD -aad -aad -aaa -aac -aad -qgl -bbD -qgl -aad -qgl -bbD -qgl -aad -qgl -bbD -qgl -aad -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(106,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -qYo -xTK -aaa -qYo -dYj -tyY -tyY -uUg -dYj -dYj -dYj -dYj -oBn -vSE -rGb -rGb -fZx -vtj -cUF -cUF -qDo -wms -qDo -cUF -boR -ugc -nCd -nhA -aGW -emW -bCX -cMI -boR -hbS -wKo -aPO -pUp -mnN -grO -sdi -itI -aPr -wec -pxz -wec -wuB -cOD -rND -cOD -jDk -ncI -xLZ -qVU -uCU -lBb -ahj -nSJ -oGb -nQJ -usD -slp -uAI -lWx -sbR -wGA -aJu -uxG -pkZ -xDi -mSQ -kDs -ndz -mSQ -dsq -sCd -wLK -pEb -oAT -fii -stD -wmO -mHm -mtw -vBj -wKF -qBN -mSQ -rce -mSQ -iPE -mKP -yhv -lPE -egx -egx -dlD -vHO -xiW -mAb -mSQ -kPj -gPg -wEI -wEI -wEI -jDd -fuF -enh -jDd -jDd -dYC -raH -guq -fim -oQU -qcp -dwD -nEc -aad -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -qYo -aaa -aaa -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -fuV -ocY -fuV -aad -aaa -aac -aaa -qgl -bbD -qgl -aaa -qgl -bbD -qgl -aaa -qgl -bbD -qgl -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(107,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aaa -xTK -aaa -qYo -aaa -gIM -gIM -vVc -vVc -rmh -ewY -xxp -mDa -wZv -kHd -jUz -kND -qyj -cUF -xAD -hqL -qVg -qHJ -xpS -boR -bGc -wfv -bGc -bGc -bGc -bGc -boR -boR -lBG -mJN -lBG -lMZ -lMZ -lBG -oPc -lBG -xLZ -xLZ -xLZ -mYk -lwa -sZe -uMu -qCk -szs -ewQ -xLZ -rMR -fBP -mVZ -iPe -nSJ -oGb -vLd -lHR -slp -rgN -fzp -gJZ -slp -aJu -iSi -mQF -qsv -mSQ -syB -dDa -mSQ -xDV -aJN -nnZ -swD -baw -fii -iqz -kgi -hps -hkJ -ptA -tGm -abO -mSQ -qmO -mSQ -xNg -kxZ -uhb -udc -oRP -jnx -doy -ncB -vgR -apL -mSQ -hGY -beZ -clJ -iXo -nJB -pRF -uaR -kMk -ceU -wEI -ewH -liQ -vAI -hbK -qcp -ePD -jKB -nEc -aad -aad -aad -aad -abj -aaa -abj -aad -aad -qYo -xTK -xTK -qYo -xTK -xTK -xTK -xTK -xTK -qYo -xTK -xTK -qYo -aad -fuV -htw -fuV -aad -aad -aFo -aaa -qgl -bbD -qgl -aaa -qgl -bbD -qgl -aaa -qgl -bbD -qgl -aaa -aFo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(108,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -qYo -qYo -qYo -qYo -qYo -qYo -vVc -hwM -qDo -hwM -hwM -hwM -hwM -djf -bGC -djf -hwM -sSn -vjF -hNp -iaJ -rwS -nmw -lHZ -dge -sPT -vOI -etR -xcU -nmw -haF -qYo -dQS -qYo -aaa -aaa -qYo -cut -vVc -eOo -aaa -xLZ -nNK -xLZ -xLZ -xLZ -wnn -rvZ -uBR -xLZ -rov -rov -bjl -lNk -nSJ -bDX -qLJ -wGA -wGA -rAH -kdd -gzF -wGA -pky -tCS -gCn -oVo -mSQ -uLB -wJB -mSQ -xDV -xgE -svo -wxf -baw -mSQ -mSQ -mSQ -mSQ -mSQ -mSQ -mSQ -mSQ -mSQ -ssk -mSQ -uhb -uhb -uhb -uhb -uhb -ugL -awZ -oXv -uhb -uhb -mSQ -bVv -bVv -jDd -xSO -bwQ -tVH -hfo -uOs -ffC -wEI -bHE -vVO -bHE -xos -bHE -bHE -nEc -nEc -aad -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -qYo -aaa -aaa -aaa -qYo -aaa -aaa -aaa -qYo -aaa -qYo -fuV -fuV -jNx -fuV -fuV -aad -aac -aaa -aaa -aad -aaa -aaa -qgl -bbD -qgl -aaa -aaa -aad -aaa -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(109,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaa -vVc -vVc -vVc -vVc -qYo -vVc -qYo -aaa -qYo -hwM -xpO -lCM -qlr -hwM -pqw -gqG -dlL -sOi -wzD -nmw -rUp -iwC -ufO -jxB -oYs -sdq -nmw -nmw -mbR -bZJ -mbR -nmw -nmw -mbR -dBK -mbR -nmw -nmw -nmw -nxI -xLZ -cES -cES -rHd -sef -kol -wNP -eJq -pPy -xsc -jjC -xsc -pPy -vTp -eUJ -wGA -wGA -wGA -wGA -wGA -mSQ -mSQ -mSQ -cyU -mSQ -geZ -lZm -mSQ -mSQ -mSQ -mSQ -mSQ -mSQ -mSQ -rFi -rFi -sWs -fxH -rFi -qBi -rFi -sWs -rce -mSQ -sfN -sfN -sfN -ncJ -sDp -jnx -doy -aXB -jNn -gZx -sfN -sfN -sfN -jDd -hbt -kyj -nJU -gRS -gAm -lZQ -wEI -ent -aRp -aRp -ubE -xzd -bHE -qYo -aad -aad -aad -aad -aad -abj -aaa -abj -abj -abj -qYo -aaa -xTK -xTK -xTK -xTK -xTK -qYo -xTK -xTK -xTK -aaa -qYo -dPR -arE -uWa -rGf -dPR -aad -aac -aac -aac -aFo -aac -aaa -aaa -aad -aaa -aaa -aFo -aac -aac -aad -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(110,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -tDs -tDs -fIE -fIE -fIE -tDs -oYs -azA -oYs -oYs -azA -nmw -qvn -pfQ -qvn -nmw -nmw -nmw -nmw -nmw -nmw -nmw -dse -oYs -oYs -oYs -oYs -cLz -ycz -aYT -gjh -nKD -yei -yei -yei -yei -lHZ -nwY -qhS -lpw -oYs -azy -csH -lIT -mdB -jkr -edW -jLs -jhh -txi -azy -tJk -wSv -hza -hza -hza -hza -emB -hza -ejp -hza -quQ -geZ -hNA -vVF -jOg -cEx -uhg -fqz -mSQ -rSm -xvl -sAu -sXf -btT -mSQ -sWs -geZ -geZ -geZ -geZ -geZ -geZ -geZ -rce -mSQ -pfj -gCt -sfN -cSy -mxy -uUM -tLp -lvt -uZp -pMu -sfN -wQx -oIK -jDd -uPF -uLW -rHB -jtb -wBu -aEI -vtz -fCh -aCf -men -wGK -rqx -bHE -qYo -blX -fLf -fLf -fLf -fLf -blX -cUJ -kzc -olH -qQM -qYo -qYo -qYo -qYo -qYo -qYo -qYo -qYo -qYo -qYo -qYo -qYo -qYo -dPR -kde -jKG -eZz -dPR -aad -aaa -aaa -aaa -aad -aac -aac -aac -aad -aac -aac -aFo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(111,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -tDs -ffu -iZO -gpi -rMn -jvx -oYs -vzK -vbP -tEX -gbD -hWF -uMH -cdg -tMK -sDk -qgU -qgU -dsN -tDo -qgU -qgU -pAd -oYs -aaa -aaa -oYs -qsn -oYs -oYs -ebV -pOn -pOn -oYs -oYs -oYs -htG -oYs -oYs -wOR -kXH -ogG -pjp -vBB -ljK -lQP -eOu -ljK -ljK -ljK -ljK -cTt -tPY -opq -opq -sXM -uSR -opq -opq -gMH -opq -fcT -dIH -iig -yiX -beZ -yiX -tLy -tLy -mSQ -mKU -mKU -rlY -lPh -auv -mSQ -oeK -geZ -auB -hcN -gTO -qwA -pbK -geZ -gAz -mSQ -sfN -sfN -vJB -juv -vVD -psP -nVA -acD -rOY -sBt -tcr -sfN -sfN -jDd -jDd -jDd -jDd -lQY -jDd -jDd -jDd -swT -swT -swT -cfZ -lhE -stm -aaa -fLf -mCL -xoR -hfe -rPD -wHL -fYU -kzc -dqo -qQM -kGi -kGi -kGi -kGi -kGi -kGi -kGi -kGi -kGi -kGi -kGi -kGi -aad -dPR -eXD -dkH -qXJ -dPR -aad -aad -qYo -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(112,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -tDs -keO -evq -bYN -evq -gga -oYs -lvF -oYs -oYs -oYs -oYs -oYs -oYs -giY -isH -nVF -oYs -oYs -fso -oYs -oYs -day -azA -qYo -qYo -azA -qsn -oYs -nJV -wNn -gwL -kJr -dps -oYs -tFp -hLq -sIP -oYs -fAL -oYs -vdM -vGc -ckR -nYV -jLz -vGG -lNR -laP -tZw -kEg -gxL -sTK -nAb -vxZ -nAb -hdS -svI -oEV -baA -ddv -ulU -geZ -oyQ -kmY -eYo -oyQ -jTK -beZ -mSQ -hJq -rDk -uuv -iyN -jSP -mSQ -rFi -geZ -hFY -cEx -oJY -sGk -tNJ -geZ -qmO -mSQ -lcK -lcK -lcK -fNY -gEE -psP -hzz -acD -fHW -pla -lcK -lcK -lcK -uhb -upb -ogm -fSz -aWV -lkS -geF -cDH -oVM -hQC -swT -imT -wsD -stm -qYo -fLf -cfL -nUy -qwy -pPs -pYA -fYU -kzc -dxq -qQM -qym -lwG -wBX -qGz -jkL -pLI -sRj -kLu -lkB -jCt -uHc -qQM -qQM -kzc -jGs -kyA -jtV -kzc -qQM -qQM -qYo -xTK -qYo -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(113,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -fIE -qHI -fLc -uwj -kzI -iFV -oYs -jYg -enX -oYs -aQx -yeo -uFX -oYs -oje -xxH -qzg -oYs -nbP -rGh -hSu -oYs -hbn -azA -aaa -aaa -azA -uTq -oYs -gPj -rTM -buj -kJr -gwL -oYs -dqC -fUQ -fKk -oYs -oYs -oYs -oRZ -oYs -dGS -dGS -wVU -dGS -dGS -dGS -dGS -dGS -dGS -dGS -dGS -dGS -dGS -dGS -vBX -dsy -nps -nps -geZ -geZ -cEx -oyQ -geZ -adE -oyQ -beZ -mSQ -mNw -gno -eCG -oMP -cPF -mSQ -sWs -geZ -atO -etC -jgK -iBr -nWk -geZ -iCf -mSQ -oNr -gCt -sfN -aqZ -mxy -pLD -erF -kSA -uZp -eik -sfN -gCt -iHs -uhb -aMl -dGi -jIO -fex -pqP -lws -nek -nek -uSO -swT -khh -rqx -bHE -qYo -blX -gfe -xoR -mdm -iCK -rxK -hGW -hEt -pFd -qQM -vLI -beE -iWx -uko -iNu -mmq -wgL -qGz -tnJ -ikY -mEH -qQM -nku -vrN -vrN -frM -tlV -tTg -ioK -wjP -qYo -xTK -xTK -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(114,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -tDs -rjL -pTD -kFX -vjN -gwE -oYs -bxg -hcL -iOU -sLx -msI -qDr -oYs -jjk -oYs -oYs -oYs -wTo -cBT -vLA -oYs -day -azA -qYo -qYo -azA -qjO -oYs -qbs -pke -lPa -lPa -nyN -oYs -kBJ -lep -jzt -uvy -luG -oYs -jzE -oYs -aaa -aad -aaa -aad -aJU -keE -xzn -sdB -kSn -lwI -nEg -jPJ -xTT -oUk -dGS -naX -uED -nXK -geZ -pTj -oyQ -uhg -rDP -cEx -oyQ -tLy -mSQ -mSQ -xrB -eVx -mSQ -mSQ -mSQ -mXa -geZ -tEc -cPg -fbX -mHN -gwZ -geZ -fzZ -mSQ -sfN -sfN -vJB -pBB -vVD -psP -erF -acD -rOY -gDU -tcr -sfN -sfN -uhb -eWd -gAq -nek -url -nek -nek -nek -nek -kEO -swT -xNI -lWZ -stm -qYo -fLf -cyE -tho -mdm -xoR -xoR -syJ -kzc -brY -dBs -bvP -sjK -tnJ -epp -skP -hww -iWx -jPy -wgL -vLq -vpB -qQM -kff -eZR -tTg -kfv -tTg -nDp -usp -wjP -aad -aad -qYo -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(115,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -fIE -qrv -mKp -ePv -gvg -dEe -gYj -lvF -oYs -oYs -oCz -hEr -lHY -oYs -eWt -tqe -tpr -oYs -prn -lTp -nLF -ocV -daZ -oYs -aaa -aaa -oYs -gBm -oYs -lwE -kaL -gxF -wDf -wpS -oYs -dnC -cKp -sSw -ugu -kvJ -oYs -vnD -oYs -aad -kAD -wVU -aJU -aJU -tLg -ehj -ehj -ehj -vAN -ehj -ehj -ehj -oWp -dGS -iCO -uED -nXK -sFB -oyQ -dTZ -oyQ -oyQ -oyQ -xAB -tLy -uhg -oyQ -oyQ -abg -fwq -uhg -oyQ -rFi -geZ -geZ -geZ -lZm -geZ -geZ -geZ -rce -mSQ -lcK -lcK -lcK -kBO -rtz -psP -erF -acD -kWg -cGA -lcK -lcK -lcK -tsl -kCY -ock -oYA -tKo -xLq -lUa -tPB -lqv -lMX -swT -tiv -rqx -stm -aaa -fLf -mYL -xoR -mdm -vHx -ntK -wNG -kzc -tTg -rVc -bsk -vVa -vVa -kZP -aSV -vVa -vVa -bsk -bsk -ivv -iKP -qQM -dUZ -eZR -kzc -kzc -kzc -kzc -kzc -kzc -kzc -kzc -qYo -qYo -qYo -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(116,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -fIE -gtS -sCE -uPS -wAz -kBV -oYs -wIu -uVe -fam -bxp -wgU -jWG -oYs -gSR -jHi -sAU -iKr -yem -jLN -cOb -oYs -ubz -oYs -oYs -oYs -oYs -qjO -oYs -oYs -pOn -pOn -fvT -oYs -oYs -oYs -azA -qvo -azA -oYs -oYs -wTl -mbR -aaa -wVU -gJT -rtJ -wVU -mAi -biS -ohZ -fFz -jCj -mtb -oNb -biS -ykP -dGS -iCO -uED -ozx -geZ -cRX -guw -sDh -viW -jTK -oyQ -iig -gEP -xFQ -beZ -xFQ -xFQ -beZ -tLy -uzV -bvY -tLy -aHX -beZ -tLy -bED -beZ -qmO -mSQ -pfj -gCt -sfN -qnV -mxy -pLD -erF -kSA -uZp -mnR -sfN -wQx -dEF -uhb -lVR -lVR -lVR -bTB -lVR -lVR -lVR -lVR -lVR -swT -imT -wsD -bHE -qYo -blX -sbM -vQu -dSo -qna -kTE -pSX -kzc -lrY -sSS -iYX -wTB -iYX -iyp -iYX -kZP -kZP -kZP -kZP -qXi -fjx -qQM -kff -jhA -jtV -hGm -eEI -lfE -iYW -dws -cLv -jtV -qYo -xTK -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(117,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -fIE -ykX -icg -fiL -pQT -ugi -xhR -lvF -oYs -rde -oYs -oYs -oYs -oYs -qdn -inS -rlL -oYs -oYs -kdh -kEE -oYs -bmP -xUq -tti -vVe -ckb -cLt -xJf -vVe -vVe -ofg -iNH -xJf -iEI -svz -ofg -vVe -itn -qeB -fnb -xiV -mbR -aad -wVU -gfq -rFZ -xJo -sUQ -bpt -bpt -bpt -kNC -kNC -kNC -kNC -rOR -fdL -iCO -axQ -ilo -geZ -geZ -geZ -geZ -geZ -geZ -geZ -rOn -geZ -geZ -geZ -geZ -geZ -geZ -geZ -geZ -geZ -geZ -geZ -geZ -geZ -oyQ -cEx -oWq -mSQ -sfN -sfN -vJB -mWy -vVD -psP -xPW -acD -rOY -nNT -tcr -sfN -sfN -uhb -azn -nCN -jVs -rWJ -ppV -iEM -tKA -eKV -ffK -swT -xNI -xzd -bHE -bHE -swT -swT -kzc -xYe -kzc -kzc -kzc -kzc -nwm -dBs -ntZ -bWn -mmq -wgL -pLI -tnJ -jhu -dWn -jPy -qcS -ick -qQM -npc -pVK -uRy -tTg -nTx -gEQ -uYH -eiW -gne -fRY -qYo -xTK -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(118,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -tDs -izG -dEe -oLz -dEe -msx -oYs -llW -oYs -oYs -oYs -phI -eOn -pvR -knu -sCF -iuI -feS -oYs -oYs -oYs -oYs -fso -oYs -nHd -oYs -oYs -oYs -oYs -oYs -oYs -oYs -oYs -oYs -oYs -oYs -oYs -oYs -lGE -clh -oYs -mcs -gsy -aaa -wVU -bYW -iYS -wVU -mAi -eHL -hbi -bAM -eCF -cxs -rCx -biS -poA -dGS -kAS -uED -nXK -cao -ewb -oCB -hUS -int -pbV -wQY -flY -jtQ -snu -qKW -siI -uup -cao -oVH -ibQ -fHd -rYe -dbg -fxc -geZ -cEx -adE -rce -mSQ -lcK -lcK -lcK -ghQ -bOP -psP -nDv -acD -xFg -nNR -lcK -lcK -lcK -uhb -uvF -uNz -jZF -rWJ -eVg -sJt -akA -akA -akA -ugT -cfZ -lWZ -xfx -pSY -vfl -bHE -wqO -xdL -dsI -qQM -oGr -gqB -xcK -qQM -iMy -sjK -tnJ -wgL -wgL -jPy -vLq -jPy -hww -wiA -qhB -qQM -cIU -eZR -qVl -lIC -qEg -xhd -xhd -bCw -jVN -fRY -qYo -xTK -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(119,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -fIE -pJg -nie -sKW -elp -qKm -oYs -rcP -oYs -oYs -bgl -mpH -mrw -mrw -ogZ -hwo -dwN -rID -rdr -oYs -oYs -oUm -uVZ -xeh -sNe -oYs -nPA -oKD -rua -dNe -noK -gtX -oqx -xtp -idQ -bWW -xYP -xOI -rQQ -min -oYs -owb -oYs -aad -kAD -wVU -aJU -aJU -wRQ -cnR -cnR -cnR -hcb -cnR -cnR -cnR -tTy -dGS -kAS -uED -nXK -fQu -tvj -qee -ujw -ojM -foH -iPC -flY -jtQ -qsA -jtQ -siI -uup -iCA -sfT -nHY -nHY -nHY -nHY -vMy -geZ -lcT -oyQ -rce -mSQ -kaD -wQx -sfN -vWc -mxy -pkW -xzo -jEK -uZp -igk -sfN -gCt -iHs -uhb -gCk -eVg -bcP -xbV -slF -vCC -jiq -guH -jiq -swT -jbz -xwW -oqM -xCA -waw -hCd -ggp -vgV -dvv -cYK -iwl -pZE -jYF -qQM -vVa -sfL -dDP -bWv -nhv -pLI -wgL -uko -sWJ -fhA -kEo -qQM -vMD -pVK -xPO -paj -uYH -xqs -tGj -rTX -uKX -kzc -qYo -qYo -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(120,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oYs -oYs -oYs -oYs -oYs -oYs -oYs -nsf -oYs -sHL -glv -hKE -mqz -xMK -mae -kQR -whX -tZN -rID -xXd -oYs -vCn -oYs -oYs -oYs -oYs -nPA -npG -spq -gBI -vmh -rEJ -fGn -xtp -hBF -jUU -oLU -gIJ -jem -wqk -oYs -mcs -oYs -aaa -aad -aaa -aad -aJU -akf -oHa -nLY -uyf -txd -ogA -iNR -nBf -tjp -dGS -qrN -uED -nXK -wbD -nHY -lLJ -ejt -nHY -lLJ -nHY -lNd -jEN -jEN -nHY -nHY -nHY -ayi -nHY -nHY -qNp -gdw -nHY -xaF -geZ -oyQ -cEx -rce -mSQ -sfN -sfN -vJB -gED -vVD -jnx -doy -aXB -rOY -kYq -tcr -sfN -sfN -uhb -xWb -evo -ovU -xlQ -mtp -bvz -jiq -gBk -jiq -swT -hOh -lah -qYo -qYo -qYo -bHE -qKg -jPD -sUk -qQM -dnV -dLB -uTl -qQM -adm -vGu -qQe -vVa -fEx -gtY -pGe -mmq -cGl -bgz -pXO -qQM -kff -oxQ -kzc -sjy -ifn -ftl -vqg -bnq -qQM -kzc -qYo -xTK -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(121,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -qld -bSq -qld -aad -aaa -aaa -aad -qld -bSq -qld -aad -aad -aad -aad -aad -qYo -qYo -qYo -qYo -qYo -qYo -oYs -nMN -ivR -iNS -jBj -oYs -lMU -llW -oYs -xTm -ueJ -kyR -jQd -qNQ -yba -hAG -nHW -vdN -sqI -kmg -wrO -jOD -suk -mKC -cbB -vyY -xtp -pwA -dyb -eTy -trC -lZa -xtp -xtp -xtp -nFX -sjg -thz -ydg -xbO -oYs -uGH -oYs -oYs -oYs -gsy -oYs -nmw -nmw -nmw -nmw -nmw -nmw -nmw -nmw -nmw -nmw -nmw -wUi -qsu -eMC -pLH -xBw -xBw -xBw -xUL -ctG -xBw -xBw -xBw -xBw -xBw -xBw -xBw -uKU -xBw -xBw -dPa -hew -nHY -gtf -uqt -iRg -dEs -pyR -mSQ -qWk -qWk -qWk -qWk -ckO -ugL -awZ -oXv -ckO -qWk -qWk -uhb -uhb -rRP -igg -igg -apA -whE -apA -lVR -lVR -lVR -lVR -swT -swT -swT -qex -qex -qex -swT -kzc -xZN -kzc -kzc -dnV -tyN -pcd -qQM -svk -wQF -xXj -oNY -nvA -kGi -kGi -kGi -kGi -hZl -kGi -qQM -kff -opv -cew -hSr -kLL -uYH -leG -puv -lEg -kzc -qYo -xTK -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(122,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aad -aaa -qld -bag -qld -qld -qld -qld -qld -qld -bag -qld -aaa -aad -aaa -aaa -aaa -sjt -qld -qld -qld -oYs -azA -oYs -igu -bEs -pRp -tQY -ltr -qRN -llW -oYs -fJx -ueJ -nFc -vZo -kDY -uGf -fdY -bbQ -sao -ueJ -wsA -kGt -eaK -aBO -gld -vQS -rEP -pyC -ppY -dyb -cEK -yca -sIE -pVw -hXw -btc -hFP -xAt -uao -oTB -sqM -oYs -uGH -owb -vAw -uGH -mcs -fgK -mbw -tfq -uGH -mcs -mcs -tyV -uGH -mcs -tym -qjk -ubs -wjF -uED -nXK -fQu -cpC -rgf -cao -cao -xSe -nHY -bSQ -vdI -tHK -vdI -siI -uup -iCA -gcc -nDC -nHY -rgf -nHY -oEz -geZ -iVZ -adE -qbp -mSQ -mIq -mIq -mIq -qWk -lWk -ivd -rgu -pHm -rhc -mzP -fQD -qYc -pbm -gGR -eoD -xWf -aHz -lPo -pmJ -qNI -xop -xop -eSN -fbV -fbV -iLH -duG -sXB -duG -iLH -eYs -cyG -beD -kzc -lnj -fut -pcd -qQM -vxY -kTy -dHo -bsk -din -kGi -hST -fKi -leH -pYE -pmx -qQM -npc -dnw -kuE -lIC -qEg -xhd -xhd -pKh -iAi -fRY -qYo -qYo -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(123,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oFK -sjt -sjt -sjt -sjt -sjt -sjt -qld -qld -sjt -cbY -qld -rAC -qld -riv -iNg -saA -fZV -qld -xyL -qld -pkd -sjt -qld -qld -qld -sjt -rbR -rbR -rjK -smU -sik -peK -qEV -rtk -cEr -pNP -oYs -shm -llW -oYs -hih -ueJ -nFc -bqC -inx -bqf -uvl -sXL -sao -ueJ -bIG -csw -pnq -cIa -ddg -uWI -oHQ -bbo -bbo -kWM -tki -qLh -rjR -xKJ -uyx -hmy -nFX -xNu -gPr -oYs -oYs -oYs -pJi -oYs -oYs -oYs -oYs -oYs -uGH -oYs -oYs -oYs -oYs -oYs -oYs -oYs -oYs -oYs -oYs -bxa -uED -xNE -cao -fGt -nHY -aAk -cao -xBw -lLJ -uoU -vdI -tHK -vdI -siI -uup -cao -itv -efX -rVz -sPq -ttU -geZ -geZ -cEx -adE -fBS -mSQ -mIq -eKD -fmw -eGM -oSs -gHi -svN -meG -wkr -qgH -fBb -uXV -ins -gxX -vGR -rOX -vUe -szz -bZo -qNI -xop -xop -hUR -fbV -fbV -iLH -rDn -gTc -dll -iLH -nnq -kQX -til -kzc -rOy -fut -teH -qQM -qQM -qQM -qQM -qQM -eWX -kGi -vdT -bWv -pUd -wnc -dMs -qQM -kff -pVK -uRy -uYH -qQR -qxo -uYH -tTg -kSQ -fRY -qYo -xTK -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(124,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qld -lJB -qld -icX -mVS -mVS -mNX -hMO -lrc -nBh -ofE -nBh -nBh -nBh -nBh -ofE -sUz -lxc -sUz -eFK -pWO -sUz -qhN -mzu -bFV -oHe -pOC -oYs -oYs -oYs -oYs -oYs -oYs -oYs -oYs -qAB -rVX -oYs -xTm -ueJ -nFc -lPs -iEr -uGf -hiT -ygW -sao -ueJ -aHd -csw -umN -umN -xLT -umN -xtp -jKD -iJF -tzm -gBI -tzm -aZs -aHv -tiS -pAu -nFX -wrP -okF -oYs -oTY -tTn -cIZ -oYs -eGq -isy -suw -oYs -mcs -oYs -lnQ -hRc -lHV -ybN -eMw -wDr -uYc -prw -fHI -uCP -nps -nps -cao -tlH -nHY -puc -cao -wln -nHY -siI -gcs -tHK -cgz -siI -fLE -cao -kOI -wBG -rhe -pIS -miT -geZ -vMN -qET -geZ -knw -mSQ -uRD -vgE -fmw -dmx -doy -thK -rfw -oln -cwu -ujt -bzb -jOL -uqH -sCw -iON -kkO -puZ -twF -xXR -qNI -pGi -xop -hUR -mrl -mrl -iLH -qaA -jXy -oHM -iLH -nVR -kQX -lgk -heP -hOy -cZM -teH -oBO -brY -tTg -iLa -qQM -qQM -qQM -qQM -qQM -qQM -qQM -qQM -qQM -obf -pZF -gDW -qwc -toK -mSW -tRf -fwB -vkS -jtV -qYo -xTK -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(125,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aat -aaa -aaa -aaa -aXU -eBZ -gzG -eBZ -iIg -dJO -kJd -kJd -kJd -kJd -nJx -kJd -kJd -kJd -idu -kJd -kJd -jNC -kJd -kJd -idu -kJd -dJO -kAc -cCN -bFV -jTf -ekU -lWu -wiU -dkz -eoO -eoO -eoO -xLE -fhd -thj -pAy -oYs -aeu -ueJ -evh -xSz -oJj -yba -aze -cLO -juX -ueJ -nMw -csw -xnh -pLx -jZj -umN -uVa -xNk -xtQ -wdp -xsy -bOp -vpj -rDF -xtp -bUR -xtp -oYs -oYs -oYs -rTT -oYs -oYs -oYs -kxJ -tJE -rWy -oYs -fgK -oYs -iJJ -kyx -kbd -kbd -kbd -kbd -pAH -oOF -iyq -kAS -iFI -nXK -cao -tlH -lLJ -puc -cao -xBw -nHY -uoU -jtQ -tHK -gmW -siI -gmW -cao -hAm -mJZ -dAy -mDJ -vBR -geZ -vMN -cEx -kmY -rmi -mSQ -mIq -eKD -fmw -qaT -tly -ezv -hdl -kFE -hdl -eIP -lAd -uXV -tEW -kZU -aqH -rOX -rYJ -wzV -lwH -qNI -scy -amh -hUR -adx -ulW -epj -tzK -nJK -yex -iML -tHB -nOy -gRn -kzc -lMF -rta -vVp -tYl -tYl -pCH -bKZ -wzY -nku -cIU -qRY -eXJ -yhm -frM -yhm -eXJ -opv -jhA -kzc -kzc -kzc -kzc -kzc -kzc -kzc -kzc -qYo -xTK -qYo -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(126,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qld -odb -qld -sSz -mti -mti -rWu -mti -wOq -mti -mti -mti -bQw -wOq -mti -mti -mti -mti -tJi -jxn -mti -mti -vUN -sna -bFV -kJd -uAu -lWu -xOz -jfy -fLY -vAU -oGZ -amn -oYs -oYs -kAZ -oYs -kFi -csh -rOc -obH -jLa -gbY -vGP -xmg -vYk -crg -unh -csw -wpx -ykM -rXT -umN -moC -tXu -ydb -ydb -jkZ -wTU -ydb -tXu -gXM -tXu -uRf -oYs -uoV -vNI -dlm -oYs -dWf -jcC -ryI -spG -spG -oYs -uGH -oYs -cEo -gug -dgI -dgI -dgI -xEA -ygk -wMs -iyq -kAS -uED -nXK -cao -tlH -nHY -puc -cao -xBw -nHY -uoU -qDT -tHK -gmW -ujw -gmW -cao -cao -cao -pCL -cao -cao -geZ -geZ -geZ -bsv -rce -mSQ -mIq -mIq -mIq -qWk -smL -gHL -lhb -tJq -iAF -kdy -nVv -uhb -gRg -vPQ -sVH -xWf -fyB -fEJ -pmJ -qNI -scy -amh -hUR -dgg -wTP -iLH -qaA -jLt -oHM -iLH -joo -dIN -fJa -kzc -kzc -kzc -rmf -rmf -uYH -gaG -nPe -eup -eZR -gBK -wUE -eup -gVq -tTg -lAA -kfv -uYH -uYH -kfv -tlV -tTg -ezP -wjP -aad -aaa -aaa -qYo -aaa -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(127,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oFK -sjt -sjt -sjt -sjt -sjt -sjt -qld -qld -sjt -qld -pch -qld -uIR -xtZ -kJH -qdc -oYE -qld -pch -qld -qld -sjt -qld -qld -sjt -sjt -pxU -kJd -hZo -lWu -tbC -aHC -jcT -dzJ -hcK -vCw -pst -oYs -cPL -oYs -oYs -mYl -csh -dwN -dwN -eYR -dwN -dwN -crg -sEt -csw -csw -xhi -pdK -tRO -umN -eSm -fXU -bSO -gQz -gjg -eHH -qvB -vdW -kQB -uGl -sCs -oYs -pBs -tSH -oyb -xbi -hRX -hUO -ktR -xIR -vBc -oYs -wJb -ftt -mOz -gug -gxE -nTC -aPa -yli -dWF -fwu -rxA -kAS -uED -nXK -cao -uvQ -nHY -gqO -cao -dbK -nHY -siI -rcH -frc -rMe -bfP -srC -cao -nJp -oyr -nIU -cao -pbI -kdn -bwZ -sDe -geZ -fHu -mSQ -mSQ -mSQ -uhb -uhb -pam -xnU -bRZ -wDL -bRZ -sRP -xnj -uhb -pTU -fqB -loA -fDF -fZr -lyK -fZr -qgo -hUI -sdd -aWH -sdd -cua -lGI -qEo -hNW -lGo -hNW -hNW -kQw -hNW -vYK -tac -fig -ffd -kzc -qMt -oIu -cvy -qQM -qQM -qQM -qQM -qQM -qQM -qQM -qQM -qQM -kOv -tTg -tTg -tTg -nDp -rCz -wjP -aad -aad -aad -aad -aad -qYo -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(128,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aaa -aad -aaa -aaa -aad -kdJ -bag -qld -qld -sjt -sjt -sjt -qld -qld -bag -qld -aaa -aad -aaa -aaa -aaa -sjt -bwU -dUn -xiM -bml -ymc -lWu -vTe -lWu -dIF -lWu -gPn -oYs -bzh -wkS -oYs -oYs -tsL -xoU -arQ -mZy -aGp -eYJ -bbx -csw -csw -csw -umN -eKh -vqy -umN -qmX -euk -sbW -uGl -eSq -lKy -tXu -vmn -cxR -mou -mCf -oYs -uRF -hHS -hwu -oYs -rdA -uNx -eTM -umv -rJy -gqA -pSt -xwN -fgM -lGf -dgI -aPa -xaO -dgI -nia -fgM -noY -kAS -uED -iRq -cao -csi -nHY -cJA -cZO -xBw -nHY -siI -ocB -lQd -tod -qIT -aXQ -cao -kID -tzb -mKd -cao -mWn -hEK -bcB -vcl -geZ -quE -jgT -cRX -mSQ -glr -uhb -uhb -uhb -uhb -uhb -uhb -uhb -uhb -uhb -mig -iUl -aqH -fDF -pRP -uFd -fkQ -pwq -syF -tWd -aAR -spw -qgC -sZB -rWw -kQw -kQw -kQw -kQw -kQw -hNW -hNW -hNW -vdi -ffd -kzc -uSM -rxx -nPe -qQM -iul -hND -iul -nnN -ehA -bGT -iLu -qQM -kzc -kzc -kzc -kzc -kzc -qQM -qQM -kZc -kZc -qUK -kZc -kZc -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(129,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -iJT -uNp -qld -ons -hNU -aaa -aaa -aad -qld -bmC -qld -aad -aad -aad -aad -aad -qld -ePK -dJO -fbF -lWu -pOY -lWu -kAv -lWu -meZ -lWu -gOK -oYs -xIU -qmA -hcG -oYs -oYs -ktO -mho -tWI -auZ -tMF -kbe -csw -idm -sCl -weZ -mQh -wTF -vsu -tXu -jRL -epZ -dHp -meS -nAP -exK -lnp -wzl -epD -cUD -oYs -oYs -ybS -scn -oYs -rXS -rRC -deE -wZB -ucA -oYs -sup -oYs -fst -lGf -xEA -qCR -dgI -dgI -ygk -wMs -iyq -kAS -lvR -nXK -cao -loa -xod -nHY -kiD -nzB -nHY -siI -iEt -cAg -xAa -vsx -xBw -piF -vEI -fQo -oKW -cao -uhV -abE -iav -fxJ -osG -rce -dIy -ctl -mSQ -nWT -jMr -gRg -gRg -gRg -idV -gRg -gRg -gRg -tLI -gRg -fqB -eTX -fDF -cYw -eLK -nnc -met -mPI -fhU -lfu -fgq -wuY -lGI -cym -bSz -hNW -wzA -lUD -cFx -vpy -fUk -bUU -vdi -hnI -kzc -pJl -nXv -mEv -xEW -pSF -wpI -kFs -dXw -wpI -xYO -pBZ -brb -usG -ciE -fel -geI -iAb -kZc -aPH -kZc -yly -gkq -mtq -kZc -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(130,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sjt -doL -dJO -pMW -lWu -lWu -lWu -lWu -lWu -lWu -lWu -lWu -oYs -oYs -oYs -vLk -dCW -oYs -oTv -wvR -wvR -wvR -sZn -xyt -vob -pAR -ktP -pAR -pAR -dRb -dVa -qFF -qFF -jOK -lLy -lho -lho -lho -lho -lho -vSM -obu -aft -oYs -qjO -kal -oYs -sZT -hFu -lNB -bvW -mXt -oYs -pSt -oYs -dgO -jXn -vBY -uQt -nia -vBY -eYN -wFq -iyq -kAS -uED -nXK -cao -xpm -siI -siI -cZO -xBw -nHY -cJA -ojx -tod -fep -tod -nbQ -cao -pPC -qZQ -yaT -cao -qMm -lsH -nNq -avp -geZ -rce -kJj -vJq -hJE -caV -jPm -lRw -keg -gxX -oov -gxX -jhW -gxX -iqN -yjb -eiM -vGR -fDF -gHl -ben -rTv -pwq -ngi -hSA -pJc -oIG -cCX -hjS -fIi -fIi -mOD -mMn -oxo -nPi -oxo -mRe -oxo -rAx -dtO -kzc -tew -eup -cvy -qQM -kVm -ovT -vQe -vQe -eGl -xMM -vWa -phN -vWa -kpA -ebg -odn -wpI -xei -iLv -xei -iLv -eVq -ngy -fmX -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(131,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gef -aaa -aaa -aaa -aaa -qld -ePK -kJd -erz -sjt -bjJ -cGM -tMN -qMS -sQn -gic -sjt -aaY -sAY -oYs -rjk -oYs -oYs -fbU -cZS -cZS -nvu -kel -kel -ryb -kel -fbU -mWO -nvo -nvo -nvo -uCA -vpJ -vCf -xVa -xVa -vpJ -wCl -vpJ -xVa -obl -vpJ -cdB -oYs -nyW -oYs -oYs -oYm -oYm -oYm -rnp -dtj -oYs -miv -oYs -tRa -wKV -wMs -dLu -fgM -wMs -iwb -lWF -fHI -wjF -uED -ozx -cao -cDU -xtm -cNB -wQi -xBw -nHY -cpp -xcz -vmd -nOX -owW -dUl -cao -yme -krj -kIP -cao -hgJ -wrN -reQ -hgJ -geZ -rce -fiT -ore -mSQ -gZG -djw -cCF -djw -glI -djw -djw -djw -lko -iqN -wgP -fqB -vGR -oQI -sIX -sIX -sIX -sIX -sIX -sIX -sIX -sIX -sIX -sIX -sIX -sIX -wem -iXA -oxo -gmA -dgu -gkR -oxo -cNs -whN -kzc -xra -dqo -enk -qQM -qQM -oGK -xvJ -xvJ -oGK -oGK -oGK -oGK -oGK -oGK -oGK -oGK -oGK -oGK -oGK -kZc -wth -gtd -agE -fmX -aaa -qYo -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(132,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qld -ePK -kJd -urY -efI -nMD -nMD -nMD -nMD -pyq -pyq -oqt -nPQ -nPQ -nPQ -olV -tNu -jLh -fRo -uRh -kiq -fRo -fRo -fRo -fhg -ffM -jNB -sQN -fzw -uCY -cmi -fkU -uCA -lvl -rZf -rul -rul -rul -rul -rul -eTU -kiq -fRo -jMQ -sie -tNu -wxo -iwi -sLT -sbC -oYm -oYm -oYs -bOw -oYs -fHI -iyq -iyq -muK -ilJ -iyq -iyq -fHI -vYZ -mvA -rtO -rtO -lJu -cao -cao -cao -fQu -egF -ykL -fQu -cao -cao -cao -cao -cao -cao -cao -cao -cao -cao -bJy -fAA -xTL -tRg -geZ -onv -geZ -geZ -mSQ -sbQ -prh -cnw -prh -sbQ -sbQ -prh -prh -sbQ -iEz -hXj -ehg -pFe -sIX -vXA -pfs -vke -hvQ -hea -sCO -puX -yfB -btO -gmR -qmt -sIX -rLj -nfY -qhI -gLP -kRL -tJP -oxo -cNs -dNl -kzc -kOv -irR -nPe -tTg -qQM -bni -lEn -lEn -iij -qTu -lCq -jDL -meB -kIk -llD -swx -mmM -lAK -moc -kZc -oxh -xDd -snQ -fmX -qYo -xTK -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(133,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qld -xiM -kJd -kBz -vmR -sfs -sfs -nPQ -nPQ -sfs -pgL -vxi -uqk -bnt -bbB -pZn -vfw -qRx -wsp -wsp -wsp -wsp -wsp -hAU -wsp -fXk -sIk -sJj -ihF -wCc -uKD -xap -jZH -gnG -pAP -pAP -pAP -pAP -pAP -pAP -las -pAP -pAP -pAP -oHy -gay -roZ -ccA -hek -nYg -ieH -fmN -jsL -kNY -fmN -kIr -sYU -sYU -alW -sYU -sYU -sYU -nxg -cpr -hAc -ctw -lSl -lSl -xcI -lSl -jOn -lSl -tCc -lSl -lSl -pLz -lSl -qSd -gkw -gkw -gkw -gkw -iwy -gkw -bWh -gkw -hhF -gkw -gkw -hhF -tIS -ewt -sIJ -uPv -wxG -sCm -cxk -bvB -kZt -prh -gNA -tun -prh -eis -wgP -oGH -vGR -hwS -uTM -oOR -dAa -uHB -uWn -pqF -yhP -cLR -sQJ -tkx -jpV -sIX -mpC -mpC -mpC -mpC -mpC -peU -peU -eZK -peU -kzc -qQM -qQM -cvy -nWb -qQM -kAn -lEn -hjr -vrE -bln -oEW -bln -nPV -uqg -vrE -uXB -mvP -oGK -oWo -kZc -ohA -oKX -piA -kZc -qYo -xTK -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(134,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qld -xEw -fqZ -kJd -eTx -lSh -kJd -kJd -pTE -kJd -kjz -jeO -kJd -fvX -kJd -kJd -vAk -uVF -dRJ -dRJ -dRJ -dRJ -dRJ -dRJ -dRJ -hfV -lII -cnK -pbk -tDw -moY -mhj -vbK -gYP -dRJ -dRJ -dRJ -dRJ -dRJ -dRJ -dRJ -dRJ -dRJ -dRJ -uVF -kEI -rDj -jby -cgP -rqW -tuQ -uRY -klM -umu -uRY -nLN -nLN -mGC -cyx -nLN -nLN -drr -nLN -sGi -pMP -mHw -gKA -gKA -bgS -gKA -nTN -gKA -cMe -gKA -gKA -gKA -gKA -tNV -tFm -fRb -whK -whK -whK -qLG -whK -whK -qAW -whK -whK -qAW -lpl -jNm -mkl -uPv -lae -nUz -fMk -kOE -rfQ -gsF -nAs -gEs -prh -sEb -aaK -iUl -vGR -gLL -pkx -afs -glt -qBz -ueM -hyP -txH -xWD -igX -pkM -aBS -sIX -kYW -pRf -vCq -aEe -fkm -peU -keV -gFz -are -lcS -rEf -qQM -bxv -jlf -qQM -vwE -lEn -oyC -itZ -jGr -cpq -tSV -lPA -kIk -buK -vNu -ygi -oGK -buJ -kZc -kZc -gkg -kZc -kZc -qYo -qYo -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(135,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qld -dgH -nga -hyI -kqL -kWS -kWS -kWS -kWS -kWS -kWS -tdt -wQT -nJC -qfo -utO -qTs -wbH -iKZ -iKZ -trw -lPz -lPz -lPz -lPz -tlL -gGw -vys -cRA -dMy -qjr -rhK -msF -suj -iCu -mAJ -nNc -nNc -nNc -nNc -iCu -nNc -nNc -nNc -qFe -rPh -fxu -kQK -iDP -oAW -lZt -lZt -lZt -bIM -pfh -aSB -pfh -pfh -iOu -lZt -lZt -lZt -lZt -oAW -sxV -iSb -sMU -sMU -sMU -sMU -sMU -sMU -aHi -prZ -wXU -qrt -qrt -piG -unK -erS -nXY -hFl -nXY -sxD -nXY -nXY -nXY -nXY -nXY -nXY -whK -hrz -dgA -uPv -lQZ -rLw -rVt -rey -ozf -fKb -awb -nRC -prh -kiL -gRg -fqB -vGR -hwS -lQw -qzP -iiY -klq -nxo -iIX -ddn -cLR -sQJ -iHn -iHJ -pQe -xlD -oOt -cqr -bYV -rXq -peU -aAj -mAB -aAj -aAj -aAj -qQM -vNe -ijE -qQM -jcU -lEn -oyC -vrE -shK -rPt -uqg -nPV -uqg -buK -lEn -jbE -oGK -pDK -kZc -yiI -oKX -asQ -kZc -qYo -xTK -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(136,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qld -nnv -xbu -pOC -fGj -kNd -hjg -kNd -cGx -kNd -kNd -mcE -kBz -bhU -cVe -nMs -tNu -hnB -fRo -fRo -wXq -fRo -fRo -fRo -fRo -hTi -vDY -mgd -fju -cmG -rtT -uNg -xjF -cwV -fRo -jEn -dxk -wtg -jwb -dxk -qGm -dxk -dxk -qTA -fdA -vnU -eea -eem -dOX -tbK -anV -pca -pca -diL -uhH -vXP -gWu -uhH -awc -awc -fIp -fIp -fIp -awc -pRS -kOj -nzP -xms -xms -xms -xms -wUQ -kOj -pRS -pRS -pRS -pRS -uNU -jaV -tPc -glh -mlE -mlE -mlE -lBR -mlE -mlE -mlE -jJG -kxg -hJs -dYn -btU -uPv -uPv -prh -prh -prh -uPv -uPv -prh -kvv -sbQ -xWf -gfC -sTC -vGR -hwS -eVK -cMl -mSv -btk -ozq -dAz -lkh -yfB -tRV -dYr -qfS -sIX -qCj -sbE -wXb -puG -rhB -peU -jxA -glX -jiZ -mzS -sLb -kzc -uOr -reb -fcK -pNf -rAe -fIe -rAe -rAe -rIt -mNj -cVm -rMa -xnf -geW -jgz -oGK -gSJ -xcJ -lOj -ppi -teK -fYZ -qYo -xTK -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(137,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qld -rJf -kJd -sMx -sjt -pmV -tht -dbO -bLd -pUU -ltM -sjt -yaP -iWA -ddZ -tCs -tCs -tCs -bJf -xGi -ngp -cEQ -sfH -fMo -iyH -eDV -ldq -jAI -rVs -rVs -bjE -owu -tlU -ikD -xgL -uOh -dxk -vqY -eYQ -aaz -sRI -dxk -dxk -kju -jwb -rjt -lCi -wjO -dlC -kOj -xms -xms -xms -diL -rWj -drj -bog -oFu -awc -xOv -nHc -fxs -tkr -lju -pRS -qLa -xHE -uNv -laN -dvW -dQv -yeK -cCr -pRS -gqq -tMo -rjd -pRS -oHJ -kxs -mlE -bAE -nTz -snW -mYi -qMY -cwj -exv -mlE -dMA -whK -jNm -qQt -eQy -pnl -mFh -xlN -mOh -lCa -dNN -iTV -iei -wfJ -xWf -gRg -wSi -vGR -hwS -hwS -hwS -xOH -sIX -sIX -hwS -sIX -oQI -sIX -sIX -sIX -sIX -vTL -dfV -mpC -mpC -mpC -peU -xGm -dtq -hYn -hYn -cee -qRB -chZ -hlH -qQM -fsV -lEn -ygi -llD -qTu -fyf -fZa -llD -kIk -buK -lEn -swt -oGK -vvl -eHA -rKh -xDd -amb -fYZ -aaa -qYo -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(138,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sjt -kEn -kJd -wTn -sjt -qld -qld -qld -qld -qld -qld -sjt -lEI -prJ -qhW -tCs -whj -tCs -tCs -kVP -wbt -uVF -uVF -iln -mrT -knK -nGS -knK -knK -okE -knK -knK -knK -knK -knK -vKK -opX -opX -opX -opX -opX -opX -opX -opX -opX -dBj -dkD -wjO -dOZ -xms -aaa -aad -aaa -diL -nBJ -eVb -jYX -nBJ -awc -fIn -rgW -mvq -rgW -vze -pRS -pRS -unU -iaL -pRS -iaL -xOt -iaL -pRS -pRS -ftI -kXb -ckB -pRS -oHJ -qdA -mlE -sMV -rKF -uQr -ntL -hgT -dZW -asr -mlE -nXY -whK -iqq -hiZ -lWY -mno -pdD -mGB -cUj -kEQ -eMq -eur -vjU -rqY -eMq -sQq -mlz -vGR -vGR -vGR -vGR -tEC -ubS -vGR -vGR -vGR -iqN -vGR -vGR -qIh -jzK -vGR -fcd -vGR -ofH -xFz -peU -iUY -qcJ -nWH -ada -dRu -kzc -ktf -pCx -qQM -rUz -lEn -uwu -vrE -bln -oEW -rzk -vrE -lbv -buK -vNu -rMa -oGK -mkJ -ggR -pXq -igv -iwe -fYZ -aaa -qYo -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(139,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -iJT -pRJ -qld -ons -hNU -aaa -aaa -aad -qld -pRJ -qld -aad -aad -aad -aad -aad -qld -kEn -aSO -wJT -qld -qYo -aaa -aaa -aaa -aaa -qYo -qld -ldn -prJ -eWE -omI -fJZ -dxV -idp -kVP -mJd -jdj -ugv -kVP -hFk -lGq -arF -ocR -pEk -xDc -deh -ocR -ozU -msR -qGL -vnU -tNO -wDi -wuh -wuh -wkp -wkp -wkp -wuh -stN -rjt -mLc -wjO -dOZ -xms -aaa -aad -aaa -diL -uhH -jEt -lBe -uhH -awc -guz -qxi -sEm -iwf -ymi -pRS -lQR -eGs -pLV -dxW -sCh -cvE -vcU -tns -lZx -lZx -dQf -sGz -pRS -oHJ -kxs -xwF -lOi -pVS -lpV -lpV -lpV -nXy -ptO -mlE -szH -whK -gkw -ngQ -mFh -fAp -lYL -pIJ -kxV -xlN -oEb -uMd -dSv -kLT -dOQ -lLb -aLf -fhL -qxa -vUJ -dHI -dOC -lhz -kSh -lhz -kxE -heu -kxE -lhz -kxE -hPE -bOe -rKR -gfy -fnD -kdW -brN -akn -gpB -ydj -vWe -eWl -qQM -nKQ -lAA -qQM -qDa -lEn -lEn -llD -jGr -cpq -rkC -doG -toc -doG -pqq -pte -kUQ -mYU -vWp -wvv -cPl -iwe -fYZ -qYo -xTK -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(140,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aaa -aad -aaa -aaa -aad -kdJ -bag -qld -qld -sjt -sjt -sjt -qld -qld -bag -qld -aaa -aad -aaa -aaa -aaa -sjt -vdH -kJd -wJT -qld -qYo -qYo -aaa -aaa -qYo -qYo -qld -pgL -prJ -jaA -tCs -wzr -uCb -rWA -kVP -vRB -dcR -giz -kVP -hTr -amQ -aGF -mgn -fto -qPw -fto -pkr -ffo -sTQ -ydB -vnU -uqX -mOI -cNv -paq -cMw -cNv -paq -aBE -ulH -rjt -uMA -wjO -dOZ -xms -aaa -aad -aaa -diL -cmE -drj -bog -iMg -sQA -rvb -aSS -aiO -hWq -mGw -pRS -ucZ -lNA -ozz -lNA -ozz -lNA -lUI -mqr -uNy -wzM -asq -qnQ -pRS -oHJ -sNK -mlE -sZY -xjd -umQ -umQ -umQ -oKV -pUR -hPs -avR -whK -gkw -ngQ -mFh -kxV -gFu -nIB -vTq -fGx -jyb -sWe -jlh -dcL -hRY -mRE -jWh -klB -pSH -klB -klB -jIf -klB -klB -klB -soy -acv -klB -klB -klB -kab -klB -klB -qGn -flt -klB -peU -loP -cmr -tBx -egO -exb -qQM -eIZ -gMy -qQM -xyJ -lEn -lEn -tET -wXg -rPt -akH -ojS -uqg -vrE -hny -oPQ -oGK -oiw -rWn -lMn -eNz -mYf -kZc -qYo -xTK -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(141,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oFK -sjt -sjt -sjt -sjt -sjt -sjt -qld -qld -sjt -qld -lOA -qld -sIR -hfB -qEw -xUt -eUf -qld -sQR -qld -pkd -sjt -qld -qld -sjt -kKm -uot -xYB -urY -qld -aaa -qYo -yhJ -qHs -qYo -aaa -qld -pOC -otB -vvJ -ukz -aoJ -nUu -sBG -sLz -vRB -nXs -xMe -kVP -bSp -jcv -aWP -qrP -odI -mSA -dtk -uDD -msR -mDq -xzN -vnU -fez -kGY -bCT -bCT -qkH -siX -bCT -pUy -xzC -rjt -iDP -eem -wBl -kOj -aad -aad -aad -diL -vsW -drj -bog -fbO -sQA -gKI -tsj -uxn -lJh -qHB -pRS -iIC -qNF -guY -qNF -guY -xbG -guY -ncu -qoi -pVD -guY -usF -iaL -oHJ -fAY -mlE -lml -xjd -rgh -mNo -eTD -cBm -sKP -hPs -avR -whK -gkw -qQt -otX -kUM -lYL -pQt -shq -gOr -ybw -pmJ -cAA -lYG -kPY -wgP -cfx -uxc -jSY -jSY -uFi -jSY -xWS -jSY -uFi -jSY -xTr -xTr -xTr -tJG -hFn -tJG -xTr -xTr -xTr -kzc -kzc -qQM -qQM -qQM -qQM -qQM -qQM -oCm -qQM -qQM -oWo -tCj -tCj -oWo -oGK -oWo -oGK -oGK -oWo -oGK -oGK -oGK -oGK -pew -kZc -kZc -kZc -kZc -kZc -qYo -qYo -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(142,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qld -lJB -qld -rNY -lrc -tPE -mNX -mVS -mVS -sdJ -sdJ -gTu -sdJ -sdJ -sdJ -sdJ -pWO -lxc -sUz -uhl -sUz -sUz -qhN -hDX -qWr -uag -hZo -qld -aaa -qYo -yhJ -sjh -qYo -aaa -qld -fNv -neG -xWc -iSl -cnL -kfa -pln -kVP -oFh -ygD -feG -kVP -nCS -wwm -aWP -rpZ -ePa -uYg -uYg -pmS -kXO -pLG -koc -vnU -vnU -vCy -jbr -jbr -jbr -jbr -jbr -feq -vnU -vnU -bhZ -wjO -dOZ -xms -aaa -aad -aaa -diL -sVb -jeF -bog -kCV -sQA -tNL -jBt -wSy -eXf -nHu -mCp -oMa -ogs -sox -sox -sox -vJG -sox -mOv -sox -ogs -guY -vgU -pRS -oHJ -kbT -mlE -sZY -nhr -lkG -lkG -lkG -mZs -scE -lJZ -avR -qLG -gkw -qQt -toL -kxV -lYL -rlD -kUM -fxL -bmR -plc -fvi -fvi -fvi -oPR -rCA -qJf -dvG -ket -cSv -fJe -taY -aqT -sWx -gzU -xTr -lFc -mLr -dUN -aDG -weQ -nCf -qVO -bcc -kzc -bBS -bkl -kfv -gqB -tlV -iKd -uYH -mqe -qQM -nBR -iXu -eWi -eWi -eWi -fZj -eWi -wPb -uqx -kGS -nER -fje -jJK -mAm -eWi -bMz -qvh -ejl -qmj -cCf -vVc -vVc -aaa -qYo -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(143,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hmx -aaa -aaa -aaa -aXU -eBZ -gzG -eBZ -iIg -kJd -kJd -kJd -idu -kJd -djR -kJd -idu -kJd -idu -kJd -kJd -nJx -kJd -idu -kJd -idu -kJd -sHQ -qIK -bFV -kJd -pOC -qld -qYo -qYo -aaa -aaa -qYo -qYo -qld -qwz -prJ -dFS -tCs -vdZ -qPp -rLO -kVP -ovQ -joU -iXO -kVP -pgN -wFG -qhA -rut -bNB -pri -pri -qkA -nWI -rbk -ffN -vnU -bTy -eex -gii -byn -gii -xLQ -mlt -nyP -lzQ -vnU -iDP -otm -dOZ -xms -aaa -aad -aaa -diL -ipQ -aZy -yil -mGE -qGW -nHu -pYT -lct -aDD -rwt -pRS -qnQ -mXy -mXy -mXy -bvV -mXy -mXy -mXy -mXy -mXy -guY -hYb -beG -ooi -oiP -szP -mZs -pFT -lpV -lpV -lpV -fgO -gwr -mlE -iLc -pHt -gkw -qnY -vqa -qWU -lYL -rlD -kxV -xsr -fvi -qpM -mKQ -wxi -jHs -rbg -eNk -kby -dvG -niP -rLb -weT -nCj -kQf -rLb -apU -bhp -jjQ -jKq -uGV -nfL -aRq -wZd -cxV -aAi -fZu -nnU -rKQ -nKQ -oAD -gsv -cMg -lMg -tOM -aUK -tkS -rHX -rHX -rHX -bpK -bpK -bpK -bpK -bpK -bpK -bpK -bpK -bpK -bpK -aKE -cJD -cJD -cJD -cJD -fvo -qYo -qYo -aaa -xTK -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(144,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qld -odb -qld -bBm -mti -oYh -aho -mti -bQw -wOq -mti -mti -vKQ -vKQ -mti -wOq -mti -mti -tJi -jxn -mti -bQw -jhQ -hZr -bFV -dJO -hZo -qld -qYo -aaa -aaa -aaa -aaa -qYo -qld -kBz -prJ -nHw -tCs -vBt -tyK -kVP -kVP -dZw -uVd -gMB -kVP -kVP -kVP -aRb -tQp -pIk -pdT -eQO -jWb -mhs -sBX -sHO -vnU -oLk -tlF -tLb -jgN -qkS -tlF -gmQ -bKn -cHB -mAK -jZT -oSM -dOZ -xms -aaa -aad -aaa -wyH -rdu -pzu -bog -xby -sQA -fFW -mGw -kch -mGw -mGw -pRS -pXM -lAv -nAz -jce -lZx -wqG -lbt -iVT -nuY -njs -cqt -wPk -pRS -oHJ -kxs -mlE -kcZ -nru -gvc -npO -mvL -umz -mfb -mlE -tmy -whK -gkw -qQt -sOy -kxV -lYL -tMn -fAp -jHn -oGv -wVy -ldO -lwD -oGu -wUa -frS -vLH -uFi -foV -lXd -xVe -unL -gaB -sVI -hxH -bhp -tGp -xzc -bcp -bwV -bcp -vXo -thg -mkD -kzc -uZS -nKQ -qQM -qQM -qQM -qQM -qQM -qQM -qQM -iDp -jkH -jkH -gop -jkH -jkH -jkH -jkH -uQD -jkH -jkH -jkH -jkH -hbz -asK -cJH -wfT -obP -oFz -fvo -qYo -xTK -qYo -xTK -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(145,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oFK -sjt -sjt -sjt -sjt -sjt -sjt -qld -qld -sjt -pkd -qld -qld -qld -sjt -vCM -vCM -sjt -qld -qld -qld -qld -sjt -qld -qld -sjt -sjt -aGI -dJO -sfw -sjt -qld -qld -qld -qld -qld -qld -sjt -abm -prJ -gsY -kVP -kVP -kVP -kVP -dUH -sRB -eWN -iff -rpH -vWv -kVP -sGS -qOT -jqg -pqv -uGR -qdl -ewV -xQa -jhH -vnU -vnU -pxt -vnU -vnU -vnU -oSF -vnU -qAV -tup -qAV -wxI -aBL -dTD -kOj -aad -aad -aad -wyH -xdY -pnV -yil -obc -sQA -uZu -vAl -mGw -qHx -awc -pRS -pRS -pRS -pRS -pRS -pRS -pRS -pRS -pRS -pRS -pRS -pRS -pRS -pRS -oHJ -fbm -mlE -odw -pXp -nPv -fot -nPv -gce -kUA -mlE -tOd -whK -gkw -qQt -cJM -fAp -lYL -rlD -kxV -uum -fvi -uqJ -vdX -gsI -bpv -txe -frS -abd -dvG -foV -epB -dOk -sJc -rbu -taj -lcv -oHA -vaF -hWG -lXD -bwV -pSc -uyW -oVD -xsQ -lWj -pFd -jYF -qQM -uaV -wXi -dqt -tTd -lTz -eBn -xTQ -jkH -jkH -fWh -fWh -lVQ -pYs -lVQ -syK -fWh -lVQ -pYs -lVQ -fWh -qrz -oAz -xIL -iZs -pmp -nEa -qYo -qYo -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(146,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -uuf -aaa -aaa -hNU -uFn -hNU -uuf -uRr -nJY -nJY -mAG -tKV -xwK -vqj -nJY -nJY -jLA -aaa -aaa -aaa -aaa -aaa -sjt -fQg -kJd -ciz -sjt -pFF -jAi -bOU -hUU -iyM -tht -sjt -nQP -prJ -gXT -kVP -wgx -nWU -kVP -xna -ncE -tbJ -giz -kVr -hCs -kVP -bRE -eio -pOV -pOV -eqM -ask -dep -uXX -bwh -vnU -tOs -weO -nDP -vnU -nph -ijH -lQu -qAV -xug -qAV -cyq -euz -vvR -xms -aaa -wyH -wyH -diL -wEx -drj -bog -jjq -sQA -awc -kYA -uMv -wUU -awc -aFA -hAN -ilI -ilI -tfw -iro -ilI -ilI -hAN -ilI -xkw -aaa -aaa -vpK -rLS -kxs -mlE -mlE -szn -mlE -mlE -mlE -mlE -mlE -mlE -dVU -wwy -gkw -ngQ -mej -kxV -lYL -mTS -vTq -mhV -oGv -shW -frS -aET -cBy -lqe -acZ -cga -gJs -puE -hJM -dOk -gXX -rbu -hJM -bPG -bhp -tGp -hWG -kny -dnZ -xAX -hXE -sKg -dNX -kzc -qBk -nnU -wje -icl -mlu -vbz -vbz -rvC -pxI -xTQ -jkH -jkH -fWh -jkH -dEp -lTH -jsg -uQD -jkH -dEp -lTH -jsg -jkH -asK -nEa -wcT -fGw -uwe -nEa -aaa -qYo -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(147,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ovp -aaa -aaa -aaa -hNU -hNU -hNU -nJY -nJY -nJY -bkF -bfV -xAR -jOY -xMp -xMp -xZw -aaa -aaa -hNU -hNU -hNU -qld -oMr -dJO -urY -bBD -nMD -nMD -nMD -nMD -pyq -nMD -oqt -nPQ -prJ -jYM -kVP -tVC -ptC -maV -rgK -ahQ -fAt -fvv -kVP -kVP -kVP -sBX -efh -cnl -ffa -aml -sBX -muN -sBX -sBX -vnU -lIl -xtl -htF -vnU -xXw -ptp -bpV -qAV -sHC -qAV -tML -wjO -dOZ -xms -aaa -wyH -alx -miK -cQv -drj -bog -nkU -irQ -eVl -eVl -eVl -eVl -eVl -xkw -ilI -ilI -ilI -hup -ilI -ilI -kRU -kRU -hup -iyy -aad -aad -oCs -rXO -kxs -oCs -aad -aad -srt -rLQ -jTu -rsI -iMh -spQ -nXY -whK -gkw -ngQ -mej -kUM -ccR -rlD -kxV -qVe -wLb -cHu -rRn -ykE -frS -hFE -frS -tgv -dvG -puE -tKv -dOk -vHv -wdb -ycO -bPG -krE -nOI -hWG -unj -rSW -uTS -eHF -hYZ -tDT -kzc -dIn -jYF -qQM -lBv -nml -hor -tgx -ibk -pxI -xTQ -jkH -jkH -fWh -jkH -fVg -nxb -vxf -uQD -jkH -pTi -nxb -dIh -jkH -asK -wPV -xUP -vsX -boI -nEa -qYo -qYo -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(148,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bec -gjx -gjx -eQH -aaa -aaa -vPo -aaa -aaa -aaa -hNU -cWB -qld -rXr -fnK -oMr -hNl -quB -rbR -rbR -rbR -quB -rbR -euQ -bsb -dLJ -bsb -kVP -bpd -pyw -kVP -gyW -ryg -mGF -ykw -kVP -gwt -lUy -qAV -qAV -qAV -qAV -sBX -sBX -ssy -mTn -vXK -vnU -oZb -jSy -jYt -vnU -fwi -aPl -vJd -qAV -fOP -qAV -iDP -nPa -dOZ -xms -aaa -wyH -fbH -ieC -cQv -drj -gxD -pma -fnA -eVl -ngD -sVj -twZ -yiC -qUM -kRU -vEy -dfb -hup -xCa -ilI -dRh -oZt -qoD -xkw -aaa -aaa -vpK -oHJ -kVy -vpK -oCs -oCs -spQ -tbm -aLM -fVd -sUh -rkb -nXY -svl -gkw -qQt -egR -kxV -bDM -wPj -kUM -qVe -oPN -xGQ -trg -qLW -vxW -jTy -pfq -xvq -dvG -wtJ -dok -uOm -dok -dok -dok -rnQ -bhp -wZW -lZz -evO -muH -mFr -ocl -reR -vNB -kzc -xbs -nnU -qQM -jQa -wPW -niA -nxv -tiE -vVx -xTQ -jkH -vwX -fWh -jkH -dEp -kre -jsg -uQD -vwX -dEp -kre -jsg -jkH -asK -nEa -dAf -tXQ -vLL -fvo -qYo -xTK -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(149,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vtd -aaa -aaa -aaa -hNU -nJY -sjt -oMr -cDT -kJd -mHn -djR -idu -qqL -idu -kJd -nJx -jeO -idu -prJ -ucW -kVP -xSf -mqV -kVP -giz -nOn -mKa -lJJ -maV -ptC -xBj -qAV -pcW -xcs -xWw -trd -tOf -vhJ -vDS -bGj -qAV -qAV -qAV -qAV -qAV -qAV -qAV -qAV -qAV -twh -qAV -dKg -wKs -psZ -xms -aaa -wyH -xrI -pnV -bsC -fIg -hdZ -pgB -ipQ -eVl -cGR -vBA -aPW -rbB -lkL -kRU -dZD -bvw -hup -ilI -ilI -wRS -lPm -hup -xkw -lNL -lNL -vpK -nYl -ftH -vCP -kxs -xaP -rkb -cKa -tIt -sQM -ugO -spQ -fpi -uJI -gkw -qnY -uIg -qts -xTO -rLl -xzx -wvx -fvi -fsh -tnQ -xzh -fvi -cnx -dGx -cnx -dvG -liU -qZZ -fOF -hUq -fOF -wmK -qLc -khb -cCK -sYw -cCK -khb -udB -dRt -klA -iyY -kzc -qQM -rJY -qQM -eBn -pxI -cPu -pxI -eBn -eBn -hnG -fWh -fWh -fWh -jkH -dgD -nxb -mqc -uQD -jkH -jfe -nxb -lMu -jkH -asK -cJD -jwZ -smJ -wFO -fvo -qYo -xTK -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(150,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -nJY -nJY -qld -rXr -dJO -nPQ -pSb -kBz -kBz -kBz -kBz -kBz -kBz -rjZ -urY -prJ -dnd -kVP -kVP -kVP -kVP -vat -kVP -kQV -rhg -kVP -cAV -cHm -qAV -vLP -saB -hhV -eLY -sBX -sWo -hJP -goi -qAV -xiG -bQy -rhh -jEF -edg -ptG -pYo -ifR -twh -qAV -phb -drQ -jaF -kOj -aad -diL -nYn -cQv -cQv -kIe -nza -giF -nae -eVl -xDU -gnA -jHb -kgs -lkL -lAx -ilI -ilI -esN -qqk -hEa -lKf -lKf -lKf -atv -txC -bnw -vpK -gHx -ans -fog -qII -kxs -spQ -spQ -spQ -nqP -spQ -spQ -pIG -hWZ -muU -llv -btU -qQt -qmD -vIn -qQt -btU -oaR -sxs -fvi -sxs -bmR -uja -bWo -asE -dvG -dvG -dvG -epz -kTU -kTU -sJo -dvG -khb -uja -bWo -asd -khb -khb -khb -khb -khb -khb -fnU -tYy -bkK -rIK -wPl -ahU -uto -ylj -rTd -xTQ -jkH -jkH -jkH -jkH -dEp -lTH -jsg -uQD -jkH -dEp -lTH -jsg -jkH -dWT -cJD -hqv -bEY -hqv -fvo -qYo -xTK -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(151,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -nJY -nJY -qld -mwK -dJO -pOC -wJz -uSe -cZH -cZH -qbW -ete -jpW -mcE -qwz -prJ -jYM -qRw -tPD -pOD -tWU -sSH -kVP -kzV -qPX -kVP -aVE -oWA -qAV -nRd -vTO -qAV -qAV -qAV -jfn -oPY -cfp -qAV -fqn -wwV -fOP -fiZ -dag -tNa -qAV -emg -bCZ -qAV -iDP -sfC -uFM -xms -aaa -wyH -aod -jgq -cQv -gVx -adC -moV -cQy -eVl -mOf -hpu -jHb -xDU -lkL -lkL -lkL -oij -xbW -ilI -ilI -kEv -lkL -lkL -lkL -dnK -gys -gqQ -oHJ -cKm -oEo -bvJ -rLt -spQ -gDK -jSw -sQM -poP -xdC -mOX -vcd -gkw -wyL -gVY -gVY -tZy -uex -gVY -gVY -mKu -ekf -ekf -ekf -ekf -ekf -ekf -ekf -ooS -mKu -oWU -kYV -kYV -kYV -vxM -gVY -ooS -sVv -ekf -ekf -mKu -gVY -gVY -gVY -gVY -iAj -gVY -mCt -fXG -joJ -xYC -xYC -veu -sDV -iEi -xTQ -jkH -jkH -jkH -jkH -fVg -nxb -jAs -uQD -jkH -jGe -nxb -dIh -jkH -asK -nEa -owI -gPV -ubr -fvo -qYo -xTK -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(152,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -nJY -nJY -qld -qso -dJO -szM -jJc -wuF -fcR -amp -fcR -gdb -wVa -jJc -xCf -dIk -hjm -qRw -eNB -eCs -tqn -gnS -wbe -qAV -nIg -qAV -qAV -qAV -qAV -qAV -jHP -qAV -kri -qAV -qAV -qAV -qAV -qAV -qAV -qAV -dKx -loi -nal -gOR -qAV -tEj -fOP -qAV -fYu -kfI -rSq -xms -aaa -wyH -tms -drj -tww -kIe -xgP -uWl -iDG -eUu -gkp -cHe -jHb -jHb -fdM -pSh -uPV -ilI -tcH -voi -agZ -hup -ktv -rMt -auJ -gyE -vap -wgb -mOB -vSg -eZD -ewO -kVg -duA -fYX -fbv -bwe -fYX -xdC -jdc -bNW -tKF -quy -bKz -bKz -ofM -fFe -xYC -pEm -xYC -erM -xYC -xYC -xYC -xYC -xYC -xYC -ooS -xYC -xYC -aVA -xYC -pEm -xYC -xYC -ooS -xYC -xYC -qOk -qOk -fzd -qOk -qOk -lNo -qOk -qOk -owG -fXG -joJ -xYC -xeT -iyw -sDV -iEi -xTQ -jkH -jkH -sFp -jkH -dEp -kre -jsg -uQD -jkH -dEp -kre -jsg -jkH -asK -nEa -ndJ -wye -eOM -nEa -qYo -qYo -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(153,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -tDL -aaa -aaa -aaa -dTF -aaa -aaa -aaa -hNU -nJY -sjt -rbR -kJd -lrO -jJc -jJc -ogg -ogg -ogg -uqK -jJc -jJc -ulQ -iWA -rkS -qqq -gvq -wkP -xns -bgo -dzk -qAV -daR -dla -itV -bbS -fIR -wnI -pgF -qAV -ybV -xSx -tnu -tnu -myV -jSH -vya -wap -sbP -xWQ -vya -gcT -qAV -pIW -tvs -flw -vEo -wBB -iJY -xms -aaa -wyH -eTF -jgq -xLs -kIe -qBY -wIe -goc -eVl -dol -uIY -kql -xDU -lkL -lkL -lkL -oij -xbW -ilI -ilI -kEv -lkL -lkL -lkL -iyX -atG -vpK -eDz -rMZ -mEX -tyt -uJm -spQ -nqt -ija -cXw -vqK -spQ -sZM -ccl -dFI -bQs -vCG -vCG -keu -hOF -vCG -vdF -hlY -oKY -iSS -oKY -oKY -oKY -oKY -oKY -xBR -uRU -vdF -vdF -oKu -khK -tFE -tFE -xBR -tFE -tFE -bhh -hlY -upQ -vdF -eTL -kcW -kcW -gHA -kcW -thh -vqL -fuh -adP -adP -twd -iEi -xTQ -jkH -jkH -wUh -uQD -uQD -uQD -uQD -uQD -jkH -jkH -bey -jkH -sJO -asK -qcP -ssS -fGI -gbk -nEa -aaa -qYo -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(154,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bec -iNV -iNV -eQH -aaa -aaa -vPo -aaa -aaa -aaa -hNU -cWB -qld -rbR -kJd -wJT -jJc -uWL -xvo -gfl -vPl -pfV -eBb -jJc -xbp -prJ -anF -qRw -kjM -hoQ -sDL -jSo -eOB -qAV -daR -btY -riq -xLN -pIz -miQ -tvG -sEn -wNk -hsq -qAV -qAV -qAV -kjd -qAV -qAV -qAV -qAV -qAV -ttF -qAV -qAV -okb -rKN -pXg -jkf -xXm -kOj -aad -diL -cnW -cQv -cQv -kIe -nfx -ixh -iOA -eVl -hzA -wvi -jHb -uPz -lkL -hHG -ilI -ilI -sXX -sau -lKf -lKf -lKf -lKf -atv -cnu -mly -vpK -rBB -mpf -vuz -iwn -jiC -gTH -ckY -nhJ -taO -sQM -dHL -kLW -bJF -gxK -igO -iZE -pGo -ktJ -teJ -pGo -iZE -rNQ -iIs -rNQ -iIs -akx -rwV -bCO -sMX -vMp -vMp -bCk -hTH -vMp -vMp -bCk -vMp -vMp -hTH -bCk -vMp -vMp -vMp -vMp -dco -lrI -fLg -nUZ -fyu -bkK -nLk -bQn -bsR -bQn -wCa -tEh -mhd -cFw -cFw -cFw -cFw -cFw -cFw -cFw -cFw -cFw -cFw -cFw -cFw -cFw -nKM -nEa -fZU -tXQ -eOM -nEa -qYo -qYo -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(155,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ovp -aaa -aaa -aaa -hNU -hNU -hNU -nJY -nJY -nJY -bkF -sEq -thf -jOY -xMp -xMp -xZw -aaa -aaa -hNU -hNU -hNU -qld -rbR -oPi -ekp -ogg -hmS -vFU -xxd -nBG -bAY -nbN -svK -eCt -bHB -rza -qRw -wTJ -vxu -nXn -pCV -vME -qAV -jKA -sHC -kaP -awL -tWw -kFO -xiG -qAV -xSx -xGC -qAV -nLX -mzb -pls -avQ -sac -hoC -tTb -gMR -gPm -quA -wRM -kdX -hsn -pXg -ozn -ivX -xms -aaa -wyH -nBF -pnV -jeF -cgg -hdZ -iaP -ipQ -eVl -mCM -gUW -fnM -hpv -lkL -kRU -tCI -hiH -hup -ilI -hup -kfC -rSJ -hup -xkw -lNL -lNL -vpK -pyY -ksa -hqY -mYe -kXf -hJC -sQM -elz -sQM -fYX -spQ -nwG -dFL -hiV -uNY -dNP -byk -mJj -khO -tUc -beH -rNQ -rtX -sli -lEY -rNQ -iIs -raf -iIs -vMp -cek -phq -phq -phq -bOS -phq -phq -foq -gWp -phq -jde -cTv -oYq -vMp -dco -qFV -rTo -kGj -rTo -rTo -bkK -gyM -gyM -gyM -bkK -nxb -jfE -iXu -eWi -lxU -eWi -eWi -eWi -eWi -eWi -eWi -eWi -lxU -eWi -eWi -eWi -nEa -bLG -aeZ -ijG -fvo -qYo -xTK -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(156,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -uuf -aaa -aaa -hNU -qfH -hNU -uuf -gMI -nJY -nJY -mAG -tKV -xwK -vqj -nJY -nJY -jLA -aaa -aaa -aaa -aaa -aaa -sjt -dBg -kJd -gaF -jJc -aje -arc -jyA -aoS -pzt -nxY -jJc -jdL -gPc -jdL -jdL -gFK -puj -obx -tAA -vWu -dXd -sHC -sHC -qAV -qAV -qAV -qAV -qAV -qAV -ftD -qAV -qAV -enq -kii -hNr -wOU -jys -pas -xsq -xjx -xjx -xjx -xjx -dHQ -hsn -bPE -hIU -lSl -xms -aaa -wyH -wkT -qkm -cQv -drj -lbT -ccq -rGO -eVl -hrY -wiw -xCt -rme -xkw -kRU -seP -fYw -hup -jQw -hup -jPC -quc -qoD -xkw -aaa -aaa -vpK -rBB -eNF -vpK -oCs -oCs -spQ -rDt -ail -lTJ -fYX -xdC -vaB -bmN -hiV -pGo -lCl -mdb -kAE -lUJ -jDX -jYy -rNQ -sOw -mzZ -iVu -iJl -clo -tBJ -dCZ -etc -mwG -mwP -urR -urR -urR -urR -cWp -eou -pKI -eKe -lHl -mwH -xmi -hTH -dco -bqA -rTo -pPU -qnh -rTo -aaa -aad -aaa -aad -aaa -hDl -hDl -hDl -hDl -hDl -hDl -hDl -jyV -kUa -kbz -hDl -hDl -biL -hDl -hDl -kbz -rKr -kQm -nEa -nEa -nEa -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(157,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sjt -qld -sjt -qld -qld -qld -sjt -qld -qld -qld -qld -sjt -aeF -aeF -sjt -qld -qld -qld -pkd -sjt -qld -qld -sjt -sjt -qix -kJd -qnN -koM -koM -jvO -sLd -koM -jdL -eNp -jdL -kFQ -qHz -pOi -jdL -qNy -qgV -ykb -jdL -jdL -qAV -qAV -xeH -qAV -xYZ -vGf -gxk -cAw -sJd -khn -mhe -rvK -wpO -hPw -fAP -fAP -amL -qeg -hxl -dKC -rPj -xDq -mtv -dHQ -vyX -pXg -dvy -lSl -xms -aaa -wyH -cEp -hhB -cQv -drj -bog -nkU -irQ -eVl -eVl -eVl -eVl -eVl -xkw -ilI -ilI -ilI -hup -ilI -hup -kRU -kRU -hup -iyy -aad -aad -oCs -mSB -jiC -oCs -aad -aad -waZ -ing -dsz -gDZ -hqd -xdC -aLv -whK -hiV -eFz -jio -jDX -bHW -eDC -dfh -rDb -rkE -kDw -ogp -brJ -stc -oRE -qJj -hUY -etc -jmY -fbI -eKe -eKe -eKe -eKe -bqW -caw -sHm -eKe -lHl -cyS -jWz -vMp -kWk -hsp -rTo -aOa -gcf -rTo -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -aaa -hDl -dbl -hDl -dbl -hDl -aad -aad -aad -hDl -dbl -hqv -hEh -hqv -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(158,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ngX -mPg -mnF -rNH -wJG -eGO -qaJ -wzT -pPT -mVS -tPE -mVS -mVS -abi -hIo -mVS -mVS -mVS -tPE -mVS -bVq -mVS -mVS -sCo -cCN -bFV -idu -rSa -koM -gHH -pzr -jwr -mxP -jdL -fYd -fYK -eNn -vUT -cOg -jdL -jdL -jdL -jdL -jdL -miD -pSJ -gUa -kYu -jdL -bij -vwK -hbI -nZx -gHI -pKp -wRp -woK -ydL -hqK -jPk -rve -djt -pas -kUn -djq -qQE -lMH -xjx -dRO -nkH -fli -dvy -lSl -xms -aaa -wyH -wyH -diL -hFx -drj -bog -nkU -gOU -gOU -vDo -eBw -agn -gOU -fOw -fBm -ilI -ilI -hup -qlY -cMD -ilI -fBm -ilI -xkw -aaa -aaa -vpK -qjL -jiC -ksK -ksK -maS -ksK -ksK -ksK -ksK -ksK -ksK -qAT -whK -hiV -eFz -jio -mdb -nkk -iMD -jDX -hJh -oDX -wFF -lvj -lWA -olC -xOM -puD -oMM -cXM -lHl -fbI -eKe -eKe -eKe -eKe -bqW -caw -sHm -eKe -aet -odU -kxq -aPi -puU -hsp -rTo -tjY -lLU -rTo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hDl -qpT -hDl -qpT -hDl -aaa -aaa -aaa -hDl -vwV -hqv -lbf -hqv -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(159,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sjt -qld -sjt -lyx -cIq -flS -flS -iIg -dJO -lSh -idu -idu -idu -kJd -idu -idu -kjz -idu -kJd -lrH -kJd -xbu -sHQ -cCN -bFV -idu -tvQ -pkC -nZb -jNP -rHq -mdM -jdL -sYt -oHz -rUM -oXS -uUl -xvy -jey -bvj -peb -bHj -nma -kBN -ihb -nzx -jdL -pMT -vwK -igo -vUO -jPU -uiK -qlK -vVu -iSf -hqK -aYR -rve -pCy -hoC -pBw -gSs -xjx -xjx -jJM -kur -xxB -uwJ -vPy -dTD -kOj -aad -aad -aad -wyH -jBR -pnV -bog -jlZ -gOU -swj -jeI -aby -igb -gOU -gOU -gOU -ivA -ivA -ivA -ivA -ivA -ivA -vIQ -vIQ -vIQ -vIQ -vIQ -vIQ -rBB -mHR -ksK -liC -iqR -oVI -vJc -gmU -bMH -uKz -ksK -aLv -whK -hiV -pGo -qwX -bGK -bHW -gEv -mdb -sBJ -fvF -iyB -iQy -cEh -mHX -aeS -gpO -tLr -etc -tre -fbI -eKe -jvQ -jvQ -jvQ -mCW -caw -sHm -vOM -vsN -ooG -rTQ -vMp -gFG -tBt -rTo -jRN -cRn -rTo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(160,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qld -mMr -nUI -jeC -rsg -czD -nSl -iaN -ozs -jRq -won -aDt -jRq -jRq -jRq -rfd -vwa -jRq -fNM -oqz -bBa -uPx -bFV -kBz -cBU -koM -rsw -ixE -uAJ -rkN -jdL -jdL -jdL -ogK -qQp -rCN -jdL -deG -ukR -uaS -jdL -tGD -qQK -dtW -uCt -jdL -eeZ -ieI -rEA -nUY -sQU -ozp -bfy -rvK -dEl -hqK -ibn -qXM -bPj -hoC -rTA -gSs -lMH -qQE -xjx -dHQ -vyX -pXg -dvy -lSl -xms -aaa -aad -aaa -wyH -vEl -pnV -bog -fYz -gOU -eDe -hja -aby -aby -nce -scR -bcE -ivA -saC -cbW -lXV -wJQ -ivA -fly -fly -mUO -owj -jaq -vIQ -rBB -jiC -ksK -vJT -tpe -ozw -wDk -wDk -voE -fCP -ksK -tFg -whK -hiV -pGo -mcB -mdb -bHW -gEv -alB -wki -rNQ -bqX -stc -muz -muz -muz -muz -gxW -eoE -nuI -fbI -eKe -jvQ -eKe -eKe -mCW -caw -sHm -tsY -qYL -qYL -qYL -qYL -cPT -qYL -rTo -bqB -ibG -sFX -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(161,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kUG -gmg -kUG -kUG -kUG -kUG -kUG -kUG -kUG -uNJ -ogb -kAc -uSo -knc -duX -doz -sHQ -dyW -jdL -jdL -jdL -jdL -jdL -iib -jdL -jdL -jdL -jdL -jdL -jdL -jdL -dwI -fIY -pxT -gCB -xOP -jdL -jdL -jdL -jdL -jdL -jdL -jdL -jdL -jdL -jdL -eoy -eoy -eoy -oKr -oKr -eoy -oPC -oKr -kfO -hqK -cCJ -rve -tCk -pas -lMH -gUk -qQE -mzV -xjx -dHQ -vyX -pXg -hRV -lSl -xms -aaa -aad -aaa -diL -ipQ -aZy -yil -mGE -uxr -pXK -mBd -btZ -fPn -pZs -jim -eoF -cXB -pUG -vbZ -bZY -pGq -ivA -fly -fly -plF -mft -hKH -cNp -keL -mYe -bZt -tHj -nTs -djP -dgC -yiw -aOm -xYT -vGj -aLv -cCP -psq -uNY -lgm -gyR -qpE -gEv -mdb -cqi -dhF -jED -lyb -qEv -nQI -ljZ -bHg -ugA -etc -hbm -fbI -eKe -nuI -eKe -eKe -aEK -caw -sHm -epH -qYL -wEa -gPL -bmm -exS -jWV -rTo -iXB -orx -rTo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(162,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -kUG -lFX -kUG -boP -wZF -nhO -bpq -def -kUG -kUG -acF -cUz -kUG -kUG -kUG -hCl -aSM -kUG -jdL -msp -iql -pVj -siV -siV -pOi -hNP -jdL -cnn -blC -xWC -xWC -vOh -vOh -pUJ -xtM -pOi -jdL -dZN -lID -fmk -lUX -agg -enT -aLR -lDi -flB -aoT -kmb -fAT -uxC -eoy -weh -gPv -eoy -mKc -hqK -hLa -rve -iJr -tsG -qQE -xjx -euK -jJM -xjx -oHo -hsn -pXg -dvy -lSl -xms -aaa -aad -aaa -diL -hub -bsC -bog -wNo -gOU -hhe -aby -wkt -aby -fIU -xnw -fyH -ivA -hqj -pgE -jMx -nuj -ivA -kSu -kSu -bmj -rPM -gfT -vIQ -uOl -jiC -ksK -fcc -dPp -ihN -dFQ -kpy -pwa -ipe -ksK -pYl -whK -hiV -pGo -uPr -mdb -bHW -gEv -jDX -wAy -rNQ -rNQ -rNQ -rNQ -wAw -ihW -fvF -vEr -etc -vkF -fbI -eKe -skI -eKe -eKe -hKu -caw -qJF -lpL -qYL -gKJ -nnD -sdz -eNX -sbv -rTo -iXB -itx -rTo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(163,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -abj -sAV -uFm -prL -pkj -hLu -gkL -rzt -aUs -ktg -jPQ -eDK -qqA -gZi -lLw -qqA -qqA -hAl -ter -jdL -wbx -cQC -pyz -fkl -uaz -vkG -iql -sPo -jex -fYK -wYZ -pKn -vsA -fsl -elS -eke -vKx -cCb -wQv -oDR -azm -prl -dmK -iXj -ebo -lDi -pEa -xKn -fFi -cZe -wBc -iWq -qKL -fFK -cjj -nRc -jHf -rve -rve -aHG -pas -vsJ -qQE -ygT -wzb -frq -fYD -hsn -pXg -dvy -nnk -kOj -aad -aad -aad -diL -tch -drj -bog -nkU -gOU -rdR -aby -lUK -aby -hjN -xKD -lcG -ivA -eIj -pgE -smZ -pUG -dlg -oyv -kSu -tah -jCa -rdO -fQw -icV -hyT -ksK -ryE -clU -kBg -deT -qDZ -xTJ -nSG -ksK -xeA -qLG -hiV -pGo -wpy -jDX -bHW -jdE -mdb -sYq -pGo -vLj -ncW -uYV -pLs -dPt -pFi -tEv -etc -gdY -oDo -eKe -skI -skI -skI -hKu -caw -jvQ -bqd -qYL -gEq -dTW -qGB -wyO -jOW -rTo -jRN -qBl -sFX -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(164,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -kUG -dGy -kUG -vRW -jbI -fbP -xbx -fek -kUG -fgm -nfh -vQb -bao -awz -lxb -oig -nfh -ejA -jdL -jdL -jdL -hMz -esu -qMq -oyB -iql -sPo -iPJ -jdL -jdL -mZm -sPo -vxL -jdL -jdL -vkN -jdL -jWX -szg -brZ -wqn -lNc -hXB -wte -lDi -fPJ -vBx -ery -njx -fsK -eoy -rly -ePl -eoy -qHY -vwg -wRf -rWG -wvb -hoC -yfI -bGf -kGo -sCW -nxl -ygL -xhW -sLK -dvy -lSl -xms -aaa -aad -aaa -diL -cmE -drj -bog -iMg -gOU -cBE -kDL -qxw -aby -vFe -aGZ -teA -nSv -lnm -tLa -nDn -nrd -ivA -lXB -kSu -aSR -jlp -rdO -fQw -icV -tFn -ksK -ksK -maS -maS -mIs -maS -dOY -maS -ksK -upC -wwy -hiV -eFz -kFr -sqx -bHW -mXl -jDX -rFF -wGS -nyS -shB -hJh -dKD -wZx -uFO -oSa -eoE -iYK -dbu -eKe -eKe -eKe -eKe -bqW -caw -jvQ -bgd -qYL -eGn -udE -tcJ -krK -eRM -rTo -iXB -orx -rTo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(165,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -kUG -adR -lEM -mUa -rbm -xax -lEM -adR -kUG -sUx -aff -afG -ciI -czO -czO -ieW -rcY -oJv -ljc -viV -jdL -oll -siV -uRt -kdg -aKS -jdL -pbq -jdL -qpD -vXQ -hEQ -weX -iLF -jdL -rUV -jdL -gJI -ttP -iXj -oXl -dFm -fqx -ebo -lDi -oKr -rgj -eoy -arr -oKr -oKr -eoy -oPC -oKr -hoC -jFC -toS -hoC -hoC -hoC -lky -erZ -jwt -rcI -oUc -fdK -xhW -fpb -bmn -lSl -xms -aaa -aad -aaa -diL -uhH -xtg -bpa -uhH -gOU -xRO -wvg -mXr -icS -gOU -ivA -ivA -ivA -sEs -taL -lgN -asD -ivA -nGK -hQm -krh -gCp -xtq -vIQ -hIP -png -jFg -ksK -gWJ -hXx -xaZ -pmG -eeL -hJv -hct -avR -whK -uMU -jAW -aNZ -nlW -nVG -iVW -mdb -rFF -iuD -jQy -yjT -uQQ -sfo -xee -ddx -oSa -jSh -oQp -dbu -eKe -eKe -eKe -eKe -bqW -caw -jvQ -pId -qYL -qVH -wUN -giS -ucf -rcE -rTo -tbL -fdz -rTo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(166,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -aad -aad -lEM -rou -uWg -dIT -lEM -aad -kUG -adR -adR -adR -adR -cIb -adR -adR -adR -adR -jdL -wFC -jdL -sPo -sPo -jdL -kRN -jdL -jdL -pjk -jdL -ske -daF -vyG -dRo -tpI -jdL -fYK -jdL -lgc -dfk -kYB -hoz -pAz -wzZ -uEN -lDi -trn -xzk -pdB -pdB -lTg -uQa -xqM -nLD -lKl -mQt -tfC -bcD -haS -xhW -pQS -fZi -sye -sye -fOB -vCV -xFZ -xhW -skZ -dvy -lSl -xms -aaa -aad -aaa -diL -nBJ -eVb -jYX -nBJ -gOU -qsY -vdS -vdS -aby -jzT -ivA -ixN -lTx -pTc -hnk -opY -mPu -ivA -gAH -kSu -jrJ -mOP -mOP -dlx -rBB -jiC -uHk -ksK -elN -mQZ -hrG -pdu -qKG -mQC -hct -avR -whK -rJn -pGo -asn -mdb -kAE -lUJ -jDX -rFF -aeA -oUj -gIh -rFF -dKD -wZx -uFO -oSa -eoE -mUG -vKR -eou -eou -eou -eou -cWp -urR -aGx -bgd -qYL -axJ -sDX -omK -ucf -vFh -rTo -xme -qSO -sFX -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(167,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aad -aad -jYK -vHs -aDa -dci -lEM -aaa -kUG -vSK -vSK -vSK -vSK -nTh -vSK -vSK -vSK -vSK -jdL -vkN -iql -dVl -ozQ -gJB -aBM -pOi -hvn -pjk -jdL -mGo -lBa -uTB -wak -cFN -jdL -oFk -jdL -lDi -lHC -bjN -lDi -fKN -ndQ -lDi -afF -sLg -bqv -hDZ -bfT -wHs -oSv -wqo -iiP -mDz -oSv -yhh -aCY -hbH -kGo -ipz -vbf -ixZ -aQn -gMT -oDf -wjW -siF -pXg -vwv -nFG -kOj -xms -xms -xms -diL -rWj -drj -bog -uYv -gOU -prt -wqT -epd -tTj -iKC -ivA -cfV -wbh -sEs -cNy -sim -lHx -ivA -eyK -kSu -vDJ -mja -sXg -vIQ -rBB -jiC -lAi -ksK -lHu -hXx -mBQ -qDZ -xfd -vrd -pLg -lxF -whK -rJn -pGo -qhO -eLs -dRC -idf -drt -pJL -pGo -kTK -mwa -mOi -pLs -wZx -adN -oSa -etc -tAp -qjQ -eug -eug -nBH -mrE -xpE -nvQ -nBH -ocj -qYL -enu -nnD -giS -ucf -cvw -rTo -rdx -aOa -rTo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(168,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -lEM -uhC -dnL -obw -lEM -aad -kUG -vSK -vSK -vSK -vSK -vSK -vSK -vSK -vSK -vSK -jdL -aIQ -viV -mGq -pjk -bBt -pjk -mGq -pjk -jdL -jdL -pcC -exy -nmb -kYn -djn -jdL -eNn -jdL -aix -wHa -mIA -xeo -dcS -qof -juU -svq -nZK -hey -oSv -oSv -ueU -cNf -wqo -lfC -oSv -mOe -yhh -liD -mZU -whb -uBZ -pso -sqW -sqW -lRi -eYZ -vxt -uzn -eUH -dvy -hOd -kOj -pca -kNw -anV -diL -uhH -tvF -rBQ -uhH -gOU -gOU -gOU -gOU -gOU -gOU -ivA -ivA -ivA -ivA -ivA -ivA -ivA -ivA -vIQ -vIQ -fEC -vIQ -vIQ -aFE -jaV -tPc -ijj -ksK -ksK -ksK -ksK -ksK -ksK -ksK -uhk -kxg -hJs -dYn -vVC -pLs -dKD -nCu -dAl -dKD -vVC -pLs -dKD -uEQ -dKD -pLs -wZx -pNZ -iNw -jlV -etc -eoE -eoE -etc -etc -eoE -qiK -eoE -etc -etc -qYL -iFv -nnD -mBj -krK -bhv -rTo -aLO -aOa -rTo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(169,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -jYK -jYK -tOm -jYK -jYK -aad -kUG -vSK -vSK -vSK -vSK -vSK -vSK -vSK -vSK -vSK -jdL -eGp -aYx -kAd -eGp -jdL -eGp -rIk -eGp -jdL -qnd -feg -exy -xwO -liM -qSl -jdL -eNn -jdL -jWq -hTl -tjl -lYt -tCQ -sEv -dsO -oSv -hcc -eSX -hcc -vDN -oSv -xYI -wqo -ncQ -oSv -oSv -eee -oSv -jcy -kGo -wff -esq -rWa -kUZ -xhW -dWz -xhW -xhW -upX -aGG -lSl -cpr -lSl -lSl -lSl -pLz -pNq -kHp -skX -pNq -lSl -iST -lSl -lSl -lSl -cpr -lSl -rTe -lSl -lSl -lSl -lSl -rMu -iST -lSl -fyj -lSl -lSl -rMu -qSd -rRB -nOP -sqd -ofR -sqd -dMM -uKZ -sqd -sqd -sqd -sqd -aLv -whK -ekV -cMS -pLs -aIb -amk -gJv -wZx -wZx -pQi -wZx -wZx -wZx -mzw -wZx -pNZ -oSa -kHC -fMN -cKx -fzT -omS -xZV -fzT -tJz -fzT -bQB -uWG -qYL -vtD -nnD -wxe -ucf -sxe -rTo -hYM -sJH -sFX -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(170,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -jYK -bui -jYK -aad -aad -kUG -vSK -vSK -vSK -vSK -vSK -vSK -vSK -vSK -vSK -vno -xSq -vxq -mCY -sUA -vno -qbT -uWe -xCC -vno -jYU -llB -rxw -hZi -tyU -kvK -sKC -cxv -joP -jnd -udk -wvd -iRP -fmJ -bqv -cXy -lbF -bqv -xEY -bqv -ehS -lbF -gEA -vtB -iWF -bqv -bqv -jqs -oSv -gLz -xhW -qMn -fOz -rAl -bkr -yfo -qLp -nQQ -xhW -pCE -qxy -cgP -uec -cgP -cgP -iET -cgP -cgP -cgP -jkA -dhk -iET -cgP -tCY -cgP -cgP -uec -nIz -kpX -nTN -gKA -bgS -gKA -gKA -gKA -gKA -gKA -gKA -dTB -gKA -tNV -hlD -izp -whK -wwy -whK -whK -whK -whK -whK -wwy -whK -qAW -sio -ers -qfB -pLs -jJC -faQ -vEE -cVg -tss -cVg -tss -cVg -mgy -beR -beR -ftj -pzd -oOw -jxe -fmj -gso -fmj -gso -fmj -xhC -sjo -lAO -wvP -bxy -whH -sJE -vfk -lnc -rww -arX -tbR -orx -rTo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(171,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -jYK -eyD -jYK -aad -aad -kUG -vSK -vSK -vSK -vSK -mfy -vSK -vSK -vSK -vSK -vno -dVh -azE -qTP -iMV -tRo -ogn -hSl -kVZ -vno -pGC -jRg -wFo -rZF -wak -sOk -jdL -poC -jdL -kUf -bhR -rdJ -oSv -cNf -bfT -cNf -oBq -oSv -oSv -cNf -wQN -oSv -uvH -wqo -aRO -dbx -cwt -jIa -cNf -ohH -xhW -xhW -nPo -kGo -nPo -xhW -xhW -xhW -xhW -uBd -pQm -vPp -oAW -qzY -qzY -edB -hZs -qzY -irs -qzY -qzY -edB -vPp -qzY -qzY -jfK -oAW -eFr -ohP -qrt -qrt -wXU -qrt -qrt -ksf -qrt -qrt -qrt -sWI -qrt -piG -mXQ -mXQ -nXY -dHb -mXQ -mXQ -mAh -mXQ -mXQ -qtO -mXQ -gfY -erS -ers -iRv -pLs -lFx -oHx -nZr -nZr -nZr -uHg -nZr -nZr -nZr -nZr -nZr -pPt -rva -gIu -rva -rva -rva -rva -oLS -rva -bsZ -rva -kpM -pzN -qYL -blV -eku -cjK -iUE -kEa -rTo -tjY -orx -rTo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(172,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aad -aac -aac -aad -aac -aaa -aad -aad -aad -aoP -aad -aad -aaa -kUG -vSK -vSK -vSK -vSK -vSK -vSK -vSK -vSK -vSK -vno -smO -azE -iMB -fcH -uIq -pXw -igj -mDI -vno -tlK -nyJ -wuZ -jhJ -lgh -pob -jdL -fIu -jdL -jLi -npZ -cvr -sji -oSv -vZL -oSv -vAX -oSv -kuy -oSv -osd -oSv -kuy -uHl -kSk -sNf -oSv -uSp -oSv -cFz -rWo -qko -vNV -pxS -xMZ -mlF -qsF -jKY -tpZ -lDY -tpZ -kOj -kOj -nHQ -nHQ -xPt -nHQ -nHQ -kOj -kOj -sCp -ero -sCp -erX -erX -erX -gtD -qIE -tWg -hTm -gxP -iVq -iVq -iVq -iVq -nSA -eQs -nSA -iVq -iVq -iVq -iVq -sse -hgg -orL -orL -iYi -iYi -iYi -iYi -nXH -nXH -nXH -bTL -nXH -nXH -nXH -nXH -bmQ -mYY -mYY -mYY -bmQ -bmQ -mYY -mYY -iZL -nfP -rkW -wqb -oDE -cwe -wsg -viy -cwe -jhY -lUu -pLt -lUu -loe -lUu -loe -loe -loe -loe -loe -loe -akK -tjY -mMX -sFX -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(173,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aad -aac -aac -aaa -aaa -aad -aaa -aaa -aac -aac -aad -aac -aad -aoP -aad -aac -aad -kUG -vSK -vSK -vSK -vSK -vSK -vSK -vSK -vSK -vSK -vno -jbu -vxq -ooF -egs -vno -rJN -tLW -pGy -vno -eiL -gUb -mRf -eIt -tsz -gbo -jdL -ouu -jdL -xFo -gNo -nlB -lVv -hcc -mra -mhE -bKT -hcc -rAk -hcc -etg -hcc -kuy -xRv -pHz -vkK -qaF -tQW -hQj -uzM -aPD -stf -llj -mDm -fbu -mDm -vDj -hXd -tpZ -qmT -tpZ -aaa -aad -aaa -teY -tcG -teY -aaa -aad -aaa -sCp -mJR -sCp -xav -dTu -tWD -erX -eDc -ljd -sXJ -iVq -iPi -uEy -spZ -wxa -wCI -dra -wCI -hCh -eFm -odA -iyf -iVq -nXY -crR -ers -iYi -aAT -qep -sAS -nXH -kiw -iPa -jxM -ckP -nNl -cYr -vNa -eyP -cHa -rZD -mWw -vgf -mYY -thL -uaq -mYY -wfm -sYk -rva -cwe -sTN -gim -ewB -uNR -loe -aYd -dsd -guM -ydw -dod -rKj -cxf -rIQ -kTL -sXk -rUB -akK -tjY -lLU -rTo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(174,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aaa -aad -aaa -aaa -pAJ -aoP -pAJ -aaa -aaa -aad -aaa -aaa -aad -aoP -aaa -aac -aad -kUG -vSK -vSK -vSK -vSK -vSK -vSK -vSK -vSK -vSK -vno -utk -azE -ajL -pQj -lKd -pXw -uQN -kId -vno -amq -gWy -gIT -pWK -etq -kwb -jdL -gMt -jdL -kOy -cFs -wyh -mLD -dbx -xef -qaF -eRF -dbx -icM -qaF -nfE -qaF -oJR -qHL -dtL -bLo -rbV -qLg -uTu -tQP -rmH -toy -izj -fAj -pUs -okN -oAV -vId -qyX -uND -tpZ -aaa -lhY -lhY -lhY -tzS -lhY -lhY -lhY -aaa -sCp -gwT -sCp -uPh -tcx -mIv -ikH -wGa -ljd -sXJ -nSA -nzI -wCI -nzI -wCI -nXo -qCC -nXo -nXo -nXo -nXo -nXo -nSA -nXY -xDY -ers -iYi -jRb -nto -xNW -nXH -amm -ckP -gOh -nfi -ckP -ktt -vNa -jsr -dTV -snv -hTE -vFO -fmU -qfh -sEr -fSC -xuy -aUP -rva -oDE -mXb -kIm -kIm -mZT -evM -hEV -qjb -lhI -hjl -lOM -lhI -lhI -rXA -lhI -qgM -kgb -akK -bqB -ghW -rTo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(175,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -pAJ -aoP -pAJ -aaa -pAJ -aoP -pAJ -aaa -pAJ -aoP -pAJ -aaa -aad -aoP -aad -aac -aad -kUG -vSK -vSK -vSK -vSK -vSK -vSK -vSK -vSK -vSK -vno -eqE -azE -fuT -iEs -uIq -nuz -tLW -gUy -vno -aKt -aKt -xMo -xMo -aKt -aKt -jdL -rEF -jdL -bhJ -ycW -xva -ivt -hnP -gax -oSv -iaa -oSv -ivt -oSv -lZw -aCY -fXt -jsm -jrp -pJR -wfA -fya -cSK -pok -rWo -llJ -kKx -dux -tcB -nEE -cyc -qBS -tpZ -eFU -tpZ -aad -lhY -vZE -ldU -tcG -vZE -vZE -lhY -aad -sCp -gCY -fLu -hJj -vhu -jyB -hwC -iZN -dfa -sXJ -xEE -dra -omj -epc -omj -dra -vtn -mDw -vwO -nzI -wCI -nXo -ouo -nJN -cqo -ivD -iYi -bSd -weo -pJx -nXH -mir -dWG -hqH -eql -bmA -smG -vNa -duO -mJT -vSn -mJT -wxO -mYY -fUY -kjj -mYY -wfm -sLy -kGs -qtg -oNW -fNt -pwE -jPG -duR -bFo -qjb -tqU -xBG -xca -xNV -nPs -wcF -wCd -aSC -aqu -akK -bqB -jcA -sFX -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(176,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -pAJ -aoP -pAJ -aaa -pAJ -aoP -pAJ -aaa -pAJ -aoP -pAJ -aaa -aad -aoP -aaa -aad -aad -kUG -kUG -kUG -kUG -kUG -kUG -kUG -kUG -kUG -kUG -vno -xLr -azE -vxq -qYN -ind -riO -qHQ -lyC -vno -aad -aad -rUw -rUw -aad -oeX -aNF -wpT -kic -isQ -rnP -wqs -dIE -mHM -dIE -dIE -dIE -dIE -dIE -dIE -dIE -omk -dIE -fpZ -cez -iHf -iHf -sIO -iHf -iHf -cez -mtL -kKx -iXd -eYt -hzs -tNn -cGV -tpZ -jRc -tpZ -aaa -lhY -hsU -qKc -uYm -sJr -ikC -lhY -aaa -sCp -mJR -sCp -ght -mnz -kkF -oMq -eDc -ljd -sXJ -nSA -wxa -soK -wYN -vwO -qCC -vwO -oJP -vwO -wxa -wCI -kHG -nSA -aLv -crR -dwJ -iYi -iYi -hgj -iYi -nXH -nXH -nXH -hYQ -lnH -amm -ykc -vNa -bmQ -mYY -bmQ -mYY -adv -bmQ -aRN -mYY -iZL -tvr -uFO -tJz -oDE -oSe -thY -thY -ngc -evM -uFQ -qjb -wCd -oDH -nXZ -fVQ -wCd -rXA -lhI -fUR -aKr -akK -iXB -uBW -rTo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(177,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -pAJ -aoP -pAJ -aad -pAJ -aoP -pAJ -aad -pAJ -aoP -pAJ -aad -aad -aoP -aaa -aac -eqU -aad -aad -aaa -aad -aad -aad -aaa -aad -aaa -aad -vno -vno -vZf -vZf -vno -vno -vno -dZQ -vno -vno -aad -oeX -pYG -pYG -kic -kic -cme -jap -kic -fXt -pWz -xkh -xgX -den -den -iGd -iGd -den -nrI -iGd -iGd -apY -awl -ivt -iHf -ggo -oSJ -umZ -qsL -tmx -iHf -kTs -ljQ -guj -eYt -nhj -owZ -wwk -tpZ -elO -tpZ -aaa -lhY -vsp -qKc -iYp -sJr -gJA -lhY -aaa -sCp -avY -sCp -jJx -edV -mes -erX -eDc -ljd -cPS -iVq -liY -vwO -vwO -vwO -qCC -vwO -vwO -vwO -vwO -dau -nXo -iVq -fDl -crR -ers -iYi -hri -nuw -bIb -pHv -kGO -nXH -hqH -nfi -rAY -amm -nXH -rfG -pTb -cji -kpl -uLj -kJa -tOz -pTb -veM -hce -adN -tJz -cwe -sTN -sNl -vZK -fQG -loe -fWi -xPM -oGi -bNJ -exI -obD -sHA -rIQ -sep -vYH -kDc -akK -pOz -pPU -rTo -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(178,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -pAJ -aoP -pAJ -aaa -pAJ -aoP -pAJ -aaa -pAJ -aoP -pAJ -aaa -aad -aoP -aad -aac -qYo -aad -aac -aac -aac -aad -aac -aac -aac -aac -aac -aaa -aad -abj -abj -aad -vno -ahI -doI -fUN -vno -aad -oeX -bOl -kVt -xwA -xHz -fva -axs -kic -lqO -ofN -nDk -ofN -aWN -ivt -bLy -ivt -ktK -egU -jPz -egU -uPk -dmu -aDg -iHf -xdE -iVn -sjd -rhb -jjv -cez -pZo -iio -mDm -eYt -tSj -gco -hkn -tpZ -cwK -tpZ -aaa -lhY -wQy -eQr -rgL -eQr -jMq -lhY -aaa -sCp -eiR -sCp -sCp -erX -erX -erX -pKm -sGx -bjR -iVq -aSi -aSi -aSi -aSi -mqt -aSi -aSi -aSi -aSi -tpJ -wmM -iVq -aOE -crR -ers -sLF -gPl -nBV -fXE -jHq -erE -bIS -bFI -nfi -tKj -amm -nXH -jNI -tCJ -fpx -hxw -frL -lMB -rij -pTb -rQB -foG -uFO -qsQ -oDE -cwe -syo -gct -cwe -jhY -nJS -pLt -nJS -loe -nJS -loe -loe -loe -loe -loe -loe -akK -rTo -hmA -rTo -xPc -tgT -tgT -tgT -tgT -tgT -aaa -gqm -gqm -tgT -gqm -tgT -gqm -gqm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(179,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -aac -aac -aad -pAJ -aoP -pAJ -aaa -aad -aoP -aad -aaa -pAJ -aoP -pAJ -aaa -aad -fjf -aaa -aac -aaa -aaa -aaa -aaa -qYo -aaa -aaa -qYo -aaa -aaa -qYo -aad -aad -aad -aad -aad -vno -iJj -kVw -acU -vno -aad -oeX -bRV -all -agH -axr -vQh -hIs -kic -tDx -tDx -jrp -tDx -xDW -gUn -jrp -cDd -sSh -tDx -jrp -tDx -tDx -jrp -tDx -cez -sNy -pDD -nvU -gfa -oEh -cez -dPC -usJ -nhj -mDm -mDm -uOk -pPp -tpZ -tpZ -tpZ -aad -lhY -yah -vZE -xrd -vZE -aSm -lhY -aad -sCp -awq -gwT -sCp -mSX -jnj -lSz -vLR -fdR -bGl -iVq -vMx -onj -vSk -nez -hiF -nez -cHg -uzv -cBN -tXa -nXo -iVq -kxg -vlY -vlY -iYi -ePJ -mVB -qbK -iYi -iYi -nXH -jxM -ckP -amm -jta -nXH -bDx -dfB -oDk -jCC -fhS -wwi -eeE -kfY -rQB -wfm -sYk -tJz -dwZ -tJz -tJz -iXF -tJz -qUL -tJz -iAc -sRh -sRh -sRh -xZy -sRh -rhy -sRh -sRh -rea -pLs -kJx -cJJ -toI -aOl -tgT -bQo -jCF -jbU -tgT -aad -gqm -izz -pZa -vbt -nsa -mQE -gqm -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(180,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aad -aaa -aaa -aad -aoP -aad -aad -aad -fjf -aad -aad -aad -aoP -aad -aad -aad -fjf -aad -aac -aad -aaa -aaa -aaa -qYo -aaa -aaa -abj -aad -aad -abj -aaa -aad -aaa -aaa -aad -vno -qaq -tEN -pzS -vno -aad -kic -tcT -kic -kic -kLA -mvv -aFB -kic -aad -aad -aad -tDx -xEO -bti -hhK -bti -sJi -tDx -aad -aad -aad -aad -aad -cez -sEi -buT -jCx -iTM -tDU -iHf -jfO -jBM -xVv -ftS -dXs -rgC -tDD -rWo -aad -aaa -aaa -lhY -lhY -lhY -lhY -lhY -lhY -lhY -aaa -qiL -qiL -pdC -qiL -wpX -iQg -lSz -ckN -ljd -tdf -iVq -rLL -nAS -inV -wan -fPj -wan -xAN -uKQ -bmq -qKk -pSy -iVq -aLv -crR -iFk -iYi -oTm -lxS -cJp -rTB -bvI -nXH -gOh -vNa -vNa -vNa -nXH -pdl -pdl -ako -ako -jXW -wwi -tCm -sEQ -bhd -wfm -mik -mGQ -ble -muu -uab -lAO -uab -lAO -mbp -kbm -uFO -sYk -nrv -sYk -uFO -ddx -ezH -sYk -xak -kkU -srO -gwi -pLP -fYV -amF -sqn -osY -ubJ -tgT -aaa -tgT -nVW -iGj -ldD -jGO -wtW -tgT -aad -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(181,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -lEh -aoP -aoP -fjf -fjf -fjf -fjf -rMz -fjf -fjf -fjf -xcd -fjf -fjf -fjf -fjf -fjf -aaa -aad -aaa -aaa -aaa -aaa -abj -aad -aad -abj -aaa -aaa -abj -aad -aad -aaa -aaa -aad -vno -vno -vno -vno -vno -aad -oeX -sZt -msj -rGi -xBu -rum -akS -kic -aaa -aaa -aaa -tDx -xDW -hDJ -tDx -hDJ -bFy -tDx -aaa -aaa -aaa -aaa -aad -rje -qom -jGR -eGI -jGR -ear -iHf -rWo -rWo -rWo -bta -rWo -rWo -rWo -rWo -aad -aaa -aaa -aaa -aad -aaa -xYl -aaa -aad -aaa -aaa -dCk -cAj -iUz -dPy -jYC -wTv -dCk -wnQ -ljd -sXJ -iVq -jVE -cgV -vAP -udm -lMk -uAo -qBp -fuG -rrF -vSo -nob -iVq -xeA -crR -oeC -iYi -oTm -aqv -uNr -iYi -iYi -nXH -gOh -vNa -kHa -mea -nQc -slH -gAc -onf -ako -nUt -tjq -nvK -uxY -rQB -wfm -cch -gCy -kHC -kcy -dBh -bQX -kcy -kcy -gDc -kcy -kcy -wps -kcy -kcy -kcy -gDc -kcy -kcy -gvL -pLs -xEM -aIs -eFP -njM -yaG -vac -txX -cUH -tgT -aad -gqm -gpG -cDs -yjQ -oWR -yhM -gqm -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(182,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aad -aaa -aaa -aad -aoP -aad -aad -aad -fjf -aad -aad -aad -aoP -aad -aad -aad -aad -aad -aac -aad -abj -aad -aad -abj -aaa -aaa -abj -aad -aad -abj -aaa -aad -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -oeX -gdM -lbu -jtm -ikR -emZ -akS -oeX -aaa -aaa -aaa -aaa -aaa -aDi -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -rje -cBn -iwW -uni -oif -jHC -iHf -aad -rWo -juo -jac -fvC -rWo -aad -aad -aad -aad -aad -aad -aac -aac -aac -aac -aac -aad -aad -oIU -kJb -nPS -kdY -jYC -hcf -dCk -wnQ -ljd -sXJ -iVq -akT -wJd -kam -izo -wvr -tvk -lOO -wan -rrF -qKY -nob -iVq -ulb -wsw -hKd -iYi -kBE -hNx -jHq -ykJ -uVo -nXH -jxM -vNa -jwP -kTk -jkJ -lEs -lEs -kEZ -bPM -hRx -nNb -vnQ -sGB -sIx -huJ -qXA -rva -aaM -aaM -aaM -aaM -aaM -rDr -mtd -rDr -cQA -aaM -wdj -wdj -wdj -qFm -wdj -wdj -wdj -nXH -nXH -smu -nXH -xPc -tgT -tgT -nAT -tgT -tgT -aaa -gqm -xbR -aYu -aTN -hYj -pfy -gqm -aaa -qYo -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(183,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aad -pAJ -aoP -pAJ -aaa -aad -aoP -aad -aaa -pAJ -aoP -pAJ -aad -aac -aad -aac -aac -aaa -abj -aaa -aaa -abj -aad -aad -abj -aaa -aaa -aaa -aaa -aad -aad -aac -aac -aad -aaa -aac -aac -aac -aad -kic -gdM -qvW -qOO -jMk -oPL -yie -oeX -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -cez -cez -gjV -tHw -cez -cez -cez -aaa -gME -rYR -hYO -mSp -gME -aaa -aaa -aaa -aaa -abj -abj -abj -abj -abj -abj -abj -aaa -aaa -oIU -pDS -tUl -bnV -urd -eOA -oIU -wnQ -ljd -pCw -uXK -eND -lMk -fSg -tJt -cei -xOn -kgm -wan -rrF -qKk -ltK -iVq -aLv -crR -oeC -iYi -cNS -gCQ -tcl -iYi -iYi -nXH -gOh -vNa -vLY -gxu -hWB -pBT -hWB -aGa -pdl -dfB -mbQ -uxY -oBg -rQB -wfm -cch -reH -aaM -kyJ -qaD -bxK -iGg -qMb -hpj -bgq -coD -aaM -kPk -pud -vZv -wZa -pVR -pVR -oHm -nXH -nXA -mYV -nXH -aaa -aaa -tgT -eJR -tgT -aaa -aaa -tgT -tAR -sry -gEm -ena -iwI -tgT -aad -xTK -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(184,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -pAJ -aoP -pAJ -aaa -pAJ -aoP -pAJ -aaa -pAJ -aoP -pAJ -aaa -aac -aad -aad -aaa -aaa -abj -aad -aad -abj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -kic -wfV -qye -hMn -ocO -kqQ -nou -kic -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -rje -ian -oSJ -lKW -oeV -rje -aad -aaa -rWo -rWo -dqv -rWo -rWo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dCk -ixR -qcf -wQU -wQU -qcf -wQn -sWB -huv -vWX -iVq -aOQ -qTK -smF -xJF -cAH -laJ -smF -fkt -jmT -gkW -ghq -iVq -aLv -jcl -oeC -iYi -azx -aih -jHq -wLM -mjC -nXH -bFI -vNa -nqJ -vyr -ejR -ejR -mYh -uBv -ako -hOr -api -gIN -sfJ -veM -wfm -vMc -rva -aaM -yhS -cQd -maP -lRG -mFe -dkZ -fSo -shp -qru -hTo -sks -hTo -tmq -hTo -sks -hTo -kDW -pUm -jxM -bBd -aad -aad -rHS -eJf -gqm -aad -aad -gqm -eUi -nlV -jMb -lgv -jwd -gqm -aaa -xTK -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(185,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -pAJ -aoP -pAJ -aad -pAJ -aoP -pAJ -aad -pAJ -aoP -pAJ -aad -aac -aaa -aaa -aaa -aaa -abj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -kic -rKW -kic -kic -oeX -oeX -kic -kic -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -rje -dCR -xbq -geu -kYf -rje -aad -aaa -aaa -aaa -egm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oIU -vwd -qcf -trf -gZz -csy -oIU -wnQ -ljd -uoJ -tGt -tGt -qxM -tGt -tGt -tGt -fnR -fnR -fnR -fnR -iVq -iVq -iVq -wWH -xsS -hZX -iYi -iYi -iYi -eWp -iYi -nXH -nXH -bCd -vNa -ilV -xdV -nND -vhF -oGN -vAB -ako -iFf -ddX -tSs -tuG -veM -wfm -uHr -rva -aaM -oRL -cQd -bxK -gCa -psV -rdI -xdJ -kgr -aaM -uwB -xVE -qJd -gEi -qJd -xVE -cIG -nXH -ckP -kJg -nXH -aaa -aaa -gqm -eYB -gqm -aaa -aaa -tgT -vUl -dhD -ihj -gvR -bsX -tgT -aad -qYo -qYo -xTK -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(186,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -pAJ -aoP -pAJ -aaa -pAJ -aoP -pAJ -aaa -pAJ -aoP -pAJ -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aad -abj -aaa -abj -aad -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -rje -aED -pBK -pQJ -aZv -rje -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oIU -ajw -xGH -pHO -oNA -dGu -lSp -klX -ljd -cqM -tGt -lCy -gbK -dac -qUb -vmM -fnR -mvg -iZg -apB -iHS -tvO -uHa -mzm -fLb -izS -sYJ -izS -izS -eho -vRk -nXH -lKR -bFI -vNa -vNa -kbS -fss -vNa -pFE -ako -ako -veM -veM -veM -veM -nef -wfm -htD -hJu -aaM -dBQ -lFo -aaM -aaM -aaM -qPY -aaM -aaM -aaM -lEu -wiR -ogN -cOY -gYK -gQO -mqT -nXH -xsG -gOh -nXH -aaa -tgT -tgT -uhw -tgT -tgT -tgT -tgT -uKR -gqm -eiz -gqm -xPc -tgT -tgT -tgT -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(187,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -pAJ -aoP -pAJ -aaa -pAJ -aoP -pAJ -aaa -pAJ -aoP -pAJ -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -rje -rje -cez -cez -rje -rje -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dCk -riH -bfF -uYp -hfG -hQJ -dCk -rTO -dCd -gft -tPr -lMd -arI -cHk -aTH -pBM -fnR -ajS -gKy -fnR -haH -fAz -lRC -bCD -eHY -gyS -eHY -rLI -lRC -mha -rWC -nXH -nIv -jxM -oKh -ifU -bFI -uOZ -nXH -mjm -lvZ -nWi -sTe -ljh -hYa -skH -lvZ -xKE -cch -rva -aaM -qLH -sOZ -rDr -uwK -mpR -eQp -bDG -vlR -aaM -ajN -fqN -pod -jQl -baW -fqN -kir -nXH -rqb -kJg -nXH -aad -tgT -jsI -oqT -cck -jMw -wmy -wBp -quU -ltY -hEy -pph -cdF -uBm -vdz -tgT -xcW -ecg -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(188,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aaa -aad -aaa -aaa -pAJ -aoP -pAJ -aaa -aaa -aad -aaa -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aaa -aaa -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -nzJ -aaa -aaa -aaa -dCk -dCk -jpj -dCk -dCk -dCk -dCk -rTO -ljd -fzg -hbO -gbK -vMk -sIU -gGV -lhp -fnR -gOB -iyj -fnR -haH -gvW -eHY -nCz -uIw -rBH -pQn -oTq -eHY -mha -jPn -nXH -tCe -ezg -ckP -mGr -gOh -ckP -nXH -owH -lvZ -wZf -ipT -dBb -oXm -smy -gab -wfm -vMc -rva -vZp -nFY -xmG -rDr -tvP -shp -bis -xCu -aTM -nXH -nXH -nXH -nXH -nXH -nXH -nXH -nXH -nXH -ckP -kWp -bBd -aaa -gqm -eZy -hJr -oVS -wDW -oVS -hJr -oVS -hJr -fwR -cAJ -wHC -hnJ -aOo -cSn -pvc -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(189,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aad -aac -aac -aaa -aaa -aad -aaa -aaa -aac -aac -aad -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -abj -abj -aaa -abj -abj -abj -abj -abj -abj -aaa -aaa -aaa -aad -aaa -aad -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -btm -uSa -btm -aaa -btm -ady -btm -aaa -aaa -dCk -oSt -oHF -wRP -rku -wWZ -dCk -rTO -qZs -gft -tPr -jvs -pQF -uMP -iVr -wIL -nat -bbC -ddE -fnR -haH -fAz -gSf -aGd -rfS -eHY -sdQ -phR -hAA -mha -dSx -nXH -hgD -hPZ -frW -aFD -jxM -wRR -nXH -oib -lvZ -uxS -ipT -rKH -ttz -pBV -gty -xQz -ueW -rva -bxK -cQd -xmG -rDr -soD -dnm -cSP -eLv -tnj -nXH -ydY -eBz -fsJ -ckP -gJi -uUA -jta -qAx -amm -kJg -nXH -aad -tgT -iqQ -sry -eOc -bAq -bAq -gBP -eiD -oca -dIr -dIr -oca -wLR -hXJ -wYx -bnW -qhu -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(190,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aad -aac -aac -aad -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aac -aad -aad -aaa -aaa -aad -aaa -aaa -abj -abj -abj -abj -abj -abj -aaa -aad -aad -aad -faF -aGz -btm -aad -btm -aGz -faF -aad -aad -dCk -oiH -vFo -kKg -mLT -noh -dCk -trI -ljd -sSU -tGt -mDR -bGh -hCM -gez -mLt -fnR -sGR -rrp -fnR -oCP -hxg -eHY -jVd -xAT -eHY -iTA -jNN -hAA -aqj -oCP -nXH -nXH -nXH -nXH -nXH -nXH -sqY -xvC -kQs -sMk -ifq -duN -tZD -nqv -fNL -gab -wfm -vMc -rva -bEV -isZ -xmG -rDr -skd -wOF -azt -bTo -cGD -nXH -bje -jxM -jxM -lut -nPL -wow -oCA -mta -gOh -dnq -nXH -aaa -tgT -xPc -mbz -sWS -mbz -xPc -xPc -xPc -gqm -xMI -gqm -ixm -gqm -xPc -tgT -tgT -tgT -tgT -aad -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(191,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aac -aaa -aad -aaa -aaa -aad -aaa -aaa -aad -aaa -aaa -aad -aaa -aaa -aad -btm -btm -rJt -btm -dru -btm -rJt -btm -kOg -btm -edq -edq -dCk -dCk -dCk -dCk -dCk -dCk -dCk -nMg -fdR -bGl -tGt -irl -irl -irl -irl -aiK -fnR -sAE -aXC -fnR -waU -njW -wNU -pBF -wNa -eHY -yeE -lPB -szC -tqt -dVF -oCP -gdi -cbu -cbu -wrW -nXH -jUb -nXH -pIA -lvZ -lwp -lXz -oWe -tbc -xly -lvZ -aJZ -aIX -lpb -aaM -uPt -sOZ -rDr -qVT -gGn -wcp -wtn -iyh -nXH -bje -kfP -nXH -nXH -waI -nXH -obm -nXH -nXH -nXH -nXH -aad -tgT -tHC -chS -qQr -rZz -uVX -xPc -gmy -cAf -xPc -ifl -lPj -rVq -gqm -oae -xwY -wTV -tgT -aad -xTK -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(192,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -mSe -mSe -lyd -mSe -mSe -ubL -mSe -mSe -qbY -mSe -mSe -ljP -mSe -mSe -wDy -mSe -mSe -mSe -lGv -lGv -lGv -lGv -lGv -lGv -lGv -lGv -aad -aad -aad -aad -aad -aad -aad -aad -aad -xxF -tGU -rJp -xxE -xqN -bsm -rJt -iLp -xqN -xxE -iJS -iIz -vyF -mVO -nHs -ijK -nHs -nHs -whm -uUC -xLG -iNY -wtL -vMj -tEK -wVO -blo -aiK -vcD -wXW -rPA -fnR -dHG -njW -eHY -cER -aGO -eHY -rLI -ewS -rLI -kaG -lPS -gCP -nvS -pkf -pkf -nlU -nXH -ghf -nXH -nXH -nXH -nXH -nXH -nXH -nXH -nXH -nXH -pLs -qop -pLs -nXH -nXH -nXH -nXH -nXH -nXH -hRC -nXH -nXH -nXH -stz -hYQ -nXH -svu -ntz -rSX -vpi -anH -xZF -cVW -iLr -aaa -gqm -fmx -lIN -fwR -rZz -kNt -xPc -hEI -hSG -gqm -lbj -fwR -qQr -hdk -sJm -nzS -nqc -gqm -aaa -qYo -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(193,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -mSe -bgE -mtu -lTv -bgE -mtu -lTv -bgE -mtu -lTv -uTz -xNh -lTv -uTz -gmK -lTv -uTz -gXR -gQZ -ixG -kRw -wgX -jdT -kPs -obL -lGv -aaa -aaa -aaa -aad -aaa -lET -hyE -hyE -hyE -rJt -csC -lzP -dHy -iRc -qNm -bYC -uLH -fEw -iRc -gNg -hGj -lYY -nJP -lYY -lYY -lYY -lYY -lYY -pgl -bGR -fvn -lAM -uPH -hJB -qKd -uFa -aiK -sjG -fqc -rrp -fnR -ouP -umG -wNy -rBH -sNJ -eHY -rLI -eHY -eHY -tqt -rWC -xsS -dhI -uuh -oPP -xSn -nXH -vuV -avh -avh -gzn -xGj -tKH -dWG -rUU -fpj -nXH -vaD -fDo -bwz -nXH -pyL -quI -tKb -stz -ccw -mYV -ccw -tKb -nfi -nfi -wgf -nXH -njJ -anH -aii -kcK -anH -nbc -sBP -oLT -aaa -gqm -xnJ -iDw -vBM -eUD -nSz -gqm -oZv -hte -hdk -aij -vcc -oHR -xPc -vGX -xPc -xPc -tgT -aad -xTK -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(194,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -nOb -nOb -nOb -nOb -mSe -qxC -nOr -lTv -aEQ -nOr -lTv -wAe -dJy -lTv -kfV -wcD -lTv -abS -wcD -lTv -acr -mYy -gQZ -lWL -kRw -kBt -uIJ -gQZ -bhk -lET -lET -pWT -pWT -pWT -lET -lET -euZ -kgE -vgA -rJt -cyP -lkK -myF -xQN -hRi -xxF -aol -tox -oAP -uiH -xxF -pkN -lim -lim -kUN -lim -lim -lim -kUN -bZN -mJq -cEg -vMj -jCb -kHZ -myc -aiK -iyj -sAE -wEn -fnR -ouP -vgP -gLu -rNL -tqt -tqt -rBC -tqt -tqt -tqt -mbO -suy -gjs -mpL -jzP -wwM -nXH -mQM -hqH -uKb -hYQ -aFD -gvJ -iiJ -bYn -qxq -gvh -fJd -jiG -doP -drT -uWP -hqH -wIW -ssI -uOO -wIW -ssI -yde -aFD -jxM -aFD -nXH -cfz -mZi -uCf -kkQ -edm -xnT -vxg -oLT -aad -tgT -wwQ -rxj -oca -jCg -amd -xPc -hfW -ena -gqm -sry -fwR -oca -hdk -aWs -kwt -nqc -gqm -aaa -qYo -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(195,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -nOb -wrj -ppS -whS -lTv -vtx -jrG -lTv -vtx -jrG -lTv -vtx -jrG -lTv -ibb -vII -lTv -ibb -vII -lTv -ibb -uXD -gQZ -ghG -kRw -kBt -xZz -gQZ -nbi -lET -mmJ -glu -jQv -glu -lYv -lET -wEz -uKI -aBu -rJt -qsI -cKB -sqG -pLQ -ojD -rJt -dxs -kcO -icP -hdd -rJt -hOz -hOz -hOz -dzw -hOz -hOz -hOz -dzw -cuA -hOz -rQO -mTA -mTA -tNZ -nIb -aiK -xmc -ikl -qRL -fnR -fnR -reh -fnR -wby -lBM -uYr -oCP -gdm -tNT -bKm -kOY -oCP -qga -ijp -ijp -kGx -nXH -nXH -nXH -nXH -nXH -nXH -akD -ckP -nXH -nXH -nXH -pLs -sKH -pLs -nXH -nXH -nXH -nXH -nXH -nUC -nXH -nXH -nXH -nXH -nfi -eFf -nXH -qOu -nbc -nbc -eVA -anH -nbc -qlQ -iLr -aad -tgT -xPc -bbL -eHq -xPc -uKR -xPc -vzy -wvc -xPc -lue -nLl -thB -gqm -tVz -hFK -wTV -tgT -aad -xTK -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(196,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -nOb -xrr -hHl -tEt -lTv -wmV -lnX -lTv -wmV -oCa -lTv -wmV -lFL -lTv -ioT -sGO -lTv -ioT -fXC -lTv -ioT -vXN -gQZ -gQZ -cCw -kBt -uIJ -mEI -onT -lET -gGv -jlR -uKI -shV -jFu -lET -wam -khv -jru -rJt -heh -hty -mqU -pLQ -jVg -xxF -nay -xyd -hIx -ccr -rJt -hFT -lnt -qhX -fJq -afh -pKv -qhX -fJq -wPn -owg -oVm -qJZ -aPx -soW -bsp -aiK -xfX -cpJ -rrp -fnR -lGL -crx -fnR -fnR -fnR -fnR -fnR -yaI -yaI -yaI -yaI -yaI -xlJ -pYF -pYF -gJt -yaI -sOA -lsg -jJZ -vPH -nXH -oMS -sij -nXH -nWl -mNP -kLw -fxT -mOM -jUy -hZH -wcv -uoC -iGv -eBc -vYi -uRO -axY -nXH -lnK -tsU -nXH -uFC -vTy -vak -igD -bEd -qvv -sfa -iLr -aad -aad -tgT -pdV -jka -rJe -qdi -tgT -tgT -tgT -tgT -tgT -gqm -tgT -tgT -tgT -tgT -tgT -tgT -aad -aaa -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(197,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aac -aaa -nOb -afY -dpc -uOF -ovz -prH -xlI -wAt -xlI -pcw -gYz -xlI -xlI -pRG -xlI -xlI -eGS -chx -xlI -eqa -xlI -xlI -pMa -caH -cPG -hle -wsH -gQZ -hgd -lET -xPo -rqE -jkS -aAr -aUc -lET -xnm -khv -wGJ -rJt -wgl -sDW -vzY -sDW -ncP -rJt -joH -uau -pIu -gjR -rJt -twP -qUr -lnx -fJq -dBM -qUr -lnx -fJq -tEI -xDn -vja -qJZ -lFP -iHg -ryA -aiK -lpF -pFx -knT -mBM -kUu -jUN -qmG -dKA -mZf -nvB -fnR -wYf -byC -gyt -rQJ -lRs -xlJ -vMV -vMV -irP -dua -mkb -vdD -jtu -lbr -nXH -ulF -ckP -nXH -aBc -oUq -cOF -vdr -jQn -jUy -vTH -ovy -ovy -ovy -eGj -ovy -ovy -vYi -nXH -bje -aFD -nXH -bDg -eYq -eYq -uYi -eYq -gYl -wxs -iLr -aad -aad -gqm -byf -vOt -jdz -mIf -gqm -aaa -aad -aad -aad -aaa -aad -aad -aad -aad -aad -aad -aad -xTK -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(198,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -aac -aaa -nOb -nMd -jDp -jDp -jDp -dCV -mAj -aqq -aqq -woB -aqq -aAv -oBy -dFi -aqq -aqq -aqq -aqq -gYk -aqq -aqq -fwL -mvF -lGv -lGv -lGv -lGv -lGv -lGv -lET -pWT -nSZ -lET -lET -lET -lET -pWT -pVm -pgs -rJt -xxF -xxF -uGw -xxF -xxF -rJt -rJt -ukl -rJt -rJt -rJt -iDc -iuQ -iDc -fJq -iDc -nKk -iDc -fJq -vGn -iDc -rQO -qJZ -tNZ -pJq -tNZ -aiK -fnR -yll -fnR -fnR -iyj -czR -fnR -fnR -luN -nxD -rqm -fyG -jeD -axK -uJB -yaI -jiF -pYF -pYF -oJx -yaI -oqp -cOi -qzF -kPU -nXH -ulF -ekN -nXH -mUR -oUq -ett -kYT -bmg -jUy -nwg -ovy -ovy -ovy -bHm -ovy -fQK -vsH -dRA -wWz -tcZ -waI -jpx -pEi -pEi -fMc -pEi -pEi -mQA -oLT -aaa -aad -tgT -tnL -pey -pHj -lKI -tgT -aad -xTK -xTK -xTK -qYo -xTK -xTK -xTK -aaa -xTK -xTK -xTK -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(199,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aac -aaa -pyd -cQY -xpr -csz -gPG -acq -acq -acq -fBZ -vty -fBZ -acq -acq -acq -pfi -dob -dob -dob -dob -wDX -nHl -eiC -bWw -kxj -jYo -xNU -gFt -vgn -aaa -qzX -iCo -yiA -eZV -jDy -vfx -hDK -rbS -hIZ -qSg -fqa -fNA -oOp -oWS -qSg -qSg -rGo -qSg -qSg -lWp -fJq -xzV -mdg -aFv -kNR -rNV -mdg -aFv -kNR -tbZ -aFv -qSg -beY -xpp -mdg -nht -mvK -iDc -mkL -vRT -uOR -rJC -wHm -xeF -xot -nhl -luN -dJX -fnR -yaI -yaI -yaI -yaI -yaI -oOU -pYF -pYF -cdo -yaI -yaI -yaI -yaI -yaI -nXH -bOY -vRg -nXH -hib -xof -tpp -qrV -okO -jUy -njT -hxr -jtH -aPG -kAh -ovy -cWv -hym -nXH -stz -iDg -waI -qAn -nbc -vjA -gHM -ntz -aii -lXx -oLT -aaa -aad -tgT -tgT -tgT -tgT -tgT -tgT -aaa -qYo -aaa -aaa -aaa -aaa -aaa -qYo -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(200,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aac -aad -pyd -cQY -cQY -cQY -aTS -acq -rVE -biR -seE -lCQ -seE -adQ -aci -acq -vXr -bhz -bhz -bhz -bhz -sQD -gjc -eiC -bez -vgn -pJo -xIl -sTq -vgn -aaa -qzX -iCo -krO -jrA -gat -pgu -hdU -iFX -sRQ -sRQ -sRQ -xNn -feY -xqY -hZk -jDB -jDB -jDB -tOP -dbw -onD -plh -tOP -jDB -xKN -jDB -lSb -jDB -jDB -jDB -kKa -dyH -kKa -dBf -pzP -kKa -beF -bIF -sYF -xnK -hsG -liZ -iZg -tLU -ciT -fnR -vvu -eZM -fnR -vPH -kHm -lsg -sra -yaI -xlJ -eVt -pYF -tKM -yaI -fBd -cwf -nPP -iyE -nXH -bOY -ohm -nXH -aGS -aDV -jMH -cOF -eDf -jUy -oAm -ovy -ovy -ovy -ovy -ovy -cbm -nUF -ecl -gKS -aFD -nXH -rMA -sJM -ggs -jtD -iBZ -fyD -kWQ -iLr -aad -aad -aad -aaa -aaa -aaa -aad -aad -aad -xTK -xTK -qYo -qYo -qYo -xTK -xTK -xTK -xTK -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(201,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aac -aaa -pyd -cQY -cQY -cQY -ejO -acq -jUS -lBh -nCg -lCQ -xab -abT -jWn -acq -bvA -kxm -bhz -bhz -bhz -sQD -uHG -abK -bez -eEN -sUC -uSh -exg -kxj -aad -qIH -uAD -krO -hVf -juz -nBr -tcp -hsg -owO -owO -owO -owO -lPO -iwJ -owO -owO -gdj -dKe -wCe -hqA -fJq -eIN -vwD -cDm -owO -owO -owO -owO -owO -owO -dxT -hMP -cDm -pwk -aFv -fBc -gSz -iDc -img -xKi -tNm -fnR -lOE -wAW -sis -fnR -dfG -tZd -fnR -cHH -mWf -qzF -mkb -oyA -pXd -ciZ -ciZ -tYX -qAC -eiF -baO -eAS -ouA -nXH -bOY -sij -nXH -aMq -vMa -aYm -kiv -gMf -jUy -aMd -ovy -ovy -ovy -ovy -tIP -btN -kjg -nXH -bje -hqH -nXH -xAo -xAo -xAo -xAo -xAo -xAo -xAo -xAo -aad -xTK -xTK -xTK -qYo -xTK -xTK -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(202,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -aac -aaa -pyd -gPG -gPG -gPG -gPG -acq -bhc -vwp -seE -lCQ -seE -wQq -vwp -acq -lTT -bhz -bhz -bhz -bhz -sQD -gjc -eiC -bez -vgn -iPK -tTQ -rap -vgn -aaa -qzX -iCo -krO -qIH -qIH -kIX -cjN -cjN -hQq -hQq -cjN -hQq -rdg -bvh -hQq -cjN -vgQ -iXD -wyo -iXD -vgQ -ufR -uKx -ufR -ufR -lra -vbn -lra -ufR -ufR -lra -tHu -lra -ufR -oag -udb -hEF -hEF -nNE -jyG -nNE -fnR -hJY -gOB -uJd -fnR -dfG -fHh -fnR -hQO -qzF -gyj -pPx -yaI -elU -pYF -pYF -ndV -yaI -tVb -vOj -eAS -wxt -nXH -ulF -amm -nXH -nXH -qqY -nXH -nXH -nXH -nXH -gPu -loB -ava -xoD -ezn -rWl -nli -gHm -nXH -nfi -eFf -nXH -qXt -twl -rYN -qMP -suz -qmy -hMH -xAo -aad -aaa -aaa -qYo -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(203,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aac -aaa -pyd -chu -ago -cQY -gml -acq -qce -seE -seE -lCQ -seE -uIT -gDS -acq -ltV -eWc -aRS -eWc -eWc -xnM -fRq -eiC -kLh -kxj -cuB -lKr -coH -vgn -aaa -qzX -iCo -krO -qIH -brE -mru -cjN -mdP -wgQ -mmE -xTi -crf -rzZ -bdD -nsG -vcT -vgQ -cTL -sbh -iSk -vgQ -iju -agJ -ptQ -lra -uUv -xlp -mFp -vUU -hrx -lCz -ioh -tBg -lra -hyJ -fQn -nhS -hEF -rgM -jeN -svp -fnR -xju -qil -xju -fnR -res -php -fnR -yaI -yaI -yaI -yaI -yaI -ffQ -pYF -pYF -ndV -yaI -yaI -yaI -yaI -yaI -nXH -rFJ -jcd -eyM -aVD -bKG -rUU -nIW -dMJ -nXH -nXH -nXH -nXH -nXH -mvO -nXH -nXH -nXH -nXH -bje -hKI -mdc -rKL -hlJ -gzg -nii -hJo -kfb -qQg -vHI -aad -qYo -xTK -xTK -xTK -xTK -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(204,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -pyd -end -uPj -oPm -iut -acq -jSE -idT -idT -nKG -lCQ -wFz -kKX -eQx -eQx -cqH -cqH -eQx -cqH -cqH -eQx -bFH -wlK -qWZ -qWZ -qWZ -qWZ -qWZ -hPN -qWZ -iuk -puN -qIH -tAW -mCV -hQq -psd -pTY -oBN -oBN -fRU -fDc -bpo -dVe -ygx -vgQ -iSk -oVB -lCp -vgQ -xsW -agJ -uVz -fpc -cca -hCo -tWA -tWA -tWA -lja -qJN -dfr -jhc -fjB -sEf -vTZ -hEF -jjh -jeN -eNK -fnR -emo -xXE -aWD -fnR -vvu -dsu -fnR -iyE -nPP -clB -fLG -yaI -elU -pYF -pYF -mGu -yaI -cNT -laO -owR -eyy -nXH -oyW -wpb -vRg -ckP -yfL -wpb -qsg -amm -dWG -gPU -qTV -bmA -qsg -qfa -wpb -wpb -cuX -qsg -stz -eFf -nXH -dEb -lcm -qMP -cjs -ihp -waK -jpA -vHI -aad -qYo -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(205,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -pyd -nfX -tBW -asb -acq -acq -erc -iKL -izM -riS -xFw -wFz -jWB -eQx -vJh -qif -xdP -orR -htg -xdP -cqH -eiC -mpO -fDm -dmC -fDm -fiO -bfs -lMN -qWZ -lkg -aFO -qIH -qIH -qIH -cjN -fSi -sHr -dlz -fub -exD -pfF -bTT -gTA -dKb -mcz -iSk -oAM -jgw -vgQ -nLJ -atV -xsW -lra -ldx -vqr -avW -jXp -pHW -rIa -rSc -pUE -lra -fjB -aZg -tBE -hEF -xsI -jeN -xbT -fnR -fnR -vvX -fnR -fnR -dfG -nvB -fnR -wPs -eAS -baO -eiF -ygP -hzD -sCj -vpm -wHM -mbu -dAc -tza -owR -qhi -nXH -gAv -dZC -rES -hqH -ssI -wIW -hqH -kll -dIW -vMT -wxp -ssI -wIW -wIW -kkP -nXM -ssI -kkP -bFI -aFD -nXH -sFb -hVj -lcm -rmC -lcm -qMP -sNA -vHI -aad -xTK -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(206,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -pyd -gIy -gsT -tqp -pKC -frY -acp -hkR -hjJ -pbT -idT -wFz -prB -eQx -dwX -uWT -xdP -xdP -xdP -xdP -cqH -cEX -rwn -kho -vcf -vcf -tUB -ryY -ryY -wLT -ahv -krO -adO -iXf -vAF -cjN -qZM -sHr -oYP -upa -moz -kML -cPQ -gTA -rkF -vgQ -beU -rab -fGM -vgQ -htO -uVz -xhz -bLs -bLs -bPw -bPw -bLs -bPw -bXM -nnR -cbG -bLs -lQS -sEf -vFX -hEF -eRV -acY -tpn -vgK -aaa -aaa -aad -vvX -oNM -lNn -fnR -kxC -nuy -vOj -oKk -yaI -fkO -pYF -pYF -bci -yaI -iRJ -fsz -ybg -igG -nXH -hae -mYA -dWG -ceG -bBd -nXH -nXH -oxY -nXH -oxY -nXH -njz -vOA -nXH -nXH -oxY -vNa -lkx -dvu -oCG -vNa -ahS -cCc -ssH -vLJ -mgP -mvp -yfX -xAo -aad -xTK -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(207,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -pyd -gPG -gPG -bco -acq -vMX -ewL -leR -hjJ -wOS -idT -vcz -dqH -ntc -dax -gOo -xdP -xdP -xdP -bDw -eQx -jyp -eTv -vxr -ryY -hMx -fiO -adU -tOY -qWZ -fax -krO -rnA -qIH -qIH -cjN -eyX -nsG -fzl -dLg -ffA -nsG -wpi -dLg -kWG -vgQ -iSk -iSk -iSk -vgQ -lra -wcW -lra -bLs -eyk -eyk -eyk -tqO -qdK -bXN -inX -cbH -bLs -suI -gCW -jvW -udb -kdZ -jKu -jtL -vgK -aad -aad -uKw -fnR -mXf -fnR -fnR -yaI -yaI -yaI -yaI -yaI -unm -ijp -ijp -tKi -yaI -yaI -yaI -yaI -yaI -nXH -nXH -aqJ -nXH -nXH -aad -nXH -gjZ -eoz -nXH -xHe -ftW -nXH -ckP -nXH -vsv -yfL -vNa -bDu -ubk -wdt -fHG -xAo -vHI -xAo -xAo -xAo -vHI -xAo -xAo -aad -xTK -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(208,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -pyd -eAi -bvu -gVU -acq -pvM -ewL -hgG -ddw -acq -acq -gLT -jdl -eQx -pgn -gOo -xdP -xdP -xdP -xdP -cqH -qdg -kRM -iOc -nzm -aqq -kxA -qkJ -vxr -hLe -iCo -yiA -kEJ -jrA -aaa -hQq -cXi -oye -iWm -dHM -mdh -ixA -hNF -vbU -hAB -vgQ -nup -nup -nup -vgQ -nBT -aZe -nBT -bLs -nlZ -bPx -bRt -bRt -bRt -bXO -inX -cbI -cdr -kFM -sEf -xwU -hEF -tpn -cxl -acY -dql -aaa -aaa -uKw -eKk -tIJ -bAu -dGM -iAx -aBe -gvr -bAu -lrM -oYd -mgY -mgY -vEb -dZF -bAu -xJw -eqy -yge -hjd -rsv -jie -acA -uKw -aaa -dhR -ifK -bRu -nXH -fxr -lKp -bBd -vqx -bBd -fjJ -hRZ -vNa -cPU -vhK -oBM -pWe -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(209,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -pyd -ejr -jxd -ffk -acq -lCs -ewL -vyO -uGp -tUL -acq -pKb -rRL -eQx -cVV -itW -nJg -jHw -xdP -wXR -cqH -eiC -bez -iDC -ylB -kXw -fiO -bGi -xPz -qWZ -xGl -krO -mSG -qIH -aad -cjN -fhw -mnW -mnW -jLr -iue -sLm -hbV -mnW -nsG -nup -aOe -gca -xqp -vgQ -iHB -kqo -jWH -bLs -iOV -bPy -fZK -bEr -tlM -blw -mSl -cbJ -cds -kFM -jYc -feR -udb -oal -acY -gyv -vgK -aad -aad -mfC -baK -jCI -baK -pxj -vii -vii -vii -cwA -baK -pRZ -mgY -mgY -dNw -baK -bjr -nZk -fKF -rjM -pnO -aGR -esB -gVP -mfC -aad -dhR -aiX -lor -nXH -kVl -iat -bBd -abj -bBd -hAH -gcl -vNa -eOt -brl -heN -fHG -qYo -xTK -xTK -xTK -qYo -xTK -xTK -xTK -qYo -qYo -qYo -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(210,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aac -aaa -pyd -gPG -gPG -bco -acq -pSq -eXn -eXn -pAw -bea -arw -jgb -oMw -eQx -eQx -jMs -jMs -eQx -jMs -jMs -eQx -vMZ -vFg -lAj -nnW -lAj -lAj -lAj -lAj -qIH -iCo -krO -qIH -qIH -aaa -cjN -nRz -wzq -wzq -wzq -fJA -rUP -gpP -wKl -xsV -khX -tdz -luW -phm -vgQ -nnh -vmc -wud -bLs -cgv -bPz -bRv -bRv -bRv -bRv -bZX -cbK -bLs -shR -qpz -qoN -hEF -vgK -dql -vgK -vgK -aaa -aaa -mfC -baK -kyN -baK -kMS -sPZ -aXN -cOU -hJG -wbF -mgY -mgY -mgY -mgY -aeI -sIK -jgM -jAA -enr -ekl -uql -eEr -gVP -mfC -aaa -dhR -dhR -nXH -nXH -nXH -bBd -bBd -vVc -bBd -bBd -nXH -bBd -pWe -bbr -pWe -pWe -qYo -aaa -aaa -qYo -aaa -aaa -qYo -qYo -aaa -qYo -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(211,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -aac -aaa -pyd -gcU -pcA -ffk -acq -dWb -iZq -xrY -bAA -rGW -acq -jgb -mze -fiO -pAx -diC -vTP -aNd -bik -hZL -fiO -eiC -bez -lAj -vLz -qFI -vzv -bmG -tbF -vxs -ahv -krO -eAu -qIH -aad -cjN -fSL -rEo -mgh -bRG -jdI -dGV -dGV -gNx -tsm -nup -vLo -oIj -vPI -vgQ -ufR -lra -ufR -bLs -jjZ -ttH -izs -dbZ -bcX -bzv -rfe -miJ -bLs -cKv -iYL -sGl -hEF -aaa -aad -aaa -aaa -aLz -aaa -mfC -baK -jwq -aBG -kMS -aXN -tlJ -aXN -hJG -mdD -kZn -pji -mgY -hiM -vZw -sIK -woU -cZU -pKN -leN -uql -eEr -xhp -mfC -aad -aad -eqU -eqU -eqU -aad -eqU -aad -abj -aad -aad -eqU -aad -pWe -rzR -pWe -aad -aaa -aaa -xTK -xTK -qYo -xTK -xTK -xTK -xTK -qYo -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(212,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aac -aaa -saK -bii -qtS -gVU -acq -acq -sZE -lTv -lTv -lTv -lTv -gQa -okK -fiO -qpB -edb -nIr -jCv -ayH -xxf -fiO -hmr -bez -lAj -xmk -trk -ayw -acG -idD -qIH -nNs -yiA -klY -jrA -aaa -cjN -kOA -kOA -izx -izx -uaA -izx -izx -kOA -kOA -vgQ -vgQ -vgQ -vgQ -vgQ -aad -aaa -aad -bLs -bLs -bLs -bLs -bLs -bLs -bLs -bLs -bLs -bLs -hEF -udb -hEF -hEF -aaa -aad -qYo -xTK -qYo -aad -mfC -baK -yef -baK -kMS -aXN -rTP -aXN -hJG -mEi -pRZ -eFS -mgY -dNw -lPT -sIK -kfR -pKN -cZU -leN -uql -fzB -gVP -mfC -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVc -aaa -aaa -aaa -aad -pWe -gpg -pWe -aad -aad -xTK -xTK -aaa -aaa -qYo -aaa -aaa -qYo -qYo -xTK -xTK -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(213,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aac -aad -pyd -gPG -gPG -beI -acq -rHZ -rXh -lTv -jOw -iUs -jQx -jgb -jAp -fiO -rRm -iiy -nIr -aeE -mUJ -blB -fiO -hmr -thI -lAj -awT -nPF -aWb -ovD -pQp -qIH -iCo -krO -xXI -qIH -aad -aad -kOA -lsa -aNq -aNq -oYp -aNq -aNq -gEp -kOA -aaa -aaa -aad -aaa -aaa -aad -aaa -aad -aad -aad -aad -aad -bTl -aad -aaa -aaa -aad -aaa -aaa -aad -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -mfC -baK -fHE -baK -kMS -icf -aXN -tNE -hJG -hFM -mgY -mgY -mgY -mgY -tkl -sIK -sMP -uDz -oYg -dKE -uql -fzB -gVP -mfC -qYo -qYo -aaa -aaa -aaa -aaa -aaa -efQ -vVc -aaa -aaa -aaa -aad -qYo -geN -aad -aad -aaa -aad -aaa -aaa -kpR -geN -kpR -aaa -aaa -aad -aaa -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(214,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aac -aaa -pyd -bGY -pcA -rVJ -acq -tWG -gOH -lTv -exn -okP -eWh -bDe -wiY -fiO -vRo -pGj -nIr -sMN -bLP -gER -fiO -sOS -bnU -lAj -ssQ -qFI -nwN -tBm -gww -qIH -lVn -xwa -qIH -qIH -aad -aaa -bRF -fGW -uKB -hOw -trV -hOw -fEB -tyl -bRF -aad -xTK -xTK -qYo -xTK -xTK -xTK -xTK -qYo -xTK -xTK -xTK -xTK -qYo -xTK -xTK -xTK -xTK -xTK -qYo -xTK -xTK -qYo -qYo -xTK -xTK -qYo -aad -mfC -baK -jCI -baK -hjU -twN -twN -twN -aek -baK -kZn -mgY -mgY -hiM -qAF -xLL -klz -vtf -klz -nZf -oSk -qAF -gVP -mfC -qYo -xTK -qYo -aaa -aaa -aaa -aaa -efQ -vVc -aaa -aaa -aaa -aaa -aad -geN -aad -aaa -kpR -geN -kpR -aaa -kpR -geN -kpR -aaa -kpR -geN -kpR -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(215,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -aac -aaa -pyd -aeM -nWw -inq -acq -acq -acq -lTv -lTv -lTv -lTv -uRz -rRL -fiO -fiO -fiO -fYv -fiO -fiO -fiO -fiO -eIs -mvF -lTv -lTv -lTv -oHS -oHS -oHS -oHS -sYG -yiA -jrA -aad -aad -aad -bRF -mXo -bil -cUK -ktd -tvJ -pQd -vrv -bRF -aaa -qYo -aaa -aaa -qYo -qYo -aaa -qYo -qYo -qYo -aaa -qYo -qYo -aaa -qYo -aaa -qYo -aaa -aaa -qYo -aaa -aaa -aaa -qYo -aaa -aaa -aaa -aaa -uKw -tol -xQY -xQY -eNy -cwX -pDz -wZT -wZT -wZT -baK -mgY -mgY -baK -qAF -baK -uIN -baK -baK -bJH -vii -aSW -apH -uKw -qYo -xTK -aaa -qYo -qYo -qYo -qYo -qYo -vVc -qYo -qYo -qYo -aad -aaa -geN -aad -aad -kpR -geN -kpR -aaa -kpR -geN -kpR -aaa -kpR -geN -kpR -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(216,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aac -aaa -pyd -gPG -gPG -xcZ -rhx -czg -czg -czg -lTo -sUX -sze -upM -amU -kkV -pWb -pWb -shc -cFR -hmO -liv -pWb -ucR -bez -gzj -kia -djI -oHS -tFO -dFv -oHS -ayM -krO -jrA -aaa -aad -aaa -bRF -uET -aNq -fWl -hHt -aVo -aNq -uIz -bRF -aad -qYo -xTK -xTK -xTK -qYo -qYo -qYo -qYo -qYo -qYo -xTK -xTK -xTK -xTK -qYo -qYo -qYo -xTK -xTK -xTK -xTK -qYo -xTK -qYo -qYo -xTK -aad -uKw -wex -omZ -rsb -mfC -uKw -mfC -mfC -mfC -mNC -fBy -mfC -mfC -fBy -fIQ -mfC -mfC -mfC -mfC -aid -kuM -ria -kuM -aid -qYo -qYo -qYo -aaa -aaa -aaa -aaa -aaa -vVc -aaa -aaa -aaa -aaa -aad -geN -aad -aaa -kpR -geN -kpR -aad -kpR -geN -kpR -aad -kpR -geN -kpR -qYo -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(217,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -pyd -bGY -pcA -eaE -eXj -eGB -gkQ -gkQ -gkQ -quZ -dJw -fYO -vBV -mXE -fIW -fIW -fYO -eYK -fYO -fYO -agp -fYO -tXL -lTv -qRZ -gzQ -oHS -eHO -ots -oHS -xoq -vhW -qIH -aad -aad -aad -kOA -xtV -aNq -aNq -njS -avk -avk -vvO -kOA -aaa -qYo -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -mfC -kFL -pto -xpa -mfC -aaa -aaa -aad -aaa -lAY -ezf -baK -baK -cQL -qOn -aaa -qYo -eqU -aaa -kuM -pEx -lfb -ooD -kuM -qYo -aaa -qYo -qYo -aaa -aaa -aaa -aaa -vVc -aaa -aaa -aaa -aaa -aaa -mAv -aad -aad -kpR -geN -kpR -aaa -kpR -geN -kpR -aaa -kpR -geN -kpR -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(218,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -pyd -vex -nWw -hIT -rhx -dnp -qUd -lKK -gur -fiO -fiO -iaF -fiO -fiO -lTv -pgo -fTS -lTv -pgo -cul -lTv -pgo -mAA -lTv -dwC -mSe -oHS -mor -tUs -oHS -fEh -jrA -qIH -aad -aaa -aad -kOA -kOA -obW -bVP -fbW -apK -vWh -kOA -kOA -aad -qYo -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -mfC -viu -ozJ -bWR -mfC -aad -mNC -mNC -mNC -mNC -pHx -mfC -mfC -wIk -fIQ -kYk -fIQ -fIQ -aad -kuM -swS -cRD -ooD -kuM -qYo -aaa -aaa -aaa -xTK -aaa -hUm -vpk -vVc -aUN -aaa -aaa -aaa -qYo -sKy -qYo -aaa -kpR -geN -kpR -aaa -aad -geN -aad -aaa -kpR -geN -kpR -aaa -xTK -qYo -xTK -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(219,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -pyd -pyd -pyd -pyd -wPY -uGx -aNz -aNz -aNz -fiO -sON -wcO -uun -naN -lTv -uDM -ivM -lTv -uDM -sMb -lTv -ces -sYM -lTv -xsP -oHS -gRU -xAc -mKL -sXd -iNA -dve -qIH -qIH -qIH -aad -aaa -kOA -cPR -mgv -iSR -mgv -cPR -kOA -aaa -aaa -qYo -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -uKw -mfC -mfC -mfC -mfC -aaa -mNC -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -fIQ -aaa -kuM -syO -rGZ -kcC -kuM -qYo -qYo -qYo -qYo -qYo -qYo -kUH -yhJ -yhJ -nHf -aaa -aaa -aaa -qYo -sKy -qYo -aaa -aad -geN -aad -aad -aad -mAv -aad -aad -aad -geN -aad -aaa -aaa -aad -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(220,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aaa -aaa -ugq -uGx -aNz -aNz -eTZ -fiO -wbp -uaF -gPO -oFB -lTv -wZY -nOz -lTv -hSd -nOz -lTv -ycS -nOz -lTv -hhn -oHS -swn -aAA -beK -oHS -nIC -gat -dkC -ojW -ycq -abj -aaa -kOA -koY -aNq -fXs -aNq -wJm -kOA -aad -aad -qYo -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -mfC -aaa -mNC -cFF -cFF -cFF -cFF -cFF -cFF -cFF -sHM -cFF -cFF -fIQ -aaa -aid -aid -aid -aid -aid -qYo -aaa -xTK -xTK -aaa -aaa -kUH -jwg -yhJ -vVc -vVc -vVc -vVc -vVc -sKy -sKy -mAv -mAv -mAv -mAv -mAv -mAv -mAv -mAv -mAv -wct -mAv -mAv -geN -geN -dwr -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(221,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aaa -aaa -aaa -ugq -aNz -aNz -aNz -aNz -fiO -kvW -aWu -gPO -bcm -lTv -gHG -tse -lTv -bCC -hfM -lTv -bCC -tse -lTv -xsP -oHS -uuj -mvn -ufS -oHS -rZE -jrA -qIH -gJk -qIH -aad -aad -kOA -sZZ -bil -wae -kRE -uVu -kOA -aaa -aad -aaa -qYo -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -uKw -aad -lAY -cFG -cFF -cFF -sHM -cFF -cFF -cFF -cFF -cFF -cTi -qOn -aad -uKw -qYo -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -pCQ -xBA -vVc -ybr -aaa -aaa -xTK -aaa -aaa -qYo -aaa -aad -geN -aad -aad -aad -mAv -aad -aad -aad -geN -aad -aaa -aaa -qYo -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(222,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -aaa -aaa -aaa -aad -ugq -ugq -ugq -wPY -wPY -qWZ -vfN -tXJ -vfN -fiO -lTv -lTv -xFh -lTv -lTv -xFh -lTv -lTv -xFh -lTv -iNn -oHS -jxg -iGx -nkn -oHS -cXC -bML -juH -gJk -aaa -aad -aaa -kOA -mPT -xtj -iHy -yfO -iDe -kOA -aad -aad -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -qYo -qYo -aad -mfC -aaa -mNC -cFF -cFF -cFF -cFF -cFF -cFF -cFF -sHM -cFF -cFF -fIQ -aaa -mfC -qYo -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaa -vVc -aaa -aaa -qYo -xTK -xTK -qYo -qYo -aaa -kpR -geN -kpR -aaa -aad -geN -aad -aaa -kpR -geN -kpR -aaa -xTK -xTK -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(223,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aaa -aaa -aad -aad -aad -aaa -aaa -aaa -aad -qWZ -oQz -tqX -doM -xYy -xsP -xsP -xsP -xsP -xsP -cTG -lTv -qVf -gTi -fJG -xsP -oHS -rkZ -gul -rkZ -oHS -iHq -jDY -gxv -jrA -aaa -aad -aaa -kOA -kOA -nSR -nSR -nSR -kOA -kOA -aaa -aad -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -mfC -aaa -mNC -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -fIQ -aaa -mfC -qYo -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaa -vVc -aaa -qYo -xTK -aaa -aaa -aaa -qYo -aad -kpR -geN -kpR -aaa -kpR -geN -kpR -aaa -kpR -geN -kpR -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(224,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aad -aad -aad -aaa -aaa -aaa -aad -aad -qWZ -vfN -qWZ -vfN -qWZ -mSe -mSe -mSe -mSe -mSe -mSe -mSe -hqf -xsP -xsP -ouc -oHS -gPY -pdF -rQv -oHS -eFX -xFP -hoM -gJk -aaa -aad -aaa -aaa -aad -aaa -aad -aaa -aad -aaa -aaa -aad -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aad -mfC -aad -mNC -cFF -cFF -cFF -sHM -cFF -cFF -cFF -cFF -cFF -cFF -fIQ -aad -mfC -qYo -aad -xTK -aaa -aaa -qYo -aaa -aaa -aaa -aaa -qYo -xTK -vVc -xTK -qYo -aaa -aaa -aaa -aaa -xTK -aaa -kpR -geN -kpR -aad -kpR -geN -kpR -aad -kpR -geN -kpR -aad -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(225,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aad -aaa -aaa -aaa -aad -aad -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aad -aaa -aad -aaa -mSe -ciK -syG -ozg -ufm -oHS -nbw -qFD -kxb -oHS -qzX -ajv -qzX -gJk -uuf -xTK -xTK -xTK -qYo -xTK -xTK -xTK -xTK -xTK -xTK -qYo -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aad -mfC -aaa -lAY -bnS -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -xVV -qOn -aaa -mfC -qYo -aad -xTK -qYo -xTK -xTK -qYo -qYo -aaa -qYo -xTK -aaa -vVc -aaa -xTK -aaa -aaa -aaa -aaa -xTK -qYo -kpR -geN -kpR -aaa -kpR -geN -kpR -aaa -kpR -geN -kpR -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(226,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aaa -aaa -aad -aad -aaa -aaa -aac -aac -aac -aac -aac -aaa -aaa -aac -aac -aac -aaa -mSe -mSe -mSe -mSe -mSe -oHS -fmY -iDz -skx -oHS -hms -hms -lIm -gJk -aaa -aaa -aaa -aaa -qYo -aaa -aaa -qYo -aaa -aaa -aaa -aaa -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aad -mfC -aaa -mNC -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -fIQ -aaa -mfC -qYo -aad -aaa -aaa -aaa -aaa -aaa -xTK -xTK -qYo -aaa -qYo -vVc -aaa -qYo -aaa -aaa -aaa -qYo -xTK -aaa -kpR -geN -kpR -aaa -kpR -geN -kpR -aaa -kpR -geN -kpR -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(227,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -oHS -gRj -gRj -gRj -ttJ -qzX -nqi -qzX -gJk -uuf -qYo -xTK -xTK -xTK -xTK -xTK -qYo -xTK -xTK -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aad -uKw -aad -mNC -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -fIQ -aad -uKw -qYo -aad -xTK -aaa -aaa -aaa -wVj -aaa -qYo -aaa -aaa -aaa -vVc -aaa -qYo -aaa -aaa -aaa -qYo -xTK -aaa -aaa -aaa -aaa -aaa -kpR -geN -kpR -aaa -aaa -aaa -aaa -aaa -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(228,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -gJk -aaa -xZM -aaa -gJk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aad -mfC -aaa -mNC -mNC -mNC -mNC -oVy -mfC -mfC -hGu -fIQ -fIQ -fIQ -fIQ -aaa -mfC -qYo -aad -xTK -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaa -qhQ -vVc -qhQ -qYo -aaa -aaa -qYo -qYo -xTK -xTK -aad -xTK -xTK -aaa -aaa -aaa -aaa -aaa -xTK -qYo -xTK -qYo -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(229,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wVj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gJk -aaa -aaa -aaa -gJk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -xTK -aad -mfC -aaa -aaa -aad -aaa -uKw -nwp -baK -baK -mAa -qOn -aaa -qYo -eqU -aaa -mfC -qYo -aad -xTK -aaa -aaa -aaa -aaa -aaa -aaa -qYo -uUW -mUL -ljm -mUL -uUW -aaa -qYo -efQ -aaa -aaa -aaa -aaa -aaa -xTK -xTK -qYo -xTK -xTK -qYo -xTK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(230,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bBB -aaa -aaa -aaa -bBB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -mfC -mfC -mfC -uKw -mfC -mfC -vfP -mfC -mfC -tAu -fIQ -mfC -mfC -uKw -mfC -mfC -qYo -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -uUW -uUW -srg -okC -mCa -uUW -uUW -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(231,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aad -aad -aad -aad -aad -aad -mfC -gHb -fpD -mEi -yjp -fIQ -qYo -aad -qYo -qYo -qYo -qYo -aad -aaa -aaa -aaa -aaa -aaa -aaa -dNn -mUL -pgz -ois -naB -keJ -xxK -mUL -dNn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(232,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -jmn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -xTK -xTK -aaa -xTK -qYo -uKw -aRM -mMK -baK -wyD -uKw -qYo -aad -aaa -xTK -xTK -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -mUL -eYj -wWn -wWn -wWn -gRb -mUL -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(233,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -mfC -ryG -tuI -flZ -uwt -mfC -qYo -efQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dNn -mUL -wmc -mOA -czi -oAc -bWT -mUL -dNn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(234,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -mfC -mfC -mfC -mfC -mfC -mfC -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -uUW -uUW -awi -ltZ -awi -uUW -uUW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(235,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -uUW -mUL -mUL -mUL -uUW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(236,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dNn -aaa -dNn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(237,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(238,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(239,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(240,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(241,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(242,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(243,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(244,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(245,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(246,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(247,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(248,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(249,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(250,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(251,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(252,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(253,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(254,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(255,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} diff --git a/_maps/map_files/IceBoxStation/IceBoxStation_skyrat.dmm b/_maps/map_files/IceBoxStation/IceBoxStation_skyrat.dmm deleted file mode 100644 index 0152045e9b9..00000000000 --- a/_maps/map_files/IceBoxStation/IceBoxStation_skyrat.dmm +++ /dev/null @@ -1,274500 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aak" = ( -/obj/structure/stairs/south, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"aap" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"aaq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"aaw" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/taperecorder, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"aaD" = ( -/obj/structure/sign/warning, -/turf/closed/wall/r_wall, -/area/mine/storage) -"aaI" = ( -/obj/structure/closet/wardrobe/white, -/obj/item/clothing/shoes/jackboots, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"aaK" = ( -/obj/structure/flora/bush/flowers_pp/style_random, -/turf/open/floor/grass, -/area/station/security/prison/safe) -"aaQ" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"aaT" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/turf/open/floor/carpet/red, -/area/station/commons/vacant_room/office) -"abb" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/glass/reinforced/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"abe" = ( -/turf/open/floor/engine, -/area/station/science/xenobiology) -"abu" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"abB" = ( -/obj/item/clothing/head/helmet/skull, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"abM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"abU" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"ace" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"ack" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"acr" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/entertainment/gambling, -/obj/machinery/newscaster/directional/south, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron/grimy, -/area/station/commons/lounge) -"act" = ( -/obj/machinery/porta_turret/ai{ - dir = 4; - installation = /obj/item/gun/energy/e_gun - }, -/obj/machinery/light/directional/west, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"acw" = ( -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway 4" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"acx" = ( -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/iron/large, -/area/station/service/kitchen/diner) -"acE" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"acM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/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, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"acN" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/station/service/chapel) -"adr" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"adD" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"adW" = ( -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"aee" = ( -/obj/structure/ladder, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/aft/lesser) -"aeg" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/structure/sign/warning/secure_area/directional/east, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"aen" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 5 - }, -/obj/effect/turf_decal/siding/wideplating{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"aeu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Ultilities" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"aey" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Xenobiology Pens - Starboard Fore"; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"aez" = ( -/obj/structure/table, -/obj/item/clothing/mask/gas, -/turf/open/floor/iron/smooth, -/area/mine/living_quarters) -"afp" = ( -/obj/machinery/air_sensor/nitrogen_tank, -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"afs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "mining-aux-mechbay-external" - }, -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Mining Mech Bay External Airlock"; - opacity = 0 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/sign/warning/cold_temp/directional/north, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron/large, -/area/mine/mechbay) -"afz" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"afK" = ( -/obj/structure/cable, -/turf/open/floor/iron/stairs/left{ - dir = 4 - }, -/area/station/engineering/lobby) -"afU" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/upper) -"aga" = ( -/obj/structure/mirror/directional/west, -/obj/item/toy/mecha/honk{ - pixel_y = 12 - }, -/obj/machinery/light/small/directional/west, -/obj/structure/table/wood, -/turf/open/floor/wood/tile, -/area/station/service/theater) -"agh" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/commons/locker) -"agk" = ( -/obj/structure/cable, -/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/dark, -/area/mine/mechbay) -"agm" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Supermatter Chamber"; - network = list("engine"); - pixel_x = 23 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"agt" = ( -/obj/machinery/duct, -/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, -/area/station/hallway/secondary/service) -"agH" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/right/directional/east{ - base_state = "left"; - dir = 2; - icon_state = "left"; - name = "Robotics Desk"; - req_access = list("robotics") - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics"; - name = "Robotics Lab Shutters"; - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/desk_bell{ - pixel_x = 7 - }, -/turf/open/floor/plating, -/area/station/science/robotics/lab) -"agI" = ( -/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/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"agJ" = ( -/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/robotics/lab) -"agK" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"agY" = ( -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "Atmospherics Project Shutters"; - name = "Atmospherics Project Shutters"; - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"ahb" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/mine/eva) -"ahm" = ( -/obj/machinery/newscaster/directional/west, -/obj/machinery/firealarm/directional/south, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) -"ahA" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/smooth, -/area/station/security/holding_cell) -"ahI" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"ahK" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/station/engineering/engine_smes) -"ahL" = ( -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"ait" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"aiH" = ( -/obj/structure/table, -/obj/item/folder/white, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"aiJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"aiT" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/maintenance/port/fore) -"aiX" = ( -/turf/open/floor/iron, -/area/station/security/courtroom) -"aiY" = ( -/obj/item/radio/intercom/directional/south, -/obj/machinery/light/small/directional/south, -/obj/structure/cable/layer3, -/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/ai_monitored/turret_protected/aisat_interior) -"ajo" = ( -/obj/machinery/light/directional/west, -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"ajr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/item/radio/intercom/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/production) -"aju" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/research/glass{ - name = "Research Break Room" - }, -/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/science/general, -/turf/open/floor/iron/dark, -/area/station/science/breakroom) -"ajw" = ( -/turf/open/floor/iron, -/area/station/cargo/storage) -"ajz" = ( -/obj/structure/marker_beacon/burgundy{ - name = "landing marker" - }, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"ajF" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/primary/aft) -"aka" = ( -/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/greater) -"akk" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction/layer2{ - dir = 4 - }, -/obj/machinery/door/airlock/research/glass{ - name = "Ordnance Lab" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"ako" = ( -/turf/closed/wall/r_wall, -/area/station/medical/morgue) -"akz" = ( -/obj/structure/chair/sofa/corp/right{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"akD" = ( -/obj/structure/chair/stool/directional/east, -/turf/open/floor/iron, -/area/station/commons/dorms) -"akL" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light/small/directional/west, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"akQ" = ( -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/glass/reinforced/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"alb" = ( -/obj/structure/transit_tube_pod, -/obj/structure/transit_tube/station/reverse/flipped{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/transit_tube) -"alq" = ( -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/iron/grimy, -/area/station/maintenance/aft/greater) -"alv" = ( -/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, -/area/station/tcommsat/computer) -"alx" = ( -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"alz" = ( -/obj/item/clothing/suit/hooded/wintercoat/science, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"alA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/security/prison/rec) -"alD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"alK" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/machinery/power/port_gen/pacman, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/service) -"alM" = ( -/turf/closed/wall, -/area/station/maintenance/aft/lesser) -"alT" = ( -/turf/open/floor/carpet, -/area/station/cargo/qm) -"alW" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 1 - }, -/turf/open/floor/plating, -/area/mine/storage) -"amg" = ( -/obj/machinery/door/poddoor/shutters/window/preopen{ - dir = 4; - id = "Atmospherics HFR Shutters"; - name = "Atmospherics HFR Shutters" - }, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"ami" = ( -/obj/structure/cable, -/turf/open/floor/iron/corner{ - dir = 8 - }, -/area/station/engineering/lobby) -"amt" = ( -/obj/structure/cable, -/turf/open/floor/iron/chapel{ - dir = 4 - }, -/area/station/service/chapel) -"amv" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"amx" = ( -/obj/structure/curtain, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/toilet) -"amE" = ( -/obj/structure/disposalpipe/segment{ - 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/white, -/area/station/medical/medbay/aft) -"amJ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/medical/treatment_center) -"amK" = ( -/obj/item/cigbutt, -/obj/structure/sign/warning/cold_temp/directional/south, -/obj/structure/sign/warning/gas_mask/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"amN" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"ank" = ( -/obj/structure/chair/office, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"anl" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"anu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"anI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"anK" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"anO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/icemoon, -/area/station/science/ordnance/bomb) -"anY" = ( -/obj/structure/sign/warning/no_smoking/directional/south, -/obj/machinery/light/directional/south, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"anZ" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/lobby) -"aoh" = ( -/obj/effect/landmark/start/prisoner, -/turf/open/floor/carpet/red, -/area/station/security/prison/work) -"aoo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/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/white, -/area/station/science/ordnance/office) -"aos" = ( -/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, -/area/station/commons/dorms) -"aoF" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/mine/laborcamp) -"aoI" = ( -/obj/structure/table/wood, -/obj/item/phone{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/britcup{ - pixel_x = 8; - pixel_y = 8 - }, -/turf/open/floor/carpet/red, -/area/station/commons/vacant_room/office) -"aoK" = ( -/obj/structure/table, -/obj/item/toy/cards/deck, -/turf/open/floor/iron, -/area/station/commons/locker) -"aoP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Canteen" - }, -/turf/open/floor/iron/textured_half{ - dir = 1 - }, -/area/station/service/kitchen/diner) -"aoU" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/station/service/theater) -"apa" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"apb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"apd" = ( -/obj/item/cigbutt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"apj" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"apn" = ( -/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/turret_protected/aisat/service) -"apt" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/filled/warning{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"apz" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/cigarettes{ - pixel_y = 2 - }, -/obj/item/lighter/greyscale{ - pixel_x = 4; - pixel_y = 2 - }, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"apB" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"apD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"apM" = ( -/obj/machinery/airalarm/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"apS" = ( -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) -"apT" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiomain"; - name = "Containment Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"apX" = ( -/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) -"aqa" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Labor Camp External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/mine/laborcamp) -"aqm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/locker) -"aqp" = ( -/obj/effect/turf_decal/trimline/green/filled/warning{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"aqy" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"aqB" = ( -/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, -/area/station/command/bridge) -"aqT" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"aqU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"arb" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/pen, -/obj/item/inspector, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/security/office) -"arg" = ( -/obj/machinery/light/small/directional/east, -/turf/open/openspace/icemoon/keep_below, -/area/station/security/execution/education) -"aro" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/fence/door, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"art" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/window{ - id = "chemistry_access_shutters"; - name = "Chemistry Access Shutters"; - dir = 4 - }, -/turf/open/floor/iron/white/textured, -/area/station/medical/treatment_center) -"aru" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen/red{ - pixel_x = -6 - }, -/obj/item/hand_labeler{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/effect/turf_decal/tile/green/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/medical/virology) -"arA" = ( -/obj/effect/spawner/structure/window, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/office) -"arO" = ( -/obj/structure/table, -/obj/effect/spawner/random/entertainment/dice, -/turf/open/floor/iron, -/area/station/commons/locker) -"arT" = ( -/obj/machinery/computer/security/labor{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/processing) -"arY" = ( -/obj/item/radio/intercom/directional/south, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"arZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"asa" = ( -/obj/structure/table/wood, -/obj/item/storage/crayons, -/turf/open/floor/iron, -/area/station/commons/dorms) -"asb" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/structure/cable, -/obj/machinery/button/door/directional/east{ - id = "xenobio10"; - layer = 4; - name = "Xenobio Pen 10 Blast DOors"; - req_access = list("xenobiology") - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"asg" = ( -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"asy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"asL" = ( -/turf/open/floor/iron/freezer, -/area/station/medical/break_room) -"asM" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"asZ" = ( -/obj/machinery/door/airlock/research{ - name = "Robotics Lab" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/science/robotics, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"atc" = ( -/obj/structure/fence{ - dir = 1 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"ate" = ( -/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/security/prison) -"atl" = ( -/obj/machinery/duct, -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"atn" = ( -/obj/structure/frame/computer, -/obj/structure/sign/poster/official/help_others{ - pixel_y = 32 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"atv" = ( -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"aty" = ( -/obj/structure/urinal/directional/north, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"atC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/machinery/holopad, -/obj/effect/landmark/start/orderly, -/obj/machinery/button/door/directional/west{ - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - normaldoorcontrol = 1; - pixel_x = -35; - pixel_y = -56 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/medical) -"atM" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"atN" = ( -/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) -"atT" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage/gas) -"atW" = ( -/obj/structure/flora/grass/green/style_random, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"aue" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/filingcabinet, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"auh" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/light/warm/directional/north, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/service/salon) -"aun" = ( -/obj/structure/table/wood, -/obj/item/storage/box/matches, -/obj/item/toy/cards/deck{ - pixel_y = 4 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 14; - pixel_y = 12 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -18; - pixel_y = 10 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -10; - pixel_y = 2 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/fore/lesser) -"auq" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/dark/textured_large, -/area/station/maintenance/department/medical/central) -"aur" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_lower_shutters"; - name = "Chemistry Exterior Shutters"; - dir = 8 - }, -/obj/structure/cable, -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/medical/chemistry) -"aus" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"auw" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Air to Distro" - }, -/obj/structure/sink{ - pixel_y = 20 - }, -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/iron/smooth, -/area/mine/laborcamp/security) -"auz" = ( -/obj/machinery/door/airlock/engineering{ - name = "Utilities Closet" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, -/turf/open/floor/plating, -/area/mine/eva) -"auJ" = ( -/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/grimy, -/area/station/security/prison/work) -"auK" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"auN" = ( -/obj/structure/chair/sofa/corp/left{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"auQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/ammo_workbench, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) -"auT" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/closet/secure_closet/contraband/armory, -/obj/machinery/firealarm/directional/north, -/obj/effect/spawner/random/maintenance/three, -/obj/effect/spawner/random/contraband/armory, -/obj/effect/turf_decal/tile/red/half{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) -"avb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"avg" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"avh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/mine/eva) -"avk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos) -"avo" = ( -/obj/structure/stairs/east, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"avr" = ( -/obj/machinery/light/directional/east, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"avP" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/mine/laborcamp) -"awa" = ( -/turf/open/openspace, -/area/station/science/ordnance) -"awd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/ai_monitored/security/armory/upper) -"awh" = ( -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"awx" = ( -/turf/open/floor/iron, -/area/station/commons/locker) -"awy" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/misc/dirt{ - initial_gas_mix = "ICEMOON_ATMOS" - }, -/area/icemoon/underground/explored) -"awK" = ( -/obj/structure/table, -/obj/item/hemostat, -/obj/item/cautery{ - pixel_x = 4 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"awL" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark_red/line, -/obj/effect/turf_decal/trimline/dark_red/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/dark_blue/mid_joiner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"axb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/sign/warning/gas_mask/directional/north{ - desc = "A sign that warns of dangerous gasses in the air, instructing you to wear internals." - }, -/turf/open/floor/vault, -/area/station/security/prison/rec) -"axc" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "Biohazard Containment Door" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/research) -"axm" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/machinery/vending/wallmed/directional/east, -/obj/machinery/light_switch/directional/east{ - pixel_x = 23 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"axo" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/mine/eva) -"axu" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"axy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/cold_temp, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"axz" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"axB" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/iron/freezer, -/area/station/command/heads_quarters/captain) -"axD" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"axF" = ( -/obj/effect/spawner/random/structure/billboard/nanotrasen, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"axM" = ( -/obj/machinery/light/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Atmospherics West" - }, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"axX" = ( -/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/grimy, -/area/station/security/prison/work) -"axY" = ( -/obj/machinery/duct, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"aym" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/textured, -/area/station/security/brig) -"ayq" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "atmos-entrance" - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/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/atmos) -"ayG" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"azf" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"azg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"azw" = ( -/turf/closed/wall, -/area/station/medical/pharmacy) -"azx" = ( -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/closet/secure_closet/hos, -/obj/structure/cable, -/turf/open/floor/iron/dark/smooth_large, -/area/station/command/heads_quarters/hos) -"azB" = ( -/obj/effect/turf_decal/bot_red, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"azC" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Maintenance" - }, -/obj/structure/sign/warning/radiation/rad_area/directional/west, -/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/engine_equipment, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"aAc" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/obj/structure/chair/sofa/corp/right{ - dir = 4; - pixel_x = -4; - pixel_y = 8 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/grimy, -/area/station/service/bar/atrium) -"aAo" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) -"aAv" = ( -/obj/machinery/requests_console/directional/south{ - announcementConsole = 1; - anon_tips_receiver = 1; - assistance_requestable = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge Requests Console" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"aAC" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"aAE" = ( -/obj/effect/landmark/xeno_spawn, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"aBf" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/station/holodeck/rec_center) -"aBh" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/cargo/lobby) -"aBy" = ( -/obj/structure/sign/warning/electric_shock/directional/north, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"aBQ" = ( -/obj/effect/landmark/blobstart, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"aBT" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"aCb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"aCh" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"aCj" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/sign/poster/official/twelve_gauge{ - pixel_y = 32 - }, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"aCl" = ( -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"aCo" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"aCA" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"aCH" = ( -/obj/item/toy/plush/space_lizard_plushie{ - name = "Ruins-The-Analog" - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"aCJ" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"aDo" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/station/service/library) -"aDB" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"aDG" = ( -/obj/machinery/vending/cart, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"aDI" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/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/white, -/area/station/medical/medbay/lobby) -"aDJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/landmark/start/prisoner, -/turf/open/floor/iron/dark/side, -/area/station/security/prison) -"aDK" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 12; - height = 18; - id = "emergency_home"; - name = "BoxStation emergency evac bay"; - width = 32 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"aDM" = ( -/obj/machinery/button/door/directional/north{ - id = "permainner"; - name = "Inner Bolt Control"; - normaldoorcontrol = 1; - pixel_x = -6; - req_access = list("brig"); - specialfunctions = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "permaouter"; - name = "Outer Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 6; - req_access = list("brig"); - specialfunctions = 4 - }, -/obj/item/paper/crumpled{ - info = "Remember! Corporate spent a lot of money to create this state of the art fashion show. If we EVER even so much as HEAR a rumor that a news crew or corporate rep is coming by, this place needs to be in TIP TOP condition. It's all of our asses (and our pensions) if it's not."; - name = "Crumpled Memo" - }, -/turf/open/floor/iron/smooth, -/area/station/security/execution/transfer) -"aDN" = ( -/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, -/area/station/hallway/secondary/entry) -"aDZ" = ( -/obj/structure/sign/warning/secure_area/directional/east, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "Bridge Blast Door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/command/bridge) -"aEA" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/obj/machinery/airalarm/directional/north, -/obj/item/clothing/glasses/science{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/wrench, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"aEM" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall/r_wall, -/area/station/cargo/warehouse) -"aEU" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"aFg" = ( -/obj/machinery/button/door/directional/east{ - id = "lawyer_blast"; - name = "Privacy Shutters" - }, -/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, -/area/station/service/lawoffice) -"aFi" = ( -/obj/machinery/power/apc/auto_name/directional/west, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"aFj" = ( -/obj/item/target, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/icemoon, -/area/station/science/ordnance/bomb) -"aFr" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"aFt" = ( -/obj/machinery/dna_scannernew, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"aFx" = ( -/obj/effect/turf_decal/tile/dark, -/obj/effect/turf_decal/tile/dark{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 10 - }, -/turf/open/floor/iron/white/side{ - dir = 1 - }, -/area/mine/living_quarters) -"aFG" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"aFJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"aFP" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Holodeck Control" - }, -/turf/open/floor/iron, -/area/station/commons/fitness) -"aFR" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/machinery/microwave, -/turf/open/floor/iron/white, -/area/station/medical/break_room) -"aFX" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/cafeteria, -/area/mine/laborcamp) -"aGr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/east{ - c_tag = "Labor Camp Operations"; - network = list("labor") - }, -/turf/open/floor/iron, -/area/mine/laborcamp) -"aGB" = ( -/obj/machinery/telecomms/processor/preset_two, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"aGF" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/left/directional/west{ - name = "Cargo Desk"; - req_access = list("cargo") - }, -/obj/structure/desk_bell{ - pixel_x = 7 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"aGP" = ( -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"aGW" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Labor Camp Monitoring" - }, -/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/security/brig, -/turf/open/floor/iron, -/area/mine/laborcamp) -"aHz" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio4"; - name = "Xenobio Pen 4 Blast Door" - }, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"aHJ" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) -"aHL" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"aHT" = ( -/turf/closed/wall, -/area/station/security/checkpoint/science) -"aHZ" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/landmark/start/cook, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"aIe" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Chapel" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark/textured, -/area/station/service/chapel) -"aIg" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/engineering/main) -"aIr" = ( -/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/side{ - dir = 9 - }, -/area/station/science/explab) -"aIB" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"aID" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"aIE" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"aIK" = ( -/obj/structure/closet/toolcloset, -/obj/machinery/status_display/evac/directional/south, -/obj/machinery/light/directional/west, -/obj/structure/sign/poster/official/random/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) -"aIN" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - dir = 8; - id = "Cell 3"; - name = "Cell 3" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/smooth_half{ - dir = 1 - }, -/area/station/security/brig) -"aIU" = ( -/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 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"aJh" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Starboard Primary Hallway" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"aJr" = ( -/obj/effect/turf_decal/trimline/yellow/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 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"aJu" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/space_heater, -/turf/open/floor/vault, -/area/station/security/prison/rec) -"aJw" = ( -/obj/structure/table, -/obj/effect/spawner/random/entertainment/drugs, -/obj/item/lighter/greyscale, -/turf/open/floor/iron/showroomfloor, -/area/station/maintenance/department/medical/morgue) -"aJA" = ( -/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/hallway/primary/port) -"aJG" = ( -/obj/machinery/light/directional/west, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"aJL" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"aJN" = ( -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"aJW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/locker) -"aJX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/crowbar, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -8 - }, -/obj/item/clothing/mask/breath{ - pixel_x = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/transit_tube) -"aKf" = ( -/obj/machinery/light_switch/directional/south, -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/effect/landmark/start/detective, -/obj/machinery/light/directional/south, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"aKt" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/window/brigdoor/left/directional/south{ - name = "Security Medpost" - }, -/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/white/textured, -/area/station/security/medical) -"aKG" = ( -/obj/structure/table, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/fore) -"aKK" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/mine/eva) -"aLj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Garden" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"aLp" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/machinery/button/door/directional/east{ - id = "pharmacy_shutters2"; - name = "Pharmacy Shutter Control"; - req_access = list("pharmacy") - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"aLs" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Break Room" - }, -/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/medical/general, -/turf/open/floor/iron/large, -/area/station/medical/break_room) -"aLv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"aLA" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio7"; - name = "Xenobio Pen 7 Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"aLJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"aLK" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"aLM" = ( -/obj/machinery/shower{ - pixel_y = 12 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/toilet) -"aLS" = ( -/obj/machinery/modular_computer/console/preset/engineering, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"aLX" = ( -/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/aft/greater) -"aMa" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/engineering{ - name = "Electrical Maintenance" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/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{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"aMb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"aMd" = ( -/obj/machinery/door/window/left/directional/east{ - icon_state = "right"; - name = "Incoming Mail"; - req_access = list("shipping") - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"aMr" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/atmospheric_technician, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/storage/gas) -"aMy" = ( -/obj/machinery/door/window/right/directional/east{ - base_state = "left"; - icon_state = "left"; - name = "Fitness Ring" - }, -/obj/structure/window/reinforced, -/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/fitness) -"aME" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"aML" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"aMP" = ( -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"aMR" = ( -/obj/structure/window/reinforced/spawner/north, -/turf/open/floor/iron/dark/textured, -/area/station/security/range) -"aMX" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"aNc" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/structure/sign/nanotrasen, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"aNg" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/light/small/directional/north, -/obj/machinery/firealarm/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/mine/production) -"aNs" = ( -/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, -/area/station/hallway/primary/central) -"aNu" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/turf/open/floor/iron, -/area/station/science/ordnance) -"aNw" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plating, -/area/mine/eva/lower) -"aNP" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/firealarm/directional/north, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"aOd" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/miningdock) -"aOf" = ( -/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/mine/eva) -"aOA" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"aOD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/obj/machinery/holopad, -/turf/open/floor/iron/white, -/area/station/medical/surgery/fore) -"aOE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "cargo-warehouse-external" - }, -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Cargo Warehouse External Airlock"; - opacity = 0 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, -/turf/open/floor/iron/smooth_large, -/area/station/cargo/warehouse) -"aOS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) -"aOV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - dir = 8; - name = "Scrubbers multi deck pipe adapter" - }, -/obj/structure/disposalpipe/trunk/multiz/down{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"aOX" = ( -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"aPd" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig Entrance" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brigentrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"aPf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"aPk" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"aPo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"aPr" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/clothing/suit/hazardvest, -/obj/structure/sign/warning/no_smoking/directional/north, -/obj/item/clothing/suit/hazardvest, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/glasses/meson/engine, -/turf/open/floor/iron, -/area/station/engineering/main) -"aPD" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/storage_shared) -"aPI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Arrivals" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"aPV" = ( -/obj/effect/spawner/random/trash/mess, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"aQe" = ( -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"aQj" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/effect/turf_decal/tile/blue/half{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/service/hydroponics) -"aQn" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/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, -/area/station/science/ordnance) -"aQF" = ( -/obj/structure/mirror/directional/west, -/obj/structure/table/reinforced/rglass, -/obj/item/hairbrush/comb{ - pixel_y = 10 - }, -/obj/item/reagent_containers/dropper, -/obj/machinery/dryer{ - pixel_y = 14 - }, -/turf/open/floor/iron, -/area/service/salon) -"aQJ" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"aQQ" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"aQR" = ( -/obj/structure/cable, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"aQW" = ( -/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, -/area/station/engineering/main) -"aRf" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"aRj" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"aRk" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/tank_holder/extinguisher, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"aRm" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Shuttle Security Airlock" - }, -/turf/open/floor/iron, -/area/mine/laborcamp) -"aRn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - 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/plating, -/area/station/maintenance/department/medical/morgue) -"aRt" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"aRz" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/command/bridge) -"aRD" = ( -/obj/structure/sign/warning/secure_area/directional/west, -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/item/radio/intercom/directional/south{ - freerange = 1; - frequency = 1447; - listening = 0; - name = "Private Channel" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"aRI" = ( -/obj/machinery/door/airlock{ - name = "Garden" - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"aRR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, -/turf/open/floor/iron/large, -/area/station/engineering/atmos/storage/gas) -"aSc" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/dark/side, -/area/mine/eva/lower) -"aSe" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix Outlet Pump" - }, -/turf/open/floor/glass/reinforced, -/area/station/engineering/atmos/pumproom) -"aSh" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"aSm" = ( -/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/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"aSo" = ( -/turf/closed/wall, -/area/station/medical/medbay/aft) -"aSu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/yellow, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"aSB" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"aSS" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/dark_red/end, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"aST" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/hallway/secondary/entry) -"aTj" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/wrench, -/obj/item/weldingtool, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"aTm" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/station/service/bar) -"aTp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/meter/layer4, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"aTw" = ( -/obj/structure/displaycase/captain, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"aTG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/teleporter) -"aTV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/light/directional/west, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"aTZ" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"aUh" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"aUj" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/storage) -"aUl" = ( -/obj/structure/disposalpipe/segment, -/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/mess, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"aUr" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"aUC" = ( -/obj/structure/fence/door, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"aUD" = ( -/obj/structure/sign/departments/maint/alt, -/turf/closed/wall, -/area/station/maintenance/department/medical/morgue) -"aUE" = ( -/obj/structure/window/reinforced/tinted/frosted{ - dir = 4 - }, -/obj/item/book/manual/wiki/cytology{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/biopsy_tool{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/structure/table, -/turf/open/floor/iron/grimy, -/area/station/security/prison/work) -"aUK" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Engineering Equipment Storage" - }, -/obj/machinery/airalarm/directional/west, -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) -"aUO" = ( -/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/chapel) -"aUR" = ( -/obj/structure/sign/warning/gas_mask/directional/south{ - desc = "A sign that warns of dangerous gasses in the air, instructing you to wear internals." - }, -/obj/effect/spawner/structure/window/hollow/reinforced/end{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"aUS" = ( -/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) -"aVe" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mining Station Maintenance" - }, -/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/department/cargo) -"aVg" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/aft/greater) -"aVi" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"aVn" = ( -/obj/structure/table, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/cafeteria, -/area/station/hallway/secondary/exit/departure_lounge) -"aVq" = ( -/obj/structure/ore_box, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"aVH" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"aVI" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"aVU" = ( -/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{ - idDoor = "virology_airlock_exterior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_y = -24; - req_access = list("virology") - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green/full, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/virology) -"aWb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/icemoon, -/area/station/science/ordnance/bomb) -"aWc" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/filled/end{ - dir = 1 - }, -/obj/structure/tank_holder/extinguisher, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"aWg" = ( -/obj/structure/chair/office/light, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"aWk" = ( -/obj/machinery/door/poddoor/shutters{ - id = "armory"; - name = "Armory Shutter" - }, -/turf/open/floor/iron, -/area/station/ai_monitored/security/armory/upper) -"aWs" = ( -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_ordmix{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/science/ordnance/burnchamber) -"aWw" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/dark/side, -/area/station/service/chapel) -"aWD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"aWG" = ( -/obj/machinery/announcement_system, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"aWH" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/east, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/white/side{ - dir = 9 - }, -/area/station/science/lab) -"aWS" = ( -/obj/structure/table, -/obj/item/storage/box/donkpockets/donkpocketberry, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"aWV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Labor Camp Mud Room"; - network = list("labor") - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"aWX" = ( -/obj/structure/chair/comfy/beige{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"aWY" = ( -/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, -/area/station/commons/storage/mining) -"aXi" = ( -/obj/machinery/door/airlock/external{ - name = "Landing Pad Umbilical" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "ert-lz-starboard" - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"aXF" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"aXM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"aXY" = ( -/obj/structure/rack, -/obj/item/circuitboard/machine/monkey_recycler, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"aYm" = ( -/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/cargo/office) -"aYq" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Public Mining Storage"; - network = list("minisat"); - start_active = 1 - }, -/turf/open/floor/iron, -/area/station/commons/storage/mining) -"aYr" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/obj/structure/window/reinforced/spawner/north, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/mine/production) -"aYv" = ( -/obj/structure/window/reinforced/tinted/frosted{ - dir = 4 - }, -/obj/structure/table, -/obj/structure/microscope, -/turf/open/floor/iron/grimy, -/area/station/security/prison/work) -"aYJ" = ( -/turf/open/floor/iron/white, -/area/station/science/research) -"aYM" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate, -/obj/item/coin/gold, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/mine/production) -"aYP" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"aYQ" = ( -/obj/machinery/shower{ - pixel_y = 22 - }, -/obj/item/soap/nanotrasen, -/obj/item/bikehorn/rubberducky/plasticducky, -/turf/open/floor/iron/freezer, -/area/mine/laborcamp) -"aYR" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"aZd" = ( -/turf/open/floor/plating, -/area/station/medical/virology) -"aZk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"aZo" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"aZp" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/siding/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) -"aZq" = ( -/obj/item/kirbyplants/potty, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"aZx" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Telecomms Monitoring"; - network = list("tcomms") - }, -/obj/structure/tank_holder/oxygen, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"aZH" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter/room) -"aZL" = ( -/obj/item/kirbyplants/random, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"aZO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/cargo/qm) -"aZV" = ( -/obj/effect/landmark/start/atmospheric_technician, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/yellow, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/engineering/atmos/storage/gas) -"bai" = ( -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"baj" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Chapel Maintenance External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"bam" = ( -/turf/open/floor/carpet/red, -/area/station/commons/vacant_room/office) -"ban" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"bax" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"baA" = ( -/obj/structure/cable, -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"baO" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"baQ" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"baR" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/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/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"baV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth_large, -/area/station/cargo/warehouse) -"bba" = ( -/obj/item/stack/medical/mesh, -/obj/item/wrench/medical, -/obj/machinery/light/directional/east, -/obj/machinery/airalarm/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/structure/table/glass, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"bbo" = ( -/turf/open/floor/iron, -/area/station/construction) -"bbr" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"bbs" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 4; - initialize_directions = 8 - }, -/obj/effect/turf_decal/bot_red, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"bbv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"bbQ" = ( -/obj/structure/chair{ - 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, -/area/station/security/courtroom) -"bbY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron/textured, -/area/station/security/brig) -"bcm" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Security - Lower Brig Cells"; - network = list("ss13","prison") - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron/textured, -/area/station/security/brig) -"bcn" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"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/plating, -/area/station/maintenance/starboard/fore) -"bcQ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting Equipment" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"bde" = ( -/turf/open/floor/plating, -/area/station/cargo/storage) -"bdo" = ( -/obj/structure/table/wood, -/obj/item/food/grown/poppy{ - pixel_y = 2 - }, -/obj/item/storage/photo_album/prison, -/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/rec) -"bdr" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/trimline/blue/filled/warning, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"bdu" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Mining External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, -/turf/open/floor/iron/smooth, -/area/mine/living_quarters) -"bdx" = ( -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"bdF" = ( -/obj/structure/table, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/clothing/suit/hooded/wintercoat{ - pixel_x = -5 - }, -/obj/item/clothing/suit/hooded/wintercoat/security{ - pixel_x = 5 - }, -/obj/item/clothing/suit/hooded/wintercoat/security{ - pixel_x = 5 - }, -/obj/item/clothing/suit/hooded/wintercoat/security{ - pixel_x = 5 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"bdK" = ( -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) -"bdP" = ( -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/structure/chair, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/large, -/area/station/service/kitchen/diner) -"bdR" = ( -/obj/machinery/telecomms/server/presets/command, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"bea" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating/icemoon, -/area/station/engineering/atmos) -"bed" = ( -/obj/machinery/light/floor, -/obj/structure/industrial_lift, -/obj/effect/landmark/lift_id{ - specific_lift_id = "publicElevator" - }, -/turf/open/openspace, -/area/station/commons/storage/mining) -"ben" = ( -/obj/machinery/bluespace_beacon, -/obj/effect/turf_decal/stripes/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/ai_monitored/turret_protected/aisat_interior) -"beo" = ( -/obj/machinery/button/elevator{ - id = "publicElevator"; - pixel_y = -25 - }, -/obj/machinery/door/window/left/directional/south{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/mine/storage) -"bep" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"beO" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"beQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/structure/sign/painting/large, -/turf/open/floor/wood, -/area/station/security/prison/rec) -"beT" = ( -/obj/structure/table/glass, -/obj/item/cultivator, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"beZ" = ( -/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) -"bff" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/cargo/storage) -"bfg" = ( -/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/security/prison/mess) -"bfl" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"bfo" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/end, -/turf/open/floor/plating, -/area/mine/eva/lower) -"bfB" = ( -/obj/item/kirbyplants/random, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark/textured, -/area/station/security/office) -"bfL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"bfN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/railing, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"bfU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"bgd" = ( -/obj/structure/reagent_dispensers/plumbed, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"bgs" = ( -/obj/structure/sign/poster/random/directional/east, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"bgt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/eva) -"bgx" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/aft) -"bgE" = ( -/obj/effect/landmark/start/ai/secondary, -/obj/item/radio/intercom/directional/north{ - freerange = 1; - listening = 0; - name = "Custom Channel" - }, -/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" - }, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"bgG" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"bgU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/brown{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"bgZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Cooling Loop to Gas" - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"bhj" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"bhk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"bhs" = ( -/obj/effect/turf_decal/siding/wood, -/obj/item/kirbyplants/fullysynthetic{ - pixel_x = -8; - pixel_y = 21 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/sign/poster/official/random/directional/west, -/turf/open/floor/stone, -/area/mine/eva/lower) -"bhw" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/machinery/duct, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"bie" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/turf/open/floor/plating, -/area/mine/production) -"bif" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/camera/autoname/directional/east, -/obj/structure/sign/warning/radiation/rad_area/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"bio" = ( -/obj/structure/closet/emcloset/anchored, -/obj/item/pickaxe/emergency, -/obj/item/pickaxe/emergency, -/obj/item/pickaxe/emergency, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"bit" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/clothing/head/beanie/orange, -/turf/open/floor/iron, -/area/station/cargo/storage) -"biI" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Xeno Test Chamber"; - network = list("ss13","test","rd","xeno") - }, -/obj/machinery/light/directional/west, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"biL" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Bridge East Entrance" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"biN" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/light/directional/south, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"biR" = ( -/obj/structure/table/glass, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/dropper, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/yellow/full, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/pharmacy) -"biU" = ( -/obj/structure/disposalpipe/segment{ - 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/duct, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"biX" = ( -/obj/machinery/status_display/evac/directional/west, -/obj/machinery/light/directional/west, -/obj/item/kirbyplants/random, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"biY" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/port/fore) -"bja" = ( -/turf/open/floor/plating, -/area/station/medical/morgue) -"bji" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/asteroid/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"bjl" = ( -/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) -"bjm" = ( -/obj/effect/turf_decal/tile/red/full, -/obj/structure/closet/secure_closet/security/med, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/medical) -"bjn" = ( -/obj/machinery/door/window/left/directional/north{ - dir = 4; - name = "Containment Pen 11"; - req_access = list("xenobiology") - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio11"; - name = "Xenobio Pen 11 Blast Door" - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"bjp" = ( -/turf/open/floor/iron/dark/textured_edge{ - dir = 4 - }, -/area/station/security/prison) -"bjE" = ( -/obj/machinery/vending/games, -/turf/open/floor/wood, -/area/station/service/library) -"bjN" = ( -/obj/structure/cable, -/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/west, -/turf/open/floor/iron/dark, -/area/mine/mechbay) -"bjU" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"bjZ" = ( -/obj/structure/sink/kitchen{ - pixel_y = 24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/station/service/bar) -"bkg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/work) -"bkq" = ( -/obj/machinery/door/window/left/directional/east{ - dir = 8; - name = "Graveyard Access"; - req_access = list("chapel_office") - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/service/chapel) -"bkr" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/service) -"bkC" = ( -/obj/effect/turf_decal/tile/red/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 = 5 - }, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"bkF" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/science/explab) -"bkK" = ( -/obj/machinery/requests_console/auto_name/directional/east, -/turf/open/floor/iron, -/area/station/commons/locker) -"bkR" = ( -/obj/machinery/light/directional/south, -/obj/structure/sign/warning/test_chamber/directional/south, -/turf/open/floor/engine, -/area/station/science/genetics) -"bkV" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - 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/aft) -"bkX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/prison/workout) -"bla" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/public/glass{ - name = "Art Gallery" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/sepia, -/area/station/service/library) -"blf" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"blk" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Shuttle Prisoner Airlock" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron, -/area/mine/laborcamp) -"bll" = ( -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"bln" = ( -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"blO" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"blT" = ( -/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/showroomfloor, -/area/station/security/processing) -"blV" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/service/library) -"bmf" = ( -/obj/effect/turf_decal/tile/blue/diagonal_edge, -/obj/machinery/vending/dinnerware, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"bmv" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"bmw" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"bmI" = ( -/obj/machinery/door/window{ - name = "Gateway Chamber" - }, -/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/gateway) -"bmM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"bmO" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"bmT" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 9 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"bna" = ( -/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, -/area/station/medical/medbay/aft) -"bnh" = ( -/obj/machinery/door/window/left/directional/north{ - dir = 4; - name = "Containment Pen 7"; - req_access = list("xenobiology") - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio7"; - name = "Xenobio Pen 7 Blast Door" - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"bnl" = ( -/obj/effect/turf_decal/tile/red, -/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, -/area/station/hallway/primary/central/fore) -"bnp" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"bnt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"bny" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"bnz" = ( -/obj/machinery/nuclearbomb/selfdestruct, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"bnG" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/structure/sign/warning/fire/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"bnJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - 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/extinguisher_cabinet/directional/south, -/turf/open/floor/iron/white, -/area/station/science/research) -"bnL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"bnM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Security - Interrogation"; - network = list("interrogation") - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/interrogation) -"bnQ" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/siding/blue{ - dir = 5 - }, -/obj/item/clothing/glasses/sunglasses, -/obj/item/stack/spacecash/c10, -/obj/item/stack/spacecash/c10, -/obj/item/grenade/smokebomb, -/obj/item/poster/random_contraband{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/head/soft/yellow, -/obj/effect/spawner/random/maintenance/four, -/obj/item/crowbar/red, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) -"bnW" = ( -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/structure/table, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/auxiliary) -"bnY" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"bnZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/ordnance) -"bol" = ( -/turf/open/floor/iron/dark/textured, -/area/station/security/prison) -"bos" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"boK" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/service/kitchen/coldroom) -"boP" = ( -/obj/machinery/firealarm/directional/west, -/obj/machinery/light/directional/south, -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/book/manual/wiki/engineering_construction, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"boQ" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible, -/turf/closed/wall/r_wall, -/area/station/maintenance/department/medical/central) -"boV" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"bpd" = ( -/obj/machinery/power/smes/engineering, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/structure/sign/warning/electric_shock/directional/north, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/engine_smes) -"bpf" = ( -/obj/machinery/computer/secure_data, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"bpD" = ( -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron/cafeteria{ - dir = 8 - }, -/area/station/science/research) -"bpG" = ( -/obj/effect/turf_decal/tile/blue/diagonal_edge, -/obj/machinery/chem_master/condimaster, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"bpL" = ( -/obj/structure/noticeboard/directional/west, -/turf/open/floor/engine/cult, -/area/station/service/library) -"bpR" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"bpT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Chapel Crematorium" - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"bpX" = ( -/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_edge, -/area/station/security/prison) -"bqe" = ( -/obj/structure/grille, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"bqn" = ( -/obj/machinery/requests_console/directional/south{ - anon_tips_receiver = 1; - assistance_requestable = 1; - department = "Security"; - departmentType = 5; - name = "Security Requests Console" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/landmark/start/customs_agent, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"bqt" = ( -/obj/machinery/airalarm/directional/west, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"bqF" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"bqH" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"bqJ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"bqY" = ( -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron, -/area/station/maintenance/starboard/upper) -"brf" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/table/reinforced/rglass, -/obj/item/hairbrush, -/turf/open/floor/iron, -/area/service/salon) -"brm" = ( -/obj/structure/fence/corner{ - dir = 9 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"bro" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) -"brt" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"brx" = ( -/turf/closed/wall, -/area/station/security/warden) -"bry" = ( -/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/engineering) -"brL" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 5 - }, -/area/station/service/chapel) -"brY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"bsb" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/end{ - dir = 1 - }, -/turf/open/floor/plating, -/area/mine/eva/lower) -"bsc" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/obj/item/clothing/head/beanie/stripedred, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"bse" = ( -/obj/effect/spawner/random/trash/mess, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"bst" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/mine/storage) -"bsu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"bsx" = ( -/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, -/area/station/cargo/miningdock) -"bsC" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Fitness Maintenance" - }, -/obj/structure/disposalpipe/segment, -/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/security/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"bsG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research/glass{ - name = "Robotics Lab" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/robotics, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"bsN" = ( -/obj/structure/table, -/obj/item/storage/pill_bottle/mutadone{ - pixel_x = 11; - pixel_y = 7 - }, -/obj/item/radio/headset/headset_sci{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 2 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"bsO" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"bsV" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"bta" = ( -/obj/structure/chair/sofa/bench/right{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"btg" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Atmospherics Maintenance" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"bti" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"btB" = ( -/obj/structure/table, -/obj/item/flashlight/lantern, -/turf/open/floor/plating, -/area/mine/eva/lower) -"btI" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Armory - Internal - Lower" - }, -/obj/effect/turf_decal/tile/red/half, -/obj/structure/closet/secure_closet/smartgun, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) -"btQ" = ( -/obj/machinery/modular_computer/console/preset/curator{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/wood, -/area/station/service/library) -"btU" = ( -/turf/closed/wall, -/area/station/medical/morgue) -"bue" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/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/miningdock) -"buo" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"bup" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/mob/living/simple_animal/parrot/poly, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"buv" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - dir = 4; - name = "Scrubbers multi deck pipe adapter" - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"buS" = ( -/obj/effect/turf_decal/tile/red/half{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) -"buW" = ( -/obj/structure/lattice, -/obj/structure/sign/warning/directional/south, -/turf/open/openspace/icemoon/keep_below, -/area/icemoon/underground/explored) -"buY" = ( -/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/electrical) -"bvd" = ( -/obj/machinery/power/terminal, -/obj/machinery/light/small/directional/east, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"bve" = ( -/obj/structure/sign/warning/no_smoking{ - pixel_x = -28 - }, -/turf/open/openspace, -/area/station/medical/treatment_center) -"bvj" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"bvr" = ( -/obj/machinery/light_switch/directional/west, -/obj/machinery/autolathe, -/turf/open/floor/iron, -/area/station/cargo/office) -"bvs" = ( -/obj/structure/table, -/obj/item/clothing/suit/apron/chef, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"bvE" = ( -/obj/machinery/computer/monitor{ - name = "bridge power monitoring console" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/command/bridge) -"bvI" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=HOP2"; - location = "Stbd" - }, -/obj/structure/disposalpipe/segment{ - 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, -/area/station/hallway/primary/starboard) -"bvS" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured_large, -/area/station/maintenance/department/medical/morgue) -"bvY" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"bwe" = ( -/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/structure/cable, -/obj/machinery/door_buttons/access_button{ - idDoor = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = -24; - pixel_y = 5; - req_access = list("virology") - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/obj/effect/turf_decal/tile/green/full, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/virology) -"bwi" = ( -/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, -/area/station/security/prison/rec) -"bwl" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/library) -"bwr" = ( -/obj/machinery/light_switch/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"bws" = ( -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"bwt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"bwK" = ( -/obj/structure/bookcase/random/religion, -/turf/open/floor/wood, -/area/station/service/library) -"bwL" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"bwM" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/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/starboard/upper) -"bwS" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"bwT" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/mine/living_quarters) -"bwY" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/openspace, -/area/station/cargo/storage) -"bxa" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"bxe" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/solars/starboard/fore) -"bxi" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/trimline/blue/filled/warning, -/obj/machinery/reagentgrinder{ - pixel_y = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"bxy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"bxJ" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"bxP" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/turf/open/floor/iron/white/side{ - dir = 5 - }, -/area/station/science/lab) -"bxQ" = ( -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"bxU" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/window{ - id = "chemistry_access_shutters"; - name = "Chemistry Access Shutters"; - dir = 4 - }, -/turf/open/floor/iron/white/textured, -/area/station/medical/treatment_center) -"bxV" = ( -/obj/structure/chair/wood/wings, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/maintenance/port/aft) -"bxW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/mine/laborcamp) -"bxX" = ( -/obj/structure/chair/stool/directional/north, -/obj/structure/sign/poster/official/report_crimes{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/laborcamp) -"byk" = ( -/obj/structure/sign/painting/library{ - pixel_y = 32 - }, -/obj/structure/table, -/obj/machinery/microwave, -/obj/structure/sign/poster/official/random/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"byl" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/camera/directional/north, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"byq" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/white, -/area/station/security/prison/safe) -"byx" = ( -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"byB" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/plating/icemoon, -/area/station/science/ordnance/bomb) -"byC" = ( -/obj/structure/disposalpipe/segment{ - 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/port/greater) -"byE" = ( -/obj/structure/sign/warning/electric_shock/directional/south, -/obj/machinery/door/firedoor, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"byH" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"bzn" = ( -/obj/machinery/door/airlock{ - name = "Kitchen Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchencounter"; - name = "Kitchen Shutters"; - dir = 1 - }, -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"bzC" = ( -/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/ai_monitored/turret_protected/ai_upload) -"bzE" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"bzJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/camera/directional/north{ - c_tag = "Mining Mech Bay" - }, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/smooth, -/area/mine/mechbay) -"bzN" = ( -/obj/structure/rack, -/obj/machinery/light/small/directional/west, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/smooth_large, -/area/station/cargo/warehouse) -"bzQ" = ( -/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 = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"bzW" = ( -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"bAa" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/chair/stool/directional/north, -/turf/open/floor/carpet, -/area/station/cargo/qm) -"bAk" = ( -/obj/machinery/firealarm/directional/west, -/turf/open/floor/carpet, -/area/station/security/prison/rec) -"bAF" = ( -/turf/open/floor/iron/chapel{ - dir = 1 - }, -/area/station/service/chapel) -"bAM" = ( -/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/mine/laborcamp/security) -"bAO" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/table, -/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, -/obj/structure/cable, -/obj/item/mod/module/plasma_stabilizer, -/obj/item/mod/module/thermal_regulator, -/obj/item/stock_parts/cell/emproof{ - pixel_x = -4; - pixel_y = -1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"bAR" = ( -/obj/machinery/duct, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos) -"bAT" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/paper/monitorkey, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"bAU" = ( -/obj/machinery/camera{ - c_tag = "Morgue North"; - dir = 9; - network = list("ss13","medbay") - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"bAX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"bAY" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"bBn" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "permainner"; - name = "Permabrig Transfer" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "perma-entrance" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark/textured, -/area/station/security/execution/transfer) -"bBw" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"bBx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/door/window/brigdoor/right/directional/east{ - req_access = list("armory") - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"bBJ" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"bBM" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/cable, -/obj/structure/closet/secure_closet/atmospherics, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"bBW" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"bCc" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/maintenance/port/aft) -"bCd" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Genetics Lab Maintenance" - }, -/obj/structure/disposalpipe/segment{ - 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/mapping_helpers/airlock/access/all/science/genetics, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"bCf" = ( -/obj/machinery/door/poddoor/preopen{ - id = "cmoprivacy"; - name = "CMO Office" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/command/heads_quarters/cmo) -"bCl" = ( -/obj/machinery/door/firedoor, -/obj/effect/landmark/navigate_destination, -/turf/open/floor/iron, -/area/station/commons/locker) -"bCp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/work) -"bCq" = ( -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"bCr" = ( -/obj/machinery/door/window/right/directional/east{ - base_state = "left"; - dir = 1; - icon_state = "left"; - name = "Pharmacy Desk"; - req_access = list("pharmacy") - }, -/obj/item/folder/white, -/obj/item/pen, -/obj/machinery/door/firedoor, -/obj/structure/sign/warning/fire/directional/west, -/obj/structure/table/reinforced, -/turf/open/floor/plating, -/area/station/medical/treatment_center) -"bCs" = ( -/obj/machinery/door/airlock/engineering{ - name = "Construction Area" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/plating, -/area/station/construction) -"bCt" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"bCx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/station/medical/virology) -"bCD" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/science/genetics) -"bCJ" = ( -/obj/structure/railing{ - dir = 10 - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating/snowed/icemoon, -/area/station/cargo/drone_bay) -"bCQ" = ( -/obj/effect/turf_decal/stripes{ - dir = 9 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"bCT" = ( -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/dark_green/arrow_ccw, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"bCW" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "Bridge Blast Door" - }, -/obj/effect/turf_decal/delivery, -/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/command/bridge) -"bDc" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"bDd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"bDe" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/machinery/oven, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"bDj" = ( -/obj/machinery/light/warm/directional/south, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/workout) -"bDp" = ( -/obj/item/airlock_painter, -/obj/structure/closet, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"bDu" = ( -/turf/closed/wall/r_wall, -/area/station/security/lockers) -"bDz" = ( -/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/corner{ - dir = 4 - }, -/area/station/engineering/lobby) -"bDC" = ( -/obj/machinery/door/airlock{ - id_tag = "miningdorm_B"; - name = "Room 2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/mine/production) -"bDF" = ( -/obj/structure/table/wood, -/obj/item/food/grown/harebell, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/prison/rec) -"bDH" = ( -/obj/effect/landmark/start/chaplain, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"bDI" = ( -/obj/structure/rack, -/obj/item/storage/bag/ore, -/obj/item/flashlight, -/obj/item/pickaxe, -/obj/item/clothing/glasses/meson, -/obj/item/mining_scanner, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/hooded/wintercoat, -/turf/open/floor/iron, -/area/mine/laborcamp) -"bDO" = ( -/obj/structure/fluff/tram_rail, -/obj/structure/fluff/tram_rail{ - pixel_y = 17 - }, -/turf/open/openspace/icemoon/keep_below, -/area/icemoon/underground/explored) -"bDX" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"bEb" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Security Post - Science"; - network = list("ss13","rd") - }, -/obj/machinery/newscaster/directional/west, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/closet/secure_closet/security/science, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) -"bEf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/textured, -/area/station/security/interrogation) -"bEh" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/sign/warning/cold_temp/directional/east, -/obj/structure/sign/warning/gas_mask/directional/west{ - desc = "A sign that warns of dangerous gasses in the air, instructing you to wear internals." - }, -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Xenobiology External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"bEi" = ( -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/laborcamp) -"bEo" = ( -/obj/structure/sign/warning/secure_area/directional/east, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/white, -/area/station/maintenance/aft/greater) -"bEp" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Service-Hallway Bottom 2" - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"bEq" = ( -/obj/machinery/door/window/right/directional/west{ - dir = 1; - name = "Terrarium"; - req_access = list("hydroponics") - }, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"bEB" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"bEG" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/mine/eva) -"bEH" = ( -/obj/structure/stairs/north{ - dir = 4 - }, -/turf/open/floor/iron/stairs/old{ - dir = 4 - }, -/area/station/engineering/atmos/storage) -"bEJ" = ( -/obj/effect/turf_decal/stripes/line{ - 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/white, -/area/station/science/ordnance/office) -"bEL" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/medical/treatment_center) -"bEN" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"bEX" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"bFk" = ( -/obj/effect/decal/cleanable/blood/tracks{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/full, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"bFq" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"bFr" = ( -/obj/structure/tank_holder/extinguisher, -/obj/machinery/requests_console/directional/north{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - receive_ore_updates = 1; - supplies_requestable = 1 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"bFs" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"bFL" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/cafeteria, -/area/station/hallway/secondary/entry) -"bFP" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/camera/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/corner, -/area/station/hallway/secondary/entry) -"bFS" = ( -/obj/item/crowbar/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"bFU" = ( -/obj/effect/turf_decal/siding/wideplating_new/light{ - dir = 4 - }, -/obj/machinery/plumbing/input, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/work) -"bFY" = ( -/obj/item/trash/syndi_cakes, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"bGa" = ( -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"bGm" = ( -/obj/machinery/firealarm/directional/south, -/obj/structure/filingcabinet/filingcabinet, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"bGn" = ( -/obj/machinery/door/airlock/engineering{ - name = "Auxillary Base Construction" - }, -/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/access/all/engineering/construction, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"bGv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/genetics) -"bGA" = ( -/obj/effect/spawner/structure/window, -/obj/structure/sign/departments/xenobio/directional/south, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"bGL" = ( -/obj/item/radio/intercom/directional/south, -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"bGT" = ( -/obj/machinery/light/directional/south, -/obj/structure/closet/firecloset, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"bHa" = ( -/obj/structure/disposalpipe/segment{ - 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/command/heads_quarters/rd) -"bHr" = ( -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/plating, -/area/station/maintenance/fore/greater) -"bHu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/light_switch/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"bHy" = ( -/obj/structure/sign/warning/secure_area/directional/north, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"bHF" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"bHI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Courtroom"; - name = "Security Shutters"; - dir = 1 - }, -/turf/open/floor/plating, -/area/station/hallway/primary/fore) -"bHS" = ( -/obj/structure/chair/stool/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"bHZ" = ( -/obj/effect/spawner/random/trash/mess, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"bIa" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Air to Distro" - }, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/siding/wideplating, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"bIs" = ( -/obj/structure/chair/stool/directional/east, -/turf/open/floor/iron/half{ - dir = 1 - }, -/area/station/engineering/atmos) -"bIt" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"bIB" = ( -/obj/effect/spawner/random/vending/snackvend, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"bID" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/lobby) -"bIU" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"bIV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/button/door/directional/east{ - id = "Atmospherics HFR Shutters"; - name = "Atmospherics HFR Shutters"; - req_access = list("atmospherics") - }, -/obj/effect/turf_decal/trimline/red/filled/end{ - dir = 4 - }, -/obj/machinery/light/small/red/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"bIW" = ( -/obj/effect/turf_decal/tile/bar/opposingcorners, -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/station/service/bar) -"bJc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/smooth, -/area/mine/eva) -"bJp" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Security - Permabrig Workout"; - network = list("ss13","prison"); - view_range = 5 - }, -/obj/effect/turf_decal/trimline/red/warning{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/range) -"bJq" = ( -/obj/docking_port/stationary/random/icemoon{ - dir = 4; - id = "pod_4_lavaland"; - name = "lavaland" - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"bJx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/mine/laborcamp) -"bJy" = ( -/turf/open/floor/wood/tile, -/area/station/service/theater) -"bJD" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"bJE" = ( -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/processing) -"bJJ" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"bJQ" = ( -/obj/structure/table/wood, -/obj/item/stack/package_wrap, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/open/floor/wood, -/area/station/service/library) -"bKd" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/storage/art) -"bKm" = ( -/obj/machinery/vending/assist, -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/iron/cafeteria{ - dir = 8 - }, -/area/station/science/research) -"bKp" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting Equipment" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"bKv" = ( -/obj/structure/sign/warning/cold_temp/directional/south, -/obj/structure/sign/warning/gas_mask/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"bKN" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/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/firedoor, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"bLb" = ( -/obj/effect/turf_decal/tile/red/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/dark/side, -/area/station/security/processing) -"bLc" = ( -/turf/open/floor/iron/dark/textured_edge{ - dir = 1 - }, -/area/station/security/prison) -"bLd" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/dark/textured, -/area/station/security/interrogation) -"bLz" = ( -/obj/structure/cable, -/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, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"bLA" = ( -/obj/structure/closet, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"bLI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/directional/south{ - c_tag = "Security - Transport Parlor" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron, -/area/station/security/processing) -"bLL" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - dir = 8; - name = "old sink"; - pixel_x = 12 - }, -/turf/open/floor/iron/freezer, -/area/mine/laborcamp) -"bLQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/library) -"bLU" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/closet, -/obj/item/clothing/under/suit/black, -/obj/item/clothing/under/rank/civilian/lawyer/black/skirt, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"bLW" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/service/salon) -"bLY" = ( -/obj/structure/cable, -/obj/machinery/duct, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"bMe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"bMs" = ( -/obj/structure/janitorialcart, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"bMF" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"bMJ" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/iron/dark/side, -/area/mine/eva) -"bMK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Gateway Access" - }, -/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/command/gateway, -/turf/open/floor/iron, -/area/station/command/gateway) -"bMT" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/item/folder/white, -/obj/item/pen, -/obj/machinery/door/poddoor/preopen{ - id = "pharmacy_shutters2"; - name = "Pharmacy Shutter" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/right/directional/east{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Pharmacy Desk"; - req_access = list("pharmacy") - }, -/turf/open/floor/iron, -/area/station/medical/pharmacy) -"bMY" = ( -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/starboard) -"bMZ" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Bridge West" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"bNo" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/obj/machinery/door/poddoor{ - id = "QMLoaddoor"; - name = "Supply Dock Loading Door" - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"bNx" = ( -/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, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"bNE" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Monitoring" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "atmos-entrance" - }, -/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/atmospherics/pipe/smart/manifold4w/cyan/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage/gas) -"bNH" = ( -/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/white, -/area/station/medical/cryo) -"bOg" = ( -/obj/item/kirbyplants/random, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/security/processing) -"bOj" = ( -/obj/machinery/door/airlock/maintenance, -/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/department/medical/central) -"bOo" = ( -/obj/effect/turf_decal/arrows/white{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/engineering/atmos/hfr_room) -"bOu" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/obj/structure/chair/sofa/corp/left{ - dir = 4; - pixel_x = -4 - }, -/obj/effect/landmark/start/hangover, -/obj/machinery/computer/security/telescreen/entertainment/directional/west, -/turf/open/floor/iron/grimy, -/area/station/service/bar/atrium) -"bOz" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 1 - }, -/turf/open/floor/plating, -/area/mine/living_quarters) -"bOI" = ( -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"bOL" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"bOO" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"bOT" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"bOY" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{ - dir = 10 - }, -/obj/item/radio/intercom/directional/east, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"bPb" = ( -/obj/machinery/modular_computer/console/preset/cargochat/science{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/science/lab) -"bPc" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) -"bPe" = ( -/obj/machinery/light/directional/south, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/security/courtroom) -"bPg" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 10 - }, -/obj/machinery/firealarm/directional/west, -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"bPn" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"bPt" = ( -/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/dark_red/arrow_ccw{ - dir = 8 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"bPw" = ( -/turf/open/floor/iron/grimy, -/area/station/commons/vacant_room/office) -"bPx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/construction) -"bPz" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"bPE" = ( -/obj/structure/table, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/green/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/medical/virology) -"bPH" = ( -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"bPL" = ( -/obj/effect/turf_decal/tile/blue/diagonal_edge, -/obj/structure/window/reinforced/spawner/east, -/obj/machinery/light/directional/south, -/obj/structure/closet/secure_closet/freezer/kitchen, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"bPP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"bPY" = ( -/obj/machinery/atmospherics/pipe/multiz/pink/visible{ - dir = 8; - name = "Exfiltrate" - }, -/obj/effect/turf_decal/tile/neutral/diagonal_centre, -/obj/effect/turf_decal/tile/red/diagonal_edge, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/iron/dark/diagonal, -/area/station/engineering/atmos/storage) -"bQd" = ( -/obj/structure/fireaxecabinet/directional/south, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"bQh" = ( -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/starboard) -"bQr" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/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/plating, -/area/station/maintenance/starboard/fore) -"bQA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/storage) -"bQN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/mine/eva/lower) -"bQS" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"bQV" = ( -/obj/structure/sign/warning/electric_shock/directional/north, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"bRb" = ( -/obj/structure/flora/bush/lavendergrass/style_random, -/turf/open/floor/grass, -/area/station/security/prison/safe) -"bRd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Mech Bay" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/science/robotics, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"bRh" = ( -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"bRi" = ( -/obj/effect/spawner/random/contraband/prison, -/obj/structure/closet/crate, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/iron/dark/smooth_half, -/area/station/security/prison/work) -"bRo" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"bRt" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Two" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"bRz" = ( -/obj/machinery/hydroponics/soil{ - pixel_y = 8 - }, -/turf/open/floor/grass, -/area/station/maintenance/starboard/aft) -"bRC" = ( -/obj/structure/chair/plastic{ - dir = 8 - }, -/turf/open/floor/plating, -/area/mine/eva/lower) -"bRD" = ( -/obj/structure/bookcase/random, -/obj/structure/sign/poster/official/nanomichi_ad{ - pixel_y = 32 - }, -/turf/open/floor/carpet/red, -/area/station/security/prison/work) -"bRE" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"bRG" = ( -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"bRH" = ( -/obj/structure/grille/broken, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"bRJ" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/laborcamp) -"bRO" = ( -/obj/structure/rack, -/obj/item/wrench, -/obj/item/crowbar/red, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"bRW" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/effect/turf_decal/trimline, -/obj/structure/sign/warning/gas_mask{ - desc = "A sign that warns of dangerous gasses in the air, instructing you to wear internals."; - pixel_x = -29 - }, -/turf/open/floor/iron/smooth, -/area/mine/living_quarters) -"bRZ" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark/smooth_edge{ - dir = 4 - }, -/area/station/engineering/transit_tube) -"bSk" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Prison Gate"; - name = "Prison Blast Door" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron/textured, -/area/station/security/brig) -"bSH" = ( -/obj/effect/landmark/start/hangover, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"bTl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/light/floor, -/turf/open/floor/iron/white, -/area/mine/living_quarters) -"bTq" = ( -/obj/machinery/computer/atmos_alert, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"bTx" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos) -"bTF" = ( -/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/engineering/main) -"bTI" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"bUa" = ( -/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/science/breakroom) -"bUb" = ( -/obj/docking_port/stationary/random/icemoon{ - dir = 8; - id = "pod_2_lavaland"; - name = "lavaland" - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/unexplored/rivers/no_monsters) -"bUp" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/security/prison/garden) -"bUK" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio5"; - name = "Xenobio Pen 5 Blast Door" - }, -/obj/machinery/door/window/left/directional/north{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen 5"; - req_access = list("xenobiology") - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"bVe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/chemistry) -"bVp" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/closet/secure_closet/medical3, -/obj/item/defibrillator/loaded{ - pixel_y = 3 - }, -/obj/item/clothing/gloves/color/latex/nitrile, -/obj/item/clothing/gloves/color/latex/nitrile, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"bVv" = ( -/obj/structure/cable, -/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/east, -/turf/open/floor/plating, -/area/station/maintenance/central/lesser) -"bVJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/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, -/area/station/cargo/miningdock) -"bVL" = ( -/obj/machinery/space_heater, -/obj/structure/sign/poster/official/random/directional/east, -/turf/open/floor/grass, -/area/station/maintenance/starboard/aft) -"bVZ" = ( -/obj/structure/sign/poster/contraband/the_big_gas_giant_truth, -/turf/closed/wall, -/area/station/maintenance/department/medical/central) -"bWe" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/hollow/reinforced/middle, -/turf/open/floor/plating, -/area/station/security/brig) -"bWh" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured_corner{ - dir = 8 - }, -/area/station/security/prison) -"bWn" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) -"bWp" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"bWu" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"bWA" = ( -/obj/machinery/button/flasher{ - id = "hopflash"; - pixel_x = 6; - pixel_y = 36 - }, -/obj/machinery/light_switch/directional/north{ - pixel_x = -3; - pixel_y = 36 - }, -/obj/machinery/pdapainter, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/button/door/directional/north{ - id = "hopqueue"; - name = "Queue Shutters Control"; - pixel_x = -6; - req_access = list("hop") - }, -/obj/machinery/button/door/directional/north{ - id = "hop"; - name = "Privacy Shutters Control"; - pixel_x = 6; - req_access = list("hop") - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"bWB" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"bWK" = ( -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"bWL" = ( -/obj/machinery/light/directional/east, -/obj/structure/sign/poster/official/random/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"bWQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"bWV" = ( -/obj/structure/closet/crate, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth_large, -/area/station/cargo/warehouse) -"bWZ" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"bXf" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"bXl" = ( -/obj/machinery/air_sensor/nitrous_tank, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"bXm" = ( -/turf/closed/wall, -/area/station/commons/storage/tools) -"bXo" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/closet/crate/solarpanel_small, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"bXu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/storage) -"bXy" = ( -/turf/open/openspace, -/area/station/ai_monitored/security/armory/upper) -"bXF" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/ai_all, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"bXL" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/white, -/area/station/science/research) -"bXM" = ( -/obj/structure/reagent_dispensers/wall/peppertank/directional/east, -/obj/machinery/newscaster/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Security Post - Cargo" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/computer/security/mining{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"bXT" = ( -/obj/machinery/camera{ - c_tag = "Medbay Storage"; - dir = 9; - network = list("ss13","medbay") - }, -/obj/structure/closet/l3closet, -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"bXU" = ( -/obj/effect/spawner/random/vending/snackvend, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"bYc" = ( -/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/greater) -"bYd" = ( -/obj/machinery/airalarm/directional/west, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/dark, -/area/mine/mechbay) -"bYm" = ( -/obj/structure/chair/pew{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/chapel{ - dir = 8 - }, -/area/station/service/chapel) -"bYu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron/white/corner{ - dir = 8 - }, -/area/station/science/explab) -"bYw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"bYB" = ( -/obj/structure/table, -/obj/item/storage/box/hug{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/razor{ - pixel_x = -8; - pixel_y = 3 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/smooth, -/area/station/security/execution/transfer) -"bYF" = ( -/obj/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/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/security/processing) -"bYK" = ( -/obj/effect/landmark/start/chemist, -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/station/medical/treatment_center) -"bYO" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"bYS" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/directional/north{ - c_tag = "Server Room"; - network = list("ss13","rd"); - pixel_x = 22 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/server) -"bYT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/maintenance{ - name = "Morgue Maintenance" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"bYY" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"bZb" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"bZc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"bZk" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"bZu" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/light/directional/east, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"bZx" = ( -/turf/open/openspace, -/area/station/hallway/primary/fore) -"bZA" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"bZG" = ( -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"bZK" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"bZQ" = ( -/turf/closed/wall/r_wall, -/area/station/hallway/primary/starboard) -"caj" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/commons/fitness) -"cas" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"caw" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"caA" = ( -/obj/item/radio/intercom/directional/west, -/obj/structure/closet/secure_closet/hop, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"caC" = ( -/obj/machinery/door/window/right/directional/south{ - dir = 8; - name = "Monkey Pen"; - req_access = list("genetics") - }, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/engine, -/area/station/science/genetics) -"caG" = ( -/obj/structure/table/glass, -/obj/machinery/light/directional/north, -/obj/machinery/requests_console/directional/north{ - announcementConsole = 1; - anon_tips_receiver = 1; - assistance_requestable = 1; - department = "Chief Medical Officer's Desk"; - departmentType = 5; - name = "Chief Medical Officer's Requests Console" - }, -/obj/item/toy/figure/cmo{ - pixel_x = -17; - pixel_y = -1 - }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/command/heads_quarters/cmo) -"caS" = ( -/obj/machinery/light/directional/east, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"caU" = ( -/obj/structure/sign/warning/cold_temp/directional/south, -/obj/structure/sign/warning/gas_mask/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"caY" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/library) -"caZ" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"cbd" = ( -/obj/machinery/door/airlock/research{ - name = "Crater Observation Room" - }, -/turf/open/floor/iron/white/side{ - dir = 1 - }, -/area/mine/living_quarters) -"cbf" = ( -/obj/machinery/computer/mecha{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/keycard_auth/directional/south, -/obj/machinery/camera/autoname/directional/south{ - c_tag = "Research Directors Office"; - network = list("ss13","rd") - }, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"cbk" = ( -/turf/open/floor/iron, -/area/mine/mechbay) -"cbs" = ( -/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, -/area/station/hallway/primary/starboard) -"cbF" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rnd2"; - name = "Research Lab Shutters"; - dir = 8 - }, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/lab) -"cbG" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/dark/side{ - dir = 10 - }, -/area/mine/eva) -"cbS" = ( -/obj/structure/rack, -/obj/item/wrench, -/obj/item/crowbar, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/lesser) -"ccg" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"cck" = ( -/obj/structure/table/glass, -/obj/machinery/light/directional/east, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 6 - }, -/obj/item/reagent_containers/syringe, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/large, -/area/station/medical/treatment_center) -"ccp" = ( -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/obj/effect/landmark/start/hangover, -/obj/machinery/button/door/directional/south{ - id = "Dorm5"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"ccr" = ( -/obj/effect/turf_decal/tile/red/half, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/smooth_half, -/area/station/security/brig/upper) -"ccs" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"ccw" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"ccx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"ccz" = ( -/obj/item/radio/intercom/directional/east, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Engineering Secondary Storage" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"ccD" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"ccQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"ccT" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/dark/smooth_edge, -/area/station/service/chapel) -"ccV" = ( -/obj/effect/spawner/random/structure/furniture_parts, -/obj/structure/closet/crate, -/obj/effect/spawner/random/structure/furniture_parts, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"ccW" = ( -/obj/structure/table, -/obj/item/pen, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"ccZ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 6 - }, -/obj/structure/lattice/catwalk, -/turf/open/openspace/icemoon/keep_below, -/area/icemoon/underground/explored) -"cdd" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"cde" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/dorms) -"cdl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"cdp" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"cdu" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"cdv" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"ced" = ( -/obj/structure/closet/crate, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth_large, -/area/station/cargo/warehouse) -"cef" = ( -/obj/machinery/biogenerator, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"cek" = ( -/obj/structure/grille, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"cex" = ( -/obj/machinery/computer/piratepad_control/civilian{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"cey" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"ceE" = ( -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation B" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/obj/effect/turf_decal/tile/green/full, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/turf/open/floor/iron/dark/smooth_large, -/area/station/medical/virology) -"ceO" = ( -/obj/machinery/button/crematorium{ - id = "crematoriumChapel"; - pixel_x = 25 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"cfe" = ( -/obj/structure/cable, -/obj/machinery/holopad/secure, -/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, -/area/station/ai_monitored/turret_protected/aisat_interior) -"cfh" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/prison/workout) -"cfj" = ( -/obj/effect/turf_decal/tile/dark/fourcorners, -/obj/machinery/light/directional/west, -/obj/structure/window/reinforced/spawner/north, -/obj/structure/displaycase, -/turf/open/floor/iron, -/area/mine/living_quarters) -"cfl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"cfC" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cfS" = ( -/obj/item/clothing/suit/snowman{ - name = "Man of Snow" - }, -/obj/item/clothing/head/snowman{ - name = "Head of Snow"; - pixel_y = 9 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"cfT" = ( -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - dir = 8; - name = "Supply multi deck pipe adapter" - }, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - dir = 8; - name = "Scrubbers multi deck pipe adapter" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/engineering/lobby) -"cga" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"cgb" = ( -/obj/structure/chair/sofa/bench/left{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"cgs" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"cgI" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/fore/greater) -"cgR" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"cgW" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - 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/commons/dorms) -"cgZ" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/obj/item/crowbar/large, -/obj/machinery/camera/directional/south{ - c_tag = "Mech Bay"; - network = list("ss13","rd") - }, -/obj/machinery/light/directional/south, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"chg" = ( -/obj/structure/fence/door, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"chi" = ( -/obj/machinery/smartfridge/chemistry/preloaded, -/turf/closed/wall, -/area/station/medical/pharmacy) -"chj" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/white/smooth_large, -/area/station/service/kitchen/diner) -"chB" = ( -/obj/machinery/door/airlock{ - id_tag = "Toilet1"; - name = "Unit 1" - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"chC" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Maintenance External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"chK" = ( -/obj/structure/railing{ - dir = 9 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/starboard) -"chO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/table, -/obj/item/flashlight/lamp, -/turf/open/floor/wood/large, -/area/mine/eva/lower) -"chW" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "QM #3" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"cin" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/large, -/area/station/hallway/primary/starboard) -"ciG" = ( -/obj/machinery/door/airlock/external{ - name = "Security Yard"; - space_dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/iron/smooth_half, -/area/station/security/brig/upper) -"ciH" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/obj/structure/fence{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"ciN" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Shuttle Security Airlock" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/laborcamp) -"ciP" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"ciS" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/trash/cigbutt, -/turf/open/floor/iron/dark, -/area/station/science/breakroom) -"cjj" = ( -/obj/machinery/holopad, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"cjl" = ( -/obj/structure/disposalpipe/segment{ - 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/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"cjD" = ( -/obj/structure/window/reinforced/plasma{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/power/energy_accumulator/tesla_coil/anchored, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"cjI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/item/reagent_containers/glass/rag, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"cjJ" = ( -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"cjK" = ( -/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, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"cjL" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"ckc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/camera/directional/south{ - c_tag = "Central Primary Hallway South-West" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"cks" = ( -/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) -"cku" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"ckK" = ( -/obj/item/trash/sosjerky, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"ckN" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/newscaster/directional/south, -/obj/effect/turf_decal/trimline/dark_blue/line, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"cll" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/meter, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"clm" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/random/maintenance/seven, -/turf/open/floor/plating, -/area/station/construction) -"clo" = ( -/obj/machinery/firealarm/directional/north, -/obj/machinery/light/small/directional/north, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/station/science/breakroom) -"clq" = ( -/turf/open/floor/iron/dark, -/area/station/security/processing) -"clz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/smooth_large, -/area/station/cargo/warehouse) -"clE" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/commons/storage/mining) -"clG" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/machinery/light/small/directional/north, -/turf/open/misc/asteroid/snow/icemoon, -/area/station/engineering/main) -"clI" = ( -/obj/structure/sign/warning/biohazard/directional/north, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"clK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/large, -/area/station/medical/medbay/lobby) -"clL" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Mining B-1 Hallway"; - dir = 10 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/mine/eva) -"clP" = ( -/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, -/area/station/command/meeting_room) -"clR" = ( -/obj/structure/chair/sofa/corp/right{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet/blue, -/area/station/security/prison/work) -"clV" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Ordnance Test Lab"; - network = list("ss13","rd") - }, -/turf/open/floor/iron, -/area/station/science/ordnance/testlab) -"clW" = ( -/obj/structure/cable, -/obj/machinery/button/door/directional/west{ - id = "xenobio1"; - layer = 4; - name = "Xenobio Pen 1 Blast Door"; - req_access = list("xenobiology") - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"clY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"cma" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"cmq" = ( -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"cmv" = ( -/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/greater) -"cmw" = ( -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/valve/digital/on{ - dir = 4; - name = "Exfiltrate Control" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage) -"cmx" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/science/explab) -"cmB" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 22 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"cmJ" = ( -/obj/item/radio/intercom/directional/north, -/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cmX" = ( -/obj/effect/spawner/random/structure/crate, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/space_hut/cabin) -"cmZ" = ( -/obj/item/clothing/suit/hooded/wintercoat/engineering, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"cnd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"cnh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"cnj" = ( -/obj/structure/fence/door{ - name = "graveyard" - }, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"cno" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/smooth, -/area/station/security/lockers) -"cnq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"cnr" = ( -/obj/machinery/vending/autodrobe, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/wood/tile, -/area/station/service/theater) -"cnx" = ( -/obj/machinery/power/tracker, -/obj/structure/cable, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"cnz" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"cnM" = ( -/obj/machinery/airalarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"cnT" = ( -/obj/effect/turf_decal/trimline/blue/end{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/line, -/obj/effect/turf_decal/trimline/blue/end{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/line, -/obj/effect/landmark/start/paramedic, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"col" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) -"cow" = ( -/obj/structure/cable, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"coH" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"coK" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood, -/area/station/maintenance/aft/greater) -"cpe" = ( -/obj/machinery/atmospherics/components/tank/air{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/mine/laborcamp/security) -"cpg" = ( -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"cpl" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Atmospherics Project Room East" - }, -/turf/open/openspace, -/area/station/engineering/atmos/storage) -"cpm" = ( -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/hop) -"cpp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"cpq" = ( -/obj/machinery/light/small/directional/east, -/turf/open/openspace, -/area/station/service/chapel) -"cpt" = ( -/obj/structure/fence/corner{ - dir = 9 - }, -/obj/structure/lattice/catwalk, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"cpw" = ( -/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/execution/transfer) -"cpA" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"cpG" = ( -/obj/structure/table, -/obj/item/toy/cards/deck, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/mine/laborcamp) -"cpH" = ( -/obj/machinery/portable_atmospherics/canister/plasma, -/obj/machinery/light/small/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Engineering Secure Storage" - }, -/turf/open/floor/plating, -/area/station/engineering/engine_smes) -"cpO" = ( -/obj/structure/table, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/item/wirecutters, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"cpT" = ( -/obj/item/kirbyplants/random, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"cpY" = ( -/turf/closed/wall, -/area/station/service/kitchen) -"cqb" = ( -/obj/effect/turf_decal/tile/red/half, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) -"cqh" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Library Maintenance" - }, -/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, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/service/library, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"cqj" = ( -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"cqx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/smooth, -/area/station/security/brig/upper) -"cqz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"cqL" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Aft Port Solar Access" - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"cqO" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cqQ" = ( -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hop) -"crc" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"crg" = ( -/obj/machinery/door/morgue{ - name = "Confession Booth" - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"crn" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/white, -/area/station/science/genetics) -"crS" = ( -/obj/machinery/vending/wardrobe/law_wardrobe, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"csg" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck{ - pixel_y = 4 - }, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"csB" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"csE" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"csT" = ( -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"csW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/station/commons/locker) -"csZ" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics North East" - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Distro to Waste" - }, -/obj/effect/turf_decal/siding/wideplating, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"cte" = ( -/obj/machinery/computer/security/telescreen/engine{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Security Post - Engineering" - }, -/obj/structure/cable, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) -"ctk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/station/engineering/supermatter) -"ctl" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) -"ctB" = ( -/obj/effect/turf_decal/tile/dark/fourcorners, -/obj/structure/window/reinforced/spawner/north, -/obj/structure/rack, -/obj/item/crowbar/large/old, -/turf/open/floor/iron, -/area/mine/living_quarters) -"ctE" = ( -/obj/effect/turf_decal/tile/red/half{ - dir = 1 - }, -/obj/structure/cable, -/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/smooth_half, -/area/station/security/office) -"ctF" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/science/xenobiology) -"ctI" = ( -/obj/machinery/telecomms/processor/preset_three, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"ctL" = ( -/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; - sortType = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"ctM" = ( -/obj/effect/turf_decal/tile/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, -/area/station/engineering/main) -"cum" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"cun" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/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/aft) -"cuq" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/glass/reinforced/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"cur" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/rec) -"cuL" = ( -/obj/structure/table/wood, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/directional/north, -/obj/item/flashlight/lantern, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"cuP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"cuT" = ( -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"cvh" = ( -/obj/effect/landmark/start/ai, -/obj/item/radio/intercom/directional/west{ - freerange = 1; - listening = 0; - name = "Common Channel"; - pixel_y = -8 - }, -/obj/item/radio/intercom/directional/south{ - freerange = 1; - frequency = 1447; - listening = 0; - name = "Private Channel" - }, -/obj/item/radio/intercom/directional/east{ - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_y = -8 - }, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"cvr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"cvC" = ( -/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, -/area/station/hallway/primary/fore) -"cvF" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"cvG" = ( -/obj/effect/turf_decal/siding/wideplating_new/light, -/obj/item/trash/bee, -/obj/machinery/light/directional/west, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/sign/poster/official/moth_piping{ - pixel_x = -32 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/work) -"cvN" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cvS" = ( -/turf/closed/wall, -/area/station/maintenance/department/medical/central) -"cwa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/light/cold/directional/north, -/obj/structure/table, -/obj/structure/table, -/obj/structure/table, -/obj/item/food/grown/carrot{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/food/grown/carrot{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/food/meat/slab/synthmeat, -/turf/open/floor/plating/snowed/coldroom, -/area/station/service/kitchen/coldroom) -"cwd" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light/small/directional/west, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron, -/area/station/service/theater) -"cwh" = ( -/obj/machinery/firealarm/directional/south, -/turf/open/floor/wood/parquet, -/area/station/service/bar/atrium) -"cwn" = ( -/obj/structure/cable, -/obj/structure/transit_tube/crossing/horizontal, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"cwr" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle, -/turf/open/floor/plating, -/area/station/security/courtroom) -"cwA" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"cwK" = ( -/obj/structure/tank_holder/extinguisher, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"cwM" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/button/door/directional/south{ - id = "surgery"; - name = "Surgery Shutter Control"; - pixel_x = -24; - pixel_y = 0 - }, -/obj/machinery/disposal/bin{ - desc = "A pneumatic waste disposal unit. This one leads to the morgue."; - name = "corpse disposal" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/sign/warning/bodysposal/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"cwO" = ( -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"cxc" = ( -/obj/structure/table, -/obj/structure/table, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/multitool, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"cxd" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/hallway/primary/starboard) -"cxg" = ( -/obj/machinery/light_switch/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"cxi" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) -"cxz" = ( -/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/tile/red{ - dir = 1 - }, -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"cxA" = ( -/obj/effect/turf_decal/trimline/blue/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/white, -/area/station/medical/medbay/central) -"cxO" = ( -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) -"cxQ" = ( -/obj/effect/turf_decal/trimline/green/filled/warning{ - dir = 1 - }, -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"cya" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"cyh" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"cyo" = ( -/obj/machinery/stasis{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/large, -/area/station/medical/treatment_center) -"cyB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - 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/hallway/secondary/entry) -"cyF" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/item/melee/chainofcommand, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"cyG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"cyH" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"cyI" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/mirror/directional/east, -/obj/structure/sign/poster/official/random/directional/west, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"cyK" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Dock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "miner-passthrough" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/plating, -/area/station/cargo/miningdock) -"cyL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/explab) -"cyW" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Arrivals Lounge" - }, -/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, -/area/station/hallway/secondary/entry) -"cyX" = ( -/obj/effect/turf_decal/tile/dark{ - dir = 1 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/white/side{ - dir = 4 - }, -/area/mine/living_quarters) -"czi" = ( -/obj/item/radio/intercom/directional/south, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"czm" = ( -/obj/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/snowed/coldroom, -/area/station/service/kitchen/coldroom) -"czq" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Mining External Airlock"; - opacity = 0 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, -/turf/open/floor/iron/smooth, -/area/mine/eva) -"czt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"czv" = ( -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "QMLoad" - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"czD" = ( -/turf/closed/wall, -/area/mine/laborcamp/security) -"czL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/service/salon) -"czO" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"czR" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/machinery/camera/directional/south{ - c_tag = "Aft Port Solar Control" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"czV" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"czW" = ( -/obj/structure/weightmachine/stacklifter, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/workout) -"czY" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"cAe" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/random/trash/grille_or_waste, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"cAi" = ( -/obj/effect/turf_decal/tile/purple/anticorner, -/turf/open/floor/iron/corner{ - dir = 1 - }, -/area/station/hallway/primary/starboard) -"cAr" = ( -/obj/effect/turf_decal/trimline/green/filled/warning{ - dir = 1 - }, -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"cAu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"cAz" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/wood, -/area/station/security/courtroom) -"cAA" = ( -/obj/item/soap/deluxe, -/obj/item/bikehorn/rubberducky, -/obj/structure/curtain, -/obj/machinery/shower{ - pixel_y = 8 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/freezer, -/area/station/medical/break_room) -"cAB" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/station/science/ordnance) -"cAC" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"cAI" = ( -/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/orderly, -/obj/machinery/light_switch/directional/south{ - pixel_x = -21; - pixel_y = -25 - }, -/obj/effect/turf_decal/tile/red/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/medical) -"cAK" = ( -/obj/effect/turf_decal/trimline/green/filled/corner, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"cAL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"cAM" = ( -/obj/structure/table, -/obj/item/folder/white{ - pixel_y = 4 - }, -/obj/machinery/newscaster/directional/north, -/obj/effect/turf_decal/tile/green/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/medical/virology) -"cBh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/locker) -"cBn" = ( -/obj/structure/sign/poster/random/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"cBr" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"cBB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"cBJ" = ( -/obj/item/gun/energy/laser/practice{ - pixel_y = 5 - }, -/obj/item/gun/energy/laser/practice, -/obj/item/gun/energy/laser/practice{ - pixel_y = -5 - }, -/obj/structure/rack, -/turf/open/floor/iron/dark/textured, -/area/station/security/office) -"cBL" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/vending/coffee, -/obj/machinery/computer/security/telescreen/entertainment/directional/south, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/stone, -/area/station/commons/lounge) -"cBP" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp{ - pixel_y = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"cBT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"cCb" = ( -/obj/structure/flora/tree/pine/style_random, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"cCt" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/rnd_all, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"cCu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron/white/smooth_large, -/area/station/science/genetics) -"cCD" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"cCV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"cCW" = ( -/obj/machinery/conveyor/inverted{ - dir = 6; - id = "QMLoad" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"cDb" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"cDh" = ( -/obj/structure/grille/broken, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"cDw" = ( -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/airlock/glass{ - name = "Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"cDx" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"cDy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"cDH" = ( -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole, -/turf/open/floor/wood, -/area/station/service/library) -"cDQ" = ( -/obj/effect/spawner/random/vending/snackvend, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"cDX" = ( -/obj/structure/disposalpipe/segment{ - 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) -"cEh" = ( -/obj/structure/sign/warning/cold_temp/directional/north, -/obj/structure/sign/warning/xeno_mining{ - pixel_x = 29 - }, -/obj/structure/rack, -/obj/item/pickaxe, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/turf/open/floor/plating, -/area/mine/mechbay) -"cEi" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/medical_all, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"cEs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/engine, -/area/station/engineering/atmos/hfr_room) -"cEu" = ( -/obj/item/trash/sosjerky, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"cEv" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/iron, -/area/station/command/bridge) -"cEw" = ( -/turf/closed/wall, -/area/station/engineering/atmos) -"cEx" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"cEL" = ( -/obj/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/security/brig/upper) -"cEM" = ( -/obj/machinery/telecomms/broadcaster/preset_right, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"cEP" = ( -/obj/structure/closet{ - name = "Evidence Closet 3" - }, -/obj/machinery/camera/directional/north{ - c_tag = "Security - Lower Brig Evidence" - }, -/turf/open/floor/iron/dark/textured_edge, -/area/station/security/brig) -"cFb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/item/radio/intercom/prison/directional/north, -/turf/open/floor/iron/smooth_edge, -/area/station/security/lockers) -"cFc" = ( -/obj/structure/rack, -/obj/effect/spawner/random/contraband/permabrig_gear, -/obj/structure/sign/warning/cold_temp/directional/west, -/turf/open/floor/vault, -/area/station/security/prison/rec) -"cFl" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/construction) -"cFJ" = ( -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"cFT" = ( -/obj/structure/rack, -/obj/item/crowbar/red, -/obj/item/restraints/handcuffs, -/obj/item/wrench, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/medical/virology) -"cFZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"cGf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"cGl" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron/textured, -/area/station/security/brig) -"cGu" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"cGA" = ( -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"cGB" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/table, -/obj/item/rcl/pre_loaded, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"cGQ" = ( -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 8 - }, -/obj/structure/sign/poster/official/random/directional/west, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"cGY" = ( -/obj/machinery/computer/shuttle/mining, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/command/bridge) -"cGZ" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"cHb" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/office) -"cHf" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/transit_tube, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/transit_tube) -"cHh" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/service/library) -"cHl" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"cHm" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cHs" = ( -/obj/machinery/light/directional/south, -/obj/structure/table, -/obj/item/storage/belt/medical{ - pixel_y = 2 - }, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/storage/belt/medical{ - pixel_y = 2 - }, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/blood_filter, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"cHy" = ( -/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/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"cHJ" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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, -/area/station/science/genetics) -"cHO" = ( -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"cHQ" = ( -/obj/machinery/vending/wardrobe/robo_wardrobe, -/obj/machinery/button/door/directional/east{ - id = "robotics2"; - name = "Shutters Control Button"; - req_access = list("robotics") - }, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"cHR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - dir = 8; - name = "Scrubbers multi deck pipe adapter" - }, -/obj/structure/disposalpipe/trunk/multiz{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"cHY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/holding_cell) -"cHZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/cargo/storage) -"cIc" = ( -/turf/closed/wall, -/area/station/security/prison/work) -"cId" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/structure/sign/painting/library{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"cIq" = ( -/obj/machinery/computer/slot_machine{ - balance = 15; - money = 500 - }, -/obj/item/coin/iron, -/obj/item/coin/diamond, -/obj/item/coin/diamond, -/obj/item/coin/diamond, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"cIP" = ( -/obj/machinery/bookbinder, -/turf/open/floor/wood, -/area/station/service/library) -"cIU" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"cIY" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Security EVA" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/smooth, -/area/station/security/brig/upper) -"cJb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/mine/laborcamp) -"cJi" = ( -/obj/structure/sign/warning, -/turf/closed/wall/r_wall, -/area/station/security/warden) -"cJs" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"cJt" = ( -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"cJB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/icemoon, -/area/station/science/ordnance/bomb) -"cJC" = ( -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/four, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"cJI" = ( -/obj/structure/cable, -/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/east, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"cJO" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/iron/dark/textured, -/area/station/security/warden) -"cKl" = ( -/obj/effect/turf_decal/bot, -/obj/structure/sign/warning/xeno_mining{ - pixel_x = 2; - pixel_y = -32 - }, -/turf/open/floor/iron/smooth, -/area/mine/eva) -"cKp" = ( -/obj/machinery/door/airlock/glass_large{ - name = "Hydroponics" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/open/floor/iron/textured_half, -/area/station/service/hydroponics) -"cKv" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark/side, -/area/station/security/processing) -"cKD" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/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/corner{ - dir = 1 - }, -/area/station/hallway/secondary/entry) -"cKF" = ( -/obj/structure/bookcase/random/reference, -/turf/open/floor/carpet/blue, -/area/station/medical/psychology) -"cKM" = ( -/obj/structure/cable, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"cKW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/r_wall, -/area/station/science/ordnance/testlab) -"cLc" = ( -/obj/effect/turf_decal/bot_white/left, -/obj/structure/closet/crate/silvercrate, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"cLo" = ( -/obj/machinery/recharge_station, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"cLq" = ( -/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/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron/smooth_large, -/area/station/cargo/warehouse) -"cLt" = ( -/turf/closed/wall, -/area/station/command/bridge) -"cLw" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/left/directional/north{ - dir = 4; - name = "Engineering Desk"; - req_access = list("engine_equip") - }, -/obj/machinery/door/firedoor, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "Engineering Security Door" - }, -/obj/structure/desk_bell{ - pixel_x = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"cLy" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/closet/cardboard, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"cLB" = ( -/obj/machinery/computer/prisoner/gulag_teleporter_computer{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/processing) -"cLD" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Equipment Room" - }, -/obj/machinery/door/firedoor, -/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/access/all/security/brig, -/turf/open/floor/iron/dark/textured, -/area/station/security/lockers) -"cLJ" = ( -/obj/structure/table/wood, -/obj/item/paper{ - pixel_x = 8; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = 9; - pixel_y = 7 - }, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/station/service/library) -"cLM" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"cLN" = ( -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"cLT" = ( -/obj/structure/sign/warning/electric_shock/directional/south, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hop"; - name = "Privacy Shutters"; - dir = 8 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/command/heads_quarters/hop) -"cMd" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/recharge_station, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"cMe" = ( -/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, -/area/station/hallway/primary/starboard) -"cMj" = ( -/obj/structure/stairs/west, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"cMk" = ( -/turf/closed/wall/r_wall, -/area/mine/production) -"cMr" = ( -/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 = 1; - sortType = 28 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"cMt" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/service/chapel) -"cMv" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Escape" - }, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/exit/departure_lounge) -"cMy" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/folder/white, -/obj/item/pen, -/obj/item/taperecorder, -/obj/item/paper_bin{ - pixel_y = 6 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"cMA" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark/textured, -/area/station/security/warden) -"cMI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Delivery Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/shipping, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"cMJ" = ( -/obj/structure/disposalpipe/segment{ - 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, -/area/station/hallway/secondary/exit/departure_lounge) -"cMN" = ( -/obj/machinery/door/airlock/security{ - name = "Orderly's 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, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/mapping_helpers/airlock/access/all/medical/orderly, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/medical) -"cMS" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/service_all, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"cNd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"cNf" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/mine/eva) -"cNh" = ( -/obj/structure/fence/corner{ - dir = 10 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"cNm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/janitor) -"cNw" = ( -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/prison/workout) -"cND" = ( -/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/plating, -/area/station/maintenance/starboard/lesser) -"cNI" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio7"; - name = "Xenobio Pen 7 Blast Door" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"cOa" = ( -/obj/structure/sign/warning/secure_area{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM" - }, -/turf/closed/wall, -/area/station/tcommsat/computer) -"cOi" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_output{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"cOm" = ( -/obj/structure/table, -/obj/item/weldingtool, -/obj/item/crowbar, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"cOp" = ( -/obj/effect/turf_decal/tile/red/half, -/obj/structure/cable, -/turf/open/floor/iron/smooth_half, -/area/station/security/brig/upper) -"cOC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/mecha_part_fabricator, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"cOP" = ( -/obj/structure/chair{ - dir = 1; - name = "Crew Station" - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"cOZ" = ( -/obj/effect/turf_decal/siding/yellow{ - dir = 6 - }, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"cPd" = ( -/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 = 4 - }, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"cPf" = ( -/obj/effect/turf_decal/tile/red/anticorner, -/obj/machinery/requests_console/directional/north{ - anon_tips_receiver = 1; - assistance_requestable = 1; - department = "Security"; - departmentType = 5; - name = "Security Requests Console" - }, -/turf/open/floor/iron/dark/textured_corner{ - dir = 1 - }, -/area/station/security/office) -"cPp" = ( -/obj/item/stack/cable_coil{ - amount = 5 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"cPq" = ( -/obj/structure/closet/crate/coffin, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/iron/dark/smooth_half, -/area/station/service/chapel) -"cPE" = ( -/turf/open/floor/iron/smooth_half{ - dir = 1 - }, -/area/station/security/prison/garden) -"cPQ" = ( -/obj/effect/turf_decal/stripes/white/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"cQf" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison/work) -"cQh" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/customs_agent, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"cQs" = ( -/obj/structure/table, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = -2 - }, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = 2; - pixel_y = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"cQv" = ( -/obj/effect/turf_decal/tile/red/full, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/large, -/area/station/service/kitchen/diner) -"cQw" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/mine/eva) -"cQL" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"cRe" = ( -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"cRg" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark/textured, -/area/station/security/warden) -"cRo" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"cRy" = ( -/obj/structure/disposalpipe/segment, -/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/upper) -"cRE" = ( -/obj/structure/rack, -/obj/item/wirecutters, -/obj/structure/cable, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"cRF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"cRK" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - 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/command/heads_quarters/rd) -"cRO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/closed/wall, -/area/station/engineering/atmos) -"cRW" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/structure/mirror/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/locker) -"cRX" = ( -/obj/machinery/processor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"cSb" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"cSc" = ( -/obj/structure/flora/bush/flowers_pp/style_random, -/obj/structure/closet/crate{ - name = "Le Caisee D'abeille" - }, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/clothing/suit/beekeeper_suit, -/obj/item/clothing/suit/hooded/bee_costume, -/obj/item/clothing/head/beekeeper_head, -/obj/item/clothing/head/hooded/bee_hood, -/obj/item/melee/flyswatter, -/obj/item/queen_bee/bought, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"cSj" = ( -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/misc/dirt{ - initial_gas_mix = "ICEMOON_ATMOS" - }, -/area/icemoon/underground/explored) -"cSo" = ( -/obj/machinery/module_duplicator, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron, -/area/station/science/explab) -"cSu" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/carpet, -/area/station/service/theater) -"cSw" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/science/explab) -"cSx" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"cSy" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"cSE" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"cSH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"cSM" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"cSO" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"cSQ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"cSR" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/landmark/xeno_spawn, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"cTc" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 5; - height = 7; - id = "supply_home"; - name = "Cargo Bay"; - width = 12 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"cTs" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engine_equipment, -/turf/open/floor/iron, -/area/station/engineering/storage) -"cTt" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/machinery/light/directional/south, -/obj/structure/closet/l3closet/virology, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"cTv" = ( -/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/security/prison/rec) -"cTz" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/barricade/wooden, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"cTJ" = ( -/obj/structure/cable, -/obj/machinery/light_switch/directional/south{ - pixel_x = -10 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"cTK" = ( -/obj/structure/table, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/decal/cleanable/dirt, -/obj/item/stock_parts/capacitor, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"cTV" = ( -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/obj/machinery/holopad, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"cUa" = ( -/obj/item/toy/snowball{ - pixel_x = -10; - pixel_y = -6 - }, -/obj/item/toy/snowball{ - pixel_x = 6; - pixel_y = -2 - }, -/obj/item/toy/snowball{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/toy/snowball, -/obj/item/toy/plush/lizard_plushie{ - desc = "A lizard plushie that has a bit of snow on it. it feels warm."; - greyscale_colors = "#ccecff#000000"; - name = "Dances-in-Snow" - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"cUk" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark/side, -/area/station/service/chapel) -"cUt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"cUy" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"cVc" = ( -/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/wood, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/stone, -/area/mine/eva/lower) -"cVd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"cVk" = ( -/obj/item/storage/box/evidence{ - pixel_x = -10; - pixel_y = 12 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"cVq" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/rack, -/obj/effect/spawner/random/clothing/costume, -/obj/item/crowbar, -/turf/open/floor/iron, -/area/station/commons/locker) -"cVD" = ( -/obj/machinery/door/poddoor/preopen{ - id = "labor"; - name = "Labor Camp Blast Door" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/laborcamp) -"cWn" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"cWG" = ( -/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/security/processing) -"cWH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/machinery/camera/directional/west{ - c_tag = "Labor Camp Cellblock"; - network = list("labor") - }, -/turf/open/floor/iron, -/area/mine/laborcamp) -"cWJ" = ( -/obj/machinery/holopad, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"cWX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"cXc" = ( -/obj/effect/turf_decal/arrows, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"cXi" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/flora/grass/both/style_random, -/turf/open/misc/asteroid/snow/standard_air, -/area/station/hallway/secondary/exit/departure_lounge) -"cXl" = ( -/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, -/area/station/cargo/office) -"cXp" = ( -/obj/structure/bed/pod, -/obj/item/bedsheet/random, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"cXu" = ( -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/structure/railing/corner, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"cXy" = ( -/obj/structure/cable, -/turf/open/floor/iron/smooth_half{ - dir = 1 - }, -/area/station/security/prison/garden) -"cXB" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/station/commons/storage/emergency/port) -"cXV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/dark_red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/general/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"cXX" = ( -/obj/machinery/door/window/left/directional/north{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen 11"; - req_access = list("xenobiology") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"cXZ" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/wooden_tv, -/obj/structure/disposalpipe/segment, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"cYi" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/layer_manifold/pink/visible{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark_red/line, -/obj/effect/turf_decal/trimline/dark_red/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/dark_blue/mid_joiner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"cYo" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"cYq" = ( -/obj/structure/reflector/double/anchored{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"cYE" = ( -/obj/structure/disposalpipe/segment{ - 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, -/area/station/hallway/primary/starboard) -"cYL" = ( -/obj/effect/turf_decal/bot, -/obj/structure/ore_box, -/turf/open/floor/iron/dark, -/area/mine/eva) -"cYR" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/left/directional/north{ - dir = 2; - icon_state = "right"; - name = "First-Aid Supplies"; - red_alert_access = 1; - req_access = list("medical") - }, -/obj/structure/table/glass, -/obj/item/mod/module/plasma_stabilizer, -/obj/item/mod/module/thermal_regulator, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/medical/storage) -"cYT" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"cYY" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/service/chapel) -"cYZ" = ( -/obj/structure/table, -/obj/item/assembly/igniter{ - pixel_x = -8; - pixel_y = -4 - }, -/obj/item/assembly/igniter, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Primary Tool Storage" - }, -/obj/structure/cable, -/obj/machinery/requests_console/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"cZd" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/medical) -"cZm" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"cZv" = ( -/obj/machinery/holopad/secure, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/service) -"cZM" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/turretid{ - name = "AI Chamber turret control"; - pixel_x = 5; - pixel_y = -24 - }, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"cZN" = ( -/obj/structure/table/wood, -/obj/item/soap/nanotrasen, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"cZO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"cZS" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"cZT" = ( -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "Test Chamber Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"cZU" = ( -/obj/effect/turf_decal/stripes/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, -/area/station/science/robotics/mechbay) -"dab" = ( -/obj/machinery/camera/directional/west{ - c_tag = "MiniSat Antechamber"; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat/atmos"; - name = "Atmospherics Turret Control"; - pixel_x = -27; - req_access = list("minisat") - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"daf" = ( -/obj/structure/table, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"daj" = ( -/obj/machinery/door/morgue{ - name = "Confession Booth (Chaplain)"; - req_access = list("chapel_office") - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"daq" = ( -/obj/machinery/computer/crew{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"dat" = ( -/obj/structure/closet, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"dax" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"daE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"daM" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/machinery/airalarm/directional/north, -/obj/item/clothing/suit/hooded/wintercoat/engineering, -/turf/open/floor/iron/dark, -/area/station/engineering/storage_shared) -"daR" = ( -/obj/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/maintenance/aft/greater) -"daS" = ( -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"daT" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 5 - }, -/obj/structure/rack, -/obj/item/hatchet, -/obj/item/cultivator, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"daX" = ( -/obj/structure/sign/warning/gas_mask, -/turf/closed/wall, -/area/station/service/chapel) -"daZ" = ( -/obj/structure/marker_beacon/jade, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"dbb" = ( -/obj/structure/reagent_dispensers/cooking_oil, -/turf/open/floor/plating/snowed/coldroom, -/area/station/service/kitchen/coldroom) -"dbi" = ( -/obj/structure/table, -/obj/item/flashlight, -/obj/item/flashlight{ - pixel_y = 13 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"dbm" = ( -/obj/machinery/door/airlock{ - name = "Private Restroom" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/captain, -/turf/open/floor/iron/freezer, -/area/station/command/heads_quarters/captain) -"dbr" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"dbs" = ( -/obj/structure/cable, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"dbt" = ( -/obj/structure/rack, -/obj/machinery/light/directional/north, -/obj/item/hand_labeler, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/flashlight, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"dbw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"dbx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"dby" = ( -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"dbH" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison/mess) -"dbL" = ( -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"dcb" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Garden Maintenance" - }, -/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/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"dcd" = ( -/obj/structure/ladder, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"dck" = ( -/obj/structure/cable, -/turf/open/floor/carpet/red, -/area/station/security/prison/work) -"dcq" = ( -/obj/structure/bed, -/obj/machinery/airalarm/directional/north, -/obj/item/bedsheet/dorms, -/obj/machinery/button/door/directional/east{ - id = "Dorm3"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"dct" = ( -/obj/effect/turf_decal/tile/neutral{ - 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/hallway/primary/central) -"dcw" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/hollow/reinforced/middle, -/turf/open/floor/plating, -/area/station/security/prison/workout) -"dcx" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"dcz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance" - }, -/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/effect/mapping_helpers/airlock/access/all/medical/cmo, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"dcC" = ( -/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/engineering/lobby) -"dcE" = ( -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/dark_green/end{ - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"dcQ" = ( -/obj/structure/table, -/obj/item/kitchen/rollingpin, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/structure/light_construct/directional/west, -/obj/structure/sign/poster/official/random/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"dcS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/any/security/general, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"dcX" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hooded/wintercoat/security{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/clothing/suit/hooded/wintercoat/security{ - pixel_x = -8 - }, -/obj/item/clothing/shoes/winterboots/ice_boots{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/clothing/shoes/winterboots/ice_boots{ - pixel_x = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron/smooth, -/area/station/security/brig/upper) -"dcZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "EVA Storage" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/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/command/eva, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"ddd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"ddk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/circuit, -/area/station/science/robotics/mechbay) -"ddp" = ( -/obj/effect/spawner/structure/window/reinforced, -/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/security/execution/transfer) -"ddr" = ( -/obj/machinery/airalarm/directional/north, -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/wood, -/area/station/commons/dorms) -"ddu" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"ddz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/toilet) -"deg" = ( -/obj/structure/cable/layer3, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"dep" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"dez" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/pen, -/obj/item/stamp/rd{ - pixel_x = 3; - pixel_y = -2 - }, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"deN" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"deP" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Chapel Office" - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"deY" = ( -/turf/open/floor/plating, -/area/station/maintenance/fore) -"dfa" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/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/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"dfq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"dfz" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/structure/cable, -/turf/open/floor/iron/smooth_edge{ - dir = 1 - }, -/area/station/security/lockers) -"dfB" = ( -/turf/open/floor/iron/white/corner, -/area/station/hallway/primary/starboard) -"dfF" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/station/maintenance/fore/greater) -"dfQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos/storage/gas) -"dga" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"dgk" = ( -/obj/effect/spawner/random/vending/snackvend, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"dgl" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"dgm" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/computer/security/telescreen/entertainment/directional/west, -/turf/open/floor/wood, -/area/station/service/library) -"dgp" = ( -/obj/structure/rack, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/effect/spawner/random/clothing/costume, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) -"dgZ" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/airalarm/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/dark_blue/line, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"dha" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "permaouter"; - name = "Permabrig Transfer" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "perma-entrance" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark/textured, -/area/station/security/execution/transfer) -"dhk" = ( -/obj/structure/table/reinforced, -/obj/machinery/camera{ - c_tag = "Security Post - Medbay"; - dir = 9; - network = list("ss13","medbay") - }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/machinery/newscaster/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/full, -/obj/item/screwdriver, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/medical) -"dhq" = ( -/turf/closed/mineral/random/labormineral/ice, -/area/icemoon/surface/outdoors/labor_camp) -"dhJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"dhL" = ( -/obj/machinery/computer/upload/ai{ - dir = 1 - }, -/obj/machinery/flasher/directional/south{ - id = "AI" - }, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) -"dhS" = ( -/obj/machinery/door/airlock{ - name = "Permabrig Showers" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/toilet) -"dhT" = ( -/obj/structure/table, -/obj/machinery/computer/security/telescreen/interrogation{ - dir = 1; - name = "isolation room monitor"; - network = list("isolation"); - pixel_y = -32 - }, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket{ - pixel_x = 6 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Security - Permabrig Prep"; - network = list("ss13","prison"); - view_range = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron/smooth, -/area/station/security/execution/transfer) -"dhU" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark/side, -/area/station/security/processing) -"dip" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"diu" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"diC" = ( -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) -"diH" = ( -/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/plating, -/area/station/maintenance/starboard/lesser) -"diI" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/textured, -/area/mine/mechbay) -"diL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"diN" = ( -/obj/structure/closet, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison) -"diU" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/iron/white, -/area/station/medical/break_room) -"diW" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/firealarm/directional/east, -/obj/structure/table/reinforced, -/obj/item/stack/wrapping_paper{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/stack/package_wrap{ - pixel_x = -1; - pixel_y = -1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/item/dest_tagger, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"diX" = ( -/obj/structure/table/glass, -/obj/item/hatchet, -/obj/item/cultivator, -/obj/item/crowbar, -/obj/item/reagent_containers/glass/watering_can, -/obj/item/plant_analyzer, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"djr" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"djC" = ( -/obj/effect/decal/remains/human, -/obj/item/reagent_containers/food/drinks/bottle/wine{ - desc = "A fine bottle of amontillado wine. Yes, for the love of god!"; - name = "bottle of amontillado wine"; - pixel_x = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"djD" = ( -/obj/machinery/door/airlock{ - name = "Crematorium" - }, -/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, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/service/crematorium, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"djH" = ( -/obj/item/stack/sheet/animalhide/lizard{ - desc = "Landssslidessss, the landssslidesss..."; - name = "Tanks-The-Floor" - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"djO" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Foyer" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, -/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"djT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/firealarm/directional/south, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"djU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"dkb" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"dkg" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/siding/red{ - dir = 8 - }, -/obj/item/stack/spacecash/c10, -/obj/item/stack/spacecash/c1{ - pixel_y = 5 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) -"dkn" = ( -/obj/machinery/space_heater, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"dkr" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"dkI" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/sign/warning/cold_temp/directional/south, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"dkK" = ( -/obj/structure/railing/corner, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"dkO" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/chair/stool/directional/north, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"dkY" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured_edge{ - dir = 8 - }, -/area/station/security/checkpoint/auxiliary) -"dlc" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"dld" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 5; - id = "laborcamp_home"; - name = "fore bay 1"; - roundstart_template = /datum/map_template/shuttle/labour/box; - width = 9 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"dlr" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/closet/wardrobe/grey, -/turf/open/floor/iron, -/area/station/commons/locker) -"dlt" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/obj/structure/marker_beacon/burgundy, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"dlB" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album/chapel, -/obj/structure/noticeboard/directional/west, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"dlK" = ( -/obj/machinery/computer/security{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/textured, -/area/station/security/office) -"dlR" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/construction) -"dlT" = ( -/obj/structure/cable, -/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/south, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"dlV" = ( -/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/decal/cleanable/dirt/dust, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"dmj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/button/door/directional/east{ - id = "xenobio11"; - layer = 4; - name = "Xenobio Pen 11 Blast DOors"; - req_access = list("xenobiology") - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"dms" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"dmt" = ( -/obj/structure/ladder, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"dmx" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/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, -/area/station/commons/storage/tools) -"dmC" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "Research Division" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"dmD" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/structure/closet/secure_closet/bar, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/service/bar) -"dmG" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/coin/plasma, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"dmI" = ( -/obj/machinery/chem_master, -/obj/effect/turf_decal/tile/yellow/full, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/pharmacy) -"dmL" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"dmO" = ( -/obj/effect/turf_decal/tile/brown{ - 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 = 10 - }, -/turf/open/floor/iron/white, -/area/station/medical/break_room) -"dmR" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Engineering External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "Engineering-External" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron/smooth, -/area/station/engineering/lobby) -"dmU" = ( -/obj/structure/cable, -/obj/structure/table, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"dmZ" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"dnc" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/airalarm/directional/east, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"dnf" = ( -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"dng" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Research Directors Observation Deck"; - network = list("ss13","rd") - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"dnk" = ( -/obj/structure/dresser, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"dnq" = ( -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"dnD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/hallway/secondary/entry) -"dnL" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"dnM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"dnX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/lockers) -"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{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"doq" = ( -/obj/machinery/flasher/directional/north{ - id = "transferflash" - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/light/small/directional/west, -/obj/item/radio/intercom/prison/directional/west, -/turf/open/floor/iron/dark/textured, -/area/station/security/execution/transfer) -"dos" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 4 - }, -/turf/closed/wall, -/area/station/maintenance/starboard/upper) -"doG" = ( -/obj/structure/rack, -/obj/machinery/light/small/directional/north, -/obj/machinery/light_switch/directional/north, -/obj/item/radio/off{ - pixel_y = 4 - }, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"doJ" = ( -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"doK" = ( -/obj/machinery/button/door/directional/east{ - id = "xenobio8"; - layer = 4; - name = "Xenobio Pen 8 Blast DOors"; - req_access = list("xenobiology") - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"doT" = ( -/obj/item/hand_labeler, -/obj/item/assembly/timer, -/obj/structure/table, -/turf/open/floor/wood, -/area/station/command/meeting_room) -"dpi" = ( -/obj/machinery/light/directional/south, -/turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) -"dpq" = ( -/obj/structure/tank_holder/extinguisher, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"dpr" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/obj/effect/spawner/random/food_or_drink/donkpockets, -/turf/open/floor/iron/white, -/area/station/medical/break_room) -"dpB" = ( -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"dpC" = ( -/obj/structure/closet/crate/bin, -/obj/effect/spawner/random/contraband/prison, -/obj/item/trash/sosjerky, -/obj/item/trash/boritos, -/obj/item/trash/can, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"dpH" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"dqd" = ( -/obj/machinery/iv_drip, -/obj/structure/mirror/directional/north{ - icon_state = "mirror_broke" - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"dqg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/secure_area/directional/south, -/obj/structure/sign/warning/cold_temp, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"dqi" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"dqs" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"dqw" = ( -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"dqx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/laborcamp) -"dqR" = ( -/obj/machinery/computer/rdconsole, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/iron, -/area/station/command/bridge) -"dqX" = ( -/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 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"dre" = ( -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"drh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/station/engineering/atmos/pumproom) -"drm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/upper) -"drr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"drs" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"drt" = ( -/obj/effect/landmark/event_spawn, -/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) -"dry" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/circuit, -/area/station/science/robotics/mechbay) -"drE" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/common/cryopods) -"drG" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron, -/area/station/cargo/office) -"drH" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"drJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"drP" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/mine/laborcamp/security) -"dsj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/carpet/red, -/area/station/security/prison/work) -"dsk" = ( -/obj/machinery/computer/station_alert{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/ce{ - dir = 4; - pixel_x = -24; - pixel_y = -1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"dsl" = ( -/obj/machinery/computer/rdservercontrol{ - dir = 1 - }, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/iron/dark, -/area/station/science/server) -"dsn" = ( -/obj/machinery/door/window/left/directional/west{ - name = "Airlock" - }, -/turf/open/floor/iron/dark, -/area/mine/mechbay) -"dso" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"dst" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/iron, -/area/station/construction) -"dsA" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/atmospherics/components/tank/air{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/medical/virology) -"dsI" = ( -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/fore/lesser) -"dsO" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"dsR" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/brigdoor{ - req_access = list("brig") - }, -/obj/effect/mapping_helpers/trapdoor_placer, -/turf/open/floor/glass/reinforced, -/area/station/security/courtroom) -"dsT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Chemistry Lab East"; - dir = 6; - network = list("ss13","medbay") - }, -/obj/structure/table/reinforced, -/obj/machinery/reagentgrinder{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = 3; - pixel_y = -8 - }, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -3; - pixel_y = -8 - }, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = -6 - }, -/obj/item/reagent_containers/dropper{ - pixel_y = -7 - }, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/medical/chemistry) -"dsU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/cargo/qm) -"dtb" = ( -/obj/structure/bookcase/random/reference, -/turf/open/floor/wood, -/area/station/service/library) -"dth" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Power Storage" - }, -/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/engine_equipment, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"dtr" = ( -/obj/machinery/computer/med_data, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"dty" = ( -/obj/structure/table, -/obj/effect/spawner/random/food_or_drink/donkpockets, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"dtC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"dtE" = ( -/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; - sortType = 10 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"dtU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"dtY" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/camera/directional/north, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/hallway/secondary/entry) -"duh" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/transit_tube) -"duo" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"duE" = ( -/obj/machinery/atmospherics/components/binary/tank_compressor{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"duS" = ( -/obj/machinery/door/airlock{ - name = "Labor Camp Library" - }, -/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/mine/laborcamp) -"duV" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"duW" = ( -/obj/effect/spawner/random/structure/crate, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"duZ" = ( -/obj/machinery/door/airlock/engineering{ - name = "Utilities Closet" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/mine/eva) -"dvf" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/plating, -/area/station/construction) -"dvh" = ( -/obj/structure/table/wood, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/noticeboard/directional/north, -/obj/item/flashlight/lantern, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"dvi" = ( -/obj/structure/flora/grass/both/style_random, -/obj/structure/railing, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"dvl" = ( -/obj/machinery/camera/motion/directional/north{ - c_tag = "Armory - External" - }, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"dvI" = ( -/turf/open/openspace/icemoon/keep_below, -/area/station/security/execution/education) -"dvW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 23 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/science/genetics) -"dvY" = ( -/obj/structure/flora/tree/dead/style_random, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"dwv" = ( -/obj/machinery/computer/telecomms/server{ - dir = 4; - network = "tcommsat" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"dww" = ( -/obj/structure/disposalpipe/segment{ - 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/plating, -/area/station/maintenance/starboard/aft) -"dwS" = ( -/obj/machinery/door_timer{ - id = "Cell 3"; - name = "Cell 3"; - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/textured, -/area/station/security/brig) -"dxg" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/item/stack/cable_coil, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"dxh" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/wood, -/area/station/commons/dorms) -"dxj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/commons/locker) -"dxm" = ( -/obj/structure/rack, -/obj/item/clothing/suit/toggle/labcoat, -/obj/effect/spawner/random/clothing/gloves, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"dxq" = ( -/obj/structure/table, -/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/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"dxs" = ( -/obj/structure/closet/secure_closet/personal{ - anchored = 1 - }, -/obj/item/clothing/gloves/boxing/green, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"dxA" = ( -/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/engineering/lobby) -"dxK" = ( -/turf/closed/wall/r_wall, -/area/station/command/meeting_room) -"dxP" = ( -/obj/machinery/light_switch/directional/west, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/command/gateway) -"dxU" = ( -/obj/effect/turf_decal/tile/yellow{ - 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, -/area/station/hallway/primary/aft) -"dxV" = ( -/obj/structure/rack, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"dxW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"dyf" = ( -/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/security/courtroom) -"dyE" = ( -/obj/structure/chair/pew/right{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/starboard) -"dyN" = ( -/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/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"dyQ" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"dyV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/light/directional/east, -/obj/structure/closet/firecloset, -/turf/open/floor/iron/white/side{ - dir = 10 - }, -/area/station/science/research) -"dzg" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "Biohazard Containment Door" - }, -/obj/effect/turf_decal/bot, -/obj/structure/noticeboard/directional/north, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/science/research) -"dzi" = ( -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"dzl" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"dzy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"dzJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"dzL" = ( -/obj/machinery/newscaster/directional/north, -/obj/structure/closet/firecloset, -/turf/open/floor/iron/dark, -/area/mine/eva/lower) -"dAa" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/interrogation) -"dAg" = ( -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"dAi" = ( -/obj/structure/tank_dispenser{ - pixel_x = -1 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics Monitoring" - }, -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"dAm" = ( -/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/engineering/lobby) -"dAu" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"dAx" = ( -/obj/machinery/hydroponics/soil{ - pixel_y = 8 - }, -/obj/item/cultivator/rake, -/turf/open/floor/grass, -/area/station/maintenance/starboard/aft) -"dAB" = ( -/obj/machinery/door/window/brigdoor{ - name = "Research Director Observation"; - req_access = list("rd") - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"dAO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"dAP" = ( -/obj/structure/cable, -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"dAU" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"dAZ" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison/visit) -"dBh" = ( -/obj/machinery/telecomms/server/presets/medical, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"dBj" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 4" - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"dBw" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2{ - dir = 1 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/mine/laborcamp/security) -"dBx" = ( -/obj/machinery/mineral/equipment_vendor, -/obj/machinery/light/small/directional/south, -/obj/machinery/light_switch/directional/south, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/mine/production) -"dBJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"dBK" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/firealarm/directional/south, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage/gas) -"dBQ" = ( -/obj/machinery/camera/directional/north{ - c_tag = "MiniSat AI Chamber South"; - network = list("aicore") - }, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"dBY" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron/smooth, -/area/mine/eva/lower) -"dBZ" = ( -/turf/open/floor/iron, -/area/station/cargo/sorting) -"dCk" = ( -/obj/effect/turf_decal/siding/wood{ - 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 = 4 - }, -/obj/machinery/duct, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"dCo" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/closet/secure_closet/chemical, -/obj/item/radio/headset/headset_med, -/obj/item/radio/headset/headset_med, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"dCs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/large, -/area/station/medical/medbay/lobby) -"dCy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"dCA" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/random/maintenance/two, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"dCF" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/commons/fitness) -"dCL" = ( -/obj/structure/disposalpipe/trunk/multiz{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"dDm" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/science/explab) -"dDp" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 1" - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"dDt" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"dDw" = ( -/turf/closed/wall, -/area/station/medical/surgery/fore) -"dDy" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/dark_blue/corner, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"dDC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - name = "Supply multi deck pipe adapter" - }, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"dDQ" = ( -/obj/structure/table, -/obj/machinery/cell_charger{ - pixel_y = 3 - }, -/obj/item/stock_parts/cell/high{ - pixel_y = 3 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/textured, -/area/mine/mechbay) -"dEf" = ( -/obj/effect/turf_decal/trimline/blue/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"dEg" = ( -/obj/effect/turf_decal/trimline/blue/end, -/obj/effect/turf_decal/trimline/blue/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/end, -/obj/effect/turf_decal/trimline/blue/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"dEi" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/maintenance/aft/greater) -"dEv" = ( -/obj/machinery/airalarm/directional/south, -/turf/open/floor/wood, -/area/station/security/courtroom) -"dEz" = ( -/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, -/area/station/security/prison/rec) -"dEB" = ( -/obj/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/department/crew_quarters/bar) -"dEC" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rnd2"; - name = "Research Lab Shutters"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron, -/area/station/science/lab) -"dEI" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - 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, -/area/station/command/bridge) -"dEQ" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Public Mining Ladder" - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/commons/storage/mining) -"dEV" = ( -/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/iron, -/area/station/hallway/primary/starboard) -"dFj" = ( -/turf/open/floor/iron/white/side{ - dir = 9 - }, -/area/station/science/research) -"dFo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"dFp" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Air to Mix" - }, -/obj/effect/turf_decal/siding/wideplating{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"dFt" = ( -/turf/closed/wall, -/area/station/hallway/secondary/exit/departure_lounge) -"dFC" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"dFD" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"dFF" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"dFG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"dFP" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"dFQ" = ( -/obj/structure/sign/poster/official/do_not_question{ - pixel_y = 32 - }, -/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/cable, -/turf/open/floor/iron, -/area/mine/laborcamp) -"dFT" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/table, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"dFW" = ( -/turf/open/floor/iron/white/side, -/area/station/science/research) -"dFX" = ( -/obj/effect/turf_decal/trimline/red/filled/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/side{ - dir = 5 - }, -/area/station/security/prison/safe) -"dFZ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"dGd" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"dGe" = ( -/obj/effect/decal/cleanable/food/egg_smudge, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"dGK" = ( -/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/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"dGO" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/commons/fitness) -"dGP" = ( -/obj/machinery/light/small/directional/east, -/turf/open/openspace, -/area/station/service/bar/atrium) -"dGU" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Captain's Office Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/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/command/captain, -/turf/open/floor/plating, -/area/station/maintenance/central/lesser) -"dHw" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark/textured_edge, -/area/station/security/prison) -"dHx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"dHG" = ( -/obj/structure/chair/comfy/beige{ - dir = 1 - }, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"dHJ" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"dHK" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/bluespace_vendor/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"dIb" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Air Outlet Pump" - }, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{ - dir = 5 - }, -/turf/open/floor/iron/white/corner, -/area/station/engineering/atmos) -"dIe" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock{ - name = "Service Hall" - }, -/obj/machinery/door/firedoor, -/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/service/general, -/turf/open/floor/plastic, -/area/station/hallway/secondary/service) -"dIl" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/bot_red, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"dIy" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/commons/storage/mining) -"dIA" = ( -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/white/side{ - dir = 9 - }, -/area/station/science/xenobiology) -"dID" = ( -/obj/machinery/biogenerator, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"dIS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "Xenobio Pen 3 Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/sign/warning/electric_shock, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"dIZ" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"dJf" = ( -/turf/closed/wall, -/area/station/ai_monitored/command/storage/eva) -"dJr" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/frame/computer, -/obj/item/stack/cable_coil/five, -/turf/open/floor/iron, -/area/mine/living_quarters) -"dJx" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "Xenobio Pen 3 Blast Door" - }, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"dJy" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ - dir = 8 - }, -/obj/machinery/air_sensor/ordnance_freezer_chamber, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"dJX" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/item/paper_bin, -/obj/item/pen/blue{ - pixel_y = 5 - }, -/obj/item/pen, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"dKh" = ( -/obj/machinery/light_switch/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"dKt" = ( -/obj/machinery/door/airlock/external, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "chem-morgue-airlock" - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/medical/morgue) -"dKy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "Secure Gate"; - name = "Brig Shutters" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/brig) -"dKC" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/service/lawoffice) -"dKK" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"dKP" = ( -/obj/effect/turf_decal/tile/red/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 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/processing) -"dKS" = ( -/obj/structure/sign/warning/electric_shock/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/red/line, -/obj/effect/turf_decal/trimline/red/line{ - dir = 1 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/range) -"dKW" = ( -/obj/structure/sign/directions/security{ - dir = 1; - pixel_x = 32; - pixel_y = 36 - }, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_x = 32; - pixel_y = 28 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"dLe" = ( -/obj/structure/chair/stool/directional/west, -/turf/open/floor/wood/large, -/area/mine/eva/lower) -"dLf" = ( -/turf/closed/wall/r_wall, -/area/station/cargo/storage) -"dLk" = ( -/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" - }, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/obj/effect/turf_decal/siding/white/end{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/bar) -"dLH" = ( -/obj/structure/fence{ - dir = 1 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"dLN" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/mine/laborcamp) -"dLR" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/food_or_drink/donkpockets, -/turf/open/floor/iron, -/area/mine/laborcamp) -"dMp" = ( -/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/aft) -"dMq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"dMv" = ( -/obj/item/clothing/gloves/color/rainbow, -/obj/item/clothing/head/soft/rainbow, -/obj/item/clothing/shoes/sneakers/rainbow, -/obj/item/clothing/under/color/rainbow, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"dMF" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/flora/bush/flowers_br/style_random, -/turf/open/misc/asteroid/snow/standard_air, -/area/station/hallway/secondary/exit/departure_lounge) -"dMH" = ( -/obj/machinery/light/directional/north, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"dMO" = ( -/obj/structure/closet/secure_closet/freezer/kitchen/maintenance, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"dMS" = ( -/turf/closed/wall, -/area/station/maintenance/department/crew_quarters/bar) -"dMX" = ( -/obj/structure/chair{ - dir = 1; - name = "Engineering Station" - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"dNd" = ( -/turf/open/floor/iron, -/area/station/science/ordnance/testlab) -"dNh" = ( -/obj/vehicle/ridden/wheelchair{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/end{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/item/radio/intercom/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/large, -/area/station/medical/medbay/aft) -"dNt" = ( -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"dNA" = ( -/turf/open/floor/iron/smooth, -/area/mine/mechbay) -"dNB" = ( -/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/grimy, -/area/station/service/chapel/office) -"dNC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix to Space" - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"dNG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) -"dNH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/directional/west{ - c_tag = "Security - Permabrig Chapel"; - network = list("ss13","prison") - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/mess) -"dNN" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"dOo" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"dOq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/mine/storage) -"dOw" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"dOC" = ( -/obj/structure/closet/wardrobe/mixed, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"dOF" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/textured, -/area/station/security/brig) -"dOH" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"dOK" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"dOQ" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/structure/table/wood, -/mob/living/carbon/human/species/monkey/punpun, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/station/service/bar) -"dOR" = ( -/turf/open/floor/plating, -/area/station/maintenance/fore/greater) -"dOY" = ( -/obj/effect/turf_decal/tile/red/half, -/obj/effect/spawner/random/vending/snackvend, -/turf/open/floor/iron/smooth_half, -/area/station/security/brig/upper) -"dOZ" = ( -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/neutral/full, -/obj/machinery/requests_console/auto_name/directional/south, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"dPh" = ( -/obj/structure/cable, -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/firealarm/directional/south{ - pixel_x = 28; - pixel_y = -58 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"dPj" = ( -/obj/structure/ladder, -/obj/effect/turf_decal/tile/neutral/diagonal_centre, -/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, -/turf/open/floor/iron/dark/diagonal, -/area/station/engineering/atmos/storage) -"dPn" = ( -/obj/structure/rack, -/obj/item/pickaxe{ - pixel_x = 5 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"dPy" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Xenobiology Kill Chamber"; - network = list("ss13","rd","xeno") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron/freezer, -/area/station/science/xenobiology) -"dPP" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"dPT" = ( -/obj/machinery/door/airlock/maintenance, -/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/aft) -"dQd" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mining Station Maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/maintenance/department/cargo) -"dQB" = ( -/obj/item/storage/secure/safe/directional/south, -/obj/machinery/light/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/closet/secure_closet/barber, -/turf/open/floor/iron, -/area/service/salon) -"dQF" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/vending/cigarette, -/obj/machinery/camera{ - c_tag = "Service-Bar 3"; - dir = 9 - }, -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron/grimy, -/area/station/commons/lounge) -"dQN" = ( -/obj/effect/spawner/random/trash/grille_or_waste, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"dQO" = ( -/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 - }, -/obj/structure/sign/warning/cold_temp/directional/south, -/turf/open/floor/iron/white, -/area/station/science/research) -"dQZ" = ( -/obj/machinery/door/window/left/directional/north{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen 9"; - req_access = list("xenobiology") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"dRk" = ( -/obj/effect/turf_decal/bot, -/obj/structure/ore_box, -/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/mine/laborcamp) -"dRm" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"dRy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"dRz" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"dRM" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/red/line, -/turf/open/floor/iron/dark/textured, -/area/station/security/range) -"dSl" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/storage) -"dSm" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/safe) -"dSs" = ( -/obj/item/seeds/apple, -/obj/item/seeds/banana, -/obj/item/seeds/cocoapod, -/obj/item/seeds/grape, -/obj/item/seeds/orange, -/obj/item/seeds/sugarcane, -/obj/item/seeds/wheat, -/obj/item/seeds/watermelon, -/obj/structure/table/glass, -/obj/item/seeds/tower, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"dSC" = ( -/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) -"dSI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Gas to Chamber" - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"dSJ" = ( -/obj/machinery/flasher/directional/north{ - id = "visitorflash" - }, -/obj/machinery/camera/directional/north{ - c_tag = "Security - Visitation North"; - network = list("ss13","prison") - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"dSO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"dSX" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"dTm" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/mob_spawn/corpse/human/skeleton, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"dTq" = ( -/obj/structure/fireplace, -/turf/open/floor/wood, -/area/station/maintenance/space_hut/cabin) -"dTr" = ( -/obj/structure/chair{ - dir = 8; - name = "Judge" - }, -/obj/machinery/light/directional/east, -/turf/open/floor/wood, -/area/station/security/courtroom) -"dTs" = ( -/turf/open/floor/iron/smooth, -/area/mine/eva) -"dTu" = ( -/obj/structure/table, -/obj/item/stock_parts/scanning_module{ - pixel_x = -5; - pixel_y = 7 - }, -/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 - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/small/directional/east, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/cargo/drone_bay) -"dTv" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Chapel External Airlock"; - opacity = 0 - }, -/obj/structure/sign/warning/cold_temp/directional/north, -/obj/structure/sign/warning/gas_mask/directional/south{ - desc = "A sign that warns of dangerous gasses in the air, instructing you to wear internals." - }, -/turf/open/floor/iron, -/area/station/service/chapel) -"dTF" = ( -/obj/machinery/conveyor{ - dir = 10; - id = "mining_internal" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/mine/production) -"dUd" = ( -/obj/structure/closet/secure_closet/warden, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"dUe" = ( -/obj/structure/disposalpipe/segment{ - 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/cafeteria, -/area/station/command/heads_quarters/rd) -"dUh" = ( -/obj/structure/rack, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/effect/spawner/random/clothing/costume, -/obj/effect/spawner/random/clothing/costume, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) -"dUn" = ( -/obj/machinery/shieldgen, -/turf/open/floor/plating, -/area/station/engineering/engine_smes) -"dUv" = ( -/obj/structure/rack, -/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/mask/gas, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/item/clothing/glasses/meson/engine/tray, -/obj/item/clothing/glasses/meson/engine/tray, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos) -"dUG" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Showers" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/freezer, -/area/mine/laborcamp) -"dUK" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Mining Dock" - }, -/obj/machinery/computer/security/mining, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"dUL" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint1" - }, -/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/fore) -"dUN" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/table, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"dUO" = ( -/turf/closed/wall, -/area/station/security/brig) -"dUW" = ( -/obj/machinery/light_switch/directional/south, -/turf/open/floor/wood, -/area/station/security/courtroom) -"dVq" = ( -/obj/machinery/space_heater, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"dVt" = ( -/obj/structure/chair/stool/directional/west, -/turf/open/floor/iron/checker, -/area/station/science/lab) -"dVw" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/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, -/area/station/medical/medbay/aft) -"dVJ" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/engineering/lobby) -"dVN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"dWf" = ( -/obj/item/trash/pistachios, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"dWn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/camera/directional/north{ - c_tag = "Security - Upper Permabrig Cafeteria"; - network = list("ss13","prison") - }, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison) -"dWu" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/iron/cafeteria{ - dir = 8 - }, -/area/station/science/research) -"dWB" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/chair/stool/directional/west, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"dWK" = ( -/obj/machinery/hydroponics/soil, -/obj/item/shovel/spade, -/turf/open/floor/grass, -/area/station/security/prison/garden) -"dWL" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light_switch/directional/west, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"dWO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - name = "Locker Room Maintenance" - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/port/greater) -"dWX" = ( -/obj/machinery/modular_computer/console/preset/engineering, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"dWZ" = ( -/obj/structure/disposalpipe/segment{ - 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/plating, -/area/station/maintenance/port/aft) -"dXb" = ( -/obj/structure/closet/crate/coffin, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/toy/figure/chaplain, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"dXi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"dXn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"dXF" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"dXP" = ( -/obj/effect/turf_decal/trimline/yellow/filled/shrink_cw{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"dXR" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Quartermaster's Office" - }, -/obj/machinery/status_display/supply{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/table, -/obj/item/coin/silver, -/obj/item/computer_hardware/hard_drive/portable/quartermaster, -/obj/item/computer_hardware/hard_drive/portable/quartermaster, -/obj/item/computer_hardware/hard_drive/portable/quartermaster, -/obj/item/clipboard, -/turf/open/floor/iron, -/area/station/cargo/qm) -"dYn" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"dYr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"dYt" = ( -/turf/open/floor/engine/cult, -/area/station/service/library) -"dYI" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark_green/arrow_ccw, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"dYO" = ( -/obj/structure/rack, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"dYR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/locker) -"dYX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"dZB" = ( -/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/commons/fitness) -"dZM" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"dZN" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"dZS" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"dZW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/prison) -"dZX" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"eaa" = ( -/obj/structure/disposalpipe/segment{ - 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/side{ - dir = 4 - }, -/area/station/science/research) -"ead" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Engineering Supermatter Starboard"; - network = list("ss13","engine") - }, -/obj/structure/cable, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"eaq" = ( -/obj/structure/table, -/obj/item/paper_bin/carbon, -/obj/item/pen, -/obj/structure/cable, -/turf/open/floor/carpet/red, -/area/station/security/prison/work) -"eaB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"eaR" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock) -"ebb" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"ebd" = ( -/obj/structure/flora/rock/pile/icy/style_random, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"ebq" = ( -/obj/effect/landmark/start/clown, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/station/service/theater) -"ebr" = ( -/turf/open/openspace, -/area/station/engineering/atmos/storage) -"ebv" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron/smooth, -/area/mine/mechbay) -"ebw" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"ebB" = ( -/turf/open/misc/dirt{ - initial_gas_mix = "ICEMOON_ATMOS" - }, -/area/icemoon/underground/explored) -"ebX" = ( -/obj/structure/fence/corner{ - dir = 1 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"ecs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"ecw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/door/airlock/research/glass{ - name = "Genetics Lab" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/genetics, -/turf/open/floor/iron, -/area/station/science/genetics) -"ecF" = ( -/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/fore/greater) -"ecJ" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"ecR" = ( -/obj/machinery/recharge_station, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/mine/eva/lower) -"ecW" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/fitness) -"ecZ" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/machinery/reagentgrinder{ - pixel_y = 9 - }, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"edc" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) -"edd" = ( -/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/cyclelink_helper_multi{ - cycle_id = "sci-med-passthrough" - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"edn" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/machinery/ore_silo, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"edv" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, -/obj/structure/cable, -/turf/open/floor/iron/large, -/area/station/engineering/atmos/storage/gas) -"edT" = ( -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"edW" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"eeF" = ( -/obj/item/cigbutt/cigarbutt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"eeK" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/rack, -/obj/item/shovel{ - pixel_x = -5 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"eeO" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"efa" = ( -/obj/machinery/mechpad, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/textured, -/area/mine/mechbay) -"efi" = ( -/obj/structure/bed/dogbed, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"efk" = ( -/obj/structure/cable, -/turf/open/floor/iron/white/side, -/area/station/science/explab) -"efn" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/command{ - name = "Command Tool Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/eva, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"efx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/red/line, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/range) -"efE" = ( -/obj/structure/reflector/box/anchored{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"efH" = ( -/obj/structure/table/glass, -/obj/item/food/grown/harebell{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/food/grown/harebell{ - pixel_y = 3 - }, -/obj/item/food/grown/harebell, -/turf/open/floor/iron/chapel, -/area/station/service/chapel) -"efK" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/machinery/iv_drip, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"efM" = ( -/obj/structure/closet/crate/grave, -/turf/open/misc/dirt{ - initial_gas_mix = "ICEMOON_ATMOS" - }, -/area/icemoon/underground/explored) -"efP" = ( -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"efU" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"efY" = ( -/obj/structure/table, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/item/assembly/prox_sensor, -/obj/item/assembly/prox_sensor, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"ega" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"egf" = ( -/turf/closed/wall/r_wall, -/area/station/science/ordnance/burnchamber) -"egm" = ( -/obj/structure/table, -/obj/item/restraints/handcuffs, -/obj/item/assembly/timer, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/security/office) -"ego" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/mine/eva/lower) -"egp" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"egz" = ( -/obj/structure/table/wood, -/obj/item/radio/intercom/prison, -/turf/open/floor/wood, -/area/station/security/prison/rec) -"egF" = ( -/obj/structure/filingcabinet, -/obj/item/folder/documents, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"egG" = ( -/obj/machinery/light/warm/directional/west, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/rec) -"egK" = ( -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"egR" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"egT" = ( -/obj/machinery/airalarm/directional/north, -/obj/structure/rack, -/obj/item/controller, -/obj/item/compact_remote, -/obj/item/compact_remote, -/turf/open/floor/iron/white/corner, -/area/station/science/explab) -"egV" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/lobby) -"egZ" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/newscaster/directional/south, -/obj/machinery/light/directional/south, -/obj/machinery/computer/department_orders/science{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/lab) -"ehd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"ehm" = ( -/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/freezer, -/area/station/commons/toilet) -"ehp" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/locker) -"ehy" = ( -/obj/machinery/keycard_auth/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/command/heads_quarters/hos) -"ehA" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Canteen" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/textured_half, -/area/station/hallway/primary/starboard) -"ehJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"ehO" = ( -/obj/machinery/door/window/brigdoor/right/directional/south{ - dir = 8; - name = "Observation Deck"; - req_access = list("xenobiology") - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"ehP" = ( -/obj/structure/sign/warning/cold_temp, -/turf/closed/wall/r_wall, -/area/station/engineering/storage_shared) -"ehR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"ehZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/table/wood, -/obj/effect/spawner/random/entertainment/toy_figure, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/security/prison/rec) -"eia" = ( -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison) -"eic" = ( -/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/execution/transfer) -"eie" = ( -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"eig" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/item/restraints/handcuffs{ - pixel_y = 5 - }, -/obj/item/restraints/handcuffs{ - pixel_y = 1 - }, -/obj/item/restraints/handcuffs{ - pixel_x = 1; - pixel_y = -4 - }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/camera/directional/south{ - c_tag = "Security - Holding Cells" - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/smooth, -/area/station/security/holding_cell) -"eit" = ( -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"eiu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/computer/shuttle/arrivals/recall, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"eix" = ( -/obj/structure/table, -/obj/item/radio{ - pixel_x = -3 - }, -/obj/item/pickaxe, -/obj/item/flashlight, -/obj/machinery/light/small/directional/north, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/medical/morgue) -"eiI" = ( -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"eiJ" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/machinery/status_display/evac/directional/north, -/obj/item/clothing/suit/hooded/wintercoat/engineering, -/turf/open/floor/iron/dark, -/area/station/engineering/storage_shared) -"eiU" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/mine/eva) -"eiY" = ( -/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) -"ejn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"ejq" = ( -/obj/structure/chair/comfy/brown{ - dir = 1 - }, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"ejs" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/effect/turf_decal/trimline/blue/line, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/maintenance/fore/greater) -"ejO" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"ejQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/turf/open/floor/plating, -/area/station/engineering/lobby) -"ejW" = ( -/obj/structure/chair/comfy/beige{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"ejX" = ( -/turf/open/floor/plating, -/area/station/security/prison/safe) -"ejZ" = ( -/obj/structure/sink{ - pixel_y = 20 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"eke" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/structure/closet/mini_fridge{ - name = "mini-fridge" - }, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"ekk" = ( -/obj/structure/railing/corner, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/iron/dark/side, -/area/mine/eva) -"ekn" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/stack/sheet/mineral/plasma, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"ekq" = ( -/obj/effect/spawner/random/structure/crate, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"elf" = ( -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/obj/machinery/button/door/directional/north{ - id = "rnd"; - name = "Shutters Control Button"; - pixel_x = 7; - req_access = list("research") - }, -/turf/open/floor/iron/checker, -/area/station/science/lab) -"elk" = ( -/obj/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/side{ - dir = 8 - }, -/area/station/science/explab) -"elu" = ( -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"elw" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/upper) -"elA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/bluespace_vendor/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"emg" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/obj/machinery/chem_master/condimaster{ - desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; - name = "SapMaster XP" - }, -/obj/machinery/requests_console/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"emi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron, -/area/station/construction) -"emp" = ( -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/hallway/primary/starboard) -"emL" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"emM" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - dir = 8; - id = "Cell 1"; - name = "Cell 1" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/smooth_half{ - dir = 1 - }, -/area/station/security/brig) -"emO" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"ena" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 10 - }, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"enq" = ( -/obj/machinery/doppler_array{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/ordnance/testlab) -"ens" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/plating, -/area/station/engineering/lobby) -"enE" = ( -/obj/machinery/light/directional/south, -/obj/structure/sign/warning/electric_shock/directional/south, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"enG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/computer/department_orders/service{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/service) -"enR" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"enU" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/spawner/random/entertainment/arcade{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"eop" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/camera/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"eoq" = ( -/obj/structure/stairs/south{ - dir = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"eos" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"eov" = ( -/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/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"eoD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 6 - }, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"eoH" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "N2 to Airmix" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"eoJ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/commons/storage/mining) -"eoL" = ( -/obj/structure/table, -/obj/item/taperecorder, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"epd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"epB" = ( -/obj/structure/chair/pew/left{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"epH" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/science/explab) -"epW" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_x = 5; - pixel_y = 2 - }, -/obj/item/trapdoor_remote/preloaded{ - pixel_x = -5; - pixel_y = 2 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"epX" = ( -/obj/structure/table/wood, -/obj/item/toy/cards/deck{ - pixel_y = 4 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/carpet, -/area/station/service/theater) -"eqc" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"eqj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/cafeteria{ - dir = 8 - }, -/area/station/science/ordnance/office) -"eqk" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 16 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"eqm" = ( -/obj/machinery/computer/atmos_control/oxygen_tank{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"eqp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"equ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/large, -/area/station/hallway/primary/starboard) -"eqH" = ( -/obj/machinery/camera{ - c_tag = "Chapel North"; - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"eqI" = ( -/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/security/brig/upper) -"eqJ" = ( -/obj/machinery/power/solar_control{ - id = "auxsolareast"; - name = "Starboard Bow Solar Control" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"eqL" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"eqN" = ( -/obj/structure/fence/door, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"eqR" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"eqS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/warning{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/range) -"eqU" = ( -/obj/machinery/firealarm/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/wood, -/area/station/command/heads_quarters/captain) -"eqV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"eri" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/chief_engineer, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"erk" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"ero" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/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, -/area/station/science/genetics) -"erD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/mineral/plasma{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/stack/sheet/mineral/plasma{ - pixel_x = -3; - pixel_y = 9 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"erE" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/iron, -/area/station/commons/locker) -"erJ" = ( -/obj/structure/table, -/obj/item/lipstick/random, -/turf/open/floor/iron, -/area/station/commons/locker) -"erY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet/blue, -/area/station/security/prison/work) -"erZ" = ( -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/command/teleporter) -"esj" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"esn" = ( -/obj/effect/landmark/start/bartender, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"eso" = ( -/obj/machinery/telecomms/receiver/preset_left, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"esu" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"esC" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"esE" = ( -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"esF" = ( -/obj/structure/flora/bush/lavendergrass/style_random, -/turf/open/floor/grass, -/area/station/maintenance/starboard/aft) -"etw" = ( -/obj/effect/turf_decal/stripes/white/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"etA" = ( -/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{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"etB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/brown/visible{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"etH" = ( -/obj/structure/closet/crate/coffin, -/turf/open/floor/iron/dark/smooth_half, -/area/station/service/chapel) -"etL" = ( -/obj/structure/curtain/cloth, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) -"etO" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room" - }, -/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/engineering/construction, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"etV" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/door/airlock{ - name = "Service Hall" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/service/general, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"euc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"euf" = ( -/obj/structure/bed{ - dir = 4 - }, -/obj/item/bedsheet/captain{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"eum" = ( -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/item/kirbyplants/dead, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"euq" = ( -/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/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"euw" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/iron/smooth, -/area/mine/eva) -"euF" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Maintenance" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"euR" = ( -/obj/structure/ladder{ - name = "chemistry lab access" - }, -/obj/effect/turf_decal/tile/yellow/full, -/obj/effect/turf_decal/stripes/end, -/obj/machinery/door/window/right/directional/east{ - base_state = "left"; - dir = 2; - icon_state = "left"; - name = "Chemistry Lab Access Hatch"; - req_access = list("plumbing") - }, -/obj/structure/sign/departments/chemistry/directional/north, -/obj/structure/sign/warning/no_smoking{ - pixel_x = -28 - }, -/turf/open/floor/iron/white/textured_large, -/area/station/medical/treatment_center) -"evb" = ( -/turf/open/floor/iron, -/area/station/service/janitor) -"evj" = ( -/obj/effect/turf_decal/tile/red/half{ - dir = 4 - }, -/obj/structure/rack/gunrack, -/obj/effect/spawner/armory_spawn/microfusion, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) -"evk" = ( -/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/lab) -"evo" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/engineering/transit_tube) -"evp" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"evA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Dock" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"evT" = ( -/turf/open/floor/plating/icemoon, -/area/station/science/ordnance/bomb) -"ewd" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"ewm" = ( -/obj/structure/sign/warning/no_smoking/circle/directional/west, -/obj/machinery/light/directional/west, -/obj/machinery/camera{ - c_tag = "Medbay Mid-South"; - dir = 5; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"ewq" = ( -/obj/machinery/light_switch/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"ewC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"ewO" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/duct, -/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, -/area/station/hallway/secondary/service) -"exe" = ( -/obj/effect/turf_decal/siding/yellow/end{ - dir = 8 - }, -/obj/machinery/plumbing/receiver, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plating, -/area/station/medical/treatment_center) -"exl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"exo" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 12 - }, -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = 32 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"exv" = ( -/obj/effect/gibspawner/human/bodypartless, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"exw" = ( -/turf/closed/wall, -/area/station/service/hydroponics) -"exy" = ( -/obj/structure/sign/warning/no_smoking{ - pixel_x = -28 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"exN" = ( -/obj/effect/spawner/random/trash, -/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, -/turf/open/floor/iron, -/area/station/security/prison/work) -"exO" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/structure/closet/crate/goldcrate, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"exY" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/siding/white, -/obj/effect/spawner/random/vending/colavend, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"eyb" = ( -/turf/closed/wall, -/area/station/security/processing) -"eyc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"eye" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood/corner, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"eyU" = ( -/obj/structure/closet/crate/coffin, -/obj/machinery/light/small/red/directional/south, -/turf/open/floor/iron/dark/smooth_half, -/area/station/service/chapel) -"eyW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"ezf" = ( -/obj/machinery/door/airlock{ - name = "Private Restroom" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/freezer, -/area/station/medical/break_room) -"ezq" = ( -/obj/structure/table, -/obj/item/stamp, -/obj/item/poster/random_official, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"ezu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "viroview"; - dir = 4 - }, -/turf/open/floor/plating, -/area/station/medical/virology) -"ezJ" = ( -/obj/machinery/light/directional/east, -/turf/open/floor/glass/reinforced, -/area/station/science/ordnance/office) -"ezN" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mining Station Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"ezO" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark/side, -/area/station/security/processing) -"ezX" = ( -/obj/structure/chair/stool/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"eAb" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/item/toy/sword, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"eAg" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/closed/wall, -/area/station/security/prison/toilet) -"eAh" = ( -/obj/machinery/power/smes, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"eAj" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"eAs" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/trimline/dark_blue/line, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"eAw" = ( -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"eAx" = ( -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"eAS" = ( -/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/engineering{ - name = "Utilities Room" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"eBa" = ( -/obj/effect/turf_decal/siding/white, -/turf/open/floor/iron/white/smooth_large, -/area/station/service/kitchen/diner) -"eBd" = ( -/obj/structure/sign/barber{ - pixel_x = -13 - }, -/obj/structure/chair/sofa/bench/left{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"eBe" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"eBg" = ( -/obj/effect/turf_decal/tile/red{ - 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, -/area/station/hallway/secondary/exit/departure_lounge) -"eBi" = ( -/obj/machinery/door/airlock{ - name = "Hydroponics Backroom" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/open/floor/iron/textured_half, -/area/station/service/hydroponics) -"eBv" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/seeds/onion, -/turf/open/floor/iron/dark, -/area/mine/laborcamp) -"eBz" = ( -/obj/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/aft) -"eBI" = ( -/obj/effect/turf_decal/tile/yellow{ - 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, -/area/station/engineering/main) -"eBM" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/auxiliary) -"eBT" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"eBU" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Courtroom North" - }, -/obj/item/radio/intercom/directional/north, -/obj/structure/chair{ - name = "Defense" - }, -/turf/open/floor/wood, -/area/station/security/courtroom) -"eBV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/station/security/checkpoint/engineering) -"eCp" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"eCq" = ( -/obj/structure/chair/sofa/corp/left, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"eCs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/dark/textured_edge{ - dir = 1 - }, -/area/station/security/prison) -"eCt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"eCA" = ( -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/white/smooth_large, -/area/station/service/kitchen/diner) -"eCD" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Prison Common Room" - }, -/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/work) -"eCE" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"eCH" = ( -/obj/item/storage/medkit/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/medkit/regular, -/obj/structure/table/glass, -/obj/structure/window/reinforced, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) -"eCR" = ( -/obj/structure/no_effect_signpost{ - desc = "Now, where to go from here? That's a timeless question." - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"eDc" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/machinery/suit_storage_unit/medical, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"eDh" = ( -/obj/machinery/door/poddoor/shutters{ - id = "teledoor"; - name = "MiniSat Teleport Access"; - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"eDi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"eDj" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"eDq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/visit) -"eDx" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/cook, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"eDC" = ( -/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) -"eDM" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Head of Security" - }, -/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/security/hos, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/smooth_large, -/area/station/command/heads_quarters/hos) -"eDP" = ( -/obj/effect/turf_decal/siding/wood/end{ - dir = 1 - }, -/obj/structure/bookcase/random/fiction, -/turf/open/floor/iron/dark, -/area/station/commons/lounge) -"eDX" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/box/red, -/obj/machinery/airalarm/mixingchamber{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/burnchamber) -"eEb" = ( -/obj/machinery/computer/security/telescreen{ - name = "Test Chamber Monitor"; - network = list("xeno"); - pixel_y = 26 - }, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"eEh" = ( -/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) -"eEi" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"eEz" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/service/bar/atrium) -"eEN" = ( -/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/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"eEO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"eEY" = ( -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"eEZ" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrig"; - name = "Security Checkpoint" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brigoutpost" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron/dark/textured_edge{ - dir = 8 - }, -/area/station/security/checkpoint/auxiliary) -"eFd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/plating, -/area/station/engineering/atmos/storage/gas) -"eFh" = ( -/obj/structure/table, -/obj/effect/spawner/random/entertainment/cigarette_pack, -/obj/item/lighter/greyscale{ - pixel_x = 4; - pixel_y = 2 - }, -/turf/open/floor/iron/cafeteria, -/area/station/hallway/secondary/exit/departure_lounge) -"eFn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"eFt" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/chair/stool/directional/north, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"eFu" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/sign/warning/gas_mask/directional/north, -/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/mine/laborcamp) -"eFw" = ( -/obj/structure/sign/poster/official/report_crimes, -/turf/closed/wall/ice, -/area/icemoon/underground/explored) -"eFS" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mech Bay 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/science/robotics, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"eFW" = ( -/obj/structure/chair/stool/directional/south, -/turf/open/floor/wood, -/area/station/commons/dorms) -"eGj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/security_medic, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) -"eGr" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"eGy" = ( -/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/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/dorms) -"eGz" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/prison/visit) -"eGK" = ( -/obj/structure/closet, -/obj/effect/spawner/random/entertainment/drugs, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"eGM" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/corner{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"eGN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron/freezer, -/area/station/science/xenobiology) -"eGW" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"eGX" = ( -/obj/machinery/vending/boozeomat/all_access, -/turf/closed/wall, -/area/station/maintenance/port/aft) -"eHc" = ( -/obj/effect/turf_decal/stripes{ - dir = 5 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"eHe" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/catwalk_floor/iron_smooth, -/area/station/maintenance/department/medical/central) -"eHg" = ( -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"eHq" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - 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/cargo/office) -"eHK" = ( -/obj/item/radio/intercom/prison/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/iron/smooth, -/area/station/security/execution/transfer) -"eHU" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"eHW" = ( -/obj/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/sign/warning/gas_mask/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"eHZ" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"eIa" = ( -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, -/obj/machinery/restaurant_portal/bar, -/turf/open/floor/stone, -/area/station/commons/lounge) -"eId" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"eIe" = ( -/obj/structure/rack, -/obj/effect/spawner/random/clothing/costume, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) -"eIk" = ( -/obj/structure/filingcabinet, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/machinery/light/small/directional/west, -/turf/open/floor/wood, -/area/station/service/library) -"eIC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/science/breakroom) -"eII" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/dropper, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"eIU" = ( -/obj/machinery/button/door/directional/south{ - id = "Cargo_Store_In"; - name = "Shutter Control"; - pixel_x = 24 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"eJe" = ( -/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/hallway/primary/central) -"eJf" = ( -/obj/structure/lattice, -/turf/open/openspace/icemoon/keep_below, -/area/icemoon/underground/explored) -"eJn" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos) -"eJq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hydroponics/glass{ - name = "Hydroponics" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/open/floor/iron/textured_half{ - dir = 1 - }, -/area/station/service/hydroponics) -"eJv" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/smartfridge/extract/preloaded, -/obj/structure/window/reinforced, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"eJx" = ( -/obj/machinery/newscaster/directional/east, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/obj/machinery/holopad, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"eJy" = ( -/obj/structure/rack, -/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/commons/storage/emergency/port) -"eJz" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L12" - }, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/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) -"eJI" = ( -/obj/structure/closet/emcloset, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"eJU" = ( -/obj/machinery/door/airlock/security{ - name = "Permanent Cell 2" - }, -/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) -"eJV" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/mine/eva) -"eKk" = ( -/obj/effect/turf_decal/tile/red/half{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/smooth_half, -/area/station/security/brig/upper) -"eKl" = ( -/obj/effect/turf_decal/stripes/box, -/obj/machinery/destructive_scanner, -/turf/open/floor/iron/textured_large, -/area/station/hallway/primary/starboard) -"eKn" = ( -/obj/effect/turf_decal/tile/dark{ - dir = 1 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/white/side, -/area/mine/living_quarters) -"eKB" = ( -/obj/structure/cable, -/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, -/area/mine/production) -"eKC" = ( -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"eKJ" = ( -/obj/structure/chair/stool/directional/west, -/turf/open/floor/iron, -/area/station/commons/dorms) -"eKR" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"eKW" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"eLb" = ( -/obj/machinery/iv_drip, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"eLl" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/catwalk_floor/iron_smooth, -/area/station/maintenance/department/chapel) -"eLn" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/command/heads_quarters/cmo) -"eLr" = ( -/turf/open/floor/iron/white/side{ - dir = 5 - }, -/area/station/science/research) -"eLs" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/pen/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"eLx" = ( -/obj/effect/landmark/start/bartender, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/station/service/bar) -"eLT" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/left/directional/north{ - dir = 8; - name = "Hydroponics Desk"; - req_access = list("hydroponics") - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"eMa" = ( -/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, -/area/station/cargo/storage) -"eMh" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"eMr" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"eMF" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"eMK" = ( -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/effect/turf_decal/stripes/line, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/service) -"eMO" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/box, -/obj/structure/ladder, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/mine/eva) -"eMT" = ( -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"eMU" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_centre, -/obj/machinery/atmospherics/pipe/multiz/pink/visible{ - dir = 4; - name = "Exfiltrate" - }, -/obj/effect/turf_decal/tile/red/diagonal_edge, -/turf/open/floor/iron/dark/diagonal, -/area/station/engineering/atmos/mix) -"eNh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"eNl" = ( -/obj/structure/chair/comfy/black, -/obj/effect/landmark/start/head_of_security, -/turf/open/floor/carpet/royalblue, -/area/station/command/heads_quarters/hos) -"eNm" = ( -/obj/structure/fermenting_barrel{ - desc = "A dried up barrel of what appeared to once have been full of wine."; - name = "cask" - }, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"eNx" = ( -/obj/effect/landmark/start/shaft_miner, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"eND" = ( -/obj/effect/spawner/structure/window/reinforced, -/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/security/prison/visit) -"eNH" = ( -/obj/machinery/door/airlock/command{ - name = "Chief Medical Officer" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/medical/cmo, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"eNK" = ( -/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/science/research) -"eNO" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/obj/structure/fence, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"eNQ" = ( -/obj/structure/sign/warning/vacuum/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/smooth, -/area/station/engineering/lobby) -"eNR" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small/broken/directional/north, -/obj/machinery/vending/dinnerware, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"eOc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/meter/layer4, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"eOl" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/fitness) -"eOm" = ( -/obj/structure/sign/poster/official/no_erp{ - pixel_x = -32 - }, -/turf/closed/wall, -/area/station/maintenance/starboard/fore) -"eOv" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Bridge" - }, -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/maintenance/central/greater) -"eOw" = ( -/obj/machinery/computer/shuttle/labor, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"eOz" = ( -/obj/structure/table, -/obj/item/razor, -/obj/item/storage/backpack/duffelbag/sec/surgery, -/turf/open/floor/plating/icemoon, -/area/station/security/execution/education) -"eOJ" = ( -/obj/structure/rack, -/obj/item/clothing/head/helmet/sec{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/sec, -/obj/item/clothing/head/helmet/sec{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/suit/armor/vest/security{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/suit/armor/vest/security, -/obj/item/clothing/suit/armor/vest/security{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/red/half{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) -"eOS" = ( -/obj/structure/table, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"ePi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"ePl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"ePm" = ( -/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/secondary/exit/departure_lounge) -"ePr" = ( -/turf/open/floor/carpet/royalblue, -/area/station/command/heads_quarters/hos) -"ePs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/iron, -/area/station/cargo/qm) -"ePR" = ( -/obj/structure/railing{ - dir = 6 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"eQx" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/spawner/random/clothing/wardrobe_closet_colored, -/turf/open/floor/iron, -/area/station/commons/locker) -"eQz" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"eQA" = ( -/obj/item/kitchen/rollingpin, -/obj/structure/table, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"eQN" = ( -/obj/machinery/door/airlock{ - name = "Unisex Showers" - }, -/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/freezer, -/area/station/commons/toilet) -"eQQ" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall, -/area/station/command/heads_quarters/rd) -"eQT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/laborcamp/security) -"eQU" = ( -/obj/item/radio/intercom/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"eQX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"eRx" = ( -/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/glass, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"eRH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) -"eRO" = ( -/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/showroomfloor, -/area/station/security/warden) -"eRS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"eSg" = ( -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"eSn" = ( -/obj/structure/chair/office, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/service/library) -"eSr" = ( -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"eSF" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/dresser, -/obj/machinery/firealarm/directional/east, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/iron, -/area/station/service/theater) -"eSJ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/genetics) -"eST" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/freezer, -/area/mine/laborcamp) -"eSY" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/iron/smooth, -/area/mine/eva/lower) -"eTa" = ( -/obj/effect/spawner/random/structure/tank_holder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"eTb" = ( -/obj/structure/fireplace, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/carpet/black, -/area/station/security/prison/safe) -"eTi" = ( -/obj/machinery/telecomms/broadcaster/preset_left, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"eTv" = ( -/obj/machinery/door/airlock/security{ - name = "Permanent Cell 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/prison/safe) -"eTx" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/large, -/area/station/engineering/main) -"eTL" = ( -/obj/effect/turf_decal/trimline/yellow/filled/shrink_ccw, -/obj/machinery/camera/autoname/directional/south, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"eTM" = ( -/obj/effect/turf_decal/trimline/blue/corner, -/obj/effect/turf_decal/trimline/blue/corner, -/obj/machinery/holopad, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/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) -"eTP" = ( -/obj/structure/disposalpipe/segment, -/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_smooth, -/area/station/maintenance/starboard/fore) -"eTY" = ( -/obj/structure/table, -/obj/item/clothing/shoes/jackboots, -/obj/item/storage/backpack/satchel/leather, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"eUe" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"eUf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"eUw" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/item/storage/bag/tray, -/obj/item/knife/kitchen{ - pixel_y = 2 - }, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"eUD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/mine/laborcamp) -"eUI" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"eUK" = ( -/obj/machinery/computer/shuttle/mining{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"eUL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"eUO" = ( -/mob/living/simple_animal/hostile/asteroid/polarbear{ - move_force = 999; - name = "Dewey" - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"eUP" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/fore/greater) -"eUR" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red/full, -/obj/machinery/button/door/directional/west{ - id = "briggate"; - name = "Brig Shutters"; - pixel_x = -6; - pixel_y = -2 - }, -/obj/machinery/button/flasher{ - id = "brigentry"; - pixel_x = -7; - pixel_y = 9 - }, -/obj/machinery/button/door/directional/west{ - id = "innerbrig"; - name = "Brig Interior Doors Control"; - normaldoorcontrol = 1; - pixel_x = 6; - pixel_y = 9; - req_access = list("security") - }, -/obj/machinery/button/door/directional/west{ - id = "outerbrig"; - name = "Brig Exterior Doors Control"; - normaldoorcontrol = 1; - pixel_x = 6; - pixel_y = -2; - req_access = list("security") - }, -/obj/item/radio/intercom/prison/directional/north, -/turf/open/floor/iron/dark/textured_large, -/area/station/security/checkpoint/auxiliary) -"eUW" = ( -/obj/structure/chair/stool/directional/south, -/obj/effect/landmark/start/janitor, -/turf/open/floor/iron, -/area/station/service/janitor) -"eUY" = ( -/obj/effect/gibspawner/human, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"eVl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - id_tag = "cargooffice"; - name = "Cargo Office" - }, -/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/supply/shipping, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"eVn" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"eVy" = ( -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"eVC" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"eVI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"eVO" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Maintenance External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"eVR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/maintenance/port/aft) -"eVV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/effect/turf_decal/siding/yellow, -/turf/open/floor/iron, -/area/station/engineering/storage) -"eVY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/science/explab) -"eVZ" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"eWb" = ( -/obj/structure/table, -/obj/item/aicard, -/obj/item/ai_module/reset, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"eWh" = ( -/obj/machinery/door/window/left/directional/north{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen 2"; - req_access = list("xenobiology") - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "Xenobio Pen 2 Blast Door" - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"eWj" = ( -/obj/machinery/portable_atmospherics/canister/plasma, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"eWn" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/command/heads_quarters/cmo) -"eWB" = ( -/obj/structure/rack, -/obj/item/electropack, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron/dark/textured, -/area/station/security/interrogation) -"eWF" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Arrivals Escape Pod 2" - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"eWI" = ( -/obj/machinery/door/airlock{ - name = "Hydroponics Maintenance" - }, -/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/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"eWK" = ( -/obj/structure/closet/toolcloset, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron, -/area/station/construction) -"eWP" = ( -/obj/machinery/computer/security/mining, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"eWQ" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"eWT" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"eWV" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"eXn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"eXw" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/station/service/theater) -"eXH" = ( -/turf/closed/wall/r_wall, -/area/station/medical/chemistry) -"eXU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/station/maintenance/starboard/lesser) -"eYe" = ( -/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, -/area/station/hallway/primary/central/fore) -"eYg" = ( -/obj/structure/table/glass, -/obj/item/storage/medkit/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/medkit/toxin, -/obj/item/storage/medkit/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/left/directional/north{ - icon_state = "right"; - name = "First-Aid Supplies"; - red_alert_access = 1; - req_access = list("medical") - }, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/medical/storage) -"eYn" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"eYz" = ( -/obj/machinery/mineral/processing_unit{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/mine/laborcamp) -"eYA" = ( -/obj/machinery/vending/engivend, -/obj/machinery/newscaster/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/storage_shared) -"eYC" = ( -/turf/open/floor/iron/smooth, -/area/mine/laborcamp/security) -"eYF" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) -"eYH" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"eYI" = ( -/obj/structure/railing, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/service/chapel) -"eYP" = ( -/obj/structure/cable, -/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, -/area/station/hallway/primary/central) -"eYR" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 10 - }, -/obj/structure/table, -/obj/item/folder/white{ - pixel_y = 4 - }, -/obj/item/pen/red, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"eYT" = ( -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/station/command/meeting_room) -"eYX" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/corner{ - dir = 1 - }, -/obj/effect/landmark/start/botanist, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"eZc" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"eZi" = ( -/obj/machinery/drone_dispenser, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"eZj" = ( -/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/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"eZo" = ( -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/plating, -/area/station/security/processing) -"eZp" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"eZu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"eZw" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/end, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"eZz" = ( -/obj/item/storage/fancy/cigarettes/cigpack_mindbreaker, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"eZB" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"eZJ" = ( -/obj/machinery/mineral/stacking_machine{ - input_dir = 1; - stack_amt = 10 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"eZP" = ( -/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/engineering/main) -"eZW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/elevatorshaft, -/area/mine/storage) -"fab" = ( -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"faf" = ( -/obj/structure/tank_holder/extinguisher, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"fas" = ( -/obj/machinery/vending/coffee, -/obj/machinery/light/small/directional/south, -/turf/open/floor/stone, -/area/mine/eva/lower) -"faD" = ( -/obj/machinery/bluespace_vendor/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"faJ" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"faZ" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 2; - sortType = 26 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/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/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron, -/area/station/commons/fitness) -"fbh" = ( -/obj/machinery/power/tracker, -/obj/structure/cable, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"fbl" = ( -/turf/open/floor/iron/dark, -/area/station/science/breakroom) -"fbm" = ( -/obj/effect/turf_decal/siding/white{ - dir = 5 - }, -/obj/machinery/duct, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white/smooth_large, -/area/station/service/kitchen/diner) -"fbr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - 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) -"fbt" = ( -/obj/effect/turf_decal/tile/green, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"fbC" = ( -/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/greater) -"fcg" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/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/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"fcj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/ordnance) -"fcu" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/chair, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"fcC" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/turf/open/floor/iron, -/area/service/salon) -"fcN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/general/visible{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"fcP" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"fcQ" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrous_input{ - dir = 8 - }, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"fcY" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/mine/laborcamp/security) -"fda" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/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/iron, -/area/station/commons/dorms) -"fde" = ( -/obj/structure/table, -/obj/item/paper{ - pixel_x = 4; - pixel_y = 2 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"fdm" = ( -/obj/structure/falsewall, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"fdp" = ( -/turf/open/floor/iron, -/area/mine/eva/lower) -"fdy" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"fdG" = ( -/obj/structure/cable, -/turf/open/floor/plating/icemoon, -/area/station/security/execution/education) -"fdH" = ( -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"fdJ" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/construction) -"fdO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"fdP" = ( -/obj/structure/bonfire, -/obj/item/melee/roastingstick, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"fdY" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/closed/wall, -/area/station/medical/cryo) -"fez" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/item/seeds/wheat, -/obj/item/seeds/wheat, -/obj/item/seeds/tomato, -/obj/item/seeds/onion, -/obj/item/seeds/garlic, -/obj/item/seeds/carrot, -/obj/item/seeds/ambrosia, -/obj/item/seeds/apple, -/turf/open/floor/iron, -/area/mine/laborcamp) -"feB" = ( -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"feJ" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory/upper) -"feQ" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"feZ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/storage/box/monkeycubes, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"ffe" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/aft/lesser) -"fff" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - 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, -/area/mine/eva/lower) -"ffi" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/mine/eva) -"ffz" = ( -/obj/machinery/processor/slime, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"ffQ" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 10 - }, -/obj/machinery/smartfridge/chemistry/virology/preloaded, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"ffZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness) -"fgm" = ( -/obj/machinery/photocopier, -/obj/structure/sign/poster/official/random/directional/east, -/turf/open/floor/wood, -/area/station/service/library) -"fgs" = ( -/obj/effect/spawner/random/trash/grille_or_waste, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"fgx" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/ordnance) -"fgE" = ( -/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/duct, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"fgJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/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/security/execution/transfer) -"fgS" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/random/maintenance/four, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/plating, -/area/station/construction) -"fgU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"fhb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/science/genetics) -"fhk" = ( -/obj/structure/industrial_lift, -/obj/structure/railing{ - dir = 5 - }, -/turf/open/openspace, -/area/station/commons/storage/mining) -"fhu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"fhw" = ( -/obj/machinery/piratepad/civilian, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/loading_area, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"fhz" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"fhF" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plating, -/area/station/construction) -"fhI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"fhJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/bookcase{ - name = "Holy Bookcase" - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"fhL" = ( -/obj/item/clothing/suit/apron/surgical, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"fhU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"fhV" = ( -/obj/structure/closet/secure_closet/brig, -/obj/machinery/camera/directional/north{ - c_tag = "Security - Transport" - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/processing) -"fhW" = ( -/obj/structure/disposalpipe/segment{ - 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/port/aft) -"fhZ" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/closet/secure_closet/chemical, -/obj/effect/turf_decal/trimline/blue/line, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/maintenance/fore/greater) -"fii" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/fore/greater) -"fij" = ( -/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/dark_red/arrow_ccw{ - dir = 8 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"fio" = ( -/obj/structure/marker_beacon/burgundy{ - name = "landing marker" - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"fiu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"fiA" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"fiC" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/light/small/directional/west, -/obj/structure/sign/warning/cold_temp{ - pixel_x = 3; - pixel_y = 32 - }, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/mine/eva/lower) -"fiD" = ( -/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, -/area/station/security/prison) -"fiE" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L9" - }, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"fiO" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/service/janitor) -"fiS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"fiU" = ( -/obj/machinery/door/poddoor/massdriver_ordnance, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/station/science/ordnance/testlab) -"fiY" = ( -/obj/machinery/ntnet_relay, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"fjg" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"fjm" = ( -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"fjp" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/grimy, -/area/station/maintenance/aft/greater) -"fjt" = ( -/obj/machinery/door/window/left/directional/north{ - dir = 4; - name = "Containment Pen 9"; - req_access = list("xenobiology") - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio9"; - name = "Xenobio Pen 9 Blast Door" - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"fjw" = ( -/obj/machinery/smartfridge, -/turf/closed/wall, -/area/station/service/hydroponics) -"fjC" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"fjF" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"fjG" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"fjH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"fjK" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"fjM" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness) -"fjQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/white, -/area/mine/living_quarters) -"fjW" = ( -/obj/machinery/button/door/directional/east{ - id = "armory"; - name = "Armory Shutters"; - pixel_x = -9; - pixel_y = 30; - req_access = list("armory") - }, -/obj/structure/rack, -/obj/item/gun/energy/e_gun{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/e_gun, -/obj/item/gun/energy/e_gun{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/red/half{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) -"fjX" = ( -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"fkj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"fkk" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"fkC" = ( -/obj/machinery/light_switch/directional/north, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/station/commons/storage/emergency/port) -"fkF" = ( -/obj/item/weldingtool, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"fkJ" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"fkN" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"fkO" = ( -/obj/machinery/door/window/left/directional/west{ - dir = 2; - name = "Atmospherics Delivery"; - req_access = list("atmospherics") - }, -/obj/effect/turf_decal/loading_area, -/obj/effect/turf_decal/siding/yellow/corner, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/turf/open/floor/iron/textured_half{ - dir = 1 - }, -/area/station/engineering/atmos/storage/gas) -"fkV" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Permabrig Maintenance" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"fkX" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/openspace, -/area/station/science/ordnance/office) -"fkZ" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - dir = 1; - name = "old sink"; - pixel_y = -5 - }, -/turf/open/floor/iron/dark, -/area/mine/laborcamp) -"fle" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"flq" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"flx" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=HOP"; - location = "CHE" - }, -/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, -/area/station/hallway/primary/central) -"flH" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"flI" = ( -/obj/machinery/vending/wardrobe/jani_wardrobe, -/turf/open/floor/iron, -/area/station/service/janitor) -"flR" = ( -/obj/machinery/space_heater, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"flW" = ( -/obj/machinery/atmospherics/components/tank/air, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"flZ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/fluff/tram_rail{ - pixel_y = 17 - }, -/obj/structure/fluff/tram_rail, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"fma" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"fmc" = ( -/turf/closed/wall, -/area/station/hallway/primary/aft) -"fmr" = ( -/obj/effect/turf_decal/siding/yellow/end{ - dir = 4 - }, -/obj/machinery/plumbing/sender, -/turf/open/floor/plating, -/area/station/medical/chemistry) -"fmA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/dark_blue/line{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"fmD" = ( -/turf/open/floor/wood/parquet, -/area/station/service/bar/atrium) -"fmU" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"fna" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"fnf" = ( -/obj/structure/window/reinforced/spawner/north, -/turf/open/floor/plating/snowed/icemoon, -/area/station/maintenance/port/aft) -"fng" = ( -/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/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"fnh" = ( -/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/greater) -"fnj" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/entertainment/deck, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/security/prison/rec) -"fnA" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"fnL" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"fnW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/warning{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/range) -"fob" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/structure/mirror/directional/east, -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/freezer, -/area/mine/eva/lower) -"fof" = ( -/obj/structure/table/wood, -/obj/item/book/random{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = 9; - pixel_y = 3 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"fog" = ( -/obj/machinery/rnd/production/techfab/department/medical, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"foy" = ( -/obj/item/radio/intercom/directional/south, -/obj/machinery/vending/wardrobe/science_wardrobe, -/turf/open/floor/iron/dark, -/area/station/science/breakroom) -"foO" = ( -/turf/open/floor/carpet, -/area/station/security/prison/rec) -"foS" = ( -/obj/item/radio/intercom/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Chapel West" - }, -/obj/structure/cable, -/obj/machinery/button/door/directional/west{ - id = "lower_chapel_shutters"; - name = "Graveyard Shutters"; - pixel_y = -8 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"foW" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/station/engineering/atmos/hfr_room) -"fpb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating/snowed/coldroom, -/area/station/service/kitchen/coldroom) -"fpj" = ( -/obj/machinery/vending/wardrobe/sec_wardrobe, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/auxiliary) -"fpp" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 10 - }, -/obj/structure/sign/warning/electric_shock/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"fps" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/machinery/light/small/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark/side{ - dir = 9 - }, -/area/station/security/prison/safe) -"fpv" = ( -/obj/item/reagent_containers/spray/plantbgone, -/obj/item/reagent_containers/spray/pestspray{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/bottle/nutrient/ez, -/obj/item/reagent_containers/glass/bottle/nutrient/rh{ - pixel_x = 2; - pixel_y = 1 - }, -/obj/structure/table/glass, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"fpz" = ( -/obj/machinery/vending/modularpc, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"fpA" = ( -/obj/machinery/hydroponics/soil, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 1 - }, -/turf/open/floor/grass, -/area/station/maintenance/starboard/fore) -"fpD" = ( -/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) -"fpJ" = ( -/obj/structure/fireaxecabinet/directional/west, -/obj/machinery/suit_storage_unit/atmos, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/atmos) -"fpP" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Central Hallway North-East" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"fpW" = ( -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"fqc" = ( -/obj/effect/turf_decal/tile/red/full, -/obj/structure/table, -/obj/item/clothing/mask/cigarette/cigar, -/turf/open/floor/iron/large, -/area/station/service/kitchen/diner) -"fqn" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron, -/area/station/commons/storage/art) -"fqp" = ( -/obj/structure/rack, -/obj/structure/window/reinforced/spawner/west, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison) -"fqH" = ( -/obj/effect/turf_decal/tile/red/half, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/smooth_half, -/area/station/security/brig/upper) -"fqJ" = ( -/obj/effect/turf_decal/trimline/white/filled/warning, -/turf/open/genturf, -/area/icemoon/underground/unexplored/rivers/deep) -"fqQ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"fqW" = ( -/obj/structure/rack, -/obj/item/reagent_containers/glass/bottle/carbon{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/ethanol{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/chlorine{ - pixel_x = 1 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark/textured_edge{ - dir = 8 - }, -/area/station/medical/medbay/central) -"frq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Antechamber" - }, -/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/cyclelink_helper_multi{ - cycle_id = "ai-passthrough" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, -/obj/structure/cable/layer3, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"frt" = ( -/obj/effect/decal/cleanable/blood/tracks{ - dir = 4 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"frD" = ( -/obj/machinery/air_sensor/oxygen_tank, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"frL" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/obj/machinery/light/small/directional/east, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/starboard) -"frP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"frS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/brig) -"frV" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"fse" = ( -/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/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"fsm" = ( -/obj/structure/flora/rock/pile/icy/style_random, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"fsp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/range) -"fsv" = ( -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"fsF" = ( -/obj/effect/spawner/structure/window, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"fsK" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/security/execution/education) -"fsO" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"fsQ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/floor/iron/cafeteria, -/area/station/engineering/atmos) -"ftf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"ftg" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/mass_driver/trash, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"ftt" = ( -/obj/structure/sign/warning/secure_area/directional/south{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/server) -"ftx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Dormitory" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - 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/commons/dorms) -"ftA" = ( -/obj/structure/table, -/obj/item/storage/box/prisoner, -/turf/open/floor/iron/showroomfloor, -/area/station/security/processing) -"ftM" = ( -/obj/machinery/button/door/directional/north{ - pixel_y = 24; - pixel_x = -25; - name = "Kitchen Lockdown"; - req_access = list("kitchen"); - id = "kitchencounter" - }, -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"ftN" = ( -/obj/machinery/light_switch/directional/west, -/obj/machinery/rnd/destructive_analyzer, -/turf/open/floor/iron/checker, -/area/station/science/lab) -"ftS" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"fue" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"fuD" = ( -/obj/structure/tank_holder/extinguisher, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"fuH" = ( -/turf/closed/mineral/snowmountain/coldroom, -/area/icemoon/underground/explored) -"fuM" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=CHE"; - location = "AIE" - }, -/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, -/area/station/hallway/primary/central) -"fuS" = ( -/obj/structure/stairs/east, -/obj/structure/railing, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"fuX" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/dark/textured, -/area/station/security/range) -"fuY" = ( -/obj/structure/disposalpipe/segment, -/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/hallway/primary/starboard) -"fvk" = ( -/turf/open/floor/glass/reinforced, -/area/station/science/xenobiology) -"fvn" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"fvs" = ( -/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 = 4 - }, -/turf/open/floor/plating/snowed/coldroom, -/area/station/service/kitchen/coldroom) -"fvK" = ( -/obj/structure/rack, -/obj/item/storage/box/petridish, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/grimy, -/area/station/security/prison/work) -"fvO" = ( -/obj/structure/closet/secure_closet/brig, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/smooth, -/area/station/security/execution/transfer) -"fvR" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"fvW" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"fvX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/station/maintenance/aft/greater) -"fwf" = ( -/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/cable, -/obj/effect/mapping_helpers/airlock/access/all/service/general, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"fwh" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"fwm" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L14" - }, -/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) -"fwn" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/light/warm/directional/west, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/prison) -"fwq" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Port to Filter" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"fwB" = ( -/turf/closed/mineral/snowmountain/coldroom, -/area/station/service/kitchen/coldroom) -"fwC" = ( -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"fwD" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"fwI" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/obj/machinery/door/firedoor/heavy, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"fwL" = ( -/obj/structure/sink/kitchen{ - pixel_y = 24 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"fwO" = ( -/obj/machinery/space_heater, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos) -"fwS" = ( -/obj/effect/turf_decal/tile/red{ - 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{ - dir = 2 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"fwW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/stairs/right{ - dir = 4 - }, -/area/station/engineering/lobby) -"fwZ" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/surgery/fore) -"fxe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/cold_temp, -/turf/open/floor/plating, -/area/station/construction/mining/aux_base) -"fxl" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"fxJ" = ( -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/grunge{ - name = "Vacant Office A" - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"fxR" = ( -/obj/machinery/telecomms/hub/preset, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"fxT" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"fxV" = ( -/obj/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/starboard/aft) -"fya" = ( -/obj/structure/cable, -/mob/living/simple_animal/sloth/paperwork, -/turf/open/floor/iron, -/area/station/cargo/storage) -"fyc" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"fyh" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/machinery/airalarm/directional/east, -/obj/structure/sink/kitchen{ - dir = 8; - pixel_x = 14 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"fyr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "AI Core" - }, -/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/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, -/obj/structure/cable/layer3, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"fyw" = ( -/obj/machinery/telecomms/server/presets/service, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"fyJ" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - 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, -/area/service/salon) -"fyR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"fyZ" = ( -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"fzu" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/random/maintenance/three, -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"fzv" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"fzA" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"fzD" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red, -/obj/item/radio/intercom/prison/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/iron, -/area/station/hallway/primary/central/fore) -"fzG" = ( -/obj/structure/closet{ - name = "Evidence Closet 5" - }, -/turf/open/floor/iron/dark/textured_edge{ - dir = 1 - }, -/area/station/security/brig) -"fzJ" = ( -/obj/structure/barricade/wooden{ - name = "wooden barricade (CLOSED)" - }, -/obj/structure/girder, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) -"fzK" = ( -/turf/closed/wall, -/area/station/service/bar) -"fzQ" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/landmark/start/geneticist, -/turf/open/floor/iron/white, -/area/station/science/genetics) -"fzU" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"fAc" = ( -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/iron/large, -/area/station/service/kitchen/diner) -"fAo" = ( -/obj/structure/table/wood, -/obj/item/clothing/under/suit/red, -/obj/item/candle{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/candle{ - pixel_x = 8; - pixel_y = 4 - }, -/turf/open/floor/engine/cult, -/area/station/service/library) -"fAF" = ( -/obj/structure/rack, -/obj/item/clothing/gloves/boxing/green, -/obj/item/reagent_containers/food/drinks/waterbottle, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"fAS" = ( -/obj/structure/sign/warning/secure_area/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/fore/greater) -"fAV" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/security/prison/work) -"fBc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/line, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/obj/machinery/door/poddoor/shutters/window{ - id = "drone_bay"; - name = "Drone Bay Shutters"; - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/mid_joiner, -/obj/effect/turf_decal/trimline/yellow/mid_joiner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"fBA" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"fBC" = ( -/obj/structure/table/wood, -/obj/item/phone{ - pixel_x = 10; - pixel_y = 7 - }, -/obj/item/radio/off{ - pixel_x = -3; - pixel_y = 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/wood/large, -/area/station/command/heads_quarters/hos) -"fBM" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/iron/chapel{ - dir = 8 - }, -/area/station/service/chapel) -"fBN" = ( -/obj/structure/marker_beacon/burgundy, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"fCd" = ( -/obj/structure/table, -/obj/machinery/button/door{ - id = "Prison Gate"; - name = "Prison Wing Lockdown"; - pixel_x = 5; - pixel_y = 8; - req_access = list("brig") - }, -/obj/machinery/button/door{ - id = "Trial Transfer"; - name = "Trial Transfer Lockdown"; - pixel_x = -7; - pixel_y = 8; - req_access = list("brig") - }, -/obj/machinery/button/door{ - id = "Secure Gate"; - name = "Cell Shutters"; - pixel_x = -7; - pixel_y = -3; - req_access = list("brig") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/textured, -/area/station/security/brig) -"fCw" = ( -/obj/machinery/door/morgue{ - name = "Relic Closet"; - req_access = list("chapel_office") - }, -/turf/open/floor/cult, -/area/station/service/chapel/office) -"fCE" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Dormitory North" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/bluespace_vendor/directional/north, -/turf/open/floor/iron, -/area/station/commons/dorms) -"fCM" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/medbay/lobby) -"fCW" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/dark/textured, -/area/station/security/processing) -"fDc" = ( -/obj/structure/chair/office, -/obj/effect/landmark/start/warden, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"fDe" = ( -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/dark_green/end{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"fDi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/botanist, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green/half{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/service/hydroponics) -"fDl" = ( -/obj/machinery/light/small/built/directional/west, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"fDn" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"fDt" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/obj/effect/turf_decal/siding/wood{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/service/bar) -"fDB" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"fDH" = ( -/obj/machinery/light/directional/north, -/obj/structure/flora/rock/pile/jungle/style_random, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/station/medical/virology) -"fDJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/service/janitor) -"fDP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"fDZ" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 4 - }, -/obj/effect/turf_decal/tile/dark, -/obj/machinery/requests_console/auto_name/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"fEA" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - name = "Transport 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/security/general, -/turf/open/floor/plating, -/area/station/security/processing) -"fEC" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrig"; - name = "Security Checkpoint" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brigoutpost" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron/dark/textured_edge{ - dir = 4 - }, -/area/station/security/checkpoint/auxiliary) -"fER" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 4 - }, -/turf/open/floor/glass/reinforced, -/area/station/engineering/atmos/pumproom) -"fEV" = ( -/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/wood{ - dir = 1 - }, -/obj/machinery/door/airlock/maintenance/glass{ - name = "Expedition Planning Room" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/stone, -/area/mine/eva/lower) -"fEZ" = ( -/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/public/glass{ - name = "Cryopods" - }, -/turf/open/floor/iron, -/area/station/common/cryopods) -"fFn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/engine, -/area/station/engineering/atmos/hfr_room) -"fFu" = ( -/obj/machinery/food_cart, -/obj/effect/turf_decal/tile/brown/diagonal_edge, -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"fFv" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Port Mix to West Ports" - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"fFy" = ( -/obj/machinery/space_heater, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"fFC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"fFI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/mine/production) -"fFJ" = ( -/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/blue/filled/line{ - dir = 6 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"fFT" = ( -/obj/structure/table/wood, -/obj/item/pen/red{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/item/folder/red{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/carpet/red, -/area/station/commons/vacant_room/office) -"fFV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/iron, -/area/station/cargo/qm) -"fGn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"fGq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/toilet{ - dir = 8 - }, -/obj/item/radio/intercom/prison/directional/east{ - frequency = 1359 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/smooth, -/area/station/security/holding_cell) -"fGI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"fGO" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"fHb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/cold_temp, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"fHg" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron/dark/side, -/area/station/security/prison) -"fHk" = ( -/obj/structure/table/glass, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/item/assembly/timer{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/assembly/timer{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/assembly/timer{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/assembly/timer{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"fHz" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera{ - c_tag = "Medbay North"; - network = list("ss13","medbay") - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"fHC" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"fHK" = ( -/obj/machinery/holopad, -/turf/open/floor/carpet, -/area/station/command/meeting_room) -"fHQ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/dark_green/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark_green/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"fIs" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"fIt" = ( -/turf/closed/wall/r_wall, -/area/icemoon/underground/explored) -"fIu" = ( -/obj/structure/table/glass, -/obj/machinery/light/directional/west, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 6 - }, -/obj/item/reagent_containers/syringe, -/obj/machinery/defibrillator_mount/directional/north, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/large, -/area/station/medical/treatment_center) -"fIv" = ( -/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_atmos{ - pixel_x = -24 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"fIH" = ( -/obj/structure/closet/lasertag/red, -/obj/effect/spawner/random/contraband/permabrig_gear, -/obj/machinery/light/warm/directional/east, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"fIL" = ( -/obj/machinery/door/airlock{ - name = "Observatory Access" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"fJe" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"fJm" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/science/ordnance/office) -"fJL" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrogen_input{ - dir = 1 - }, -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"fKf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"fKh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"fKi" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"fKr" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"fKv" = ( -/obj/structure/fluff/tram_rail{ - pixel_y = 17 - }, -/obj/structure/fluff/tram_rail, -/turf/open/openspace/icemoon/keep_below, -/area/icemoon/underground/explored) -"fKw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/corner{ - dir = 1 - }, -/obj/effect/landmark/start/botanist, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"fKy" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"fKF" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L7" - }, -/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) -"fKI" = ( -/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/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"fKP" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/machinery/door/window/left/directional/north{ - name = "Shower Cubicle" - }, -/turf/open/floor/iron/freezer, -/area/station/maintenance/starboard/fore) -"fLa" = ( -/obj/machinery/gibber, -/turf/open/floor/plating/snowed/coldroom, -/area/station/service/kitchen/coldroom) -"fLb" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/structure/mirror/directional/east, -/turf/open/floor/iron/freezer, -/area/station/maintenance/starboard/fore) -"fLe" = ( -/turf/open/floor/plating, -/area/station/engineering/lobby) -"fLh" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"fLj" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Medbay Break Room"; - dir = 1; - network = list("ss13","medbay") - }, -/obj/structure/table/glass, -/obj/effect/spawner/random/entertainment/deck{ - pixel_x = -6 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 7; - pixel_y = 5 - }, -/turf/open/floor/iron/white, -/area/station/medical/break_room) -"fLl" = ( -/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/side{ - dir = 9 - }, -/area/station/science/research) -"fLq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) -"fLs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory/upper) -"fLx" = ( -/obj/item/trash/popcorn, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"fLP" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 10 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"fLT" = ( -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"fLU" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rnd2"; - name = "Research Lab Shutters"; - dir = 8 - }, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/science/research) -"fLX" = ( -/obj/structure/bodycontainer/morgue{ - dir = 2 - }, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) -"fLY" = ( -/obj/structure/table, -/obj/item/stock_parts/micro_laser{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/stock_parts/micro_laser{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/stock_parts/micro_laser{ - pixel_x = 2 - }, -/obj/item/stock_parts/micro_laser{ - pixel_x = 6; - pixel_y = -2 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/drone_bay) -"fLZ" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"fMg" = ( -/obj/structure/rack, -/obj/item/reagent_containers/glass/bottle/acidic_buffer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/basic_buffer{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/formaldehyde{ - pixel_x = 1 - }, -/obj/structure/sign/warning/no_smoking/directional/north, -/turf/open/floor/iron/dark/textured_edge{ - dir = 8 - }, -/area/station/medical/medbay/central) -"fMq" = ( -/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, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"fMy" = ( -/obj/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/medbay/aft) -"fMJ" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"fMM" = ( -/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 = 2; - sortType = 17 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"fMP" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"fMU" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/large, -/area/station/engineering/storage_shared) -"fMW" = ( -/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 = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"fNa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"fNj" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating_new/corner{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"fNp" = ( -/obj/structure/girder, -/turf/open/floor/plating/snowed/icemoon, -/area/mine/eva/lower) -"fNr" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/sign/warning/no_smoking/directional/north, -/obj/machinery/light/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Engineering SMES" - }, -/turf/open/floor/iron/dark/smooth_half{ - dir = 1 - }, -/area/station/engineering/engine_smes) -"fNx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"fNA" = ( -/turf/open/openspace, -/area/station/medical/medbay/central) -"fNE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - 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, -/area/station/commons/dorms) -"fNN" = ( -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"fOl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/science/explab) -"fOz" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/chair/stool/directional/east, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"fOQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"fOV" = ( -/obj/structure/chair/stool/directional/west, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/wood/large, -/area/mine/eva/lower) -"fPb" = ( -/obj/effect/turf_decal/trimline/blue/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/medical/medbay/central) -"fPh" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"fPt" = ( -/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/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"fPv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/iron/freezer, -/area/station/science/xenobiology) -"fPA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"fPB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth_large, -/area/station/cargo/warehouse) -"fPM" = ( -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"fPN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/computer/operating, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral/full, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"fPS" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - 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/mine/production) -"fPX" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Escape Airlock" - }, -/obj/effect/landmark/navigate_destination/dockesc, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"fQc" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"fQe" = ( -/obj/structure/fence/corner{ - dir = 9 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"fQu" = ( -/obj/structure/cable, -/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/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) -"fQy" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - 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/hallway/primary/central) -"fQz" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/carpet, -/area/station/service/library) -"fQG" = ( -/obj/effect/turf_decal/trimline/red/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/dark/side{ - dir = 1 - }, -/area/station/security/prison) -"fQZ" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/station/service/hydroponics) -"fRb" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/multitool, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"fRt" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/genetics) -"fRx" = ( -/obj/machinery/light_switch/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/wood, -/area/station/command/meeting_room) -"fRz" = ( -/obj/effect/turf_decal/trimline/green/filled/warning{ - dir = 1 - }, -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"fRG" = ( -/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/plating, -/area/station/maintenance/starboard/lesser) -"fRI" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"fRJ" = ( -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/structure/table, -/obj/item/clothing/head/fedora, -/turf/open/floor/iron/white/smooth_large, -/area/station/service/kitchen/diner) -"fRP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Service-Ultils Top" - }, -/turf/open/floor/catwalk_floor/iron_smooth, -/area/station/maintenance/starboard/fore) -"fSb" = ( -/obj/structure/disposalpipe/segment, -/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) -"fSd" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/structure/railing/corner, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"fSj" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"fSm" = ( -/obj/structure/fence/door/opened{ - dir = 4 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"fTb" = ( -/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/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"fTc" = ( -/obj/machinery/door/airlock/command{ - name = "Conference Room" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/wood, -/area/station/command/meeting_room) -"fTk" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"fTq" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"fTz" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "permainner"; - name = "Permabrig Transfer" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "perma-entrance" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/siding/red/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/execution/transfer) -"fTB" = ( -/obj/machinery/power/turbine/core_rotor{ - dir = 8; - mapping_id = "main_turbine" - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"fTC" = ( -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"fTF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet/red, -/area/station/security/prison/work) -"fTG" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/dark_blue/line{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"fTT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark/smooth_large, -/area/station/science/breakroom) -"fTW" = ( -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"fTX" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/starboard) -"fUb" = ( -/obj/structure/table/glass, -/obj/item/storage/medkit/regular, -/obj/machinery/newscaster/directional/east, -/obj/effect/turf_decal/tile/green/full, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/medbay/aft) -"fUc" = ( -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"fUn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/rack, -/obj/machinery/camera/autoname/directional/north, -/obj/item/pickaxe, -/obj/item/toy/figure/chef, -/turf/open/floor/plating/snowed/coldroom, -/area/station/service/kitchen/coldroom) -"fUr" = ( -/obj/machinery/airalarm/directional/south, -/obj/structure/closet/emcloset, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"fUI" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/engineering/storage/tech) -"fUL" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"fUM" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/research_director, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"fUR" = ( -/turf/closed/wall, -/area/station/hallway/secondary/entry) -"fUZ" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/mine/eva) -"fVe" = ( -/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/commons/storage/primary) -"fVo" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"fVq" = ( -/obj/item/trash/cheesie, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"fVA" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/mine/eva/lower) -"fVD" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/engineering{ - name = "Utilities Room" - }, -/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/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"fVE" = ( -/obj/machinery/power/turbine/turbine_outlet{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"fVS" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/iron, -/area/station/service/janitor) -"fWa" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/security/prison/rec) -"fWe" = ( -/obj/machinery/hydroponics/soil, -/obj/item/plant_analyzer, -/turf/open/floor/grass, -/area/station/security/prison/garden) -"fWl" = ( -/obj/structure/table, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/micro_laser/high, -/obj/item/stock_parts/micro_laser/high, -/obj/item/stock_parts/micro_laser/high, -/obj/item/stock_parts/micro_laser/high, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"fWr" = ( -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/sign/poster/random/directional/north, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/iron/white/smooth_large, -/area/station/service/kitchen/diner) -"fWw" = ( -/obj/structure/railing/corner, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"fWL" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -11; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/aft/greater) -"fWO" = ( -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"fWS" = ( -/obj/structure/mineral_door/wood, -/obj/structure/barricade/wooden/crude/snow, -/turf/open/floor/wood, -/area/station/maintenance/space_hut/cabin) -"fWX" = ( -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"fXb" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Captain's Quarters" - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"fXf" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/machinery/door/window/left/directional/north{ - name = "Shower Cubicle" - }, -/obj/item/soap/nanotrasen, -/turf/open/floor/iron/freezer, -/area/station/maintenance/starboard/fore) -"fXi" = ( -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark/corner, -/area/station/security/processing) -"fXj" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/red/line{ - dir = 1 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/range) -"fXr" = ( -/turf/open/floor/iron/white/corner{ - dir = 8 - }, -/area/station/science/research) -"fXu" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/white, -/area/station/science/genetics) -"fXO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/toilet) -"fXP" = ( -/obj/effect/turf_decal/stripes/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, -/area/mine/laborcamp) -"fYa" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Primary Tool Storage" - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"fYd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"fYg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/station/commons/locker) -"fYh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/station/service/bar) -"fYi" = ( -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/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/security/prison/work) -"fYj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"fYH" = ( -/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/mine/eva/lower) -"fYL" = ( -/obj/machinery/seed_extractor, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/mine/laborcamp) -"fYO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"fYQ" = ( -/obj/machinery/light/small/directional/west, -/mob/living/simple_animal/mouse/brown/tom, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"fYS" = ( -/turf/closed/wall, -/area/station/commons/storage/primary) -"fZb" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "miner-passthrough" - }, -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Dock" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/plating, -/area/station/cargo/miningdock) -"fZg" = ( -/obj/machinery/computer/teleporter{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/command/teleporter) -"fZk" = ( -/obj/structure/table/optable{ - name = "Robotics Operating Table" - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"fZo" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/wood/parquet, -/area/station/service/bar/atrium) -"fZq" = ( -/obj/structure/curtain/cloth, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/toilet) -"fZT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/aft/greater) -"gaa" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"gam" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - id_tag = "cargooffice"; - name = "Cargo Office" - }, -/obj/effect/landmark/navigate_destination, -/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/supply/general, -/obj/effect/mapping_helpers/airlock/access/any/supply/mining, -/turf/open/floor/iron, -/area/station/cargo/office) -"gaq" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/coffee, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/cargo/storage) -"gar" = ( -/obj/structure/lattice/catwalk, -/turf/open/misc/asteroid/snow/icemoon, -/area/station/maintenance/aft/greater) -"gas" = ( -/obj/structure/table, -/obj/machinery/camera/directional/east{ - c_tag = "Ordnance Office"; - network = list("ss13","rd") - }, -/obj/structure/disposalpipe/segment, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 3; - pixel_y = -2 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"gav" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"gax" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners, -/turf/open/floor/engine, -/area/station/engineering/atmos/hfr_room) -"gaz" = ( -/obj/structure/table, -/obj/machinery/light/directional/east, -/obj/machinery/firealarm/directional/east, -/obj/item/pipe_dispenser, -/obj/item/pipe_dispenser{ - pixel_x = 3; - pixel_y = 7 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"gaS" = ( -/obj/item/hot_potato/harmless/toy, -/obj/structure/table/wood, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/eighties/red, -/area/station/security/prison/safe) -"gaT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/modular_computer/console/preset/id{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"gbq" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/maintenance/port/aft) -"gbt" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/checkpoint/customs/auxiliary) -"gbu" = ( -/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/security/prison/mess) -"gbv" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"gbz" = ( -/obj/structure/sign/warning/secure_area/directional/west, -/obj/structure/sign/warning/secure_area/directional/west, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"gbB" = ( -/obj/structure/closet/crate, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/obj/effect/decal/cleanable/dirt/dust, -/mob/living/simple_animal/mouse/white, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"gbF" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 9 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"gbJ" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Armory" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) -"gbL" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Maintenance External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/sign/warning/directional/north, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"gbP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"gck" = ( -/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/maintenance{ - name = "Vestibule Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/plating, -/area/station/security/processing) -"gcy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/firedoor/heavy, -/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/ordnance) -"gcE" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/eighties/red, -/area/station/security/prison/safe) -"gcP" = ( -/obj/item/storage/book/bible, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/table/wood, -/turf/open/floor/iron/dark, -/area/station/security/prison/rec) -"gcV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/glass/reinforced, -/area/station/engineering/atmos/pumproom) -"gcZ" = ( -/obj/structure/table, -/obj/item/storage/bag/tray, -/obj/item/food/piedough, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"gdf" = ( -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"gdg" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/components/unary/passive_vent{ - dir = 8 - }, -/obj/structure/sign/warning/fire/directional/south, -/turf/open/openspace/icemoon/keep_below, -/area/icemoon/underground/explored) -"gdv" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"gdx" = ( -/obj/machinery/light/directional/south, -/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/corner, -/area/station/hallway/secondary/entry) -"gdC" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"gdP" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"gea" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"geg" = ( -/obj/machinery/light/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/science/explab) -"gem" = ( -/obj/structure/railing, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"ger" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/mine/eva/lower) -"geG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"geJ" = ( -/obj/structure/disposalpipe/segment{ - 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/starboard/aft) -"geP" = ( -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Medbay" - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/medical/central) -"geV" = ( -/obj/structure/ladder, -/obj/structure/cable, -/turf/open/floor/iron/smooth_large, -/area/station/engineering/lobby) -"geW" = ( -/obj/structure/cable, -/obj/structure/closet, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"gfb" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/central/greater) -"gfo" = ( -/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/turf_decal/siding/yellow, -/turf/open/floor/iron, -/area/station/engineering/storage) -"gfw" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/table, -/turf/open/floor/plating, -/area/mine/eva/lower) -"ggn" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Maintenance" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"ggD" = ( -/obj/effect/turf_decal/tile/red/full, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/iron/large, -/area/station/service/kitchen/diner) -"ggG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"ggR" = ( -/obj/machinery/computer/teleporter{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"ggS" = ( -/obj/structure/sign/warning/biohazard/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"ghl" = ( -/obj/structure/industrial_lift, -/turf/open/openspace, -/area/station/commons/storage/mining) -"ghx" = ( -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"ghE" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Security - Lower Hallway South" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"ghH" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/maintenance/fore/greater) -"ghJ" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/effect/landmark/start/captain, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"ghN" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"ghY" = ( -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"giv" = ( -/obj/machinery/door/window/left/directional/east{ - name = "Coffin Storage"; - req_access = list("chapel_office") - }, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark/side{ - dir = 6 - }, -/area/station/service/chapel) -"giD" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 1 - }, -/obj/item/seeds/watermelon, -/turf/open/floor/grass, -/area/station/maintenance/starboard/fore) -"giF" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/commons/fitness) -"giH" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/airalarm/directional/south, -/obj/machinery/light/directional/south, -/turf/open/openspace, -/area/station/science/xenobiology) -"giN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/iron/dark/side, -/area/station/security/prison/workout) -"giP" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"giQ" = ( -/obj/item/radio/intercom/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"giV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/mine/eva/lower) -"gjc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/library) -"gjg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/table, -/obj/item/storage/medkit/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/storage/medkit/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/storage/medkit/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/healthanalyzer, -/obj/item/healthanalyzer, -/obj/item/healthanalyzer, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"gjh" = ( -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/large, -/area/station/service/kitchen/diner) -"gjq" = ( -/turf/open/openspace/icemoon/keep_below, -/area/icemoon/underground/explored) -"gjM" = ( -/obj/structure/disposalpipe/segment, -/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/starboard/upper) -"gjP" = ( -/obj/structure/table, -/obj/item/clothing/gloves/cargo_gauntlet, -/obj/item/clothing/gloves/cargo_gauntlet, -/obj/item/clothing/gloves/cargo_gauntlet, -/turf/open/floor/iron, -/area/station/cargo/storage) -"gjS" = ( -/obj/structure/chair{ - dir = 8; - name = "Judge" - }, -/obj/machinery/camera/directional/east{ - c_tag = "Courtroom" - }, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/wood, -/area/station/security/courtroom) -"gjW" = ( -/obj/structure/chair, -/turf/open/floor/iron/cafeteria, -/area/station/hallway/secondary/exit/departure_lounge) -"gka" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter/room) -"gky" = ( -/obj/structure/cable, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"gkE" = ( -/obj/docking_port/stationary{ - dheight = 4; - dir = 8; - dwidth = 4; - height = 9; - id = "aux_base_zone"; - name = "Aux Base Zone"; - roundstart_template = /datum/map_template/shuttle/aux_base/default; - width = 9 - }, -/turf/open/floor/plating, -/area/station/construction/mining/aux_base) -"gkK" = ( -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - dir = 4; - name = "Supply multi deck pipe adapter" - }, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - dir = 4; - name = "Scrubbers multi deck pipe adapter" - }, -/obj/effect/turf_decal/stripes/box, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/lobby) -"gkP" = ( -/obj/structure/disposalpipe/segment{ - 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/starboard/fore) -"gkT" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"glc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"glh" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/solars/port/aft) -"glk" = ( -/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/catwalk_floor/iron_smooth, -/area/station/maintenance/department/chapel) -"glz" = ( -/obj/structure/table, -/obj/item/paper, -/obj/item/pen, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/west{ - c_tag = "Labor Camp Cell 2"; - network = list("labor") - }, -/turf/open/floor/iron, -/area/mine/laborcamp) -"glC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/dark/textured_large, -/area/station/security/brig) -"glI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"glS" = ( -/obj/machinery/camera/directional/south{ - c_tag = "MiniSat Pod Access"; - network = list("minisat"); - start_active = 1 - }, -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"glX" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"gma" = ( -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/bed/pod, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/service/salon) -"gmb" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1 - }, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"gmB" = ( -/obj/structure/stairs/south{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"gmJ" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Port to Infiltrate/Filter" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"gmL" = ( -/obj/structure/table, -/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, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"gmO" = ( -/obj/structure/frame/machine, -/obj/item/circuitboard/machine/chem_master, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"gmR" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/airalarm/directional/north, -/obj/structure/reagent_dispensers/fueltank/large, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"gmW" = ( -/turf/closed/wall, -/area/station/commons/fitness) -"gnb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/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) -"gne" = ( -/obj/structure/closet/secure_closet/security/engine, -/obj/machinery/requests_console/directional/north{ - anon_tips_receiver = 1; - assistance_requestable = 1; - department = "Security"; - departmentType = 5; - name = "Security Requests Console" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) -"gnh" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/department/cargo) -"gnj" = ( -/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/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, -/obj/effect/mapping_helpers/airlock/access/any/security/general, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) -"gnw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"gnD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/requests_console/auto_name/directional/west, -/turf/open/floor/iron, -/area/station/commons/dorms) -"gnL" = ( -/obj/structure/closet/bombcloset/security, -/turf/open/floor/iron/smooth, -/area/station/security/brig/upper) -"gnM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/wood, -/area/station/command/meeting_room) -"gnR" = ( -/obj/structure/toilet/greyscale{ - cistern = 1; - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/toilet) -"gnZ" = ( -/obj/structure/marker_beacon/burgundy, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"gob" = ( -/obj/structure/closet/wardrobe/black, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"goi" = ( -/obj/machinery/light/directional/east, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/wood, -/area/station/service/library) -"goq" = ( -/obj/structure/statue/snow/snowman, -/turf/open/misc/asteroid/snow/standard_air, -/area/station/science/research) -"gov" = ( -/obj/machinery/door/window/left/directional/west{ - name = "Janitorial Delivery"; - req_access = list("janitor") - }, -/obj/effect/turf_decal/delivery, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/iron, -/area/station/service/janitor) -"goB" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"goE" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Pure to Port" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"goF" = ( -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/virology{ - name = "Break Room" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/obj/effect/turf_decal/tile/green/full, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/turf/open/floor/iron/dark/smooth_large, -/area/station/medical/virology) -"gpj" = ( -/obj/structure/chair/sofa/corp/right{ - dir = 8 - }, -/obj/effect/landmark/start/scientist, -/turf/open/floor/iron/dark, -/area/station/science/breakroom) -"gpp" = ( -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"gpt" = ( -/obj/machinery/button/door/directional/east{ - id = "kanyewest"; - name = "Privacy Shutters" - }, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"gpH" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"gpK" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/button/door/directional/south{ - id = "surgery"; - name = "Surgery Shutter Control"; - pixel_x = -24; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/fore) -"gpT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"gqj" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/starboard) -"gqm" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "robo1" - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"gqv" = ( -/obj/structure/sign/poster/contraband/random/directional/west, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"gqB" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"gqG" = ( -/obj/structure/sign/warning, -/turf/closed/wall/ice, -/area/icemoon/underground/explored) -"gqT" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - 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/command/heads_quarters/rd) -"gqZ" = ( -/obj/machinery/door_timer{ - id = "Cell 2"; - name = "Cell 2"; - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/textured, -/area/station/security/brig) -"grh" = ( -/obj/machinery/vending/security, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/smooth_edge, -/area/station/security/lockers) -"grr" = ( -/obj/structure/table, -/obj/item/storage/box/shipping, -/obj/item/clothing/head/soft, -/obj/item/clothing/head/soft, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/sign/warning/cold_temp/directional/north, -/turf/open/floor/iron, -/area/station/cargo/storage) -"grs" = ( -/obj/structure/sign/warning/fire/directional/south, -/turf/open/floor/glass/reinforced, -/area/station/science/ordnance/office) -"grz" = ( -/obj/machinery/exodrone_launcher, -/obj/item/exodrone{ - pixel_y = 8 - }, -/obj/effect/turf_decal/trimline/yellow/end, -/obj/effect/turf_decal/trimline/yellow/mid_joiner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/mid_joiner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/mid_joiner, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron/smooth_large, -/area/station/cargo/drone_bay) -"grA" = ( -/obj/structure/table/reinforced, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron, -/area/station/command/bridge) -"grD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Psychology" - }, -/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/turf_decal/tile/blue/full, -/obj/effect/mapping_helpers/airlock/access/all/medical/psychology, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/psychology) -"grI" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"grN" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"grT" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"grU" = ( -/obj/structure/sign/poster/official/random/directional/north, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"gsk" = ( -/obj/structure/reflector/single/anchored{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"gst" = ( -/obj/effect/spawner/structure/window, -/obj/structure/curtain/cloth/fancy/mechanical{ - id = "barbershopcurtains" - }, -/turf/open/floor/plating, -/area/service/salon) -"gsD" = ( -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/white/smooth_large, -/area/station/service/kitchen/diner) -"gsH" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"gsT" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"gsW" = ( -/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, -/obj/machinery/door/airlock/freezer{ - name = "The Ice Box"; - desc = "The freezer where the chef keeps all the stuff that needs to be kept cold. Ice cold." - }, -/obj/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/service/kitchen/coldroom) -"gtc" = ( -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/machinery/duct, -/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_large, -/area/station/service/kitchen/diner) -"gtg" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer1{ - dir = 8 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"gti" = ( -/turf/open/openspace, -/area/station/maintenance/starboard/aft) -"gtj" = ( -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/three, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"gtq" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hop"; - name = "Privacy Shutters"; - dir = 8 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/command/heads_quarters/hop) -"gtw" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"gtF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"guS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"guU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, -/turf/closed/wall, -/area/station/engineering/atmos) -"gvc" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Mining Mech Bay External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "mining-mechbay-external" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron/smooth, -/area/mine/mechbay) -"gvd" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"gvj" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"gvo" = ( -/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) -"gvK" = ( -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"gwm" = ( -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/iron/white/side{ - dir = 9 - }, -/area/station/science/research) -"gwy" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/landmark/start/barber, -/turf/open/floor/iron, -/area/service/salon) -"gwJ" = ( -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 5 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 1 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 4 - }, -/obj/effect/turf_decal/tile/dark, -/obj/structure/table/reinforced/plastitaniumglass, -/turf/open/floor/iron/white/corner{ - dir = 8 - }, -/area/mine/living_quarters) -"gwK" = ( -/turf/closed/wall/r_wall, -/area/station/security/checkpoint/engineering) -"gxe" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "QM #1" - }, -/obj/effect/turf_decal/bot, -/mob/living/simple_animal/bot/mulebot{ - beacon_freq = 1400; - home_destination = "QM #1"; - suffix = "#1" - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"gxm" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"gxn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"gxv" = ( -/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) -"gxx" = ( -/obj/item/radio/intercom/prison/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/prison/rec) -"gxM" = ( -/obj/effect/turf_decal/tile/dark{ - dir = 1 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 1 - }, -/turf/open/floor/iron/white/side, -/area/mine/living_quarters) -"gxO" = ( -/obj/structure/table/reinforced, -/obj/item/hand_labeler{ - pixel_y = 8 - }, -/obj/item/hand_labeler{ - pixel_y = 8 - }, -/obj/item/storage/box, -/obj/item/storage/box, -/obj/item/storage/box, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"gxP" = ( -/obj/structure/reagent_dispensers/plumbed, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/iron/large, -/area/station/engineering/atmos) -"gxR" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/item/stack/rods/fifty, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) -"gxS" = ( -/obj/effect/turf_decal/bot, -/obj/structure/ore_box, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/mine/eva) -"gxU" = ( -/obj/effect/turf_decal/tile/blue, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"gxY" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"gxZ" = ( -/obj/structure/sign/painting/library{ - pixel_y = 32 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"gya" = ( -/obj/structure/table/wood, -/obj/item/storage/medkit/regular, -/turf/open/floor/iron, -/area/station/commons/dorms) -"gyc" = ( -/obj/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/greater) -"gyf" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster/directional/south, -/obj/item/storage/fancy/candle_box, -/obj/item/storage/fancy/candle_box{ - pixel_x = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"gyk" = ( -/obj/structure/disposalpipe/segment, -/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/greater) -"gyr" = ( -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/structure/chair/stool/bar/directional/east, -/turf/open/floor/iron/large, -/area/station/service/kitchen/diner) -"gyw" = ( -/obj/machinery/door/window/right/directional/west{ - name = "Apiary"; - req_access = list("hydroponics") - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"gyG" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"gyR" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/main) -"gyY" = ( -/obj/machinery/vending/wardrobe/viro_wardrobe, -/obj/effect/turf_decal/tile/green/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/medical/virology) -"gzd" = ( -/obj/machinery/camera/autoname/directional/north, -/obj/machinery/light/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"gzv" = ( -/turf/open/floor/iron, -/area/mine/production) -"gzw" = ( -/turf/open/openspace, -/area/station/hallway/secondary/service) -"gzz" = ( -/obj/machinery/computer/security/telescreen/entertainment/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/computer/monitor{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"gzB" = ( -/obj/machinery/recharge_station, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"gzN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"gzT" = ( -/obj/structure/sink{ - pixel_y = 30 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"gzV" = ( -/obj/structure/mineral_door/paperframe{ - name = "Meditation Room" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/sepia, -/area/station/security/prison/rec) -"gzY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"gAe" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock) -"gAn" = ( -/obj/machinery/door/firedoor/border_only, -/turf/open/openspace, -/area/station/security/prison) -"gAt" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"gAu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"gAy" = ( -/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) -"gAD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"gAJ" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L11" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"gAM" = ( -/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/engineering{ - name = "Utilities Room" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"gAN" = ( -/obj/effect/turf_decal/tile/blue/half{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green/half{ - dir = 8 - }, -/obj/structure/reagent_dispensers/watertank/high, -/obj/effect/turf_decal/stripes/line, -/obj/item/reagent_containers/glass/watering_can, -/turf/open/floor/iron/half{ - dir = 1 - }, -/area/station/service/hydroponics) -"gAR" = ( -/obj/structure/falsewall, -/turf/open/floor/plating, -/area/station/security/prison) -"gAY" = ( -/obj/structure/sign/warning/cold_temp/directional/west, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"gBb" = ( -/obj/machinery/door/window/left/directional/north{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen 3"; - req_access = list("xenobiology") - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "Xenobio Pen 3 Blast Door" - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"gBc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/carpet/blue, -/area/station/security/prison/work) -"gBk" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Central Hallway East" - }, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"gBl" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/icemoon/underground/explored) -"gBq" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"gBs" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"gBv" = ( -/obj/machinery/door/window/left/directional/south{ - name = "Engineering Delivery"; - req_access = list("engineering") - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/textured_large, -/area/station/engineering/storage) -"gBx" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"gBI" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"gBX" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/security/prison/work) -"gCd" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"gCe" = ( -/obj/effect/turf_decal/trimline/dark_green/corner, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage) -"gCg" = ( -/obj/machinery/smartfridge/organ, -/turf/closed/wall, -/area/station/medical/surgery/aft) -"gCh" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/mine/storage) -"gCu" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"gCS" = ( -/obj/structure/window/reinforced, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/service/chapel) -"gCY" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Engineering External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "Engineering-External" - }, -/turf/open/floor/plating, -/area/station/engineering/lobby) -"gDe" = ( -/obj/structure/chair{ - dir = 1; - name = "Prosecution" - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/security/courtroom) -"gDp" = ( -/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/department/medical/central) -"gDJ" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/bluespace_vendor/directional/north, -/obj/effect/mapping_helpers/trapdoor_placer, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"gDO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"gDS" = ( -/obj/structure/table, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"gDV" = ( -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"gDZ" = ( -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"gEb" = ( -/obj/machinery/button/door/directional/west{ - id = "riot"; - name = "Anti-Riot Shutters"; - pixel_x = -7; - pixel_y = 32; - req_access = list("security") - }, -/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, -/area/station/hallway/primary/fore) -"gEd" = ( -/obj/machinery/camera/directional/east{ - c_tag = "MiniSat External SouthWest"; - network = list("minisat"); - start_active = 1 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"gEh" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Dormitories Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"gEn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/science/server) -"gEo" = ( -/obj/structure/table, -/obj/item/stock_parts/cell/high, -/obj/machinery/cell_charger{ - pixel_y = 5 - }, -/turf/open/floor/iron/white/corner{ - dir = 4 - }, -/area/station/science/explab) -"gEq" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/service/library) -"gEr" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Engineering External Access" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, -/turf/open/floor/plating, -/area/station/engineering/storage_shared) -"gEw" = ( -/obj/machinery/suit_storage_unit/rd, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"gEz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"gEE" = ( -/turf/open/openspace, -/area/station/service/chapel) -"gEF" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/table/reinforced/plastitaniumglass, -/obj/item/storage/medkit/fire{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/medkit/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/iron, -/area/mine/living_quarters) -"gEL" = ( -/obj/structure/table/glass, -/obj/item/hand_labeler, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 6 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Service-Botany Top 1" - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"gER" = ( -/turf/open/floor/iron, -/area/station/command/bridge) -"gET" = ( -/obj/effect/turf_decal/stripes/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, -/area/station/hallway/primary/central) -"gEV" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/iron/cafeteria, -/area/station/hallway/secondary/exit/departure_lounge) -"gFj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"gFx" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/gas_mask, -/turf/open/floor/plating/icemoon, -/area/station/maintenance/solars/port/aft) -"gFD" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"gFH" = ( -/obj/structure/tank_holder/extinguisher, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"gFR" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/suit/radiation, -/obj/item/clothing/head/radiation, -/obj/item/geiger_counter, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/clothing/glasses/meson, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"gFX" = ( -/turf/closed/wall, -/area/icemoon/underground/explored) -"gGf" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"gGj" = ( -/obj/machinery/airalarm/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"gGo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/east, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"gGs" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) -"gGt" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Engineering External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/engineering/main) -"gGC" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"gGE" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hooded/wintercoat{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/shoes/winterboots, -/obj/machinery/firealarm/directional/south, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/white, -/area/station/hallway/secondary/exit/departure_lounge) -"gGF" = ( -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"gGJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/station/service/bar) -"gGZ" = ( -/obj/machinery/computer/bank_machine, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"gHe" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"gHg" = ( -/obj/machinery/mineral/processing_unit_console, -/turf/closed/wall, -/area/mine/laborcamp) -"gHm" = ( -/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/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"gHq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"gHv" = ( -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"gHA" = ( -/mob/living/simple_animal/hostile/asteroid/polarbear{ - move_force = 999; - name = "Louie" - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"gHD" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/hallway/secondary/exit/departure_lounge) -"gHE" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"gHF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/line, -/turf/open/floor/iron/dark/textured, -/area/station/security/range) -"gHM" = ( -/obj/effect/turf_decal/weather/snow/corner, -/obj/structure/fence{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"gHN" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"gHP" = ( -/obj/machinery/space_heater/improvised_chem_heater, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"gHY" = ( -/obj/effect/landmark/start/scientist, -/obj/structure/chair/stool/directional/west, -/turf/open/floor/iron/checker, -/area/station/science/lab) -"gIk" = ( -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) -"gIl" = ( -/obj/structure/fence/corner{ - dir = 6 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"gIo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"gIu" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/mine/mechbay) -"gIx" = ( -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured_edge{ - dir = 4 - }, -/area/station/security/prison) -"gIF" = ( -/obj/machinery/holopad, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"gII" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/glass, -/obj/structure/cable, -/turf/open/floor/iron/smooth, -/area/station/security/holding_cell) -"gIL" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Secure Walkway" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"gIY" = ( -/turf/closed/wall, -/area/station/medical/medbay/central) -"gJm" = ( -/obj/structure/table/glass, -/obj/item/food/grown/wheat, -/obj/item/food/grown/watermelon, -/obj/item/food/grown/watermelon, -/obj/item/food/grown/watermelon, -/obj/item/food/grown/citrus/orange, -/obj/item/food/grown/grapes, -/obj/item/food/grown/cocoapod, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"gJo" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/treatment_center) -"gJs" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"gJy" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"gJz" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/commons/storage/art) -"gJC" = ( -/obj/structure/chair/stool/directional/east, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/commons/dorms) -"gJM" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"gKd" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Cargo Warehouse External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "cargo-warehouse-external" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, -/turf/open/floor/iron/smooth_large, -/area/station/cargo/warehouse) -"gKk" = ( -/obj/structure/table/reinforced, -/obj/item/storage/secure/safe/caps_spare/directional/east, -/turf/open/floor/iron, -/area/station/command/bridge) -"gKl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Secondary Storage" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"gKn" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/radio/intercom/directional/west, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"gKq" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/grimy, -/area/station/maintenance/aft/greater) -"gKG" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/command/bridge) -"gKQ" = ( -/turf/closed/wall, -/area/station/security/courtroom) -"gLk" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"gLl" = ( -/obj/effect/turf_decal/tile/red/half, -/obj/structure/closet/emcloset, -/obj/machinery/camera/directional/north{ - c_tag = "Security Entrance" - }, -/turf/open/floor/iron/smooth_half, -/area/station/security/brig/upper) -"gLo" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood/tile, -/area/station/service/theater) -"gLu" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"gLx" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - 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, -/area/station/commons/fitness) -"gLF" = ( -/obj/structure/rack, -/obj/item/clothing/shoes/magboots, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"gLH" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/side, -/area/mine/eva) -"gLN" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"gLS" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall/r_wall, -/area/station/science/xenobiology) -"gLZ" = ( -/obj/structure/table, -/obj/item/flashlight/lamp, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"gMe" = ( -/obj/effect/turf_decal/tile/purple, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"gMg" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/stripes/asteroid/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"gMm" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump/off{ - dir = 1; - name = "N2 To Pure" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"gMx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) -"gMK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"gMM" = ( -/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, -/area/station/hallway/primary/central) -"gMN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/sign/warning/secure_area/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos) -"gMR" = ( -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/workout) -"gMZ" = ( -/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/starboard/fore) -"gNg" = ( -/obj/machinery/camera/directional/north{ - c_tag = "MiniSat External South"; - network = list("minisat"); - start_active = 1 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"gNh" = ( -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"gNi" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/dropper, -/turf/open/floor/iron/cafeteria, -/area/station/science/lab) -"gNm" = ( -/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/greater) -"gNH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"gNT" = ( -/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) -"gOb" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "cmoprivacy"; - name = "CMO Office" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/command/heads_quarters/cmo) -"gOy" = ( -/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) -"gOz" = ( -/obj/machinery/airalarm/directional/east, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/light/directional/east, -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/stamp/cmo, -/obj/item/clothing/neck/stethoscope, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"gOJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"gOM" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Xenobiology Pens Observation - Port Fore"; - network = list("ss13","rd","xeno") - }, -/obj/machinery/light/directional/west, -/turf/open/openspace, -/area/station/science/xenobiology) -"gOR" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"gOS" = ( -/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/red, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"gOT" = ( -/mob/living/simple_animal/mouse/white{ - desc = "This mouse smells faintly of alcohol."; - name = "Mik" - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/fore/lesser) -"gOU" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 1 - }, -/turf/open/floor/plating, -/area/mine/production) -"gOY" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"gPj" = ( -/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/door/airlock/hatch{ - name = "Morgue" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"gPn" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Armory" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/ai_monitored/security/armory/upper) -"gPp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"gPB" = ( -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"gPE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/cafeteria{ - dir = 8 - }, -/area/station/science/research) -"gPR" = ( -/obj/effect/turf_decal/trimline/green/filled/warning, -/obj/machinery/duct, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"gPX" = ( -/obj/machinery/computer/atmos_control/mix_tank{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"gPY" = ( -/obj/structure/disposalpipe/segment, -/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/breakroom) -"gPZ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"gQb" = ( -/obj/effect/turf_decal/siding/thinplating_new{ - dir = 1 - }, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"gQd" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Chapel South" - }, -/obj/machinery/status_display/evac/directional/south, -/obj/structure/closet/crate/bin, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"gQe" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"gQj" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/obj/machinery/disposal/bin, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/stone, -/area/station/service/bar) -"gQq" = ( -/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, -/area/station/hallway/primary/aft) -"gQs" = ( -/obj/effect/turf_decal/tile/dark{ - dir = 8 - }, -/obj/effect/turf_decal/tile/dark, -/obj/effect/turf_decal/stripes/asteroid/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/white/side{ - dir = 1 - }, -/area/mine/living_quarters) -"gQw" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"gQE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 10 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/rec) -"gQO" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Chapel Office" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/landmark/navigate_destination{ - location = "Chapel Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"gQZ" = ( -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"gRa" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/commons/storage/mining) -"gRm" = ( -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - 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/plating, -/area/station/maintenance/department/medical/morgue) -"gRI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"gSa" = ( -/obj/structure/toilet{ - pixel_y = 12 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/landmark/start/psychologist, -/turf/open/floor/iron/freezer, -/area/station/medical/break_room) -"gSr" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/suit/radiation, -/obj/item/clothing/head/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) -"gSy" = ( -/turf/open/floor/iron, -/area/station/security/prison/workout) -"gSE" = ( -/obj/machinery/biogenerator, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"gSH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"gSN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/table, -/obj/item/circuitboard/aicore, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"gSV" = ( -/obj/machinery/light/directional/south, -/obj/structure/bodycontainer/morgue{ - dir = 1 - }, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/service/chapel/office) -"gTi" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Chemistry Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow/full, -/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, -/turf/open/floor/iron/large, -/area/station/medical/treatment_center) -"gTs" = ( -/obj/structure/window/reinforced, -/obj/machinery/holopad, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) -"gTw" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/openspace, -/area/station/security/prison) -"gTK" = ( -/turf/closed/wall, -/area/station/engineering/engine_smes) -"gTW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"gUg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"gUo" = ( -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/wood, -/area/station/service/library) -"gUp" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"gUs" = ( -/obj/effect/turf_decal/tile/red/anticorner/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/corner{ - dir = 1 - }, -/area/station/security/processing) -"gUx" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/laborcamp) -"gUB" = ( -/obj/structure/chair/stool/directional/south, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"gUF" = ( -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 4 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"gUQ" = ( -/obj/structure/fence/door{ - dir = 4 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"gUT" = ( -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"gUY" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"gVe" = ( -/obj/structure/table, -/obj/effect/spawner/random/trash/food_packaging, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/science/breakroom) -"gVn" = ( -/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, -/area/station/hallway/secondary/service) -"gVr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"gVt" = ( -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/hallway/secondary/exit/departure_lounge) -"gVx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"gVC" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible/layer2, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{ - dir = 8 - }, -/obj/machinery/airlock_sensor/incinerator_atmos{ - pixel_y = 24 - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"gVO" = ( -/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/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"gVP" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/chair/comfy/barber_chair{ - dir = 8 - }, -/turf/open/floor/iron, -/area/service/salon) -"gVS" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"gWd" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/edge{ - dir = 8 - }, -/area/station/engineering/lobby) -"gWr" = ( -/obj/structure/tank_dispenser, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"gWy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/cold_temp, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"gWQ" = ( -/obj/machinery/chem_master, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"gWX" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"gWZ" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/ordnance_burn_chamber_input, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"gXe" = ( -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"gXh" = ( -/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_large, -/area/station/security/brig) -"gXl" = ( -/obj/machinery/dna_scannernew, -/obj/machinery/light/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Genetics Lab"; - network = list("ss13","rd") - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"gXm" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/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, -/turf/open/floor/iron/smooth_edge{ - dir = 8 - }, -/area/station/maintenance/department/medical/central) -"gXp" = ( -/obj/structure/table/wood, -/obj/item/folder/yellow, -/obj/item/pen, -/turf/open/floor/wood, -/area/station/service/library) -"gXv" = ( -/obj/machinery/portable_atmospherics/pump{ - name = "Lil Pump" - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"gXy" = ( -/obj/machinery/door/airlock/public/glass{ - id_tag = "gulag2"; - name = "Cell 2" - }, -/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/mine/laborcamp) -"gXJ" = ( -/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/white, -/area/station/science/lab) -"gYa" = ( -/obj/structure/railing{ - dir = 9 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"gYg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"gYi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/spawner/structure/window/hollow/reinforced, -/turf/open/floor/plating, -/area/mine/living_quarters) -"gYm" = ( -/obj/machinery/light/directional/east, -/turf/open/floor/iron/white/side{ - dir = 9 - }, -/area/station/science/research) -"gYp" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"gYz" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"gZa" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"gZb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/station/medical/virology) -"gZl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/space_heater, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"gZq" = ( -/obj/machinery/firealarm/directional/south, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"gZt" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/obj/effect/gibspawner/human, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"gZx" = ( -/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/ordnance/office) -"gZz" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/chem_master, -/obj/structure/sign/warning/no_smoking/circle{ - pixel_x = -27; - pixel_y = -26 - }, -/turf/open/floor/glass/reinforced, -/area/station/medical/treatment_center) -"gZF" = ( -/obj/structure/table/glass, -/obj/item/hemostat, -/obj/item/stock_parts/manipulator, -/obj/item/storage/bag/trash, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"gZJ" = ( -/obj/machinery/firealarm/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral, -/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/commons/fitness) -"gZO" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - 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, -/area/station/engineering/main) -"gZP" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/door/airlock/security{ - name = "Recreation Block" - }, -/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/side{ - dir = 1 - }, -/area/station/security/prison) -"hac" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ - dir = 9 - }, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"haf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Gas to Cooling Loop" - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"han" = ( -/obj/structure/table, -/obj/item/plate, -/obj/item/kitchen/fork, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/mine/laborcamp) -"hao" = ( -/obj/structure/frame/computer{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/fore) -"hap" = ( -/turf/open/floor/vault, -/area/station/security/prison/rec) -"haq" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/mine/eva/lower) -"haC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"haN" = ( -/obj/machinery/deepfryer, -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/structure/sign/poster/contraband/moffuchis_pizza{ - pixel_x = 32 - }, -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"haQ" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/incinerator_input{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"hbp" = ( -/obj/machinery/photocopier, -/turf/open/floor/wood, -/area/station/command/meeting_room) -"hbC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "pharmacy_shutters2"; - name = "Pharmacy Shutter" - }, -/turf/open/floor/plating, -/area/station/medical/pharmacy) -"hbI" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/auxiliary) -"hbR" = ( -/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, -/obj/machinery/holopad, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"hce" = ( -/obj/machinery/door/airlock{ - id_tag = "AuxToilet3"; - name = "Unit 3" - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/locker) -"hcg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"hcv" = ( -/obj/machinery/newscaster/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"hcF" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) -"hcG" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/openspace, -/area/station/engineering/atmos/storage) -"hcL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"hdf" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/chair/comfy/barber_chair{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/service/salon) -"hdh" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"hdj" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"hds" = ( -/obj/structure/disposalpipe/junction{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"hdw" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"hdz" = ( -/obj/structure/sign/warning/gas_mask, -/turf/closed/wall, -/area/station/hallway/secondary/exit/departure_lounge) -"hdH" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"hdT" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"hdV" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/turf/open/floor/iron, -/area/mine/laborcamp) -"hdW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"hdY" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/sign/warning/gas_mask{ - desc = "A sign that warns of dangerous gasses in the air, instructing you to wear internals."; - pixel_x = -2; - pixel_y = 32 - }, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/mine/eva/lower) -"hed" = ( -/obj/structure/sign/map/left{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"het" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/gas_mask, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"hex" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Mining Mech Bay External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "mining-mechbay-external" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron/smooth, -/area/mine/mechbay) -"hez" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"heH" = ( -/obj/structure/sign/poster/random/directional/west, -/turf/closed/wall/r_wall, -/area/station/maintenance/aft/lesser) -"heQ" = ( -/obj/structure/table, -/obj/item/stack/cable_coil, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"heS" = ( -/obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/ai_upload"; - name = "AI Upload Turret Control"; - pixel_y = -25 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Bridge Center" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"heX" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"hfc" = ( -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/science/xenobiology) -"hff" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/service/library) -"hfh" = ( -/obj/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/duct, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"hfq" = ( -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/obj/structure/window/reinforced/spawner/west, -/obj/item/knife/plastic, -/obj/structure/table/reinforced, -/obj/item/radio/intercom/prison/directional/north, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"hfv" = ( -/obj/machinery/processor{ - pixel_y = 6 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/mess) -"hfI" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"hfL" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"hfN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"hgc" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"hgh" = ( -/turf/closed/wall, -/area/station/medical/medbay/lobby) -"hgx" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/auxiliary) -"hgz" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"hgH" = ( -/obj/item/radio/intercom/prison/directional/west, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison) -"hgM" = ( -/turf/closed/wall, -/area/station/security/execution/transfer) -"hgY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"hhr" = ( -/obj/structure/weightmachine/weightlifter, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/workout) -"hhz" = ( -/obj/structure/bodycontainer/morgue{ - dir = 1 - }, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/service/chapel/office) -"hhT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/effect/landmark/start/chemist, -/turf/open/floor/iron/textured, -/area/station/medical/medbay/central) -"hic" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/science/genetics) -"hid" = ( -/obj/effect/turf_decal/tile/red/half{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/half{ - dir = 1 - }, -/area/station/hallway/secondary/service) -"hil" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"hio" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"hiq" = ( -/obj/machinery/requests_console/directional/north{ - department = "Robotics"; - departmentType = 5; - name = "Robotics Requests Console"; - receive_ore_updates = 1 - }, -/obj/machinery/light/directional/north, -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"hiF" = ( -/obj/machinery/light/floor, -/turf/open/floor/iron/white, -/area/mine/living_quarters) -"hjj" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chemical Storage" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/fore/greater) -"hjp" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/camera/directional/south{ - c_tag = "Testing Lab"; - network = list("ss13","rd") - }, -/turf/open/floor/iron, -/area/station/science/explab) -"hjv" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/service/hydroponics/garden) -"hjB" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"hjE" = ( -/turf/closed/wall/r_wall, -/area/station/science/explab) -"hjH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"hjI" = ( -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"hjM" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/department/medical/morgue) -"hjQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/sepia, -/area/station/security/prison/rec) -"hjR" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos/project) -"hjV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "viroview"; - dir = 4 - }, -/turf/open/floor/plating, -/area/station/medical/virology) -"hkb" = ( -/obj/structure/table/wood, -/obj/item/newspaper{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/paper_bin/carbon{ - pixel_x = -6; - pixel_y = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/commons/vacant_room/office) -"hke" = ( -/obj/machinery/light/directional/east, -/obj/structure/cable, -/obj/item/radio/intercom/prison/directional/east, -/turf/open/floor/carpet/red, -/area/station/security/prison/work) -"hkl" = ( -/obj/effect/turf_decal/tile/bar/opposingcorners, -/obj/structure/table/wood, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 8 - }, -/obj/structure/desk_bell{ - pixel_x = -6; - name = "The Regular's Bell"; - desc = "Why, I'm always here! I should get absolute service. Pronto, garcon!" - }, -/turf/open/floor/iron, -/area/station/service/bar) -"hkp" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/dark_blue/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"hkt" = ( -/obj/structure/disposalpipe/segment, -/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) -"hkU" = ( -/obj/effect/landmark/start/cargo_technician, -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"hle" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"hll" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"hlp" = ( -/obj/structure/chair/stool/directional/south{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"hlv" = ( -/obj/machinery/airalarm/directional/south, -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/item/bikehorn/rubberducky, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/locker) -"hlJ" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/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, -/area/station/hallway/secondary/entry) -"hlP" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"hlS" = ( -/obj/structure/table, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"hmb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/service/hydroponics) -"hme" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/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 = 6 - }, -/area/station/security/prison) -"hmf" = ( -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"hml" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"hmy" = ( -/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/fore/greater) -"hnd" = ( -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"hnf" = ( -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/service/kitchen/diner) -"hnn" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"hno" = ( -/obj/structure/sign/painting/library{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/service/library) -"hnt" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison) -"hnB" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/turf_decal/siding/thinplating/dark, -/turf/open/floor/plating, -/area/station/service/hydroponics) -"hnC" = ( -/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) -"hnN" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Xenobiology Pens Observation - Port Aft"; - network = list("ss13","rd","xeno") - }, -/turf/open/openspace, -/area/station/science/xenobiology) -"hnP" = ( -/turf/open/floor/iron/cafeteria{ - dir = 8 - }, -/area/station/science/research) -"hnV" = ( -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"hoe" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/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 = 10 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"hor" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/stone, -/area/mine/eva/lower) -"hoC" = ( -/obj/effect/turf_decal/tile/red, -/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, -/area/station/security/checkpoint/customs/auxiliary) -"hoD" = ( -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"hoO" = ( -/obj/item/paper/crumpled, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/iron/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"hoT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/status_display/ai/directional/north, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"hoV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"hpd" = ( -/turf/open/floor/plating, -/area/station/engineering/engine_smes) -"hpe" = ( -/obj/structure/table/wood, -/obj/machinery/camera/directional/east{ - c_tag = "Captain's Office" - }, -/obj/item/storage/lockbox/medal, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"hpi" = ( -/obj/effect/turf_decal/trimline, -/obj/machinery/shower{ - pixel_y = 22 - }, -/turf/open/floor/iron/smooth, -/area/mine/eva) -"hpm" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Starboard Primary Hallway 5" - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/hallway/primary/starboard) -"hpp" = ( -/obj/structure/sign/departments/chemistry/directional/south, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"hpv" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/obj/structure/fence/corner, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"hpx" = ( -/obj/structure/marker_beacon/burgundy, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"hpB" = ( -/obj/structure/window/reinforced/spawner/north, -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/workout) -"hpE" = ( -/obj/structure/marker_beacon/burgundy{ - name = "landing marker" - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"hpF" = ( -/obj/structure/table, -/obj/machinery/door/poddoor/shutters{ - id = "visitation"; - name = "Visitation Shutters" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/right/directional/north, -/obj/machinery/door/window/right/directional/south, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"hpI" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"hpM" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Drone Bay External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron/smooth, -/area/station/cargo/drone_bay) -"hpN" = ( -/obj/structure/cable, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"hpR" = ( -/obj/effect/spawner/random/entertainment/arcade{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"hqi" = ( -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Security Delivery"; - req_access = list("brig") - }, -/turf/open/floor/plating, -/area/station/security/processing) -"hqy" = ( -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/command/gateway) -"hqA" = ( -/obj/structure/table, -/obj/item/crowbar/large, -/obj/item/storage/box/lights/mixed, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"hqS" = ( -/obj/structure/railing, -/obj/structure/rack, -/obj/item/gun/energy/e_gun/dragnet{ - pixel_y = 4 - }, -/obj/item/gun/energy/e_gun/dragnet, -/obj/effect/turf_decal/tile/red/half{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) -"hqV" = ( -/obj/structure/sign/warning/radiation/rad_area, -/turf/closed/wall/r_wall, -/area/station/engineering/main) -"hrd" = ( -/obj/structure/destructible/cult/item_dispenser/archives/library, -/obj/item/book/codex_gigas, -/obj/machinery/light/small/directional/south, -/obj/machinery/computer/security/telescreen/entertainment/directional/east, -/turf/open/floor/engine/cult, -/area/station/service/library) -"hro" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/structure/cable, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) -"hrt" = ( -/obj/structure/table/glass, -/obj/item/shovel/spade, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"hrJ" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/cargo/storage) -"hrZ" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/virologist, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"hsf" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hsh" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/service) -"hsl" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock) -"hsr" = ( -/obj/structure/table/wood, -/obj/item/newspaper, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/security/prison/rec) -"hsx" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"hsB" = ( -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"hsC" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/machinery/light_switch/directional/south, -/obj/machinery/camera{ - c_tag = "Chief Medical Office South"; - dir = 4; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"hsI" = ( -/turf/closed/wall, -/area/station/construction/mining/aux_base) -"hsP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue, -/obj/structure/railing/corner, -/turf/open/floor/iron, -/area/station/commons/locker) -"hsQ" = ( -/obj/structure/tank_holder/oxygen, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"hsV" = ( -/obj/vehicle/ridden/wheelchair{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/end, -/obj/structure/window/reinforced, -/obj/structure/sign/warning/no_smoking/circle/directional/west, -/obj/structure/disposalpipe/segment, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/large, -/area/station/medical/medbay/aft) -"htc" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/item/rcl/pre_loaded, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"hte" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"htg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"hth" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"hto" = ( -/obj/structure/girder, -/turf/closed/wall, -/area/station/maintenance/starboard/aft) -"htp" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "Xenobio Pen 2 Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"hty" = ( -/obj/item/stack/rods, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"htB" = ( -/turf/open/floor/carpet/red, -/area/station/security/prison/work) -"htO" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) -"htX" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Art Storage" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/storage/art) -"hub" = ( -/obj/structure/chair/stool/directional/west, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/commons/locker) -"hue" = ( -/obj/structure/chair/comfy/black, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/command/meeting_room) -"hun" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/plating/snowed/coldroom, -/area/station/service/kitchen/coldroom) -"hux" = ( -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"huy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"huB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/service/library) -"huH" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sink{ - pixel_y = 20 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"huI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"huJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/table, -/obj/item/tank/internals/emergency_oxygen/empty, -/obj/item/tank/internals/emergency_oxygen/empty{ - pixel_y = 5 - }, -/obj/item/bodybag/environmental, -/obj/item/bodybag/environmental, -/turf/open/floor/iron, -/area/station/service/chapel) -"huN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"huZ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 5 - }, -/obj/machinery/igniter/incinerator_atmos, -/obj/structure/sign/warning/gas_mask/directional/south, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"hvl" = ( -/obj/effect/turf_decal/siding/white, -/obj/effect/spawner/random/entertainment/arcade, -/obj/structure/sign/poster/random/directional/north, -/obj/effect/turf_decal/siding/white{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"hvm" = ( -/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/white, -/area/station/science/xenobiology) -"hvr" = ( -/obj/machinery/door/airlock{ - 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, -/obj/machinery/duct, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/open/floor/iron/textured_half{ - dir = 1 - }, -/area/station/service/hydroponics) -"hvy" = ( -/obj/structure/grille/broken, -/obj/effect/landmark/event_spawn, -/obj/effect/spawner/random/maintenance, -/obj/effect/decal/cleanable/generic, -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"hvR" = ( -/obj/machinery/recharger, -/obj/structure/table, -/obj/effect/turf_decal/tile/red/half, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) -"hvS" = ( -/obj/effect/landmark/start/engineering_guard, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/engineering) -"hvU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/brown{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"hwg" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness) -"hwn" = ( -/obj/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) -"hwu" = ( -/obj/machinery/door/poddoor/preopen{ - id = "lawyer_blast"; - name = "Privacy Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/service/lawoffice) -"hwx" = ( -/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/construction) -"hwC" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"hwE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"hwF" = ( -/obj/machinery/computer/cargo{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"hwR" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Security - Equipment Room" - }, -/turf/open/floor/glass/reinforced, -/area/station/security/lockers) -"hwW" = ( -/obj/machinery/light_switch/directional/south{ - pixel_x = -9 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"hwZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"hxg" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/obj/effect/turf_decal/siding/white{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/service/bar) -"hxh" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"hxs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue/full, -/obj/machinery/computer/med_data{ - dir = 1 - }, -/turf/open/floor/iron/large, -/area/station/medical/treatment_center) -"hxz" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"hxE" = ( -/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/cargo/miningdock) -"hxI" = ( -/turf/open/floor/iron/dark/side{ - dir = 5 - }, -/area/station/service/chapel) -"hyd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/break_room) -"hyt" = ( -/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 = "Bar Maintenance" - }, -/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/department/crew_quarters/bar) -"hyC" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/lobby) -"hyM" = ( -/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/sink{ - pixel_y = 20 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"hyV" = ( -/turf/closed/wall/r_wall, -/area/station/science/ordnance/testlab) -"hyW" = ( -/obj/item/toy/snowball{ - pixel_x = -6; - pixel_y = -3 - }, -/mob/living/simple_animal/pet/penguin/baby, -/turf/open/misc/asteroid/snow/standard_air, -/area/station/science/research) -"hyY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"hzd" = ( -/obj/structure/stairs/north, -/turf/open/floor/iron, -/area/station/service/chapel) -"hzk" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"hzz" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/item/healthanalyzer, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/science, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"hzB" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"hzE" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"hzH" = ( -/obj/machinery/camera/motion/directional/west{ - c_tag = "MiniSat Core Hallway"; - network = list("aicore") - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"hzJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/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/grimy, -/area/station/security/detectives_office) -"hzQ" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/structure/chair/stool/bar/directional/east, -/turf/open/floor/stone, -/area/station/commons/lounge) -"hzY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "briggate"; - name = "Security Shutters" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/checkpoint/auxiliary) -"hAh" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/locker) -"hAm" = ( -/turf/open/floor/iron/white/side{ - dir = 4 - }, -/area/station/science/research) -"hAO" = ( -/obj/effect/turf_decal/tile/red{ - 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, -/area/station/security/brig/upper) -"hAQ" = ( -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"hAT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/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, -/area/station/science/genetics) -"hAY" = ( -/obj/machinery/telecomms/processor/preset_one, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"hAZ" = ( -/obj/effect/turf_decal/tile/dark{ - dir = 1 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 9 - }, -/turf/open/floor/iron/white/side, -/area/mine/living_quarters) -"hBg" = ( -/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/smooth, -/area/station/security/execution/transfer) -"hBi" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "CO2 to Pure" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hBr" = ( -/obj/effect/turf_decal/tile/red/full, -/obj/machinery/holopad, -/turf/open/floor/iron/dark/textured_large, -/area/station/security/checkpoint/auxiliary) -"hBv" = ( -/obj/structure/kitchenspike, -/obj/item/stack/sheet/leather, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"hBB" = ( -/obj/effect/spawner/random/structure/girder, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"hBC" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"hCu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/item/paper_bin/carbon{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"hCv" = ( -/obj/structure/table, -/obj/item/storage/bag/tray, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"hCx" = ( -/obj/structure/table, -/obj/item/binoculars, -/obj/machinery/computer/security/telescreen/ordnance{ - pixel_y = 32 - }, -/turf/open/floor/iron, -/area/station/science/ordnance/testlab) -"hCC" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"hCV" = ( -/obj/structure/table/wood, -/obj/item/hand_tele, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"hCY" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/general/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hDf" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1; - piping_layer = 2 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/science/ordnance) -"hDg" = ( -/obj/structure/chair/sofa/left{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/structure/cable, -/turf/open/floor/carpet/blue, -/area/station/security/prison/work) -"hDh" = ( -/obj/machinery/computer/atmos_alert{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage/gas) -"hDp" = ( -/turf/open/floor/engine, -/area/station/science/genetics) -"hDx" = ( -/obj/machinery/mineral/equipment_vendor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Mining Bunks"; - dir = 6 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/mine/production) -"hDA" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/icemoon, -/area/station/science/ordnance/bomb) -"hDC" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/filled/warning{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"hDK" = ( -/turf/open/floor/iron, -/area/mine/laborcamp) -"hDU" = ( -/turf/closed/wall/r_wall, -/area/station/command/gateway) -"hEl" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"hEm" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/iron/dark, -/area/mine/eva) -"hEr" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/light_construct/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"hEC" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/machinery/light/directional/south, -/obj/machinery/light_switch/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/smooth_edge{ - dir = 1 - }, -/area/station/security/lockers) -"hEG" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/textured, -/area/station/security/warden) -"hEI" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"hEM" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/work) -"hEZ" = ( -/obj/structure/ladder, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"hFb" = ( -/turf/open/floor/iron, -/area/station/science/ordnance) -"hFg" = ( -/obj/structure/closet, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"hFi" = ( -/obj/structure/frame/machine, -/turf/open/floor/plating, -/area/station/construction) -"hFn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"hFD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/work) -"hFL" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"hFU" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external/glass{ - name = "Supply Door Airlock" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/plating, -/area/station/cargo/storage) -"hGf" = ( -/obj/item/clothing/suit/hooded/wintercoat, -/obj/effect/decal/remains/human, -/obj/item/clothing/head/beanie/orange{ - pixel_y = 8 - }, -/obj/item/clothing/shoes/wheelys/skishoes{ - pixel_y = -8 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"hGh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/command/teleporter) -"hGs" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/openspace, -/area/station/engineering/atmos/storage) -"hGF" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 30 - }, -/obj/effect/turf_decal/tile/red{ - 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, -/area/station/hallway/primary/central/fore) -"hGH" = ( -/turf/closed/wall, -/area/station/security/lockers) -"hGI" = ( -/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/hydroponics) -"hGL" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"hHb" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"hHg" = ( -/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, -/area/station/hallway/primary/starboard) -"hHp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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) -"hHu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"hHD" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Construction Area" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/construction) -"hHI" = ( -/obj/machinery/chem_dispenser, -/obj/effect/turf_decal/tile/yellow/full, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/pharmacy) -"hHN" = ( -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hHU" = ( -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"hHV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_output{ - dir = 1 - }, -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"hIe" = ( -/obj/structure/sign/warning/no_smoking/circle/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/structure/sink{ - dir = 8; - pixel_x = 12 - }, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"hIi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"hIq" = ( -/obj/structure/disposalpipe/segment, -/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/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"hIA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"hIH" = ( -/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/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"hIS" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"hIU" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"hJi" = ( -/obj/machinery/door/window/left/directional/north{ - dir = 4; - name = "Containment Pen 6"; - req_access = list("xenobiology") - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "Xenobio Pen 6 Blast Door" - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"hJm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/wood/tile, -/area/station/service/theater) -"hJx" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"hJC" = ( -/obj/machinery/light_switch/directional/west, -/obj/structure/closet{ - name = "janitorial supplies" - }, -/obj/item/pushbroom, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"hJD" = ( -/obj/structure/ladder, -/turf/open/floor/wood, -/area/station/maintenance/space_hut/cabin) -"hJJ" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"hJL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/gas_mask, -/turf/open/floor/plating, -/area/station/construction/mining/aux_base) -"hJY" = ( -/obj/structure/closet/l3closet/janitor, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/service/janitor) -"hKj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"hKk" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/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, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"hKr" = ( -/obj/structure/table/glass, -/obj/item/book/manual/wiki/infections{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/book/manual/wiki/surgery{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/book/manual/wiki/medicine{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/book/manual/wiki/chemistry{ - pixel_x = 5 - }, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/command/heads_quarters/cmo) -"hKI" = ( -/obj/effect/turf_decal/tile/green/half/contrasted, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"hKT" = ( -/obj/machinery/light/floor, -/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, -/area/station/cargo/storage) -"hLf" = ( -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"hLw" = ( -/obj/item/radio/intercom/directional/north, -/obj/structure/table/wood, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"hLO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"hLS" = ( -/obj/machinery/computer/atmos_control/nitrous_tank{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/white/corner, -/area/station/engineering/atmos) -"hMc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"hMk" = ( -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"hMo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/engine_smes) -"hMr" = ( -/obj/effect/landmark/start/chaplain, -/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/chapel) -"hMu" = ( -/obj/structure/table, -/obj/item/razor{ - pixel_y = 5 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"hMv" = ( -/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, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/fore/greater) -"hMw" = ( -/obj/structure/bookcase/random/fiction, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"hMz" = ( -/obj/structure/marker_beacon/burgundy{ - name = "landing marker" - }, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"hMH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/yellow/filled/end{ - dir = 4 - }, -/turf/open/floor/iron/textured, -/area/station/medical/medbay/central) -"hMJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/smooth, -/area/mine/laborcamp/security) -"hML" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"hMS" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron/white, -/area/station/security/prison/safe) -"hNg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/storage/mining) -"hNh" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/lawyer, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"hNi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"hNt" = ( -/obj/structure/table, -/obj/item/toy/gun, -/turf/open/floor/iron, -/area/station/commons/locker) -"hNx" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Holodeck - Aft"; - name = "holodeck camera" - }, -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/station/holodeck/rec_center) -"hNF" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/structure/sign/warning, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"hNI" = ( -/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) -"hNL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"hOc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "Engineering Security Door" - }, -/turf/open/floor/plating, -/area/station/engineering/lobby) -"hOi" = ( -/obj/machinery/telecomms/processor/preset_four, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"hOk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/vending/wardrobe/chem_wardrobe, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/medical/chemistry) -"hOo" = ( -/obj/machinery/mechpad, -/turf/open/floor/iron/smooth, -/area/mine/mechbay) -"hOt" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"hOu" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"hOA" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/prison/rec) -"hOU" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Xenobiology Pens - Port Fore"; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"hOX" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Atmospherics North West" - }, -/obj/machinery/light/directional/west, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hOY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit, -/area/station/science/robotics/mechbay) -"hPc" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"hPe" = ( -/obj/structure/cable/multilayer/connected, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"hPf" = ( -/obj/structure/safe, -/obj/item/clothing/head/bearpelt, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/gun/ballistic/revolver/russian, -/obj/item/ammo_box/a357, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"hPk" = ( -/obj/machinery/door/airlock/security{ - name = "Permabrig Chapel" - }, -/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/wood, -/area/station/security/prison/rec) -"hPs" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison/work) -"hPD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/layer2{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"hPK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/siding/brown, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"hPO" = ( -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"hPQ" = ( -/obj/structure/table, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"hPT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/command/teleporter) -"hPV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"hQd" = ( -/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/medical) -"hQi" = ( -/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/smooth, -/area/station/security/brig/upper) -"hQt" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/security/brig) -"hQu" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hQO" = ( -/obj/structure/disposalpipe/segment{ - 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/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Escape" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"hQP" = ( -/obj/effect/turf_decal/tile/red/half, -/obj/structure/cable, -/obj/machinery/airalarm/directional/east, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/smooth_half, -/area/station/security/brig/upper) -"hRp" = ( -/obj/machinery/button/door/directional/north{ - id = "visitation"; - name = "Visitation Shutters"; - pixel_x = 6; - pixel_y = -24; - req_access = list("brig") - }, -/obj/machinery/button/flasher{ - id = "visitorflash"; - pixel_x = -6; - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"hRw" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"hRA" = ( -/turf/closed/wall, -/area/station/medical/psychology) -"hRC" = ( -/obj/machinery/door/window/left/directional/south{ - dir = 4; - name = "Test Chamber"; - req_access = list("xenobiology") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"hRE" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"hRF" = ( -/obj/structure/cable, -/obj/effect/spawner/random/vending/snackvend, -/turf/open/floor/iron/dark, -/area/station/science/breakroom) -"hRH" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"hRV" = ( -/obj/item/radio/intercom/directional/west, -/turf/open/floor/carpet, -/area/station/service/theater) -"hSb" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/obj/effect/spawner/random/structure/musician/piano/random_piano, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/carpet, -/area/station/service/theater) -"hSi" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/item/circuitboard/computer/operating, -/obj/structure/mirror/directional/north{ - icon_state = "mirror_broke" - }, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"hSp" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/table/reinforced, -/obj/item/clothing/glasses/science{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/glasses/science{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"hSq" = ( -/obj/effect/turf_decal/siding/wood, -/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/cable, -/turf/open/floor/iron/dark/textured_half, -/area/station/service/bar/atrium) -"hSF" = ( -/obj/machinery/atmospherics/components/tank/air{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/medical/virology) -"hSJ" = ( -/obj/structure/chair/comfy{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron, -/area/station/security/processing) -"hSN" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/side, -/area/mine/eva) -"hSZ" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/dark_blue/line{ - dir = 4 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"hTa" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/light/directional/west, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"hTb" = ( -/obj/structure/table, -/obj/item/folder/blue, -/obj/item/stack/package_wrap{ - pixel_x = -1; - pixel_y = -1 - }, -/obj/item/hand_labeler, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"hTd" = ( -/obj/structure/grille, -/obj/structure/window{ - dir = 8 - }, -/obj/structure/window, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"hTm" = ( -/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) -"hTw" = ( -/obj/effect/turf_decal/tile/red/half{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/smooth_half, -/area/station/security/brig/upper) -"hTB" = ( -/obj/structure/table, -/obj/item/clothing/suit/jacket/leather{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = 3; - pixel_y = -2 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"hTH" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/laborcamp) -"hTL" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/iron, -/area/station/commons/locker) -"hUe" = ( -/obj/effect/landmark/start/hangover, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/wood, -/area/station/service/library) -"hUi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"hUj" = ( -/turf/open/floor/carpet, -/area/station/hallway/secondary/entry) -"hUo" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"hUp" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/iron/dark/side, -/area/mine/eva) -"hUx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"hUy" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 5 - }, -/obj/structure/marker_beacon/burgundy{ - name = "landing marker" - }, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"hUz" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured_edge{ - dir = 4 - }, -/area/station/security/prison) -"hUD" = ( -/turf/closed/wall, -/area/station/service/library) -"hUK" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"hUV" = ( -/obj/item/radio/intercom/directional/north, -/obj/structure/closet/crate, -/obj/item/crowbar, -/turf/open/floor/iron, -/area/station/command/teleporter) -"hUW" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"hVc" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "HoP Queue Shutters"; - dir = 8 - }, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"hVe" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/hallway/secondary/entry) -"hVo" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/table, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"hVt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"hVB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/mine/laborcamp) -"hVI" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/mine/eva) -"hVX" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/end{ - dir = 1 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/medical/morgue) -"hVY" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/hollow/reinforced/middle, -/turf/open/floor/plating, -/area/station/security/prison/garden) -"hWh" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"hWi" = ( -/obj/machinery/teleport/hub, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"hWu" = ( -/obj/machinery/light/directional/east, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"hWI" = ( -/obj/effect/turf_decal/box, -/obj/structure/closet/crate/maint, -/obj/effect/spawner/random/maintenance/six, -/obj/structure/sign/poster/official/wtf_is_co2{ - pixel_y = 32 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/aft) -"hWP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/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/iron, -/area/station/hallway/primary/starboard) -"hWV" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/space_heater, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plating, -/area/station/medical/virology) -"hXk" = ( -/obj/machinery/light/directional/west, -/obj/structure/cable, -/turf/open/floor/carpet/red, -/area/station/security/prison/work) -"hXC" = ( -/obj/machinery/vending/tool, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"hXI" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/light/directional/south, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"hXL" = ( -/obj/structure/disposalpipe/trunk/multiz{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"hXS" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"hXU" = ( -/obj/machinery/newscaster/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"hXZ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/item/mod/core/standard{ - pixel_x = -4 - }, -/obj/item/mod/core/standard{ - pixel_x = 4 - }, -/obj/item/mod/core/standard{ - pixel_y = 4 - }, -/obj/structure/table, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"hYc" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/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 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/fore) -"hYd" = ( -/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/fore/greater) -"hYu" = ( -/obj/machinery/light/directional/west, -/obj/machinery/camera/motion/directional/south{ - c_tag = "Armory - Internal - Upper" - }, -/turf/open/openspace, -/area/station/ai_monitored/security/armory/upper) -"hYy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/station/security/prison/rec) -"hYA" = ( -/obj/machinery/telecomms/relay/preset/mining, -/turf/open/floor/circuit, -/area/mine/living_quarters) -"hYC" = ( -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"hYI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"hYO" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/machinery/door/window/left/directional/north{ - name = "Shower Cubicle" - }, -/turf/open/floor/iron/freezer, -/area/station/maintenance/starboard/fore) -"hYP" = ( -/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/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"hZe" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/warning, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"hZm" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark_green/arrow_ccw, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hZq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/smooth, -/area/station/security/brig/upper) -"hZQ" = ( -/obj/item/stack/sheet/iron/five, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"hZR" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/grimy, -/area/station/commons/vacant_room/office) -"iag" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"iah" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/light/small/directional/west, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"iam" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"ian" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"iao" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/station/science/ordnance/burnchamber) -"iar" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio10"; - name = "Xenobio Pen 10 Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"iay" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron/dark, -/area/station/commons/fitness) -"iaz" = ( -/obj/structure/girder, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"iaF" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/cargo/storage) -"iaQ" = ( -/obj/structure/table, -/obj/item/analyzer, -/obj/item/healthanalyzer, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"iaT" = ( -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"iaV" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"iaY" = ( -/obj/machinery/door/airlock/command{ - name = "MiniSat Access" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"iba" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/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/white, -/area/station/science/ordnance/office) -"ibc" = ( -/obj/effect/turf_decal/siding/brown/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/sign/warning/gas_mask/directional/south{ - desc = "A sign that warns of dangerous gasses in the air, instructing you to wear internals." - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"ibi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/wood/tile, -/area/station/service/theater) -"ibj" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"ibm" = ( -/obj/structure/cable, -/obj/machinery/newscaster/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/iron, -/area/station/cargo/office) -"ibw" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"ibz" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table/wood, -/obj/effect/spawner/random/entertainment/gambling, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/security/prison/rec) -"ibB" = ( -/obj/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/greater) -"ibI" = ( -/obj/effect/turf_decal/siding/white, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"ibM" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lower_chapel_shutters"; - name = "Graveyard Shutters"; - dir = 8 - }, -/turf/open/floor/plating, -/area/station/service/chapel) -"ica" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/station/medical/cryo) -"ick" = ( -/obj/effect/spawner/random/trash/grille_or_waste, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"icF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Incinerator Output Pump"; - target_pressure = 4500 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"icQ" = ( -/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/visit) -"icS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/line{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/range) -"icV" = ( -/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/starboard/upper) -"icW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/cargo/storage) -"idi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "Skynet_launch"; - name = "Mech Bay"; - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"idj" = ( -/obj/structure/cable, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) -"idr" = ( -/obj/structure/stairs/north, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"idt" = ( -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"idv" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/smooth, -/area/station/security/holding_cell) -"idw" = ( -/obj/structure/table/glass, -/obj/item/clothing/accessory/armband/hydro, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 9 - }, -/obj/item/paper/guides/jobs/hydroponics, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"idE" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/turf/open/floor/iron, -/area/station/service/bar) -"idO" = ( -/obj/effect/turf_decal/stripes/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, -/area/station/hallway/primary/port) -"idU" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "QM #2" - }, -/obj/effect/turf_decal/bot, -/mob/living/simple_animal/bot/mulebot{ - home_destination = "QM #2"; - suffix = "#2" - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"ief" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "EVA Storage" - }, -/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/command/eva, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"ieq" = ( -/obj/effect/turf_decal/siding/white{ - 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 = 5 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"ieF" = ( -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - name = "Supply multi deck pipe adapter" - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"ieG" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"ieI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"ieZ" = ( -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"ife" = ( -/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/turret_protected/aisat/atmos) -"ifg" = ( -/obj/effect/turf_decal/siding/white, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/service/kitchen/diner) -"ifw" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchencounter"; - name = "Kitchen Counter Shutters"; - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/desk_bell{ - pixel_x = 7 - }, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"ifA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/cold_temp, -/turf/open/floor/plating/icemoon, -/area/station/maintenance/solars/port/aft) -"ifK" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/barricade/wooden, -/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/fore) -"ifQ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/work) -"ifY" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/iron/white/corner, -/area/station/engineering/atmos) -"ifZ" = ( -/obj/machinery/shower{ - pixel_y = 12 - }, -/obj/item/soap/nanotrasen, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/toilet) -"igi" = ( -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/machinery/camera/directional/west{ - c_tag = "Service-Bar Top" - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/wood/parquet, -/area/station/service/bar/atrium) -"igm" = ( -/turf/closed/wall/ice, -/area/mine/living_quarters) -"ign" = ( -/obj/structure/railing, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"igo" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/construction) -"igr" = ( -/obj/effect/spawner/random/clothing/costume, -/obj/structure/rack, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) -"igx" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"igB" = ( -/obj/machinery/firealarm/directional/west, -/turf/open/floor/glass, -/area/station/security/lockers) -"igL" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/plating, -/area/mine/storage) -"igX" = ( -/obj/effect/spawner/random/maintenance/two, -/obj/structure/rack, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"ihb" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"ihf" = ( -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/siding/white{ - dir = 10 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/large, -/area/station/service/kitchen/diner) -"ihu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/science/explab) -"ihx" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Armory" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) -"ihz" = ( -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/recharge_floor, -/area/station/maintenance/department/electrical) -"ihB" = ( -/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/security/execution/transfer) -"ihD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/smooth, -/area/station/security/execution/transfer) -"ihG" = ( -/obj/structure/chair/sofa/corp/right{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"ihN" = ( -/obj/machinery/button/door/directional/west{ - id = "xenobio4"; - layer = 4; - name = "Xenobio Pen 4 Blast Door"; - req_access = list("xenobiology") - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"ihQ" = ( -/obj/machinery/camera/directional/south{ - c_tag = "EVA South" - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"iig" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"iih" = ( -/obj/effect/spawner/xmastree, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"iin" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"iio" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"iiy" = ( -/obj/machinery/firealarm/directional/north, -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"iiH" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig Walkway" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brigoutpost" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron/dark/textured_edge{ - dir = 4 - }, -/area/station/security/checkpoint/auxiliary) -"iiR" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/medical/virology) -"iiW" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/delivery, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Atmospherics" - }, -/turf/open/floor/iron, -/area/station/maintenance/department/medical/central) -"iji" = ( -/obj/structure/table, -/obj/item/multitool/circuit{ - pixel_x = -8 - }, -/obj/item/multitool/circuit{ - pixel_x = -4 - }, -/obj/item/multitool/circuit, -/obj/item/stock_parts/cell/high{ - pixel_x = 8; - pixel_y = 9 - }, -/obj/item/stock_parts/cell/high{ - pixel_x = 8; - pixel_y = -2 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/white/side{ - dir = 4 - }, -/area/station/science/explab) -"ijj" = ( -/obj/effect/turf_decal/tile/red/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/textured, -/area/station/security/office) -"ijl" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"ijp" = ( -/obj/effect/turf_decal/siding/yellow, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"ijA" = ( -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"ijC" = ( -/obj/effect/turf_decal/tile/green/half/contrasted, -/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, -/area/station/security/prison/garden) -"ijK" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "N2O to Pure" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ijN" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/light/small/directional/north, -/obj/structure/sign/departments/chemistry/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"ijT" = ( -/obj/structure/transit_tube/horizontal, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"ijY" = ( -/obj/structure/flora/rock/icy/style_random, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"ijZ" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"ikb" = ( -/obj/item/door_seal, -/obj/item/door_seal, -/obj/item/door_seal, -/obj/structure/rack, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"ikm" = ( -/obj/structure/chair/office, -/obj/machinery/camera/directional/north{ - c_tag = "Library North" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/turf/open/floor/wood, -/area/station/service/library) -"iko" = ( -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"ikp" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Arrivals Hallway" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"ikw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/cyclelink_helper_multi{ - cycle_id = "sci-med-passthrough" - }, -/obj/machinery/door/airlock/medical{ - name = "Medbay" - }, -/obj/effect/turf_decal/tile/blue/full, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/large, -/area/station/maintenance/aft/greater) -"ikz" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"ikC" = ( -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"ikH" = ( -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway 3" - }, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"ikM" = ( -/obj/structure/ladder, -/turf/open/floor/plating, -/area/station/maintenance/fore/greater) -"ikO" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/cargo/qm) -"ikW" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/service/chapel) -"ile" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/station/security/courtroom) -"ili" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/obj/structure/fence/door, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"ily" = ( -/turf/open/openspace, -/area/station/science/xenobiology) -"ilH" = ( -/obj/machinery/light/directional/east, -/turf/open/openspace, -/area/station/security/prison) -"ilJ" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"ilN" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"ilP" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/bush/sunny/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"ilQ" = ( -/obj/machinery/conveyor{ - id = "garbage" - }, -/obj/structure/sign/warning/vacuum/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"ilZ" = ( -/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/security/prison/work) -"imd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"imi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"imk" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) -"imy" = ( -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"imH" = ( -/obj/structure/rack, -/obj/effect/spawner/random/clothing/gloves, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"imV" = ( -/obj/structure/stairs/east, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"inb" = ( -/obj/machinery/door/poddoor/incinerator_ordmix, -/turf/open/openspace, -/area/station/science/ordnance/burnchamber) -"inh" = ( -/obj/structure/stairs/west, -/obj/structure/railing, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"inw" = ( -/obj/machinery/door/airlock/engineering{ - name = "Port Bow Solar Access" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"inB" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"inE" = ( -/turf/open/floor/iron/corner, -/area/station/engineering/lobby) -"inZ" = ( -/obj/structure/chair/stool/directional/south, -/obj/machinery/flasher/directional/west{ - id = "GulagCell 1" - }, -/obj/structure/sign/poster/official/obey{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/mine/laborcamp) -"iol" = ( -/obj/machinery/camera/directional/south{ - c_tag = "MiniSat Teleporter"; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"ion" = ( -/obj/item/storage/box/lights/mixed, -/obj/structure/table, -/obj/item/crowbar, -/obj/item/wrench, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/medical/morgue) -"ioo" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"iot" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/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/aft) -"ioz" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/dark_blue/line{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"ioC" = ( -/obj/machinery/light/warm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"ioK" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle, -/turf/open/floor/plating, -/area/station/medical/morgue) -"ioO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/trimline/red/filled/warning{ - dir = 1 - }, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "Atmospherics HFR Shutters" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"ipa" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - dir = 4; - name = "Scrubbers multi deck pipe adapter" - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - dir = 4; - name = "Supply multi deck pipe adapter" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"ipd" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Labor Camp Showers"; - network = list("labor") - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/freezer, -/area/mine/laborcamp) -"ipf" = ( -/turf/open/genturf, -/area/icemoon/underground/unexplored/rivers/deep/shoreline) -"ipw" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"ipx" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm6"; - name = "Cabin 2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/commons/dorms) -"ipA" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"ipE" = ( -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"ipJ" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/chair/stool/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"ipM" = ( -/obj/structure/transit_tube/curved{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"ipP" = ( -/obj/structure/bed, -/obj/item/clothing/suit/straight_jacket, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) -"iqr" = ( -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"iqu" = ( -/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/turret_protected/aisat_interior) -"iqx" = ( -/obj/structure/railing, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/science/ordnance/office) -"iqC" = ( -/obj/structure/table, -/obj/item/flashlight/lamp, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"iqL" = ( -/obj/effect/turf_decal/tile/red/full, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/large, -/area/station/service/kitchen/diner) -"irp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/security{ - name = "Detective's Office" - }, -/obj/machinery/door/firedoor, -/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/security/detective, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"iru" = ( -/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) -"iry" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"irz" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Service External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/sign/warning/cold_temp{ - pixel_y = 32 - }, -/obj/structure/sign/warning/gas_mask{ - desc = "A sign that warns of dangerous gasses in the air, instructing you to wear internals."; - pixel_y = -32 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"irA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"irD" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/openspace, -/area/station/cargo/storage) -"irF" = ( -/obj/machinery/biogenerator, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/siding/white{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"irG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"irO" = ( -/obj/structure/ladder{ - name = "chemistry lab access" - }, -/obj/machinery/camera{ - c_tag = "Chemistry Lab North"; - dir = 9; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/stripes/end, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/chemistry) -"irQ" = ( -/obj/structure/chair/pew{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/chapel{ - dir = 8 - }, -/area/station/service/chapel) -"irZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"isb" = ( -/obj/machinery/atmospherics/components/binary/pump/off{ - dir = 1; - name = "Infiltrate to Exfiltrate" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/loading_area{ - color = "#439C1E"; - dir = 1 - }, -/obj/effect/turf_decal/trimline/dark_red/warning{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"isc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/mineral/labor_points_checker{ - pixel_y = 25 - }, -/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, -/area/mine/laborcamp) -"isd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"ise" = ( -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"isl" = ( -/obj/structure/fence/door{ - name = "graveyard" - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"isx" = ( -/obj/effect/spawner/random/maintenance, -/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) -"isE" = ( -/obj/machinery/vending/wardrobe/sec_wardrobe, -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/smooth_edge, -/area/station/security/lockers) -"isP" = ( -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"isQ" = ( -/obj/structure/closet/crate, -/obj/structure/window/reinforced, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/turf/open/floor/iron/dark/smooth_half, -/area/station/security/prison/work) -"isU" = ( -/obj/structure/fluff/tram_rail, -/obj/structure/fluff/tram_rail{ - pixel_y = 17 - }, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"isX" = ( -/obj/structure/closet/radiation, -/obj/structure/sign/warning/electric_shock{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"iti" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron/textured, -/area/station/security/brig) -"itj" = ( -/turf/open/floor/iron/white, -/area/station/science/genetics) -"itl" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) -"itt" = ( -/obj/machinery/door/window/brigdoor/right/directional/south{ - name = "Research Director Observation"; - req_access = list("rd") - }, -/obj/structure/railing/corner, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"itE" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/glass/reinforced/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"itM" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/mine/laborcamp) -"itY" = ( -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"iug" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/fore/lesser) -"iuh" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/mine/eva/lower) -"iuq" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/dropper, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"iuu" = ( -/obj/machinery/firealarm/directional/east, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"iuv" = ( -/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, -/area/station/hallway/primary/central) -"iuD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"iuE" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"iuS" = ( -/obj/machinery/airalarm/directional/north, -/turf/open/floor/glass/reinforced, -/area/station/ai_monitored/security/armory/upper) -"ivo" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"ivq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"ivr" = ( -/turf/open/floor/grass, -/area/station/service/hydroponics) -"ivB" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"ivF" = ( -/turf/closed/wall, -/area/station/maintenance/disposal) -"ivH" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/library) -"ivW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/locker) -"iwf" = ( -/turf/closed/wall/r_wall, -/area/mine/mechbay) -"iwo" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Infirmary" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/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/mine/laborcamp) -"iwx" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Xenobiology 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/science/xenobio, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"iwz" = ( -/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/hallway/primary/central) -"iwA" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/service/janitor) -"iwC" = ( -/turf/closed/wall/r_wall, -/area/station/hallway/primary/central/fore) -"iwJ" = ( -/obj/effect/turf_decal/bot, -/obj/structure/marker_beacon/burgundy{ - name = "landing marker" - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"iwS" = ( -/turf/closed/wall, -/area/station/commons/dorms/laundry) -"iwV" = ( -/obj/structure/railing, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"ixd" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/co2{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"ixu" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Teleporter" - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/command/teleporter) -"ixw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/sepia, -/area/station/security/prison/rec) -"ixH" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/wood/parquet, -/area/station/service/bar/atrium) -"ixL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/large, -/area/station/engineering/main) -"ixZ" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Chief Engineer" - }, -/obj/effect/turf_decal/tile/neutral/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, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"iyb" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/structure/sign/barsign{ - pixel_y = 32 - }, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"iyd" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/mine/storage) -"iye" = ( -/obj/structure/bookcase/random, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"iyr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"iyx" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"iyE" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/end{ - dir = 4 - }, -/turf/open/floor/plating, -/area/mine/living_quarters) -"iyF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/blobstart, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"iyI" = ( -/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; - sortType = 13 - }, -/turf/open/floor/iron/white, -/area/station/maintenance/aft/greater) -"iyK" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"iyP" = ( -/obj/structure/table, -/obj/item/aicard, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"iyQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"iyV" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/chemist, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"iyY" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"izn" = ( -/obj/effect/spawner/random/decoration/generic, -/turf/open/floor/plating, -/area/station/security/prison) -"izp" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"izw" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"izA" = ( -/obj/machinery/door/window/left/directional/north{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen 8"; - req_access = list("xenobiology") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"izC" = ( -/turf/closed/wall, -/area/station/service/bar/atrium) -"izF" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/table, -/obj/item/storage/box/lights/mixed, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stock_parts/cell/emproof, -/obj/item/stock_parts/cell/emproof{ - pixel_x = 6; - pixel_y = -2 - }, -/obj/machinery/light_switch/directional/south{ - pixel_x = 10 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"izJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/disposalpipe/trunk/multiz{ - dir = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/medical/chemistry) -"izY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"iAa" = ( -/obj/effect/turf_decal/caution/stand_clear, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark/textured, -/area/station/hallway/secondary/service) -"iAf" = ( -/turf/closed/wall/mineral/wood, -/area/station/maintenance/space_hut/cabin) -"iAk" = ( -/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/turret_protected/aisat_interior) -"iAs" = ( -/obj/structure/table, -/obj/item/wirecutters, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/firealarm/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"iAt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"iAJ" = ( -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/turf/open/floor/iron/large, -/area/station/service/kitchen/diner) -"iAO" = ( -/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) -"iBd" = ( -/obj/structure/fireplace{ - pixel_x = -32 - }, -/obj/effect/turf_decal/siding/wood, -/obj/machinery/camera{ - c_tag = "Mining Break Room"; - dir = 9 - }, -/obj/machinery/light_switch/directional/north{ - pixel_x = 9 - }, -/turf/open/floor/stone, -/area/mine/eva/lower) -"iBe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/command/bridge) -"iBh" = ( -/obj/machinery/vending/autodrobe/all_access, -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison) -"iBj" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"iBl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/smooth_large, -/area/station/science/breakroom) -"iBv" = ( -/obj/structure/sign/warning/secure_area/directional/south, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"iBz" = ( -/obj/structure/sign/warning/no_smoking/directional/south, -/turf/open/openspace, -/area/station/engineering/atmos/storage) -"iBD" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating/snowed/icemoon, -/area/station/cargo/drone_bay) -"iBF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"iBO" = ( -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 4 - }, -/turf/open/floor/iron/white/side{ - dir = 4 - }, -/area/station/science/explab) -"iCa" = ( -/obj/machinery/light/directional/north, -/obj/structure/rack/gunrack, -/obj/effect/spawner/armory_spawn/cmg, -/obj/effect/turf_decal/tile/red/half, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) -"iCg" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"iCq" = ( -/obj/structure/rack, -/obj/item/stack/rods/ten, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"iCC" = ( -/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) -"iCD" = ( -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"iCE" = ( -/obj/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/starboard/aft) -"iCO" = ( -/obj/machinery/vending/cola/red, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison) -"iCX" = ( -/obj/machinery/power/solar_control{ - dir = 4; - id = "portsolar"; - name = "Port Quarter Solar Control" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"iDg" = ( -/obj/machinery/duct, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/station/service/bar) -"iDp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/station/ai_monitored/turret_protected/aisat_interior) -"iDq" = ( -/turf/closed/wall/r_wall, -/area/station/security/warden) -"iDt" = ( -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"iDu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/station/security/prison/rec) -"iDG" = ( -/obj/machinery/door/window/left/directional/north{ - dir = 4; - name = "Containment Pen 3"; - req_access = list("xenobiology") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"iDQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"iEd" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"iEr" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/commons/locker) -"iEA" = ( -/obj/structure/table/glass, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/masks, -/obj/item/storage/box/syringes{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/clothing/neck/stethoscope, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/large, -/area/station/medical/treatment_center) -"iEN" = ( -/obj/structure/table, -/obj/item/electropack, -/obj/item/screwdriver, -/obj/item/wrench, -/obj/item/clothing/head/helmet, -/obj/item/assembly/signaler, -/obj/structure/cable, -/turf/open/floor/plating/icemoon, -/area/station/security/execution/education) -"iFc" = ( -/obj/effect/turf_decal/tile/red/half{ - dir = 4 - }, -/turf/open/floor/iron/half{ - dir = 1 - }, -/area/station/hallway/secondary/service) -"iFe" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark/smooth_half, -/area/station/security/prison/work) -"iFg" = ( -/obj/structure/bed/dogbed/mcgriff, -/obj/item/food/beef_wellington_slice, -/obj/structure/cable, -/mob/living/simple_animal/pet/dog/pug/mcgriff, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"iFm" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/maintenance/port/aft) -"iFs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"iFX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"iGa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"iGH" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"iHc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"iHm" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/machinery/firealarm/directional/west, -/obj/machinery/camera{ - c_tag = "Atmospherics South West"; - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"iHp" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) -"iHy" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/effect/landmark/start/bartender, -/turf/open/floor/iron, -/area/station/service/bar) -"iHQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/prisoner, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"iHV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/carpet/red, -/area/station/security/prison/work) -"iIa" = ( -/obj/structure/cable, -/obj/structure/railing, -/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) -"iIe" = ( -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"iIh" = ( -/obj/machinery/button/elevator{ - id = "publicElevator"; - pixel_y = -25 - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/commons/storage/mining) -"iIs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"iIx" = ( -/obj/item/radio/intercom/directional/west, -/obj/structure/closet/wardrobe/white, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"iIz" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"iIA" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"iIE" = ( -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay" - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/turf_decal/tile/blue/full, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/large, -/area/station/medical/medbay/lobby) -"iII" = ( -/obj/structure/table, -/obj/item/circular_saw, -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"iIN" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/service/chapel) -"iIW" = ( -/obj/structure/table, -/obj/item/plant_analyzer, -/obj/item/stock_parts/cell/high, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"iJh" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Engineering East" - }, -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/tile/yellow, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/engineering/main) -"iJl" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/iron/grimy, -/area/station/commons/vacant_room/office) -"iJv" = ( -/obj/machinery/computer/mechpad, -/obj/machinery/light/small/directional/north, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron/textured, -/area/mine/mechbay) -"iJC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"iJI" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/icemoon, -/area/station/science/ordnance/bomb) -"iJK" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/openspace, -/area/station/engineering/atmos/storage) -"iJM" = ( -/obj/structure/stairs/south{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/dorms/laundry) -"iJO" = ( -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"iJY" = ( -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"iKk" = ( -/obj/effect/landmark/xeno_spawn, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"iKl" = ( -/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/blue/filled/warning{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"iKp" = ( -/obj/structure/sign/warning/gas_mask/directional/south{ - desc = "A sign that warns of dangerous gasses in the air, instructing you to wear internals." - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/cargo/warehouse) -"iKr" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/firealarm/directional/east, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"iKw" = ( -/obj/item/kitchen/fork/plastic, -/obj/structure/table, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"iKG" = ( -/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/aft/lesser) -"iKL" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/smartfridge/extract/preloaded, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"iKQ" = ( -/obj/machinery/status_display/evac/directional/east, -/turf/open/openspace, -/area/station/service/chapel) -"iKR" = ( -/obj/machinery/door/firedoor, -/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 = "Arrivals" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"iKS" = ( -/obj/structure/bookcase, -/obj/machinery/light/directional/north, -/turf/open/floor/carpet, -/area/station/security/processing) -"iKX" = ( -/obj/machinery/door/airlock{ - id_tag = "AuxToilet1"; - name = "Unit 1" - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/locker) -"iLe" = ( -/obj/item/radio/intercom/directional/north, -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) -"iLf" = ( -/obj/machinery/atmospherics/pipe/smart/simple/brown/visible, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"iLq" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/obj/structure/fence/corner{ - dir = 1 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"iLt" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lantern, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"iLu" = ( -/obj/item/radio/intercom/directional/west, -/obj/machinery/suit_storage_unit/captain, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"iLv" = ( -/obj/item/book/manual/wiki/tcomms{ - pixel_x = 10; - pixel_y = -1 - }, -/obj/item/book/manual/wiki/ordnance{ - pixel_x = 10; - pixel_y = 3 - }, -/obj/item/book/manual/wiki/experimentor{ - pixel_x = 10; - pixel_y = 8 - }, -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -7; - pixel_y = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/processing) -"iLB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/camera/directional/west{ - c_tag = "Dormitory South" - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"iLU" = ( -/obj/machinery/duct, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/dark, -/obj/effect/turf_decal/tile/dark{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"iLY" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"iMf" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/dark_blue/line{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"iMg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/light/small/directional/east, -/obj/machinery/duct, -/turf/open/floor/wood/tile, -/area/station/service/theater) -"iMh" = ( -/obj/effect/turf_decal/siding/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_large{ - name = "The Girly Boar" - }, -/turf/open/floor/iron/dark/textured_half, -/area/station/service/bar/atrium) -"iMu" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Arrivals Escape Pod 1" - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"iMA" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"iMD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"iME" = ( -/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/interrogation) -"iMF" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) -"iML" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"iMQ" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - 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/mine/production) -"iMT" = ( -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"iMV" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"iNa" = ( -/obj/effect/decal/cleanable/dirt, -/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, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"iNj" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"iNn" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/start/geneticist, -/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, -/area/station/science/genetics) -"iNH" = ( -/obj/structure/table/wood, -/obj/item/taperecorder{ - pixel_x = 9; - pixel_y = 9 - }, -/obj/item/folder/blue{ - pixel_x = -8; - pixel_y = -2 - }, -/obj/item/pen/blue{ - pixel_y = -2 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/commons/vacant_room/office) -"iNQ" = ( -/turf/open/floor/carpet, -/area/station/maintenance/space_hut/cabin) -"iOc" = ( -/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/starboard/fore) -"iOs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"iOu" = ( -/obj/structure/bed, -/obj/item/bedsheet/cmo, -/obj/machinery/light_switch/directional/south, -/obj/effect/landmark/start/chief_medical_officer, -/obj/machinery/keycard_auth/directional/east, -/obj/machinery/camera{ - c_tag = "Chief Medical officer Bedroom"; - dir = 4; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"iOv" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"iOw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/eva) -"iOF" = ( -/obj/machinery/door/poddoor/preopen{ - id = "heads_meeting"; - name = "Privacy Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/command/meeting_room) -"iOM" = ( -/obj/structure/disposalpipe/segment, -/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/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"iOO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/table, -/obj/item/storage/secure/safe/directional/south, -/obj/item/storage/secure/briefcase, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"iOU" = ( -/obj/structure/table, -/obj/item/storage/medkit/regular, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/commons/locker) -"iOZ" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/dark_blue/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"iPx" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/commons/storage/mining) -"iPD" = ( -/obj/machinery/atmospherics/components/binary/pump/off, -/obj/machinery/airlock_sensor/incinerator_ordmix{ - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/science/ordnance/burnchamber) -"iPR" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"iPT" = ( -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark/textured_edge{ - dir = 4 - }, -/area/station/security/checkpoint/auxiliary) -"iPY" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"iQb" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"iQf" = ( -/obj/machinery/door/airlock/external{ - name = "Service Hall Exit" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "service-hall-external" - }, -/obj/structure/sign/warning/cold_temp/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/general, -/turf/open/floor/iron/dark/textured, -/area/station/hallway/secondary/service) -"iQl" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"iQr" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"iQt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/service/chapel) -"iQF" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"iQK" = ( -/obj/structure/table, -/obj/item/dice/d4{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/flashlight, -/obj/item/radio/intercom/directional/west, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron, -/area/station/cargo/storage) -"iQM" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"iQQ" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/service/library) -"iQT" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"iRc" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - amount = 5 - }, -/obj/item/flashlight, -/turf/open/floor/plating, -/area/station/construction) -"iRd" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"iRo" = ( -/turf/closed/wall, -/area/station/security/checkpoint/customs/auxiliary) -"iRp" = ( -/obj/machinery/conveyor{ - dir = 10; - id = "gulag" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/mine/laborcamp) -"iRr" = ( -/obj/effect/landmark/start/engineering_guard, -/obj/structure/chair/office, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/engineering) -"iRx" = ( -/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/science/research) -"iRz" = ( -/obj/structure/chair, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria, -/area/station/hallway/secondary/exit/departure_lounge) -"iRA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"iRK" = ( -/obj/structure/cable, -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/firealarm/directional/north{ - pixel_x = 28; - pixel_y = 57 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/fore) -"iRM" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"iRN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white/side{ - dir = 6 - }, -/area/station/science/research) -"iRP" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/atmospherics, -/obj/item/holosign_creator/atmos, -/obj/item/holosign_creator/atmos, -/obj/structure/sign/warning/radiation/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"iRV" = ( -/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) -"iSf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/laborcamp/security) -"iSk" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 6 - }, -/turf/open/openspace, -/area/station/science/ordnance/office) -"iSl" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Mix to Port" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"iSn" = ( -/obj/structure/table, -/obj/effect/spawner/random/maintenance/three, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"iSs" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"iSE" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"iST" = ( -/obj/structure/chair/office, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"iSW" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Cargo Bay Maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"iTr" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/service/chapel) -"iTB" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"iTP" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"iTY" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"iUd" = ( -/obj/machinery/conveyor{ - dir = 6; - id = "mining_internal" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/mine/production) -"iUg" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/side, -/area/mine/eva) -"iUm" = ( -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"iUo" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/iron, -/area/station/security/warden) -"iUs" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral, -/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/commons/fitness) -"iUw" = ( -/obj/structure/closet/lasertag/blue, -/obj/structure/sign/poster/official/random/directional/east, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"iUx" = ( -/obj/effect/turf_decal/siding/yellow/corner, -/obj/machinery/duct, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"iUG" = ( -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"iUJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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) -"iUO" = ( -/obj/structure/flora/bush/flowers_pp/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"iUT" = ( -/obj/structure/disposalpipe/segment{ - 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, -/area/station/command/bridge) -"iVi" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"iVm" = ( -/obj/structure/stairs/north, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/iron, -/area/mine/eva/lower) -"iVA" = ( -/obj/effect/landmark/start/shaft_miner, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"iVN" = ( -/obj/machinery/vending/sustenance, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison) -"iVT" = ( -/obj/machinery/computer/camera_advanced/xenobio, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"iVU" = ( -/obj/effect/landmark/start/hangover, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"iVY" = ( -/obj/structure/stairs/south, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"iWd" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/screwdriver{ - pixel_x = 2; - pixel_y = 11 - }, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"iWr" = ( -/turf/closed/wall, -/area/station/service/kitchen/diner) -"iWx" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 1; - freq = 1400; - location = "Janitor" - }, -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/department/medical/central) -"iWM" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"iWP" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"iWQ" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/flashlight/lamp, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"iWS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/window/brigdoor{ - dir = 1; - req_access = list("brig") - }, -/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/border_only{ - dir = 1 - }, -/turf/open/floor/iron/smooth, -/area/station/security/holding_cell) -"iWY" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/requests_console/directional/north{ - department = "Engineering"; - departmentType = 4; - name = "Engineering Requests Console" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"iWZ" = ( -/obj/effect/decal/cleanable/glass, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"iXb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"iXh" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/firealarm/directional/east, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"iXk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/construction) -"iXq" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/general/visible{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria, -/area/station/engineering/atmos) -"iXu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"iXC" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/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/chapel) -"iXE" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock) -"iXH" = ( -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/siding/white, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/large, -/area/station/service/kitchen/diner) -"iXK" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"iXP" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/chemistry) -"iYb" = ( -/turf/closed/wall, -/area/station/maintenance/central/greater) -"iYi" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchencounter"; - name = "Kitchen Counter Shutters"; - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"iYs" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = 12 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"iYt" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"iYG" = ( -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/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/fore) -"iYH" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall/r_wall, -/area/station/medical/virology) -"iYI" = ( -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron, -/area/station/cargo/storage) -"iYU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/textured, -/area/station/security/brig) -"iYV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"iZc" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Xenobiology Lab Entrance"; - network = list("ss13","rd","xeno") - }, -/turf/open/openspace, -/area/station/science/xenobiology) -"iZl" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rnd2"; - name = "Research Lab Shutters"; - dir = 4 - }, -/turf/open/floor/plating, -/area/station/science/research) -"iZm" = ( -/obj/structure/chair/wood, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"iZn" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/wood, -/area/station/service/library) -"iZo" = ( -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/iron/dark/side, -/area/station/security/prison/workout) -"iZq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"iZs" = ( -/obj/structure/table, -/obj/item/kitchen/spoon/plastic, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"iZy" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 1 - }, -/obj/machinery/hydroponics/constructable, -/turf/open/floor/grass, -/area/station/maintenance/starboard/fore) -"iZz" = ( -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/labor_camp) -"iZJ" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/light_construct/directional/west, -/turf/open/floor/plating, -/area/station/construction) -"iZO" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"iZQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/white/side{ - dir = 6 - }, -/area/station/science/xenobiology) -"iZW" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/button/door/directional/south{ - id = "AuxToilet2"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/obj/effect/spawner/random/trash/graffiti{ - pixel_x = -32; - spawn_loot_chance = 50 - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/locker) -"jag" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable/layer3, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"jak" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"jao" = ( -/obj/structure/railing, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"jaw" = ( -/obj/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/security/brig/upper) -"jaN" = ( -/obj/machinery/vending/wardrobe/atmos_wardrobe, -/obj/effect/turf_decal/stripes/end, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos) -"jaO" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Turbine Access" - }, -/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/heavy, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"jaW" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/dark/textured_edge{ - dir = 1 - }, -/area/station/security/prison) -"jaX" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/oil/slippery, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"jba" = ( -/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/central) -"jbb" = ( -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/rec) -"jbh" = ( -/obj/structure/chair/comfy/beige, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"jbt" = ( -/obj/machinery/light/directional/north, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"jbu" = ( -/obj/structure/railing/corner, -/turf/open/floor/iron/dark/side{ - dir = 9 - }, -/area/station/service/chapel) -"jbx" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage" - }, -/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/cable, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue/full, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/storage) -"jbC" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Chemistry Stair Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, -/turf/open/floor/iron/dark, -/area/station/medical/treatment_center) -"jbG" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/service/chapel) -"jbI" = ( -/obj/machinery/holopad, -/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) -"jbT" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/door/airlock/command/glass{ - name = "Emergency EVA Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/eva, -/turf/open/floor/iron/textured, -/area/station/hallway/secondary/exit/departure_lounge) -"jbU" = ( -/turf/closed/wall, -/area/station/command/heads_quarters/rd) -"jbX" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/end{ - dir = 4 - }, -/obj/machinery/computer/department_orders/medical{ - dir = 1 - }, -/turf/open/floor/iron/large, -/area/station/medical/medbay/aft) -"jcf" = ( -/obj/machinery/computer/security, -/obj/structure/reagent_dispensers/wall/peppertank/directional/north, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/auxiliary) -"jco" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 6 - }, -/obj/effect/turf_decal/siding/wideplating{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"jcw" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 3" - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"jcC" = ( -/obj/machinery/requests_console/directional/north, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"jcJ" = ( -/obj/structure/table/wood/fancy/blue, -/obj/effect/spawner/random/aimodule/neutral, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Core Modules"; - req_access = list("captain") - }, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) -"jcP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"jcT" = ( -/obj/structure/rack, -/obj/item/storage/box/teargas{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/flashbangs{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/red/half{ - dir = 8 - }, -/obj/item/storage/toolbox/drone, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) -"jdd" = ( -/obj/structure/closet/firecloset, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"jdf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"jdj" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/turf/open/floor/iron/grimy, -/area/station/commons/vacant_room/office) -"jdJ" = ( -/obj/structure/chair/wood, -/turf/open/floor/carpet, -/area/station/maintenance/space_hut/cabin) -"jdK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"jdP" = ( -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"jdQ" = ( -/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/white/side{ - dir = 9 - }, -/area/station/science/research) -"jeb" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"jeh" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/oxygen_input{ - dir = 1 - }, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"jei" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Port Hallway" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"jek" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Server Room" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"jen" = ( -/obj/machinery/requests_console/directional/east{ - announcementConsole = 1; - anon_tips_receiver = 1; - assistance_requestable = 1; - department = "Telecomms Admin"; - departmentType = 5; - name = "Telecomms Requests Console" - }, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"jer" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"jes" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/binary/pump/off/pink/visible{ - dir = 4; - name = "Exfiltrate to Port" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"jew" = ( -/obj/item/candle{ - pixel_x = -7; - pixel_y = 3 - }, -/obj/item/storage/book{ - name = "Tales from the First"; - pixel_x = 5; - pixel_y = 5 - }, -/obj/structure/table/wood, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"jeB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"jeF" = ( -/obj/effect/landmark/start/security_officer, -/turf/open/floor/glass/reinforced, -/area/station/security/office) -"jeI" = ( -/obj/item/food/grown/banana, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/grass, -/area/station/medical/virology) -"jeJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"jfc" = ( -/turf/closed/wall, -/area/station/command/heads_quarters/hop) -"jfq" = ( -/obj/machinery/telecomms/bus/preset_two, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"jft" = ( -/obj/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/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"jfz" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"jfD" = ( -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/checker, -/area/station/engineering/atmos) -"jfN" = ( -/obj/structure/stairs/south, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"jgh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Canteen" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/textured_half{ - dir = 1 - }, -/area/station/service/kitchen/diner) -"jgl" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/dark_blue/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"jgn" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"jgG" = ( -/obj/structure/closet/secure_closet/security/sec, -/turf/open/floor/iron/smooth_edge, -/area/station/security/lockers) -"jgV" = ( -/obj/machinery/light/dim/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/dark, -/area/station/medical/morgue) -"jhy" = ( -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/iron, -/area/station/cargo/storage) -"jhC" = ( -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - dir = 4; - name = "Supply multi deck pipe adapter" - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"jhD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"jhM" = ( -/obj/docking_port/stationary/random/icemoon{ - dir = 8; - id = "pod_lavaland"; - name = "lavaland" - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"jhQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"jhS" = ( -/obj/machinery/newscaster/directional/north, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"jih" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/structure/tank_holder/extinguisher, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"jir" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"jiZ" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "MiniSat Service Bay"; - network = list("minisat"); - start_active = 1 - }, -/obj/machinery/airalarm/directional/east, -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/multitool, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/service) -"jja" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light/small/red/directional/south, -/obj/item/radio/intercom/chapel/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"jjk" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/openspace, -/area/station/cargo/storage) -"jjo" = ( -/obj/machinery/light/warm/directional/south, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison) -"jjt" = ( -/obj/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/security/brig/upper) -"jjx" = ( -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"jjG" = ( -/obj/item/instrument/harmonica, -/obj/item/instrument/guitar, -/obj/machinery/airalarm/directional/north, -/obj/machinery/firealarm/directional/west, -/obj/structure/table/wood, -/turf/open/floor/wood/tile, -/area/station/service/theater) -"jjQ" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/storage/medkit/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/medkit/o2, -/obj/item/storage/medkit/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/medical/storage) -"jjS" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/decal/cleanable/dirt, -/obj/item/seeds/redbeet, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/mine/laborcamp) -"jjW" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/machinery/vending/wardrobe/bar_wardrobe, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/service/bar) -"jkn" = ( -/obj/effect/turf_decal/tile/dark/fourcorners, -/turf/open/floor/iron, -/area/mine/living_quarters) -"jkr" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"jkt" = ( -/obj/machinery/disposal/bin, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"jkH" = ( -/obj/structure/training_machine, -/obj/effect/landmark/blobstart, -/turf/open/floor/engine, -/area/station/science/explab) -"jkS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/machinery/duct, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jkW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jkY" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"jla" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/smooth, -/area/mine/mechbay) -"jle" = ( -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/command/meeting_room) -"jlf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"jli" = ( -/obj/machinery/vending/clothing, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison) -"jlj" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/tank, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"jlp" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 5 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/sign/poster/official/soft_cap_pop_art{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) -"jlq" = ( -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/machinery/light/directional/east, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"jlu" = ( -/obj/structure/railing/corner, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"jly" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"jlF" = ( -/obj/machinery/computer/arcade/amputation{ - dir = 4 - }, -/obj/item/radio/intercom/prison/directional/west, -/turf/open/floor/iron, -/area/station/security/prison/work) -"jlG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/mine/laborcamp) -"jlJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/icemoon, -/area/station/maintenance/solars/port/aft) -"jlK" = ( -/obj/structure/ore_box, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"jlP" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/recharge_station, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"jlV" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jlX" = ( -/obj/effect/turf_decal/stripes/red/line, -/obj/effect/turf_decal/trimline/red/line{ - dir = 1 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/range) -"jms" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/plating, -/area/station/medical/virology) -"jmI" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison/workout) -"jmR" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"jnt" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/mine/eva/lower) -"jnM" = ( -/obj/structure/chair/sofa, -/turf/open/floor/carpet/blue, -/area/station/security/prison/work) -"jnS" = ( -/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/cable, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"jnV" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"jnX" = ( -/obj/machinery/shower{ - pixel_y = 12 - }, -/obj/item/bikehorn/rubberducky/plasticducky, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/toilet) -"jnY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"job" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/station/service/hydroponics) -"jol" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - 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/power/apc/auto_name/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"joB" = ( -/obj/item/beacon, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"joW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/firealarm/directional/east, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"jpd" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"jpo" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint2" - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"jpy" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"jpE" = ( -/obj/structure/closet/l3closet/security, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/smooth, -/area/station/security/brig/upper) -"jpR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Dormitory" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/navigate_destination, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/dorms) -"jpS" = ( -/turf/closed/wall/r_wall, -/area/station/cargo/warehouse) -"jqc" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Maintenance External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"jqf" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"jqr" = ( -/obj/machinery/holopad, -/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) -"jqs" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"jqx" = ( -/obj/structure/transit_tube/crossing/horizontal, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"jqB" = ( -/obj/structure/railing, -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/tile/red/half{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) -"jqE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/table, -/obj/item/book/manual/wiki/grenades, -/obj/item/book/manual/wiki/plumbing{ - pixel_x = 5 - }, -/obj/item/book/manual/wiki/chemistry{ - pixel_x = 8 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"jqT" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/storage/tech) -"jre" = ( -/turf/closed/wall, -/area/station/maintenance/starboard/lesser) -"jrf" = ( -/obj/structure/window/reinforced/tinted/frosted{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/stack/ducts/fifty, -/obj/item/storage/box/swab, -/obj/effect/spawner/random/contraband/permabrig_gear, -/turf/open/floor/iron/grimy, -/area/station/security/prison/work) -"jrk" = ( -/obj/effect/spawner/random/structure/crate, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"jrI" = ( -/obj/structure/transit_tube/curved/flipped, -/obj/structure/cable, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"jrZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"jse" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"jsp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/iron, -/area/station/security/prison/work) -"jsq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/button/door/directional/north{ - id = "teledoor"; - name = "MiniSat Teleporter Shutters Control"; - req_one_access = list("teleporter","minisat") - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"jsB" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/locker) -"jsC" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"jsH" = ( -/obj/structure/table, -/obj/item/storage/medkit/regular{ - pixel_x = 6; - pixel_y = -5 - }, -/obj/item/multitool, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/item/trash/cheesie, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/office) -"jsX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - 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/commons/dorms) -"jtc" = ( -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "garbage"; - name = "disposal conveyor" - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"jtl" = ( -/obj/machinery/light/directional/north, -/obj/machinery/meter/monitored/waste_loop, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wideplating/corner, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"jtn" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"jtu" = ( -/obj/effect/turf_decal/tile/red/half{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/half{ - dir = 1 - }, -/area/station/hallway/secondary/service) -"jtx" = ( -/obj/effect/turf_decal/tile/red, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"jty" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/directional/south{ - c_tag = "Security - Permabrig Library"; - network = list("ss13","prison") - }, -/turf/open/floor/carpet/red, -/area/station/security/prison/work) -"jtz" = ( -/obj/structure/closet/wardrobe/pjs, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron, -/area/station/commons/dorms) -"jtA" = ( -/obj/structure/reagent_dispensers/wall/peppertank/directional/south, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) -"jtD" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/easel, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas/twentythree_nineteen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"jtE" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"jtG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/item/stack/sheet/iron/twenty, -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"jtN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/mining) -"jtX" = ( -/obj/item/storage/bag/plants/portaseeder, -/obj/structure/table/glass, -/obj/item/plant_analyzer, -/obj/item/radio/intercom/directional/east, -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"jtY" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"jub" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Escape" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/hallway/secondary/exit/departure_lounge) -"jue" = ( -/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/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"jug" = ( -/turf/open/floor/glass/reinforced, -/area/station/engineering/atmos/pumproom) -"jum" = ( -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/iron/dark/corner, -/area/mine/eva) -"juw" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"juE" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/tank/oxygen, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"juQ" = ( -/obj/structure/rack, -/obj/item/stack/rods/fifty, -/obj/item/stack/sheet/glass/fifty, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"jvc" = ( -/obj/machinery/door/firedoor/border_only, -/turf/open/openspace, -/area/station/science/ordnance) -"jvj" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/chair, -/obj/item/reagent_containers/blood/random, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"jvm" = ( -/obj/structure/closet/secure_closet/courtroom, -/obj/item/gavelhammer, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/iron, -/area/station/security/courtroom) -"jvn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/locker) -"jvs" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"jvw" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/medical/morgue) -"jvL" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/security/detectives_office) -"jvM" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"jvR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"jvS" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jwa" = ( -/obj/structure/fence/corner, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"jwj" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"jwl" = ( -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"jwm" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"jwn" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/conveyor{ - dir = 4; - id = "robo2" - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"jwt" = ( -/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, -/area/station/hallway/primary/central) -"jwv" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"jwx" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"jwF" = ( -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"jwN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/cable, -/turf/open/floor/carpet/red, -/area/station/security/prison/work) -"jxb" = ( -/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/science/breakroom) -"jxu" = ( -/obj/machinery/requests_console/directional/north{ - assistance_requestable = 1; - department = "Chapel"; - departmentType = 1; - name = "Chapel Requests Console" - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"jxv" = ( -/obj/effect/landmark/start/paramedic, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"jxG" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/plating, -/area/station/cargo/storage) -"jxJ" = ( -/obj/machinery/atmospherics/components/tank, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"jxK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden, -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"jxT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "EVA 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/command/eva, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"jyd" = ( -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/auxiliary) -"jyh" = ( -/obj/effect/turf_decal/tile/bar/opposingcorners, -/obj/structure/table/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/bar) -"jyM" = ( -/obj/structure/rack, -/obj/item/gun/energy/ionrifle, -/obj/item/gun/energy/temperature/security, -/obj/item/clothing/suit/hooded/ablative, -/obj/effect/turf_decal/tile/red/half{ - dir = 8 - }, -/obj/item/gun/grenadelauncher, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) -"jyR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/checkpoint/engineering) -"jzf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"jzk" = ( -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"jzn" = ( -/obj/structure/closet/secure_closet/captains, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"jzy" = ( -/obj/machinery/computer/exodrone_control_console{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/drone_bay) -"jzC" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig Walkway" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brigentrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"jzY" = ( -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"jAk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/warden) -"jAu" = ( -/obj/structure/rack, -/obj/structure/cable, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plating, -/area/mine/eva/lower) -"jAv" = ( -/obj/structure/flora/grass/both/style_random, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"jAF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/left/directional/north{ - dir = 4; - name = "Containment Pen 5"; - req_access = list("xenobiology") - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"jAO" = ( -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jAQ" = ( -/obj/structure/window/reinforced/fulltile/ice{ - name = "frozen window" - }, -/turf/open/floor/plating, -/area/station/maintenance/space_hut/cabin) -"jAZ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/hydroponics/soil, -/obj/machinery/light/directional/east, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"jBh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "Xenobio Pen 6 Blast Door" - }, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"jBq" = ( -/obj/structure/flora/tree/jungle/style_random, -/obj/structure/flora/bush/jungle/a/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"jBw" = ( -/obj/structure/chair/sofa/corp/right, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"jBB" = ( -/obj/structure/kitchenspike, -/turf/open/floor/plating/snowed/coldroom, -/area/station/service/kitchen/coldroom) -"jBJ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"jBQ" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"jBR" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jBU" = ( -/obj/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/parquet, -/area/station/commons/lounge) -"jCl" = ( -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"jCr" = ( -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"jCw" = ( -/obj/structure/railing{ - dir = 10 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"jCF" = ( -/obj/effect/turf_decal/siding/wood, -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/item/radio/intercom/directional/west{ - pixel_y = -9 - }, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/stone, -/area/station/commons/lounge) -"jCL" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/machinery/computer/security/telescreen/entertainment/directional/west, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"jCS" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/storage) -"jCY" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/structure/chair/sofa/corp/right{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"jDi" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Exfiltrate to Waste" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"jDm" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics2"; - name = "Robotics Lab Shutters" - }, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/science/robotics/lab) -"jDt" = ( -/obj/machinery/pdapainter/security, -/turf/open/floor/wood/large, -/area/station/command/heads_quarters/hos) -"jDw" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/structure/sign/warning/biohazard/directional/east, -/turf/open/floor/iron, -/area/station/command/gateway) -"jDG" = ( -/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/prisoner, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison) -"jDY" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"jEr" = ( -/obj/structure/table/wood, -/obj/item/camera, -/obj/item/taperecorder, -/obj/item/radio/intercom/directional/east, -/obj/structure/sign/painting/library_private{ - pixel_y = 32 - }, -/turf/open/floor/engine/cult, -/area/station/service/library) -"jEs" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "gulag"; - name = "labor camp conveyor" - }, -/turf/open/floor/iron, -/area/mine/laborcamp) -"jEJ" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"jFd" = ( -/obj/item/radio/off, -/obj/item/crowbar, -/obj/item/assembly/flash/handheld, -/obj/structure/table, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/auxiliary) -"jFn" = ( -/obj/structure/railing, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/service/chapel) -"jFv" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/landmark/start/customs_agent, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"jFA" = ( -/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/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"jFF" = ( -/obj/structure/table/wood, -/obj/item/book/granter/action/spell/smoke/lesser{ - name = "mysterious old book of cloud-chasing" - }, -/obj/item/reagent_containers/food/drinks/bottle/holywater{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/nullrod{ - pixel_x = 4 - }, -/turf/open/floor/cult, -/area/station/service/chapel/office) -"jFR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/mecha_part_fabricator, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"jFV" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"jFZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/sign/departments/chemistry/pharmacy/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"jGg" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/safe) -"jGh" = ( -/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/tcommsat/computer) -"jGq" = ( -/obj/structure/sign/warning/electric_shock/directional/east, -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"jGr" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/commons/dorms/laundry) -"jGv" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"jGw" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/mine/eva) -"jGB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/large, -/area/station/engineering/lobby) -"jGC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access = list("maint_tunnels") - }, -/turf/open/floor/plating, -/area/service/salon) -"jGN" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/obj/machinery/door_buttons/airlock_controller{ - idExterior = "virology_airlock_exterior"; - idInterior = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Console"; - pixel_x = 8; - pixel_y = 25; - req_access = list("virology") - }, -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"jGR" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/ordnance) -"jGY" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hazardvest, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"jHk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"jHm" = ( -/obj/machinery/computer/warrant, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"jHE" = ( -/obj/effect/turf_decal/tile/bar/opposingcorners, -/obj/effect/turf_decal/siding/white/corner, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/service/bar) -"jHF" = ( -/obj/item/trash/boritos/red, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison/work) -"jHG" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror/directional/west, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"jHN" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"jHQ" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer1{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jHT" = ( -/obj/machinery/computer/chef_order{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/service) -"jIg" = ( -/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/sorting) -"jIi" = ( -/obj/structure/table/wood, -/obj/item/paper_bin/carbon, -/obj/item/pen, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"jIk" = ( -/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/starboard/aft) -"jIm" = ( -/obj/machinery/rnd/production/techfab/department/security, -/obj/structure/cable, -/obj/structure/noticeboard/directional/east, -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/smooth_half, -/area/station/security/office) -"jIv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"jIE" = ( -/obj/structure/sign/warning/gas_mask, -/turf/closed/wall, -/area/station/cargo/storage) -"jII" = ( -/turf/closed/wall, -/area/station/hallway/primary/central) -"jIM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"jIO" = ( -/obj/structure/disposalpipe/segment{ - 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/hallway/primary/central) -"jIP" = ( -/obj/structure/lattice/catwalk, -/turf/open/openspace/icemoon, -/area/station/science/server) -"jIW" = ( -/obj/machinery/oven, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"jIX" = ( -/obj/effect/turf_decal/siding/brown/corner{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/brown/filled/warning{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"jIZ" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/structure/cable/multilayer/connected, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"jJa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"jJe" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"jJf" = ( -/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/machinery/holopad, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"jJG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"jJH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"jJM" = ( -/turf/open/floor/glass, -/area/station/security/lockers) -"jJS" = ( -/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/plating, -/area/station/maintenance/port/greater) -"jJV" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"jJX" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"jKh" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater/on, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"jKr" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plating/icemoon, -/area/station/security/execution/education) -"jKt" = ( -/obj/machinery/light/directional/north, -/obj/machinery/firealarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/storage) -"jKy" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/machinery/holopad, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"jKz" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - 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/decal/cleanable/dirt, -/turf/open/floor/iron/dark/side, -/area/mine/eva) -"jKA" = ( -/obj/effect/turf_decal/tile/dark/fourcorners, -/obj/machinery/light/floor, -/turf/open/floor/iron, -/area/mine/living_quarters) -"jKC" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"jKG" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"jKI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron/freezer, -/area/station/science/xenobiology) -"jKK" = ( -/obj/structure/table, -/obj/item/folder/blue, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"jKN" = ( -/obj/effect/turf_decal/tile/neutral{ - 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/commons/dorms) -"jKY" = ( -/obj/structure/closet/secure_closet/cytology, -/turf/open/floor/glass/reinforced, -/area/station/science/xenobiology) -"jLb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/production) -"jLl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/computer/atmos_control/nocontrol/master{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/storage/gas) -"jLn" = ( -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"jLo" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/mine/laborcamp) -"jLx" = ( -/obj/structure/closet/wardrobe/black, -/obj/item/clothing/shoes/jackboots, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"jLK" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/machinery/duct, -/obj/machinery/camera{ - c_tag = "Virology Module North"; - dir = 9; - network = list("ss13","medbay") - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"jLO" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"jLQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/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/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"jLX" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/firealarm/directional/north, -/obj/machinery/camera{ - c_tag = "Mining B-2 Hallway"; - dir = 9 - }, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/mine/eva/lower) -"jLZ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "briggate"; - name = "Security Shutters"; - dir = 4 - }, -/obj/item/restraints/handcuffs, -/obj/item/radio/off, -/obj/structure/cable, -/obj/machinery/door/window/brigdoor/left/directional/west{ - name = "Brig Reception"; - req_access = list("security") - }, -/obj/machinery/door/window/right/directional/east{ - name = "Brig Reception" - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/auxiliary) -"jMc" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"jMp" = ( -/obj/machinery/vending/tool, -/obj/machinery/light/directional/east, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) -"jMw" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 1"; - space_dir = 2 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"jMM" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/station/commons/locker) -"jMY" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/dark_blue/line{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"jNc" = ( -/obj/machinery/seed_extractor, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"jNf" = ( -/turf/closed/wall, -/area/station/security/prison/garden) -"jNg" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Control Room" - }, -/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, -/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"jNk" = ( -/obj/machinery/airalarm/directional/west, -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"jNp" = ( -/turf/closed/wall/r_wall, -/area/station/security/holding_cell) -"jNH" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating/snowed/icemoon, -/area/mine/eva/lower) -"jNP" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible/layer4, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"jNZ" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"jOc" = ( -/obj/structure/sink/kitchen{ - dir = 8; - pixel_x = 14 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east{ - pixel_x = 31 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"jOe" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/spawner/random/food_or_drink/snack, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"jOi" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge" - }, -/obj/structure/cable, -/obj/effect/landmark/navigate_destination, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron, -/area/station/command/bridge) -"jOj" = ( -/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/aft) -"jOo" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/emergency, -/obj/item/wrench, -/obj/item/assembly/timer, -/obj/item/assembly/signaler, -/obj/item/assembly/signaler, -/turf/open/floor/iron, -/area/station/command/bridge) -"jOp" = ( -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"jOt" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/hallway/primary/port) -"jOD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"jOQ" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"jOY" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/reagent_dispensers/plumbed{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/service) -"jPa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/modular_computer/console/preset/cargochat/service{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/service) -"jPc" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "QMLoad2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"jPh" = ( -/obj/structure/grille/broken, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"jPi" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"jPo" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold/green/visible{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"jPu" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/dark_blue/line, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"jPx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/science/breakroom) -"jPB" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/computer/cargo, -/turf/open/floor/iron, -/area/station/cargo/qm) -"jPK" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"jPL" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/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, -/area/station/engineering/main) -"jPY" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"jQd" = ( -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"jQh" = ( -/obj/structure/ladder, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/mine/storage) -"jQi" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"jQo" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/machinery/grill, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"jQw" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/mine/eva) -"jQz" = ( -/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) -"jQB" = ( -/obj/machinery/door/airlock/security{ - name = "Security Office" - }, -/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/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark/textured, -/area/station/security/office) -"jQC" = ( -/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/port/aft) -"jQD" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"jQE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"jQI" = ( -/obj/structure/table, -/obj/item/clothing/glasses/meson, -/obj/item/storage/bag/ore, -/obj/item/pickaxe, -/obj/item/mining_scanner, -/obj/item/flashlight, -/obj/item/clothing/suit/hooded/wintercoat, -/turf/open/floor/iron, -/area/station/commons/storage/mining) -"jQS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/science/research) -"jQU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "briggate"; - name = "Security Shutters"; - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/checkpoint/auxiliary) -"jRh" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/door/airlock/research{ - name = "Communications Server" - }, -/turf/open/floor/iron, -/area/mine/living_quarters) -"jRu" = ( -/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/wideplating/dark{ - dir = 4 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/rec) -"jRA" = ( -/turf/open/openspace, -/area/station/service/bar/atrium) -"jRB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table_frame, -/obj/item/wirerod, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"jRC" = ( -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hop) -"jRM" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"jRS" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/glass/reinforced/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"jSc" = ( -/obj/structure/bookcase/random, -/obj/structure/bookcase/random, -/turf/open/floor/carpet/red, -/area/station/security/prison/work) -"jSe" = ( -/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) -"jSf" = ( -/obj/structure/fence{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"jSk" = ( -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"jSl" = ( -/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/engineering/storage/tech) -"jSm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/door/window/brigdoor/right/directional/south{ - name = "Research Director Observation"; - req_access = list("rd") - }, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"jSt" = ( -/obj/machinery/door/airlock/external{ - name = "Security Yard"; - space_dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/iron/smooth_half, -/area/station/security/brig/upper) -"jSy" = ( -/obj/structure/fence/end{ - dir = 1 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"jSL" = ( -/obj/structure/stairs/east, -/turf/open/floor/plating, -/area/station/hallway/primary/central/fore) -"jSM" = ( -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 1 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"jSQ" = ( -/obj/structure/sign/poster/official/here_for_your_safety{ - pixel_x = 32 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"jST" = ( -/obj/machinery/door/window/right/directional/east{ - dir = 1; - name = "Bridge Delivery"; - req_access = list("command") - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/maintenance/central/greater) -"jSW" = ( -/mob/living/simple_animal/slime, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"jTf" = ( -/obj/structure/fence{ - dir = 1 - }, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"jTg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/green/filled/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"jTk" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/vending/barbervend, -/turf/open/floor/iron, -/area/service/salon) -"jTm" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"jTr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/science/explab) -"jTF" = ( -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"jTG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "gene_shutters"; - name = "Genetics Shutters"; - dir = 8 - }, -/turf/open/floor/plating, -/area/station/science/genetics) -"jTV" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"jTZ" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Server Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/rd, -/turf/open/floor/iron/dark, -/area/station/science/server) -"jUe" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/turf/open/floor/iron, -/area/mine/laborcamp) -"jUn" = ( -/obj/structure/table, -/obj/item/folder/red{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/item/folder/red{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/storage/box/evidence{ - pixel_x = -6; - pixel_y = 9 - }, -/obj/item/radio/intercom/prison/directional/north, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"jUr" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/service/theater) -"jUB" = ( -/turf/closed/wall, -/area/station/medical/virology) -"jUD" = ( -/obj/structure/chair/stool/directional/north, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/command/teleporter) -"jUL" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/flora/grass/green/style_random, -/turf/open/misc/asteroid/snow/standard_air, -/area/station/hallway/secondary/exit/departure_lounge) -"jUW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable/layer3, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"jUX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/cafeteria{ - dir = 8 - }, -/area/station/science/ordnance/office) -"jVq" = ( -/obj/structure/railing/corner, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"jVE" = ( -/obj/effect/turf_decal/box/white, -/turf/open/floor/engine, -/area/station/engineering/atmos/hfr_room) -"jWd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"jWl" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"jWp" = ( -/obj/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/department/crew_quarters/bar) -"jWJ" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/closet/emcloset/anchored, -/obj/structure/sign/warning/gas_mask/directional/west, -/turf/open/floor/plating, -/area/station/engineering/main) -"jWO" = ( -/obj/item/soap/nanotrasen, -/obj/item/clothing/head/sombrero, -/obj/structure/table/wood, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/wood/tile, -/area/station/service/theater) -"jWP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hop) -"jWU" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Barbershop" - }, -/obj/machinery/door/firedoor, -/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, -/area/service/salon) -"jXc" = ( -/obj/structure/sign/poster/official/help_others, -/turf/closed/wall/ice, -/area/icemoon/underground/explored) -"jXl" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"jXw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"jXD" = ( -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"jXL" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/newscaster/directional/south, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/exit/departure_lounge) -"jXN" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"jXY" = ( -/obj/machinery/door/airlock/public/glass{ - id_tag = "gulag1"; - name = "Cell 1" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/mine/laborcamp) -"jYc" = ( -/obj/effect/spawner/random/trash/grille_or_waste, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"jYg" = ( -/obj/machinery/light/directional/west, -/obj/structure/sign/departments/chemistry/directional/west, -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/medical/treatment_center) -"jYj" = ( -/obj/structure/sign/warning/secure_area/directional/north, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/line, -/turf/open/floor/iron/dark/textured, -/area/station/security/range) -"jYy" = ( -/obj/structure/sink{ - pixel_y = 20 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/mirror/directional/south, -/turf/open/floor/iron/freezer, -/area/station/medical/break_room) -"jYH" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 9 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"jYL" = ( -/obj/structure/light_construct/directional/south, -/obj/structure/sign/poster/contraband/random/directional/south, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"jYM" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - 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/decal/cleanable/dirt/dust, -/turf/open/floor/iron/dark/side, -/area/mine/eva/lower) -"jYQ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"jYS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"jZa" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Labor Camp External West"; - network = list("labor") - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/mine/laborcamp) -"jZc" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/obj/structure/flora/bush/flowers_yw/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"jZg" = ( -/obj/machinery/airalarm/kitchen_cold_room{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/flora/bush/snow/style_random, -/turf/open/misc/asteroid/snow/coldroom, -/area/station/service/kitchen/coldroom) -"jZi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/public/glass{ - id_tag = "cellblock1"; - name = "Labor Camp Operations" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/mine/laborcamp) -"jZk" = ( -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating/snowed/icemoon, -/area/station/engineering/storage_shared) -"jZr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/eva) -"jZt" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/item/plate, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_y = 6; - pixel_x = -7 - }, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"jZw" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/fore/greater) -"jZB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"jZI" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/dark/side{ - dir = 10 - }, -/area/station/security/prison) -"jZM" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"jZN" = ( -/obj/structure/marker_beacon/burgundy{ - name = "landing marker" - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"jZQ" = ( -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/locker) -"jZY" = ( -/obj/structure/tank_holder/extinguisher, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"kaw" = ( -/obj/machinery/photocopier, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/cargo/office) -"kaB" = ( -/obj/structure/table/wood, -/obj/item/paicard, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/fore/lesser) -"kaO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/iron, -/area/mine/laborcamp) -"kaW" = ( -/obj/machinery/light/directional/east, -/obj/machinery/button/door/directional/east{ - id = "xenobio9"; - layer = 4; - name = "Xenobio Pen 9 Blast DOors"; - req_access = list("xenobiology") - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"kaX" = ( -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/white/side{ - dir = 6 - }, -/area/station/science/research) -"kbn" = ( -/obj/effect/decal/cleanable/food/pie_smudge, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"kbp" = ( -/obj/structure/marker_beacon/burgundy, -/obj/structure/fluff/fokoff_sign, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"kbs" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"kbx" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/microwave{ - pixel_y = 6 - }, -/turf/open/floor/iron, -/area/mine/laborcamp) -"kby" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) -"kbI" = ( -/obj/effect/landmark/event_spawn, -/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/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/cargo/qm) -"kbJ" = ( -/obj/machinery/field/generator, -/turf/open/floor/plating, -/area/station/engineering/engine_smes) -"kbQ" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/light/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "EVA Storage" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"kbU" = ( -/obj/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, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"kcc" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Security - Infirmary" - }, -/obj/machinery/light_switch/directional/west, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) -"kce" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - dir = 4; - name = "Scrubbers multi deck pipe adapter" - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"kcf" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/laborcamp) -"kcm" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/command_all, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"kcA" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/obj/machinery/button/door/directional/west{ - id = "xenobiomain"; - name = "Containment Blast Doors"; - pixel_y = -6; - req_access = list("xenobiology") - }, -/obj/machinery/button/door/directional/west{ - id = "misclab"; - name = "Test Chamber Blast Doors"; - pixel_y = 6; - req_access = list("xenobiology") - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"kcC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/radio/intercom/prison/directional/west, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"kcD" = ( -/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) -"kcE" = ( -/obj/effect/spawner/random/trash/grille_or_waste, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"kcG" = ( -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"kcJ" = ( -/obj/machinery/light/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Central Hallway North" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"kcM" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/security/prison/visit) -"kdc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wideplating{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"kdo" = ( -/obj/structure/sign/warning/test_chamber/directional/south, -/turf/open/floor/iron, -/area/station/science/ordnance/testlab) -"kdu" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/mine/eva/lower) -"kdF" = ( -/obj/effect/spawner/random/vending/snackvend, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"kdJ" = ( -/obj/structure/flora/grass/brown/style_3, -/turf/open/misc/asteroid/snow/standard_air, -/area/station/science/research) -"kdT" = ( -/obj/machinery/iv_drip, -/obj/item/reagent_containers/blood, -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) -"kdY" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics Waste Tank" - }, -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"keq" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 5 - }, -/obj/item/radio/intercom/directional/east, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"keu" = ( -/obj/structure/lattice/catwalk, -/obj/structure/marker_beacon/burgundy{ - name = "landing marker" - }, -/turf/open/openspace/icemoon/keep_below, -/area/icemoon/underground/explored) -"kex" = ( -/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/white, -/area/station/science/explab) -"keA" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"keD" = ( -/obj/structure/easel, -/obj/item/canvas/nineteen_nineteen, -/turf/open/floor/sepia, -/area/station/security/prison/rec) -"keH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail{ - dir = 2; - sortType = 25 - }, -/turf/open/floor/iron, -/area/station/science/ordnance/testlab) -"keP" = ( -/turf/closed/wall, -/area/station/engineering/atmos/storage/gas) -"keX" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/item/stock_parts/cell/high, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"kfa" = ( -/obj/machinery/air_sensor/air_tank, -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"kfc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/smooth, -/area/station/security/brig/upper) -"kfe" = ( -/obj/effect/turf_decal/siding/thinplating_new{ - dir = 1 - }, -/obj/structure/sign/warning/yes_smoking/circle/directional/west, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"kfl" = ( -/obj/structure/table/wood, -/obj/item/radio/intercom/directional/south, -/obj/item/food/grown/poppy, -/obj/item/food/grown/poppy{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/food/grown/poppy{ - pixel_x = 5; - pixel_y = -2 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"kfs" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"kfy" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"kfz" = ( -/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, -/area/mine/laborcamp) -"kfQ" = ( -/obj/machinery/atmospherics/components/binary/pressure_valve/on{ - name = "Waste Release" - }, -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"kfY" = ( -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/structure/chair, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/white/smooth_large, -/area/station/service/kitchen/diner) -"kfZ" = ( -/obj/machinery/door/firedoor/heavy, -/obj/structure/sign/warning/test_chamber/directional/east, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/science/research) -"kgc" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"kgg" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/mix_input{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"kgl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"kgm" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/station/service/library) -"kgo" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"kgs" = ( -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"kgz" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/hollow/reinforced/middle, -/turf/open/floor/plating, -/area/station/security/detectives_office) -"kgD" = ( -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/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/hallway/primary/central) -"kgE" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"kgN" = ( -/obj/structure/girder, -/obj/structure/lattice/catwalk, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"kgU" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/structure/table, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/button/door/directional/north{ - id = "Dozer_Launch"; - name = "Mech Bay Door Control"; - pixel_x = 4; - pixel_y = 3; - req_access = list("robotics") - }, -/obj/item/folder/red{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/paper{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/pen{ - pixel_x = -4; - pixel_y = 1 - }, -/turf/open/floor/iron/dark, -/area/mine/mechbay) -"kgX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/left/directional/west{ - name = "Delivery Desk"; - req_access = list("shipping") - }, -/obj/effect/turf_decal/bot, -/obj/structure/table/reinforced, -/obj/structure/desk_bell{ - pixel_x = 7 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"khb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 4 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/rec) -"khe" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"kht" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"khx" = ( -/obj/machinery/power/apc/auto_name/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{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/iron, -/area/service/salon) -"khA" = ( -/obj/structure/plaque/static_plaque/golden/commission/icebox{ - pixel_y = 29 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"khR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) -"khU" = ( -/obj/structure/chair/plastic, -/obj/effect/turf_decal/bot_red, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"khW" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/random/structure/crate, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"kin" = ( -/obj/machinery/pdapainter/supply, -/turf/open/floor/carpet, -/area/station/cargo/qm) -"kip" = ( -/obj/structure/rack, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/radio/off, -/obj/item/assembly/timer, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"kir" = ( -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "lower-airlock-bend" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"kix" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Base" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, -/turf/open/floor/iron/dark/textured_half, -/area/station/cargo/storage) -"kiB" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"kiE" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"kiL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/command/meeting_room) -"kjw" = ( -/obj/machinery/power/apc/auto_name/directional/west, -/obj/machinery/camera/directional/south{ - c_tag = "Fore Port Solar Control" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"kjx" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/smooth_half, -/area/station/medical/chemistry) -"kjy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"kjG" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/iv_drip, -/turf/open/floor/iron/white, -/area/station/medical/surgery/fore) -"kjK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"kjY" = ( -/obj/structure/sign/warning/secure_area/directional/west, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "Bridge Blast Door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/command/bridge) -"kkl" = ( -/turf/closed/wall, -/area/station/security/interrogation) -"kkp" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/machinery/light/small/directional/north, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"kku" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/commons/locker) -"kkB" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 2"; - name = "Cell 2 Locker" - }, -/obj/structure/cable, -/turf/open/floor/iron/smooth, -/area/station/security/brig) -"kkD" = ( -/obj/effect/spawner/random/trash/grille_or_waste, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"kkN" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/security/courtroom) -"kkZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"klc" = ( -/turf/closed/wall, -/area/station/medical/cryo) -"klk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/break_room) -"klo" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/table/reinforced, -/obj/item/radio/intercom/directional/east, -/obj/item/stack/cable_coil{ - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/item/multitool, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/medical/chemistry) -"klv" = ( -/obj/structure/chair/sofa/corp/corner{ - dir = 8 - }, -/obj/effect/spawner/random/contraband/prison, -/turf/open/floor/carpet/blue, -/area/station/security/prison/work) -"klI" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/dark_green/line, -/obj/effect/turf_decal/trimline/dark_green/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/violet/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"klX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/public/glass{ - id_tag = "cellblock1"; - name = "Labor Camp Cellblock" - }, -/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, -/area/mine/laborcamp) -"klY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plating/snowed/coldroom, -/area/station/service/kitchen/coldroom) -"kma" = ( -/obj/structure/table, -/obj/item/hand_labeler, -/obj/item/storage/box/shipping, -/turf/open/floor/iron, -/area/station/commons/storage/art) -"kme" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"kmf" = ( -/obj/machinery/status_display/evac/directional/west, -/turf/open/openspace, -/area/station/medical/medbay/aft) -"kmg" = ( -/obj/structure/sign/poster/official/obey, -/turf/closed/wall/r_wall, -/area/station/security/prison/visit) -"kmi" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"kmH" = ( -/obj/effect/spawner/random/entertainment/cigar, -/obj/structure/table, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"kmM" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"kmN" = ( -/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; - sortType = 20; - sortTypes = list(18,19,21) - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"kmQ" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/camera{ - c_tag = "Service-Botany Top 2"; - dir = 10 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"kmW" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"kna" = ( -/obj/machinery/modular_computer/console/preset/cargochat/engineering, -/obj/effect/turf_decal/tile/brown/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) -"knc" = ( -/obj/effect/turf_decal/tile/brown/fourcorners, -/obj/machinery/computer/department_orders/engineering, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) -"knl" = ( -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/station/holodeck/rec_center) -"knq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"knu" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Gateway" - }, -/obj/structure/table, -/obj/structure/sign/warning/biohazard/directional/west, -/obj/item/storage/medkit/regular, -/obj/item/paper/pamphlet/gateway, -/turf/open/floor/iron, -/area/station/command/gateway) -"knU" = ( -/obj/machinery/vending/coffee, -/obj/machinery/light/directional/east, -/turf/open/floor/wood, -/area/station/command/meeting_room) -"knW" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"knX" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"koO" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"koX" = ( -/obj/structure/sign/warning/secure_area/directional/west, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) -"kpp" = ( -/obj/structure/table/wood, -/obj/item/storage/box/matches, -/obj/item/razor{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/clothing/mask/cigarette/cigar, -/obj/item/reagent_containers/food/drinks/flask/gold, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"kpz" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/north, -/obj/structure/sign/poster/contraband/atmosia_independence{ - pixel_y = 32 - }, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/atmos/storage/gas) -"kpC" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/mix) -"kpG" = ( -/obj/structure/table/reinforced, -/obj/item/hfr_box/body/waste_output{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/item/hfr_box/body/moderator_input{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"kpH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/mine/laborcamp) -"kpM" = ( -/obj/machinery/status_display/ai/directional/north, -/obj/machinery/light/directional/north, -/turf/open/openspace, -/area/station/engineering/atmos/storage) -"kpO" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"kpU" = ( -/obj/effect/turf_decal/siding/wood/corner{ - dir = 8 - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/carpet, -/area/station/service/library) -"kqc" = ( -/turf/closed/wall, -/area/station/security/medical) -"kqh" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/security/prison/rec) -"kql" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"kqm" = ( -/obj/effect/turf_decal/trimline/green/filled/end{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/plant_analyzer, -/obj/effect/decal/cleanable/dirt, -/obj/item/seeds/cabbage, -/obj/item/seeds/berry, -/obj/item/seeds/apple, -/obj/item/seeds/aloe, -/obj/item/seeds/garlic, -/obj/item/seeds/poppy, -/obj/item/seeds/tomato, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"kqn" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark/textured_edge, -/area/station/security/prison) -"kqw" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/spawner/random/vending/colavend, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/exit/departure_lounge) -"kqA" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"kqN" = ( -/obj/effect/turf_decal/trimline/green/filled/warning{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk/multiz/down, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"kqR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/sepia, -/area/station/security/prison/rec) -"kqV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/south, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "cargo-warehouse-external" - }, -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Cargo Warehouse External Airlock"; - opacity = 0 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, -/turf/open/floor/iron/smooth_large, -/area/station/cargo/warehouse) -"kra" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/iron/white/side{ - dir = 10 - }, -/area/station/science/xenobiology) -"krj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/light/small/built/directional/south, -/obj/structure/mirror/directional/west, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) -"krn" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/mine/eva/lower) -"krv" = ( -/obj/structure/sign/directions/engineering{ - pixel_x = -32; - pixel_y = -40 - }, -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_x = -32; - pixel_y = -24 - }, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_x = -32; - pixel_y = -32 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"krx" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron/dark/textured, -/area/station/medical/cryo) -"kry" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/prisoner, -/turf/open/floor/vault, -/area/station/security/prison/rec) -"krC" = ( -/obj/machinery/atmospherics/components/tank/air{ - dir = 8 - }, -/turf/open/floor/plating, -/area/mine/laborcamp/security) -"krH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"krQ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"krS" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"krU" = ( -/obj/machinery/telecomms/bus/preset_four, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"krY" = ( -/turf/closed/wall/r_wall, -/area/station/science/breakroom) -"kse" = ( -/obj/structure/chair/sofa/bench/left{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"ksf" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"ksi" = ( -/obj/effect/turf_decal/tile/dark/fourcorners, -/obj/structure/displaycase, -/turf/open/floor/iron, -/area/mine/living_quarters) -"ksl" = ( -/obj/structure/ladder{ - name = "Cold Room Access" - }, -/obj/machinery/door/window/left/directional/north{ - name = "Freezer Access"; - req_access = list("kitchen"); - desc = "Get down to the Ice Box using this." - }, -/obj/structure/window/reinforced/spawner/west, -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/structure/sign/warning/cold_temp/directional/south, -/obj/structure/sign/warning/gas_mask/directional/east, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"kso" = ( -/obj/structure/fence/corner{ - dir = 6 - }, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"ksu" = ( -/mob/living/simple_animal/hostile/asteroid/gutlunch, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"ksC" = ( -/turf/open/floor/iron, -/area/station/security/brig/upper) -"ksH" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 5 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"ksK" = ( -/turf/closed/wall, -/area/station/service/kitchen/coldroom) -"ksL" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"ksM" = ( -/obj/machinery/light/dim/directional/east, -/obj/structure/table, -/obj/item/roller{ - pixel_y = 6 - }, -/obj/item/roller{ - pixel_y = 6 - }, -/obj/item/roller{ - pixel_y = 6 - }, -/obj/item/roller{ - pixel_y = 6 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"ksO" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"kta" = ( -/turf/closed/wall, -/area/station/commons/storage/mining) -"ktf" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"ktl" = ( -/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/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/command/bridge) -"ktt" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/security/prison/work) -"ktw" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/firealarm/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Engineering Supermatter Fore"; - network = list("ss13","engine"); - pixel_x = 23 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"ktz" = ( -/obj/machinery/newscaster/directional/north, -/turf/open/floor/wood, -/area/station/service/library) -"ktB" = ( -/obj/effect/spawner/random/trash/hobo_squat, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"ktD" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/machinery/firealarm/directional/east, -/obj/structure/chair/sofa/corp/left{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Medbay East"; - dir = 6; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"ktS" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/closed/wall, -/area/station/maintenance/port/aft) -"ktU" = ( -/turf/open/floor/carpet, -/area/station/command/meeting_room) -"kum" = ( -/obj/structure/table, -/obj/item/trash/can/food/beans, -/obj/item/reagent_containers/food/drinks/waterbottle/empty, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"kuu" = ( -/obj/item/kirbyplants/dead, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"kuw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"kuy" = ( -/obj/machinery/computer/pod/old/mass_driver_controller/ordnancedriver{ - pixel_x = 28 - }, -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/ordnance/testlab) -"kuC" = ( -/obj/structure/closet/cardboard, -/turf/open/floor/iron/smooth_large, -/area/station/cargo/warehouse) -"kuR" = ( -/obj/structure/barricade/wooden, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"kuV" = ( -/obj/effect/turf_decal/tile/purple/half{ - dir = 4 - }, -/obj/effect/turf_decal/arrows/red, -/turf/open/floor/iron/half{ - dir = 1 - }, -/area/station/hallway/primary/starboard) -"kuX" = ( -/obj/machinery/chem_heater/withbuffer, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/effect/turf_decal/tile/yellow/full, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/pharmacy) -"kvf" = ( -/obj/effect/turf_decal/caution{ - dir = 4 - }, -/obj/structure/sign/warning/cold_temp/directional/north, -/turf/open/floor/iron/smooth, -/area/station/cargo/drone_bay) -"kvh" = ( -/obj/structure/sign/warning, -/turf/closed/wall/r_wall, -/area/station/security/brig/upper) -"kvj" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"kvn" = ( -/obj/effect/spawner/random/trash/mess, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/aft/greater) -"kvs" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"kvu" = ( -/obj/machinery/door/airlock/security{ - id_tag = "IsolationCell"; - name = "Isolation Cell" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/smooth, -/area/station/security/prison/safe) -"kvI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/office) -"kvN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"kvX" = ( -/turf/open/floor/iron/dark/smooth_edge{ - dir = 4 - }, -/area/station/service/chapel) -"kwd" = ( -/obj/structure/sign/poster/official/random/directional/south, -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/workout) -"kwe" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"kwm" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold/general/visible{ - dir = 4 - }, -/obj/item/wrench, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"kwK" = ( -/obj/effect/turf_decal/tile/purple/half, -/turf/open/floor/iron/half, -/area/station/hallway/primary/starboard) -"kwU" = ( -/obj/machinery/computer/secure_data, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"kwX" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"kxe" = ( -/obj/structure/rack, -/obj/item/poster/random_official, -/obj/effect/spawner/random/maintenance, -/obj/item/relic, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"kxp" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Security Desk" - }, -/obj/effect/turf_decal/tile/red/full, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "briggate"; - name = "Security Shutters" - }, -/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, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/auxiliary) -"kxv" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"kxy" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/obj/machinery/light/small/directional/west, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/starboard) -"kxB" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/firealarm/directional/north{ - pixel_x = -26 - }, -/obj/machinery/light/directional/north, -/obj/structure/chair, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"kxN" = ( -/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/freezer, -/area/station/commons/toilet) -"kxY" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"kyp" = ( -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/atmos/hfr_room) -"kyr" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/effect/turf_decal/siding/wideplating{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"kyy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/warden) -"kyD" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/item/radio/intercom/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/mine/eva) -"kyL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"kyO" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"kyW" = ( -/obj/machinery/computer/med_data, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/medical) -"kzj" = ( -/obj/machinery/cryopod{ - dir = 8 - }, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/common/cryopods) -"kzr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 4 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/rec) -"kzt" = ( -/obj/machinery/door/window/left/directional/east{ - dir = 1; - name = "Medbay Delivery"; - req_access = list("medical") - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/full, -/turf/open/floor/iron/large, -/area/station/medical/storage) -"kzv" = ( -/obj/structure/bed, -/obj/item/bedsheet/random, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"kzw" = ( -/turf/closed/wall/r_wall, -/area/station/security/medical) -"kzA" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/large, -/area/station/engineering/engine_smes) -"kzC" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Cargo Bay Entrance" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"kzD" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/command/bridge) -"kzG" = ( -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron/white/side{ - dir = 10 - }, -/area/station/science/research) -"kzH" = ( -/obj/structure/window/reinforced/spawner/north, -/obj/machinery/conveyor_switch/oneway{ - id = "mining_internal"; - name = "mining conveyor"; - pixel_x = 12; - pixel_y = -6 - }, -/obj/structure/chair/stool/directional/south, -/turf/open/floor/iron, -/area/mine/production) -"kzO" = ( -/obj/structure/table, -/obj/machinery/cell_charger{ - pixel_y = 5 - }, -/obj/item/multitool, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"kzW" = ( -/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/duct, -/turf/open/floor/wood/tile, -/area/station/service/theater) -"kzZ" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"kAd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"kAm" = ( -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"kAn" = ( -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"kAC" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"kAD" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/service/kitchen/coldroom) -"kAG" = ( -/obj/structure/table, -/obj/item/cigbutt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"kAH" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/ordnance) -"kAK" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"kAT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/binary/pressure_valve/on{ - dir = 4; - name = "Output Release" - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"kAY" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/bush/jungle/a/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"kAZ" = ( -/obj/structure/tank_holder/extinguisher, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"kBf" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/closet, -/obj/effect/spawner/random/clothing/gloves, -/obj/effect/spawner/random/trash/janitor_supplies, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"kBh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark/textured, -/area/station/security/execution/transfer) -"kBi" = ( -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Maintenance" - }, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"kBl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit, -/area/station/science/robotics/mechbay) -"kBr" = ( -/obj/structure/table/reinforced, -/obj/item/storage/medkit/regular, -/turf/open/floor/iron, -/area/station/command/bridge) -"kBv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"kBL" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sink{ - pixel_y = 20 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"kBP" = ( -/obj/structure/table, -/obj/item/paper, -/obj/item/pen, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/west{ - c_tag = "Labor Camp Cell 1"; - network = list("labor") - }, -/turf/open/floor/iron, -/area/mine/laborcamp) -"kBT" = ( -/obj/structure/table, -/obj/item/retractor, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"kBV" = ( -/obj/structure/table, -/obj/item/circuitboard/machine/chem_dispenser/drinks, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"kCh" = ( -/obj/structure/closet, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"kCn" = ( -/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/aft) -"kCr" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/engine, -/area/station/science/genetics) -"kCs" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/cafeteria, -/area/station/hallway/secondary/exit/departure_lounge) -"kCu" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/dorms) -"kCz" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/firealarm/directional/west, -/obj/structure/chair/sofa/corp/left{ - dir = 4; - pixel_x = -4 - }, -/turf/open/floor/iron/dark, -/area/station/science/breakroom) -"kCA" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"kCH" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"kCQ" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/mine/eva) -"kCR" = ( -/obj/structure/stairs/west, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"kCV" = ( -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/service) -"kDa" = ( -/obj/machinery/light/small/directional/west, -/obj/item/radio/intercom/directional/west, -/obj/machinery/chem_dispenser, -/turf/open/floor/glass/reinforced, -/area/station/medical/treatment_center) -"kDb" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/trinary/filter/flipped{ - dir = 4; - name = "Exfiltrate Filter" - }, -/obj/effect/turf_decal/trimline/dark_red/filled/warning{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/dark_red/filled/warning{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"kDu" = ( -/obj/machinery/reagentgrinder, -/obj/structure/table, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"kDw" = ( -/obj/machinery/smartfridge/organ, -/obj/effect/turf_decal/tile/neutral/full, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"kDx" = ( -/obj/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/light/dim/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"kDJ" = ( -/obj/item/wrench, -/obj/item/clothing/glasses/monocle, -/obj/structure/table/wood, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/iron, -/area/station/service/theater) -"kDP" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"kDU" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"kEj" = ( -/obj/machinery/computer/libraryconsole/bookmanagement, -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/carpet/red, -/area/station/security/prison/work) -"kEn" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Security - Visitation South"; - network = list("ss13","prison") - }, -/obj/machinery/airalarm/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"kEq" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"kEs" = ( -/obj/structure/tank_holder/extinguisher, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"kED" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/obj/structure/fence/door{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"kEH" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) -"kEM" = ( -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/locker) -"kFk" = ( -/obj/machinery/newscaster/directional/north, -/turf/open/floor/wood, -/area/station/command/meeting_room) -"kFx" = ( -/obj/machinery/door/window/brigdoor/left/directional/west, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"kFG" = ( -/obj/structure/table/wood, -/obj/machinery/microwave, -/obj/machinery/light/small/directional/south, -/turf/open/floor/stone, -/area/mine/eva/lower) -"kFH" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 10 - }, -/turf/open/floor/glass/reinforced, -/area/station/engineering/atmos/pumproom) -"kFN" = ( -/obj/structure/chair/sofa/bench/right{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"kFZ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/directional/south, -/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) -"kGu" = ( -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/mine/eva) -"kGx" = ( -/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/cable, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"kGD" = ( -/obj/structure/closet/wardrobe/pjs, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron, -/area/station/commons/dorms) -"kGR" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/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, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"kHb" = ( -/obj/structure/closet/secure_closet/personal{ - anchored = 1 - }, -/obj/item/clothing/head/bandana, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"kHn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/toilet) -"kHr" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/project) -"kHu" = ( -/obj/machinery/firealarm/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"kHz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"kHN" = ( -/obj/machinery/firealarm/directional/north, -/turf/open/openspace, -/area/station/science/xenobiology) -"kHU" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/clothing/head/welding, -/obj/item/stack/sheet/mineral/plasma{ - amount = 35 - }, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/service) -"kHV" = ( -/obj/structure/flora/bush/jungle/a/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"kIi" = ( -/obj/machinery/door/airlock{ - name = "Perma Overlook Entrance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "perma-overlook" - }, -/turf/open/floor/vault, -/area/station/security/prison/rec) -"kIj" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"kIo" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/turf/open/floor/vault, -/area/station/security/prison/rec) -"kIt" = ( -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/iron, -/area/station/engineering/storage) -"kIu" = ( -/obj/structure/chair/sofa/left, -/obj/machinery/light/directional/north, -/obj/effect/landmark/start/psychologist, -/turf/open/floor/carpet/blue, -/area/station/medical/psychology) -"kIw" = ( -/obj/machinery/conveyor{ - id = "mining_internal" - }, -/obj/structure/window/reinforced/spawner/west, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Mining Ore Smeltery"; - dir = 6 - }, -/obj/structure/sign/poster/official/random/directional/east, -/turf/open/floor/iron, -/area/mine/production) -"kII" = ( -/obj/machinery/space_heater, -/turf/open/floor/iron/smooth_large, -/area/station/cargo/warehouse) -"kIV" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/commons/fitness) -"kIX" = ( -/obj/structure/fence/corner{ - dir = 6 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"kJa" = ( -/obj/structure/sign/warning/secure_area/directional/north, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/ai_monitored/command/storage/eva) -"kJc" = ( -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"kJe" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"kJm" = ( -/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/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"kJw" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron/smooth, -/area/mine/laborcamp/security) -"kJC" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/cable, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"kJI" = ( -/obj/structure/transit_tube/station/reverse, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"kJK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"kJO" = ( -/obj/structure/table, -/obj/item/storage/box/firingpins, -/obj/item/storage/box/firingpins, -/obj/item/key/security, -/obj/machinery/light/directional/east, -/obj/item/radio/intercom/prison/directional/east, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) -"kJP" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/command/bridge) -"kJQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"kJU" = ( -/obj/structure/girder, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"kJV" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Server Room" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"kJY" = ( -/obj/machinery/light/small/directional/south, -/turf/open/misc/asteroid/snow/icemoon, -/area/mine/laborcamp) -"kKl" = ( -/obj/structure/table/glass, -/obj/item/plant_analyzer, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"kKy" = ( -/obj/structure/tank_holder/oxygen, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"kKF" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"kKL" = ( -/turf/closed/wall, -/area/station/maintenance/starboard/fore) -"kKQ" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/machinery/requests_console/directional/south{ - anon_tips_receiver = 1; - assistance_requestable = 1; - department = "Security"; - departmentType = 5; - name = "Security Requests Console" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) -"kKT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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/commons/dorms) -"kKX" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"kLa" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance{ - name = "Mining Station Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/any/supply/mining, -/turf/open/floor/plating, -/area/mine/eva/lower) -"kLb" = ( -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"kLc" = ( -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/storage) -"kLr" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/wood, -/area/station/maintenance/space_hut/cabin) -"kLs" = ( -/obj/structure/sign/warning/docking, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"kLx" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/computer/security/qm, -/obj/machinery/requests_console/directional/west{ - announcementConsole = 1; - assistance_requestable = 1; - department = "Quartermaster's Desk"; - name = "Quartermaster's Desk Requests Console"; - supplies_requestable = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"kLy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"kLI" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"kLK" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/hallway/secondary/entry) -"kLS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/research{ - name = "Chemical Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/medical/pharmacy, -/turf/open/floor/iron/textured, -/area/station/medical/medbay/central) -"kLZ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"kMh" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"kMv" = ( -/obj/effect/turf_decal/trimline/yellow/filled/shrink_cw{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"kMz" = ( -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - 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/commons/dorms) -"kMD" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"kMF" = ( -/obj/effect/turf_decal/box, -/obj/structure/closet/crate, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"kMM" = ( -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"kMN" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"kMY" = ( -/obj/effect/turf_decal/siding/yellow{ - dir = 6 - }, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/large, -/area/station/engineering/storage) -"kNa" = ( -/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, -/area/station/medical/cryo) -"kNk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/turf/open/floor/iron/large, -/area/station/engineering/atmos/storage/gas) -"kNp" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"kNA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/girder, -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"kNC" = ( -/obj/structure/fence, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"kNQ" = ( -/obj/effect/turf_decal/tile/red/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, -/area/station/security/brig/upper) -"kNW" = ( -/turf/closed/wall, -/area/station/cargo/warehouse) -"kNZ" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"kOi" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/misc/dirt{ - initial_gas_mix = "ICEMOON_ATMOS" - }, -/area/icemoon/underground/explored) -"kOk" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"kOE" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Engineering" - }, -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"kOF" = ( -/obj/effect/turf_decal/tile/blue, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"kON" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/item/restraints/handcuffs{ - pixel_y = 5 - }, -/obj/item/restraints/handcuffs{ - pixel_y = 1 - }, -/obj/item/restraints/handcuffs{ - pixel_x = 1; - pixel_y = -4 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/security/processing) -"kOO" = ( -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"kOS" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Public Mining Storage"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/sign/warning/xeno_mining{ - pixel_x = 29 - }, -/turf/open/floor/iron/dark, -/area/mine/storage) -"kPb" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/blobstart, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"kPt" = ( -/obj/structure/chair/sofa/left{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"kPv" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/wood, -/area/station/command/meeting_room) -"kPw" = ( -/obj/structure/flora/bush/flowers_yw/style_random, -/turf/open/floor/grass, -/area/station/maintenance/starboard/aft) -"kPC" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/mapping_helpers/dead_body_placer, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"kQc" = ( -/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/fore) -"kQf" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage/gas) -"kQg" = ( -/obj/machinery/atmospherics/components/tank/air, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"kQi" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"kQt" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Gas to Mix" - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"kQu" = ( -/obj/machinery/atmospherics/components/unary/passive_vent{ - dir = 8 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"kQz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "ai-passthrough" - }, -/obj/structure/cable, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Atmospherics" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"kQL" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"kQM" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"kQQ" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/analyzer, -/obj/item/pipe_dispenser, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"kQW" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/shovel/spade, -/obj/item/wrench, -/obj/item/reagent_containers/glass/watering_can, -/obj/item/wirecutters, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/camera{ - c_tag = "Service-Botany Bottom 1"; - dir = 9 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/plating, -/area/station/service/hydroponics) -"kQX" = ( -/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/duct, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"kQY" = ( -/obj/effect/turf_decal/arrows/red{ - dir = 4; - pixel_x = -15 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/atmos/hfr_room) -"kRd" = ( -/obj/structure/bookcase, -/turf/open/floor/iron, -/area/mine/laborcamp) -"kRe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"kRg" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"kRi" = ( -/obj/structure/closet/l3closet/scientist, -/obj/item/extinguisher, -/turf/open/floor/glass/reinforced, -/area/station/science/xenobiology) -"kRk" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/storage) -"kRm" = ( -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/structure/cable, -/obj/item/radio/intercom/prison/directional/north, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"kRr" = ( -/obj/machinery/door/airlock/engineering{ - name = "Port Quarter Solar Access" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"kRw" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos) -"kRA" = ( -/obj/structure/rack, -/obj/item/electronics/apc, -/obj/item/electronics/airlock, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"kRE" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"kRF" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"kRH" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Chemistry Lab Exit" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "chem-airlock" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, -/turf/open/floor/plating, -/area/station/medical/chemistry) -"kRP" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/department/medical/central) -"kRU" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/cargo_technician, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/office) -"kSf" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Locker Room Toilets" - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/locker) -"kSh" = ( -/obj/machinery/conveyor/inverted{ - dir = 5; - id = "garbage" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"kSn" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"kSo" = ( -/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 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"kSs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"kSw" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/icemoon/underground/explored) -"kSD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"kSG" = ( -/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/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"kSM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/station/engineering/supermatter) -"kSU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/mine/laborcamp) -"kTj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison/work) -"kTk" = ( -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/service/chapel/office) -"kTs" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/genetics) -"kTz" = ( -/turf/open/floor/iron/smooth_half, -/area/station/security/brig/upper) -"kTD" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark/side, -/area/mine/eva) -"kTO" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"kTQ" = ( -/obj/effect/turf_decal/siding/yellow{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"kTU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"kUu" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/turf/closed/wall, -/area/station/engineering/transit_tube) -"kUx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"kUz" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"kUD" = ( -/turf/open/openspace, -/area/mine/eva) -"kUP" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/structure/railing/corner, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"kVk" = ( -/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, -/area/station/hallway/primary/port) -"kVx" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"kVM" = ( -/obj/structure/chair/sofa/corp/left{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"kWa" = ( -/obj/structure/fireplace, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"kWh" = ( -/obj/machinery/holopad/secure, -/turf/open/floor/iron/dark/smooth_large, -/area/station/command/heads_quarters/hos) -"kWi" = ( -/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/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"kWs" = ( -/obj/effect/turf_decal/siding/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/door/airlock{ - name = "Bar" - }, -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/service/bar, -/turf/open/floor/iron/dark/textured_half, -/area/station/service/bar) -"kWw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"kWx" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/mine/eva) -"kWK" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"kWL" = ( -/obj/structure/rack, -/obj/item/reagent_containers/glass/bottle/nitrogen{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/mercury{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/oxygen{ - pixel_x = 1 - }, -/turf/open/floor/iron/dark/textured_edge{ - dir = 8 - }, -/area/station/medical/medbay/central) -"kWR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"kWW" = ( -/obj/machinery/door/airlock/atmos, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/heavy, -/obj/effect/turf_decal/trimline/yellow/corner, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/smooth_half{ - dir = 1 - }, -/area/station/engineering/atmos/hfr_room) -"kXe" = ( -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/storage) -"kXq" = ( -/obj/machinery/air_sensor/plasma_tank, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"kXr" = ( -/turf/closed/wall, -/area/station/cargo/storage) -"kXs" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"kXA" = ( -/turf/open/floor/iron, -/area/station/cargo/office) -"kXI" = ( -/turf/open/floor/plating/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"kXM" = ( -/obj/structure/closet/secure_closet/security/med, -/obj/machinery/firealarm/directional/south, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/effect/turf_decal/tile/red/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/medical) -"kXO" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/toilet) -"kXV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/washing_machine, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"kXY" = ( -/turf/open/floor/iron/dark, -/area/station/security/prison/rec) -"kYc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/meter/layer4, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"kYh" = ( -/obj/structure/closet/secure_closet/security/engine, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) -"kYi" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"kYq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/tcommsat/computer) -"kYw" = ( -/obj/effect/turf_decal/stripes/line{ - 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, -/turf/open/floor/iron, -/area/mine/laborcamp) -"kYz" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"kYA" = ( -/turf/open/floor/circuit, -/area/mine/living_quarters) -"kYE" = ( -/obj/structure/table, -/obj/item/candle, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"kYF" = ( -/obj/structure/light_construct/directional/west, -/mob/living/simple_animal/hostile/retaliate/goose/vomit, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"kYI" = ( -/turf/open/floor/iron/showroomfloor, -/area/station/security/processing) -"kYJ" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/computer/camera_advanced/xenobio{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"kYQ" = ( -/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/corner, -/area/station/hallway/secondary/entry) -"kZa" = ( -/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/stripes/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"kZc" = ( -/obj/machinery/holopad, -/obj/effect/landmark/start/clown, -/turf/open/floor/wood/tile, -/area/station/service/theater) -"kZd" = ( -/obj/machinery/light/directional/north, -/turf/open/openspace, -/area/station/science/xenobiology) -"kZh" = ( -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"kZi" = ( -/obj/machinery/space_heater, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison) -"kZt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/execution/transfer) -"kZu" = ( -/turf/closed/wall, -/area/mine/production) -"kZx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/mine/mechbay) -"kZG" = ( -/obj/item/storage/box/bodybags, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/item/reagent_containers/syringe{ - name = "steel point" - }, -/obj/item/reagent_containers/glass/bottle/multiver, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/structure/table/glass, -/obj/structure/window/reinforced, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) -"kZI" = ( -/obj/structure/rack, -/obj/effect/spawner/random/contraband/permabrig_weapon, -/obj/machinery/light/small/directional/east, -/turf/open/floor/vault, -/area/station/security/prison/rec) -"kZQ" = ( -/obj/structure/rack, -/obj/item/pickaxe, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"lab" = ( -/obj/effect/turf_decal/stripes{ - dir = 10 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"laf" = ( -/obj/structure/cable, -/obj/structure/chair{ - dir = 1 - }, -/obj/item/storage/fancy/cigarettes, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"law" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Security Vestibule" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/smooth, -/area/station/security/processing) -"laD" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"laM" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/service/janitor) -"laP" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Canteen" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/textured_half, -/area/station/hallway/primary/starboard) -"laQ" = ( -/obj/effect/turf_decal/siding/white{ - dir = 6 - }, -/obj/machinery/duct, -/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/white/smooth_large, -/area/station/service/kitchen/diner) -"laV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"laY" = ( -/obj/effect/spawner/random/maintenance/three, -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"lbc" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"lbf" = ( -/obj/structure/flora/bush/leavy/style_random, -/obj/effect/landmark/blobstart, -/turf/open/floor/grass, -/area/station/maintenance/starboard/aft) -"lbk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/brig/upper) -"lbm" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/hallway/secondary/exit/departure_lounge) -"lbs" = ( -/obj/structure/sign/warning/fire/directional/north, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"lbC" = ( -/obj/machinery/firealarm/directional/south, -/obj/machinery/camera{ - c_tag = "Stasis Center North"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"lca" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"lch" = ( -/obj/machinery/computer/monitor{ - dir = 1; - name = "backup power monitoring console" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"lcu" = ( -/turf/open/floor/iron/white, -/area/station/science/explab) -"lcz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/warning/fire/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"lcA" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/ice, -/area/icemoon/underground/explored) -"lcB" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"lcG" = ( -/obj/structure/rack, -/obj/item/crowbar, -/obj/item/pickaxe, -/obj/machinery/light/dim/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"lcY" = ( -/obj/machinery/door/window{ - dir = 1; - name = "Station Communications Relay" - }, -/obj/structure/sign/poster/official/random/directional/west, -/turf/open/floor/circuit/green, -/area/mine/mechbay) -"ldc" = ( -/obj/machinery/plate_press, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron/dark/smooth_half, -/area/station/security/prison/work) -"ldg" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"ldi" = ( -/obj/structure/table, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"ldj" = ( -/obj/structure/sign/warning/gas_mask, -/turf/closed/wall, -/area/station/maintenance/fore/greater) -"ldr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"ldw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/locker) -"ldz" = ( -/obj/structure/rack, -/obj/item/reagent_containers/dropper, -/obj/item/storage/box/beakers{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/reagent_containers/glass/bottle/welding_fuel, -/obj/item/reagent_containers/glass/bottle/welding_fuel, -/obj/machinery/camera/directional/west{ - c_tag = "Security - Permabrig Cytology"; - network = list("ss13","prison") - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/grimy, -/area/station/security/prison/work) -"ldH" = ( -/turf/closed/wall, -/area/station/security/prison/mess) -"ldO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/cargo/storage) -"ldQ" = ( -/obj/structure/barricade/wooden, -/obj/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"ldT" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron, -/area/station/command/bridge) -"lec" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/shower{ - pixel_y = 16 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"lee" = ( -/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/central) -"lei" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/bed/roller, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"let" = ( -/obj/machinery/duct, -/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, -/area/station/hallway/secondary/service) -"leE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/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/west, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"leM" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/starboard) -"leX" = ( -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/command/gateway) -"lfp" = ( -/obj/structure/cable, -/obj/machinery/power/apc/sm_apc/directional/south, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"lfs" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"lfF" = ( -/obj/structure/sign/warning/cold_temp/directional/west, -/obj/structure/sign/warning/gas_mask/directional/east, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"lfG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/supply/qm, -/obj/effect/turf_decal/tile/brown/fourcorners, -/obj/machinery/door/airlock/command{ - name = "Quartermaster's Office" - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"lfL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"lgg" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - 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/commons/fitness) -"lgk" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"lgz" = ( -/obj/effect/turf_decal/tile/red/full, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured_large, -/area/station/security/checkpoint/auxiliary) -"lgA" = ( -/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/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"lgD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/textured, -/area/station/security/brig) -"lgK" = ( -/turf/closed/wall, -/area/station/security/prison/visit) -"lgO" = ( -/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/fore) -"lgW" = ( -/obj/machinery/meter/monitored/distro_loop, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, -/obj/effect/turf_decal/siding/wideplating, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"lgY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"lha" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/storage) -"lhf" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/icemoon, -/area/station/science/ordnance/bomb) -"lhv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/command/bridge) -"lhC" = ( -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"lhF" = ( -/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/command/gateway) -"lhO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/smooth_edge{ - dir = 4 - }, -/area/station/engineering/transit_tube) -"lhQ" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"lim" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/machinery/light/small/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"lio" = ( -/obj/machinery/light/directional/west, -/obj/structure/table/glass, -/obj/item/assembly/signaler{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/reagent_containers/dropper{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/stock_parts/cell/high, -/obj/item/stack/cable_coil, -/obj/item/pen{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/cafeteria{ - dir = 8 - }, -/area/station/science/research) -"lis" = ( -/obj/structure/closet/secure_closet/miner, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"lix" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/meter/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"liI" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4; - name = "Output to Waste" - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"liK" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/mine/eva/lower) -"liM" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/hallway/secondary/exit/departure_lounge) -"liQ" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/commons/vacant_room/office) -"liW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"liY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"ljj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/sign/warning/cold_temp, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"ljl" = ( -/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/office) -"ljo" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"ljF" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"ljI" = ( -/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, -/area/station/service/hydroponics/garden) -"ljL" = ( -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"ljQ" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/requests_console/directional/north{ - anon_tips_receiver = 1; - assistance_requestable = 1; - department = "Security"; - departmentType = 5; - name = "Security Requests Console" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/auxiliary) -"ljS" = ( -/obj/machinery/vending/assist, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"lka" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/station/medical/treatment_center) -"lkb" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/inspector, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/security/office) -"lke" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/service/janitor) -"lkr" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"lkz" = ( -/obj/structure/rack, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"lkH" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/rxglasses, -/obj/item/hand_labeler, -/obj/item/gun/syringe, -/obj/item/gun/syringe, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"lkI" = ( -/obj/machinery/computer/communications, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"lkL" = ( -/obj/machinery/light/directional/north, -/obj/machinery/firealarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"lkO" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/flora/bush/flowers_pp/style_random, -/turf/open/floor/grass, -/area/station/maintenance/starboard/aft) -"lkP" = ( -/obj/structure/flora/grass/green/style_random, -/mob/living/simple_animal/pet/penguin/emperor{ - name = "Club" - }, -/turf/open/misc/asteroid/snow/standard_air, -/area/station/science/research) -"lkS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/food/pie_smudge, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"lkT" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"lkY" = ( -/obj/structure/bed{ - dir = 4 - }, -/obj/item/bedsheet/brown{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "miningdorm_A"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_y = -24; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet/donk, -/area/mine/production) -"lli" = ( -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"llw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"llJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"llQ" = ( -/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/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet/crate/trashcart/laundry, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"llT" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"lme" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/warning/fire/directional/west, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"lmf" = ( -/obj/effect/turf_decal/trimline/red/warning{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/range) -"lmm" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"lmo" = ( -/obj/structure/bed/dogbed/renault, -/mob/living/simple_animal/pet/fox/renault, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"lms" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"lmv" = ( -/obj/machinery/mineral/ore_redemption{ - input_dir = 8; - output_dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/station/cargo/office) -"lmB" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/lesser) -"lmG" = ( -/obj/machinery/icecream_vat, -/obj/effect/turf_decal/tile/brown/diagonal_edge, -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"lmK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/mine/laborcamp) -"lmM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"lmR" = ( -/obj/docking_port/stationary{ - dwidth = 1; - height = 4; - name = "escape pod loader"; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"lnc" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/commons/storage/tools) -"lnk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/command/meeting_room) -"lnq" = ( -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/large, -/area/station/service/kitchen/diner) -"lns" = ( -/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/plating, -/area/station/maintenance/department/chapel) -"lnx" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"lnC" = ( -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"lnE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/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, -/area/station/hallway/primary/central) -"lnY" = ( -/obj/structure/table/glass, -/obj/structure/bedsheetbin, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"loc" = ( -/obj/effect/decal/cleanable/dirt, -/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) -"loe" = ( -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness) -"log" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/central/lesser) -"lok" = ( -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) -"lop" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"loq" = ( -/obj/structure/light_construct/directional/east, -/turf/open/floor/iron, -/area/station/construction) -"loy" = ( -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"loG" = ( -/obj/structure/closet/secure_closet/chief_medical, -/obj/item/screwdriver, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"loI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/wood/large, -/area/station/command/heads_quarters/hos) -"loN" = ( -/obj/structure/chair/sofa/right, -/obj/item/toy/plush/moth{ - name = "Dr. Moff" - }, -/turf/open/floor/carpet/blue, -/area/station/medical/psychology) -"loQ" = ( -/obj/effect/turf_decal/trimline/green/filled/corner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"loS" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"loV" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/dark_green/arrow_ccw, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"loW" = ( -/obj/effect/turf_decal/stripes{ - dir = 8 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"lpj" = ( -/turf/closed/wall, -/area/service/salon) -"lpv" = ( -/obj/structure/window/reinforced{ - 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/security/checkpoint/auxiliary) -"lpM" = ( -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/captain) -"lpW" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"lpY" = ( -/obj/structure/chair/sofa/bench{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"lqh" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"lqj" = ( -/obj/structure/chair/pew/right{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"lqs" = ( -/obj/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/lesser) -"lqz" = ( -/obj/structure/cable, -/turf/closed/wall, -/area/station/ai_monitored/turret_protected/ai) -"lqA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/textured, -/area/mine/mechbay) -"lqB" = ( -/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, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/duct, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"lqE" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"lqG" = ( -/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/blue/filled/warning, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"lqL" = ( -/obj/structure/closet/crate, -/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/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/science/explab) -"lqU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio1"; - name = "Xenobio Pen 1 Blast Door" - }, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"lri" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"lrw" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/dropper{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"lry" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Chapel Coffin Storage" - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"lrD" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/item/soap/deluxe, -/obj/item/bikehorn/rubberducky, -/obj/structure/curtain, -/turf/open/floor/iron/freezer, -/area/station/command/heads_quarters/captain) -"lrL" = ( -/obj/structure/sign/barsign{ - pixel_y = -32 - }, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"lrN" = ( -/obj/effect/landmark/start/hangover, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/chair/stool/directional/north, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"lsa" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics2"; - name = "Robotics Lab Shutters"; - dir = 4 - }, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/science/robotics/lab) -"lso" = ( -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"lsN" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/security/prison) -"lsU" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/service) -"ltj" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"ltk" = ( -/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/starboard/aft) -"lts" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"ltt" = ( -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"lty" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"ltE" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"ltV" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/commons/fitness) -"lub" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"lui" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"lup" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"lux" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"luJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/obj/effect/turf_decal/tile/dark/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white/side, -/area/station/science/ordnance/office) -"luK" = ( -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"lva" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"lvc" = ( -/obj/item/clothing/mask/fakemoustache, -/obj/item/clothing/mask/cigarette/pipe, -/obj/structure/table/wood, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/wood/tile, -/area/station/service/theater) -"lvk" = ( -/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/fitness) -"lvt" = ( -/turf/open/openspace/icemoon, -/area/icemoon/underground/explored) -"lvu" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Service Hall Exit" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "service-hall-external" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/general, -/turf/open/floor/iron/textured_half{ - dir = 1 - }, -/area/station/hallway/secondary/service) -"lvv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"lvB" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/south, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"lvF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk/multiz{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"lvG" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"lvO" = ( -/obj/item/clothing/mask/animal/pig, -/obj/item/bikehorn, -/obj/structure/table/wood, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/wood/tile, -/area/station/service/theater) -"lvQ" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/mine/eva) -"lvS" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark/textured_edge{ - dir = 8 - }, -/area/station/security/checkpoint/auxiliary) -"lvT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/eva) -"lvY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/dorms) -"lwd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"lwh" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron, -/area/service/salon) -"lwi" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Mix to Filter" - }, -/turf/open/floor/glass/reinforced, -/area/station/engineering/atmos/pumproom) -"lwF" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"lwO" = ( -/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, -/area/station/hallway/primary/fore) -"lwQ" = ( -/turf/closed/wall, -/area/station/medical/treatment_center) -"lwR" = ( -/turf/closed/wall/r_wall, -/area/mine/living_quarters) -"lxc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Auxiliary Tool Storage" - }, -/obj/structure/cable, -/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, -/area/station/commons/storage/tools) -"lxf" = ( -/obj/effect/turf_decal/tile/red/full, -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/turf/open/floor/iron/large, -/area/station/service/kitchen/diner) -"lxu" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "O2 to Airmix" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"lxU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/general/visible{ - dir = 8 - }, -/obj/machinery/meter, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"lyd" = ( -/obj/structure/mirror/directional/west, -/obj/structure/table/reinforced/rglass, -/obj/item/razor{ - pixel_x = -6 - }, -/obj/item/reagent_containers/spray/barbers_aid{ - pixel_x = 6 - }, -/turf/open/floor/iron, -/area/service/salon) -"lyg" = ( -/turf/closed/wall/r_wall, -/area/station/security/brig) -"lyh" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=EVA2"; - location = "Dorm" - }, -/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, -/area/station/hallway/primary/central) -"lyl" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 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, -/area/station/medical/treatment_center) -"lyt" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/station/commons/storage/emergency/port) -"lyG" = ( -/turf/open/floor/glass/reinforced, -/area/station/ai_monitored/security/armory/upper) -"lyH" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible/layer2, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"lyO" = ( -/obj/item/paper/fluff/jobs/security/beepsky_mom, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"lyU" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness) -"lyX" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"lzb" = ( -/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/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"lzf" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/closet, -/obj/item/bodybag, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"lzy" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Engineering External Access" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, -/turf/open/floor/plating, -/area/station/engineering/storage_shared) -"lzD" = ( -/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, -/area/station/medical/morgue) -"lzL" = ( -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"lzM" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"lAc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/bin, -/obj/structure/cable, -/turf/open/floor/iron/dark/textured, -/area/station/medical/chemistry) -"lAt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/station/maintenance/fore) -"lAu" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"lAw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"lAy" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"lAA" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"lAC" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 1"; - space_dir = 1 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"lAF" = ( -/obj/structure/table/wood, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/storage/book/bible, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"lAG" = ( -/obj/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) -"lAL" = ( -/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/showroomfloor, -/area/station/security/warden) -"lAM" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/white/side{ - dir = 10 - }, -/area/station/science/research) -"lBb" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/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/starboard/fore) -"lBo" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/carpet, -/area/station/service/library) -"lBt" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"lBD" = ( -/obj/structure/flora/grass/green/style_random, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"lBR" = ( -/turf/closed/wall, -/area/station/security/prison/toilet) -"lBS" = ( -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"lBT" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/item/radio/intercom/prison/directional/north, -/turf/open/floor/iron/dark/textured_edge, -/area/station/security/prison) -"lBZ" = ( -/obj/machinery/door/window/left/directional/north{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen 7"; - req_access = list("xenobiology") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"lCg" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/command/bridge) -"lCi" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"lCk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/button/door/directional/south{ - id = "stationawaygate"; - name = "Gateway Access Shutter Control"; - req_access = list("cargo") - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"lCz" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/roboticist, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"lCC" = ( -/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/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"lCD" = ( -/obj/machinery/duct, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark/smooth_half{ - dir = 1 - }, -/area/station/engineering/lobby) -"lDc" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/dark/side, -/area/mine/eva/lower) -"lDh" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/trash/tray, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"lDo" = ( -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_x = 32; - pixel_y = -24 - }, -/obj/structure/sign/directions/science{ - dir = 4; - pixel_x = 32; - pixel_y = -32 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = 32; - pixel_y = -40 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"lDq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"lDr" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"lDD" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/door/directional/north{ - id = "labor"; - name = "Labor Camp Lockdown"; - req_access = list("brig") - }, -/turf/open/floor/iron, -/area/mine/laborcamp) -"lDE" = ( -/obj/structure/sign/poster/official/safety_report{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"lDF" = ( -/obj/structure/table, -/obj/item/wrench, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"lDH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"lDM" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/medical/cryo) -"lEg" = ( -/obj/machinery/door/window{ - dir = 1; - name = "AI Core Door"; - req_access = list("ai_upload") - }, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"lEj" = ( -/turf/open/floor/iron/dark/textured, -/area/station/security/processing) -"lEo" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"lEv" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Ordnance Launch Room" - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/plating, -/area/station/science/ordnance/testlab) -"lEA" = ( -/obj/machinery/power/smes/engineering, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/engine_smes) -"lEE" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/hallway/primary/port) -"lEK" = ( -/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, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"lEO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/barsign, -/turf/open/floor/plating, -/area/station/service/bar/atrium) -"lEP" = ( -/obj/structure/disposalpipe/segment, -/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/starboard/aft) -"lFe" = ( -/obj/structure/bookcase/random/adult, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/safe) -"lFp" = ( -/obj/structure/railing{ - dir = 10 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"lFr" = ( -/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/sign/poster/contraband/random/directional/north, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"lFL" = ( -/obj/effect/turf_decal/trimline/red/warning, -/obj/effect/turf_decal/stripes/red/line, -/turf/open/floor/iron/dark/textured, -/area/station/security/range) -"lFW" = ( -/obj/effect/spawner/xmastree/rdrod, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"lFZ" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/cultivator, -/obj/item/seeds/potato, -/turf/open/floor/iron/dark, -/area/mine/laborcamp) -"lGj" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder{ - pixel_y = 8 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"lGp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Engineering Supermatter Aft"; - network = list("ss13","engine"); - pixel_x = 23 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"lGs" = ( -/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/psychology) -"lGz" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"lGK" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/button/door{ - id = "Interrogation"; - name = "Interrogation Shutters"; - pixel_x = -22 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/interrogation) -"lGL" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/item/seeds/soya, -/turf/open/floor/iron/dark, -/area/mine/laborcamp) -"lGY" = ( -/obj/structure/chair/stool/directional/south, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"lHu" = ( -/obj/structure/closet/secure_closet/brig, -/obj/structure/cable, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/showroomfloor, -/area/station/security/processing) -"lHA" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/fore) -"lHE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/chair/stool/directional/east, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/storage/gas) -"lHL" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"lHW" = ( -/obj/item/chair/wood/wings, -/obj/effect/turf_decal/bot_red, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"lIe" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"lIk" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/science/breakroom) -"lIp" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/structure/mirror/directional/east, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/freezer, -/area/station/command/heads_quarters/captain) -"lIv" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/chair/stool/directional/west, -/obj/machinery/camera/emp_proof/directional/south, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"lIC" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"lIH" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"lII" = ( -/obj/machinery/door/airlock/engineering{ - name = "Telecommunications" - }, -/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/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"lIQ" = ( -/obj/item/restraints/legcuffs/beartrap, -/obj/item/restraints/legcuffs/beartrap, -/obj/item/storage/box/mousetraps, -/obj/item/storage/box/mousetraps, -/turf/open/floor/iron, -/area/station/service/janitor) -"lIW" = ( -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"lJj" = ( -/obj/effect/turf_decal/tile/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/corner{ - dir = 1 - }, -/area/station/hallway/secondary/entry) -"lJO" = ( -/turf/closed/wall, -/area/station/maintenance/port/fore) -"lJS" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Security - Permabrig Lower Hallway Stairwell"; - network = list("ss13","prison") - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison) -"lKk" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"lKq" = ( -/turf/closed/wall, -/area/station/science/xenobiology) -"lKt" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 10 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/obj/structure/closet/radiation, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"lKN" = ( -/obj/structure/table, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/reagent_containers/spray/cleaner, -/obj/machinery/requests_console/directional/south{ - assistance_requestable = 1; - department = "Janitorial"; - departmentType = 1; - name = "Janitorial Requests Console" - }, -/turf/open/floor/iron, -/area/station/service/janitor) -"lKZ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"lLf" = ( -/obj/structure/table/wood, -/obj/item/storage/dice, -/turf/open/floor/iron, -/area/station/commons/dorms) -"lLm" = ( -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/port/aft) -"lLN" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/laborcamp) -"lLO" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/structure/table, -/obj/item/food/piedough, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"lLY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/recharge_floor, -/area/mine/mechbay) -"lMa" = ( -/obj/machinery/light/dim/directional/west, -/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/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"lMh" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"lMu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio5"; - name = "Xenobio Pen 5 Blast Door" - }, -/obj/structure/sign/warning/electric_shock, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"lMB" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1; - sortType = 11 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/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) -"lMC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"lNa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/mechbay) -"lNk" = ( -/obj/structure/sign/painting/library{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/library) -"lNn" = ( -/obj/machinery/bluespace_vendor/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark/textured_edge, -/area/station/security/prison) -"lNo" = ( -/obj/machinery/light/directional/east, -/obj/machinery/button/door/directional/east{ - id = "xenobio6"; - layer = 4; - name = "Xenobio Pen 6 Blast DOors"; - req_access = list("xenobiology") - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"lNy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/status_display/evac/directional/west, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"lNC" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/structure/cable, -/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, -/area/station/ai_monitored/turret_protected/ai) -"lNG" = ( -/obj/machinery/door/airlock/security{ - name = "Custom Agent's Office" - }, -/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/access/all/supply/customs, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"lNH" = ( -/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, -/area/station/cargo/storage) -"lNI" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/catwalk_floor/iron_smooth, -/area/station/maintenance/starboard/fore) -"lOg" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"lOt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/window/left/directional/east, -/obj/structure/sign/warning/gas_mask/directional/north, -/turf/open/floor/plating/snowed/coldroom, -/area/station/service/kitchen/coldroom) -"lOz" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm2"; - name = "Dorm 2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/commons/dorms) -"lOI" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer1{ - dir = 5 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"lOU" = ( -/obj/machinery/recharge_station, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"lPb" = ( -/obj/structure/railing/corner, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/plating/icemoon, -/area/station/security/execution/education) -"lPc" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/service) -"lPh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/turf/open/floor/iron/sepia, -/area/station/service/library) -"lPm" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/station/service/bar) -"lPr" = ( -/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/medical/medbay/aft) -"lPC" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/obj/machinery/holopad, -/obj/machinery/duct, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"lPE" = ( -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"lPN" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"lQc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/office) -"lQf" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/obj/item/multitool, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"lQh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/textured, -/area/mine/mechbay) -"lQq" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/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, -/area/station/security/courtroom) -"lQr" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"lQw" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - dir = 4; - name = "Scrubbers multi deck pipe adapter" - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - dir = 4; - name = "Supply multi deck pipe adapter" - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"lQz" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/station/service/library) -"lQE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"lQN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"lQO" = ( -/obj/structure/mineral_door/wood, -/turf/open/floor/wood, -/area/station/maintenance/space_hut/cabin) -"lRd" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/icemoon, -/area/station/science/ordnance/bomb) -"lRf" = ( -/obj/machinery/teleport/station, -/turf/open/floor/plating, -/area/station/command/teleporter) -"lRs" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"lRy" = ( -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"lRD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"lRI" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Xenobiology External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"lRR" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"lRW" = ( -/obj/structure/disposalpipe/segment, -/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/cyclelink_helper_multi{ - cycle_id = "sci-med-passthrough" - }, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"lRZ" = ( -/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) -"lSu" = ( -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"lSC" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"lSP" = ( -/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, -/area/station/commons/storage/mining) -"lTa" = ( -/obj/effect/turf_decal/trimline/red/warning{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/red/line, -/turf/open/floor/iron/dark/textured, -/area/station/security/range) -"lTs" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/turf/open/floor/plating, -/area/mine/storage) -"lTC" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/space_hut/cabin) -"lTG" = ( -/obj/machinery/portable_atmospherics/canister/anesthetic_mix, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"lTJ" = ( -/obj/structure/railing, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"lTL" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = -1; - pixel_y = 6 - }, -/obj/item/storage/box/disks{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"lTN" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/machinery/light/directional/south, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron/smooth_edge{ - dir = 1 - }, -/area/station/security/lockers) -"lUb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay" - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue/full, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/large, -/area/station/medical/medbay/lobby) -"lUw" = ( -/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/security/brig/upper) -"lUy" = ( -/obj/item/food/pie/cream, -/obj/machinery/newscaster/directional/north, -/obj/structure/table/wood, -/turf/open/floor/iron, -/area/station/service/theater) -"lUC" = ( -/turf/closed/wall, -/area/station/maintenance/department/electrical) -"lUL" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"lUU" = ( -/obj/machinery/door/airlock/external{ - name = "Internal Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"lVc" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/table/wood/fancy/green, -/obj/effect/spawner/random/aimodule/harmless, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) -"lVk" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/end{ - dir = 1 - }, -/turf/open/floor/plating, -/area/mine/eva) -"lVm" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/engineering/storage_shared) -"lVs" = ( -/obj/structure/table, -/obj/item/clothing/mask/surgical, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"lVu" = ( -/obj/machinery/power/emitter/welded{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"lVw" = ( -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/dark_green/line, -/obj/effect/turf_decal/trimline/dark_green/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"lVy" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"lVF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/library) -"lVR" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/item/reagent_containers/spray/cleaner, -/turf/open/floor/iron/white, -/area/station/medical/break_room) -"lVZ" = ( -/obj/structure/table/wood, -/obj/item/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Command)" - }, -/turf/open/floor/carpet, -/area/station/command/meeting_room) -"lWb" = ( -/turf/open/floor/iron, -/area/station/security/prison/visit) -"lWc" = ( -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/roboticist, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"lWg" = ( -/obj/effect/turf_decal/tile/red/half{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/smooth_half, -/area/station/security/brig/upper) -"lWI" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"lWU" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/hallway/secondary/entry) -"lXa" = ( -/obj/machinery/door/airlock{ - name = "Port Emergency Storage" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/commons/storage/emergency/port) -"lXi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"lXm" = ( -/obj/item/trash/pistachios, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"lXo" = ( -/obj/structure/table/wood/poker, -/obj/item/storage/dice, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"lXB" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/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, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"lXD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/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, -/area/station/commons/dorms) -"lXJ" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/storage/medkit/brute, -/turf/open/floor/iron/dark/side{ - dir = 9 - }, -/area/station/security/prison/workout) -"lYg" = ( -/obj/structure/cable, -/obj/item/radio/intercom/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white/side{ - dir = 10 - }, -/area/station/science/research) -"lYv" = ( -/obj/structure/closet/athletic_mixed, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron, -/area/station/commons/fitness) -"lYz" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/dark/textured_edge{ - dir = 8 - }, -/area/station/security/checkpoint/auxiliary) -"lYJ" = ( -/obj/effect/turf_decal/tile/neutral{ - 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/hallway/secondary/entry) -"lYN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/common/cryopods) -"lYR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/grass, -/area/station/medical/virology) -"lYY" = ( -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/effect/turf_decal/stripes/white/corner{ - dir = 1 - }, -/obj/structure/closet/chefcloset, -/turf/open/floor/plating, -/area/station/service/kitchen/coldroom) -"lYZ" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/security/courtroom) -"lZi" = ( -/obj/structure/railing, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"lZm" = ( -/obj/structure/chair/stool/directional/south, -/obj/machinery/computer/pod/old/mass_driver_controller/trash{ - pixel_x = -24; - pixel_y = -6 - }, -/obj/machinery/button/door/directional/west{ - id = "Disposal Exit"; - name = "Disposal Vent Control"; - pixel_y = 4; - req_access = list("maint_tunnels") - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"lZv" = ( -/obj/structure/table/glass, -/obj/item/seeds/bamboo, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"lZG" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/station/service/bar) -"lZL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Labor Camp Security Office"; - network = list("labor") - }, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"lZQ" = ( -/obj/machinery/airalarm/directional/west, -/obj/machinery/computer/cargo{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/office) -"lZX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/freezer, -/area/station/science/xenobiology) -"mar" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"maB" = ( -/obj/structure/chair/stool/directional/north, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/commons/dorms) -"maQ" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Maintenance External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"maT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/storage) -"maU" = ( -/obj/machinery/light/directional/south, -/obj/structure/sign/warning/chem_diamond/directional/south, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"maY" = ( -/obj/item/wrench, -/obj/item/weldingtool, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/structure/rack, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"mbj" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"mbn" = ( -/obj/machinery/light/directional/north, -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"mbp" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/effect/landmark/start/prisoner, -/turf/open/floor/wood, -/area/station/security/prison/rec) -"mbB" = ( -/obj/machinery/newscaster/directional/west, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/obj/structure/bed/roller, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"mbG" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chapel Maintenance" - }, -/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/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"mbK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/white/side{ - dir = 5 - }, -/area/station/science/research) -"mbL" = ( -/obj/effect/spawner/random/clothing/costume, -/obj/structure/rack, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/spawner/random/clothing/costume, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) -"mbT" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/aft) -"mbZ" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/door/airlock/security{ - name = "Recreation Block" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark/side, -/area/station/security/prison) -"mcc" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Escape Pod Four" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/engineering/storage_shared) -"mcl" = ( -/obj/machinery/light/directional/north, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/structure/table, -/obj/item/paicard, -/obj/item/taperecorder{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"mco" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"mcp" = ( -/obj/machinery/iv_drip, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"mcr" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Monitoring" - }, -/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, -/area/mine/laborcamp/security) -"mcF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/carpet/black, -/area/station/security/prison/safe) -"mcG" = ( -/obj/structure/window/reinforced/plasma{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/power/energy_accumulator/tesla_coil/anchored, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"mcH" = ( -/obj/structure/chair{ - 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/smooth_large, -/area/station/command/heads_quarters/hos) -"mcW" = ( -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"mcX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"mde" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden, -/turf/closed/wall, -/area/station/maintenance/port/fore) -"mdo" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/prisoner, -/turf/open/floor/iron, -/area/station/security/prison/work) -"mdy" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/wood/parquet, -/area/station/service/bar/atrium) -"mdC" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/mmi, -/obj/item/mmi, -/obj/item/mmi, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"mdE" = ( -/obj/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 = 1 - }, -/area/station/science/explab) -"mdQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/no_smoking{ - pixel_x = -28 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"mdZ" = ( -/turf/closed/wall, -/area/station/hallway/secondary/service) -"men" = ( -/obj/machinery/duct, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/service/bar) -"mep" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"meB" = ( -/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/parquet, -/area/station/service/bar/atrium) -"meH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Ordnance Lab Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/plating, -/area/station/science/ordnance) -"meL" = ( -/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, -/area/station/medical/morgue) -"meQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/door/airlock{ - name = "Unisex Showers" - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"meX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/effect/turf_decal/tile/neutral/full, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"mfz" = ( -/obj/machinery/door/airlock{ - name = "Unit B" - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"mfD" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"mfH" = ( -/turf/closed/wall/r_wall, -/area/station/security/brig/upper) -"mfV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"mfW" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"mgb" = ( -/obj/structure/table/wood, -/obj/item/paper_bin/carbon{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_x = 9; - pixel_y = 7 - }, -/obj/item/hand_labeler{ - pixel_x = -6; - pixel_y = -6 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"mgg" = ( -/obj/machinery/light/dim/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"mgj" = ( -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"mgu" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/machinery/ecto_sniffer{ - pixel_x = 6; - pixel_y = 6 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"mgD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"mgN" = ( -/obj/machinery/door/airlock{ - name = "Kitchen" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchencounter"; - name = "Kitchen Shutters"; - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"mgR" = ( -/obj/effect/turf_decal/siding/wood, -/obj/machinery/reagentgrinder{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/shaker{ - pixel_x = -6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table/wood, -/turf/open/floor/stone, -/area/station/service/bar) -"mgU" = ( -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/hos) -"mgV" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Central Hallway West" - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"mhq" = ( -/obj/structure/closet, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/starboard/upper) -"mhx" = ( -/obj/effect/turf_decal/bot, -/obj/effect/landmark/secequipment, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/dark/textured_half, -/area/station/security/office) -"mhK" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/station/maintenance/port/greater) -"mhQ" = ( -/turf/closed/wall/r_wall, -/area/station/command/teleporter) -"mia" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/radio/intercom/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"mir" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"miw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"miG" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 6 - }, -/turf/open/floor/carpet, -/area/station/service/theater) -"miO" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"miR" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 10 - }, -/obj/item/book/manual/wiki/barman_recipes{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/item/reagent_containers/glass/rag, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table/wood, -/turf/open/floor/stone, -/area/station/service/bar) -"miS" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/stack/cable_coil, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"miY" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"mjg" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"mjs" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"mjt" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/gas_mask, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"mjG" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/dorms) -"mjQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/table, -/obj/item/shovel, -/obj/item/pickaxe, -/obj/item/flashlight, -/turf/open/floor/iron, -/area/station/service/chapel) -"mjY" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - 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/central) -"mka" = ( -/obj/machinery/computer/turbine_computer{ - dir = 1; - mapping_id = "main_turbine" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"mko" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 - }, -/obj/structure/sign/warning/secure_area/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/explab) -"mku" = ( -/obj/effect/spawner/random/structure/grille, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"mkx" = ( -/obj/machinery/door/window/right/directional/east{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Research Division Delivery"; - req_access = list("research") - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/dark, -/area/station/science/breakroom) -"mkA" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"mkG" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"mkU" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) -"mld" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"mlo" = ( -/obj/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) -"mlp" = ( -/obj/structure/cable, -/obj/machinery/holopad/secure, -/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, -/area/station/ai_monitored/turret_protected/ai) -"mlv" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness) -"mlR" = ( -/obj/machinery/newscaster/directional/west, -/obj/item/radio/intercom/directional/west{ - pixel_y = -31 - }, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"mlT" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"mlX" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark/textured_edge, -/area/station/security/prison) -"mlY" = ( -/obj/machinery/newscaster/directional/north, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"mmh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"mmi" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"mml" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron/smooth_large, -/area/station/cargo/warehouse) -"mmo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"mmA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"mmB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/medical{ - name = "Surgery B" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue/full, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/medbay/aft) -"mmR" = ( -/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 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"mnj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Service Hall" - }, -/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/mapping_helpers/airlock/access/all/service/general, -/turf/open/floor/iron/textured_half, -/area/station/hallway/secondary/service) -"mny" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"mnC" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"mnF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"moa" = ( -/obj/effect/turf_decal/tile/dark, -/obj/effect/turf_decal/tile/dark{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/asteroid/line, -/obj/structure/cable, -/turf/open/floor/iron/white/side{ - dir = 1 - }, -/area/mine/living_quarters) -"moc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/sign/warning/xeno_mining{ - pixel_x = 29 - }, -/turf/open/floor/iron/smooth, -/area/mine/eva/lower) -"mod" = ( -/obj/structure/closet/crate/internals, -/obj/machinery/camera{ - c_tag = "Cargo Bay B-1"; - dir = 6 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/cargo/storage) -"mos" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/science/genetics) -"moA" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Head of Personnel's Office" - }, -/obj/machinery/requests_console/directional/south{ - announcementConsole = 1; - anon_tips_receiver = 1; - assistance_requestable = 1; - department = "Head of Personnel's Desk"; - departmentType = 5; - name = "Head of Personnel's Requests Console" - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"moB" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/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/chapel) -"moE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/station/medical/treatment_center) -"moF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"moJ" = ( -/turf/open/floor/iron/white, -/area/station/science/lab) -"moL" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/lattice/catwalk, -/turf/open/openspace/icemoon, -/area/station/science/server) -"mpf" = ( -/obj/structure/cable, -/obj/structure/table/wood, -/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/wood, -/area/station/security/prison/rec) -"mpg" = ( -/obj/machinery/door/airlock/grunge{ - name = "Mining Aux Mechbay" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/plating, -/area/mine/mechbay) -"mpn" = ( -/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/security/prison/mess) -"mpp" = ( -/obj/structure/table, -/obj/machinery/computer/security/telescreen/research, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) -"mps" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/icemoon, -/area/station/science/ordnance/bomb) -"mpy" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"mpH" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/commons/fitness) -"mpO" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Arrivals ERT Bay" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/hallway/secondary/entry) -"mpP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "Bridge Blast Door" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/command/bridge) -"mpR" = ( -/obj/machinery/gulag_teleporter, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/showroomfloor, -/area/station/security/processing) -"mpS" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"mpU" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/service/hydroponics) -"mpZ" = ( -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"mqq" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"mqr" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"mqs" = ( -/obj/effect/turf_decal/bot, -/obj/structure/sign/warning/cold_temp/directional/north, -/obj/structure/sign/warning/xeno_mining{ - pixel_x = 29 - }, -/turf/open/floor/iron/smooth, -/area/mine/eva) -"mqt" = ( -/turf/open/floor/plating, -/area/station/commons/storage/emergency/port) -"mqy" = ( -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"mqD" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/wood, -/area/station/command/meeting_room) -"mqF" = ( -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"mqG" = ( -/obj/machinery/computer/warrant{ - dir = 4 - }, -/obj/machinery/camera/motion/directional/west{ - c_tag = "Security - Checkpoint" - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/dark/textured_edge{ - dir = 4 - }, -/area/station/security/checkpoint/auxiliary) -"mqO" = ( -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"mqR" = ( -/obj/structure/chair{ - dir = 8; - name = "Judge" - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/wood, -/area/station/security/courtroom) -"mrh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white/side, -/area/station/science/research) -"mru" = ( -/obj/structure/sign/warning/directional/north, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/caution/stand_clear, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark/textured, -/area/station/hallway/secondary/service) -"mrw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall, -/area/station/maintenance/fore/lesser) -"mry" = ( -/obj/structure/table, -/obj/effect/spawner/random/trash/food_packaging, -/turf/open/floor/iron/cafeteria, -/area/station/hallway/secondary/exit/departure_lounge) -"mrB" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"mrF" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/red/half{ - dir = 4 - }, -/turf/open/floor/iron/half{ - dir = 1 - }, -/area/station/hallway/secondary/service) -"mrI" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"mrX" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/service/kitchen/coldroom) -"msb" = ( -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"msd" = ( -/obj/machinery/door/poddoor/incinerator_atmos_main, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"msg" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison) -"msi" = ( -/obj/structure/rack, -/obj/item/integrated_circuit/loaded/speech_relay, -/obj/item/integrated_circuit/loaded/hello_world, -/turf/open/floor/iron/white/side{ - dir = 4 - }, -/area/station/science/explab) -"msl" = ( -/obj/machinery/disposal/delivery_chute{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - layer = 3 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"msn" = ( -/obj/machinery/power/turbine/inlet_compressor{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"msp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/table/reinforced, -/obj/item/plunger{ - pixel_x = 3 - }, -/obj/item/plunger{ - pixel_x = -3 - }, -/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, -/turf/open/floor/iron/dark, -/area/station/medical/chemistry) -"msN" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"msT" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/machinery/atmospherics/components/binary/valve/digital/on{ - dir = 4; - name = "Infiltrate Control" - }, -/obj/effect/turf_decal/trimline/dark_green/arrow_ccw, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage) -"msU" = ( -/obj/machinery/requests_console/auto_name/directional/south, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"mts" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/laborcamp) -"mtI" = ( -/turf/closed/wall, -/area/station/science/robotics/lab) -"mtN" = ( -/obj/effect/spawner/random/entertainment/arcade{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/iron/cafeteria, -/area/station/hallway/secondary/exit/departure_lounge) -"mue" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5, -/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"mui" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"mur" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Unfiltered & Air to Mix" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"muy" = ( -/turf/open/openspace, -/area/station/commons/locker) -"muC" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/crowbar, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"muK" = ( -/obj/item/stack/cable_coil, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"mvc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"mvf" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"mvl" = ( -/turf/closed/wall/r_wall, -/area/station/security/interrogation) -"mvv" = ( -/turf/open/floor/wood, -/area/station/security/courtroom) -"mvE" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/icemoon, -/area/station/science/ordnance/bomb) -"mvG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"mvH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"mvU" = ( -/obj/machinery/button/door/directional/east{ - id = "cmoprivacy"; - name = "CMO Shutter Control"; - pixel_y = 23; - req_access = list("cmo") - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/cmo{ - dir = 8; - pixel_x = 27 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"mvX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"mwc" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Central Hallway North-West" - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"mwg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron, -/area/service/salon) -"mwh" = ( -/obj/structure/table, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/security/office) -"mwo" = ( -/obj/machinery/atmospherics/components/unary/passive_vent/layer2{ - dir = 8 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/station/ai_monitored/turret_protected/aisat_interior) -"mwu" = ( -/obj/structure/closet/firecloset, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"mwK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/airalarm/mixingchamber{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/freezerchamber) -"mwQ" = ( -/obj/structure/tank_holder/extinguisher, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"mwU" = ( -/obj/effect/turf_decal/siding/wood, -/obj/item/kirbyplants/fullysynthetic{ - pixel_x = 10; - pixel_y = 19 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/stone, -/area/mine/eva/lower) -"mxc" = ( -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/ordnance) -"mxj" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Port Mix to East Ports" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"mxA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/janitorialcart{ - dir = 4 - }, -/obj/item/mop, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/work) -"mxD" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"mxG" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/warm/directional/south, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/item/gun/energy/laser/practice{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/gun/energy/laser/practice, -/obj/item/clothing/ears/earmuffs, -/turf/open/floor/iron/dark/textured, -/area/station/security/range) -"myb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/iron, -/area/station/cargo/qm) -"mye" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"myn" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - 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/command/heads_quarters/cmo) -"myo" = ( -/obj/machinery/light/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/sorting/mail/flip{ - dir = 1; - sortType = 2 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"myC" = ( -/obj/machinery/door/airlock/security{ - name = "Engineering Guard's Office" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engie_guard, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) -"myJ" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"myM" = ( -/obj/effect/turf_decal/tile/dark, -/obj/effect/turf_decal/tile/dark{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/asteroid/line, -/turf/open/floor/iron/white/side{ - dir = 1 - }, -/area/mine/living_quarters) -"myO" = ( -/obj/structure/disposalpipe/segment, -/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/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"myP" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"myQ" = ( -/obj/structure/falsewall, -/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/security/prison/safe) -"myR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"myZ" = ( -/obj/structure/lattice/catwalk, -/turf/open/openspace/icemoon/keep_below, -/area/icemoon/underground/explored) -"mzb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/science/ordnance) -"mzd" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/general/visible{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"mzr" = ( -/obj/structure/table, -/obj/item/exodrone{ - pixel_y = 8 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/drone_bay) -"mzz" = ( -/turf/open/floor/plating, -/area/station/engineering/storage_shared) -"mzB" = ( -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"mzE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/engineering/atmos/storage/gas) -"mzG" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/geneticist, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/science/genetics) -"mzL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"mzM" = ( -/obj/structure/punching_bag, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/sign/poster/contraband/punch_shit{ - pixel_x = 32 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"mzP" = ( -/obj/effect/turf_decal/tile/red/full, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured_large, -/area/station/security/checkpoint/auxiliary) -"mAc" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mining 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/supply/mining, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"mAe" = ( -/turf/open/floor/glass/reinforced, -/area/station/security/lockers) -"mAz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Fitness" - }, -/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/fitness) -"mAO" = ( -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/security/prison/rec) -"mBa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron/smooth, -/area/station/security/execution/transfer) -"mBg" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"mBq" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/paper/fluff/ids_for_dummies, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"mBB" = ( -/obj/machinery/door/poddoor/preopen{ - id = "ceprivacy"; - name = "Privacy Shutter" - }, -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/command/heads_quarters/ce) -"mBE" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/landmark/event_spawn, -/obj/effect/decal/cleanable/crayon{ - pixel_x = -5; - pixel_y = -5 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"mBK" = ( -/obj/structure/bodycontainer/morgue{ - dir = 2 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) -"mBQ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rnd"; - name = "Research Lab Shutters"; - dir = 1 - }, -/obj/machinery/door/window/right/directional/south{ - name = "Research and Development Desk"; - req_access = list("science") - }, -/obj/item/paper_bin{ - pixel_x = -9; - pixel_y = 7 - }, -/obj/item/folder{ - pixel_x = -6 - }, -/obj/item/pen{ - pixel_x = -6 - }, -/obj/machinery/door/firedoor, -/obj/structure/desk_bell{ - pixel_x = 7 - }, -/turf/open/floor/plating, -/area/station/hallway/primary/starboard) -"mBW" = ( -/turf/open/floor/plating, -/area/station/security/processing) -"mBX" = ( -/obj/structure/table/wood, -/obj/machinery/airalarm/directional/east, -/obj/item/camera, -/obj/item/storage/photo_album{ - pixel_y = -10 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"mCo" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/effect/turf_decal/trimline, -/obj/structure/sign/warning/gas_mask{ - desc = "A sign that warns of dangerous gasses in the air, instructing you to wear internals."; - pixel_x = -29 - }, -/turf/open/floor/iron/smooth, -/area/mine/eva) -"mCr" = ( -/obj/structure/table, -/obj/item/storage/box/lights/mixed, -/obj/item/pipe_dispenser, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/button/door/directional/east{ - id = "aux_base_shutters"; - name = "Public Shutters Control"; - req_access = list("aux_base") - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"mCw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Chamber Observation" - }, -/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/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, -/obj/structure/cable/layer3, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"mCT" = ( -/obj/machinery/hydroponics/soil, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"mCX" = ( -/obj/machinery/duct, -/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, -/area/station/hallway/secondary/service) -"mCZ" = ( -/obj/machinery/light/directional/east, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/heads_quarters/ce) -"mDf" = ( -/obj/machinery/telecomms/server/presets/common, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"mDg" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/maintenance/aft/lesser) -"mDo" = ( -/obj/structure/bed/double, -/obj/item/bedsheet/black/double, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/carpet/black, -/area/station/security/prison/safe) -"mDX" = ( -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"mEg" = ( -/obj/structure/cable, -/obj/machinery/holopad/secure, -/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, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"mEp" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/spawner/random/maintenance/three, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) -"mEw" = ( -/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/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"mEx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"mEI" = ( -/obj/machinery/button/flasher{ - id = "cell4"; - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"mEJ" = ( -/turf/closed/wall/r_wall, -/area/station/science/genetics) -"mEK" = ( -/obj/structure/rack, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"mEL" = ( -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/ordnance) -"mEO" = ( -/obj/effect/turf_decal/box/white{ - color = "#EFB341" - }, -/turf/open/floor/engine, -/area/station/engineering/atmos/hfr_room) -"mEU" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/ordnance/testlab) -"mEV" = ( -/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/iron, -/area/station/hallway/primary/port) -"mFj" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"mFt" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Waste In" - }, -/obj/effect/turf_decal/siding/wideplating{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"mFv" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"mFE" = ( -/turf/closed/wall, -/area/station/medical/surgery/aft) -"mFP" = ( -/obj/machinery/light/directional/east, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"mFQ" = ( -/obj/machinery/flasher/portable, -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Flash Storage"; - req_access = list("brig") - }, -/obj/structure/cable, -/turf/open/floor/iron/smooth, -/area/station/security/brig/upper) -"mFR" = ( -/obj/structure/sign/plaques/kiddie/badger{ - pixel_y = 32 - }, -/turf/open/misc/dirt{ - initial_gas_mix = "ICEMOON_ATMOS" - }, -/area/icemoon/underground/explored) -"mFU" = ( -/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) -"mGd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"mGf" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"mGl" = ( -/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, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"mGm" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/rnd_secure_all, -/turf/open/floor/iron, -/area/station/engineering/storage/tech) -"mGu" = ( -/obj/machinery/rnd/server, -/obj/structure/lattice/catwalk, -/turf/open/openspace/icemoon, -/area/station/science/server) -"mGA" = ( -/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/hallway/primary/port) -"mGJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/mine/eva) -"mGO" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"mGV" = ( -/obj/machinery/keycard_auth/directional/south, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"mHd" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"mHu" = ( -/obj/machinery/atmospherics/components/tank, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"mHv" = ( -/obj/structure/holohoop{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/warm/directional/west, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"mHw" = ( -/obj/structure/flora/bush/flowers_br/style_random, -/turf/open/floor/grass, -/area/station/maintenance/starboard/aft) -"mHB" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/fore) -"mHJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"mHR" = ( -/obj/structure/transit_tube/curved{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"mHX" = ( -/obj/item/flashlight/lantern, -/obj/machinery/light/directional/south, -/obj/structure/table/wood, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"mIk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"mIB" = ( -/obj/structure/cable, -/turf/open/floor/wood/parquet, -/area/station/service/bar/atrium) -"mIC" = ( -/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) -"mIE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"mIT" = ( -/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/table, -/obj/item/clothing/mask/cigarette{ - pixel_x = 6; - pixel_y = 12 - }, -/turf/open/floor/iron, -/area/mine/eva) -"mJa" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"mJj" = ( -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"mJq" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"mJr" = ( -/obj/effect/spawner/random/trash/mess, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"mJu" = ( -/obj/structure/table/glass, -/turf/open/floor/iron/chapel{ - dir = 4 - }, -/area/station/service/chapel) -"mJy" = ( -/obj/effect/turf_decal/siding/brown, -/obj/structure/chair/office, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"mJD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"mJE" = ( -/obj/structure/rack, -/obj/item/clothing/glasses/sunglasses/big{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/clothing/glasses/sunglasses/big{ - pixel_x = 4; - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"mJI" = ( -/obj/structure/table, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"mJO" = ( -/obj/structure/bed, -/obj/machinery/airalarm/directional/north, -/obj/item/bedsheet/dorms, -/obj/machinery/button/door/directional/east{ - id = "Dorm2"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"mJX" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/hollow/reinforced/middle, -/turf/open/floor/plating, -/area/station/security/prison/rec) -"mJZ" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/structure/sign/nanotrasen, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"mKd" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/siding/white, -/obj/machinery/camera/directional/south{ - c_tag = "Service-Bar 1" - }, -/turf/open/floor/iron, -/area/station/service/bar) -"mKe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"mKh" = ( -/obj/structure/disposalpipe/segment{ - 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/door/airlock/maintenance{ - name = "Service Hall Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/general, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"mKj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"mKq" = ( -/obj/structure/closet/secure_closet/evidence, -/turf/open/floor/iron/dark/textured_edge, -/area/station/security/brig) -"mKv" = ( -/obj/machinery/vending/hydroseeds{ - slogan_delay = 700 - }, -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/trimline/blue/filled/warning, -/obj/effect/turf_decal/tile/green/half{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/service/hydroponics) -"mKS" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"mLa" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"mLo" = ( -/obj/structure/rack, -/obj/item/crowbar, -/obj/item/picket_sign, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"mLt" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"mLu" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/warden, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"mLJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"mLK" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/science/ordnance/burnchamber) -"mLV" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"mMa" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/service/salon) -"mMb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"mMk" = ( -/obj/machinery/telecomms/message_server/preset, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"mMl" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/machinery/light/directional/north, -/obj/structure/closet/secure_closet/medical3, -/obj/item/defibrillator/loaded{ - pixel_y = 3 - }, -/obj/item/clothing/gloves/color/latex/nitrile, -/obj/item/clothing/gloves/color/latex/nitrile, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"mMM" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison) -"mMS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Mining External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, -/turf/open/floor/iron/smooth, -/area/mine/eva) -"mMU" = ( -/obj/machinery/camera/preset/ordnance{ - dir = 4 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/icemoon, -/area/station/science/ordnance/bomb) -"mMV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"mNj" = ( -/obj/machinery/computer/security{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/computer/security/telescreen/prison{ - pixel_y = 32 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"mNE" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"mNF" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"mNJ" = ( -/obj/structure/cable, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) -"mNY" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/port/aft) -"mOc" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/bluespace_vendor/directional/east, -/turf/open/floor/iron/dark, -/area/station/science/breakroom) -"mOo" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"mOr" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/light/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/side, -/area/mine/eva) -"mOu" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"mOw" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/camera{ - c_tag = "Chemistry Lab South"; - dir = 5; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"mOA" = ( -/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/office) -"mOL" = ( -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"mOZ" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/item/stamp/law, -/obj/machinery/camera/directional/south{ - c_tag = "Service - Law Office" - }, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 17 - }, -/obj/machinery/requests_console/directional/south{ - anon_tips_receiver = 1; - assistance_requestable = 1; - department = "Law Office"; - name = "Law Office Requests Console" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"mPb" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "riot"; - name = "Security Shutters" - }, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/fore) -"mPv" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue/full, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/storage) -"mPF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"mPG" = ( -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"mPH" = ( -/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/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/firealarm/directional/south, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"mPO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/sign/warning/radiation/rad_area/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"mQk" = ( -/turf/open/floor/plating/snowed/coldroom, -/area/station/service/kitchen/coldroom) -"mQq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/smooth, -/area/mine/laborcamp/security) -"mQr" = ( -/obj/machinery/modular_computer/console/preset/id, -/obj/item/radio/intercom/directional/east, -/obj/machinery/camera{ - c_tag = "Chief Medical Office North"; - dir = 9; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/command/heads_quarters/cmo) -"mQB" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/item/paper, -/obj/machinery/door/window/right/directional/west{ - dir = 1; - name = "Security Checkpoint"; - req_access = list("security") - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"mQE" = ( -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/table/glass, -/obj/structure/window/reinforced, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) -"mQG" = ( -/obj/effect/decal/cleanable/glass, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/medical/central) -"mQV" = ( -/obj/structure/chair/pew/right, -/obj/machinery/light/warm/directional/east, -/turf/open/floor/wood, -/area/station/security/prison/rec) -"mQW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"mRa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/mime, -/turf/open/floor/wood/tile, -/area/station/service/theater) -"mRr" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"mRs" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"mRu" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - name = "Supply multi deck pipe adapter" - }, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"mRG" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/atmospherics, -/obj/item/analyzer, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"mRI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Chamber Hallway" - }, -/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/cyclelink_helper_multi{ - cycle_id = "ai-passthrough" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, -/obj/structure/cable/layer3, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"mRQ" = ( -/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/holopad, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/yellow/corner, -/turf/open/floor/iron/large, -/area/station/engineering/storage) -"mSv" = ( -/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/cyclelink_helper_multi{ - cycle_id = "sci-med-passthrough" - }, -/obj/machinery/door/airlock/research{ - name = "Research Access" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron/white, -/area/station/maintenance/aft/greater) -"mSH" = ( -/obj/structure/fence{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"mSL" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos/project) -"mSM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"mSQ" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/ice, -/area/icemoon/surface/outdoors/nospawn) -"mSU" = ( -/obj/structure/chair/sofa/right{ - dir = 1; - desc = "Hey, did you know you can get a pineapple on your burger here?"; - name = "The Regular's Sofa" - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/stone, -/area/station/commons/lounge) -"mTk" = ( -/obj/structure/chair/plastic{ - dir = 0 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"mTm" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/air_input{ - dir = 1 - }, -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"mTI" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/freezer, -/area/mine/laborcamp) -"mTW" = ( -/obj/structure/fluff/tram_rail{ - pixel_y = 17 - }, -/obj/structure/fluff/tram_rail, -/obj/structure/lattice/catwalk, -/obj/structure/marker_beacon/burgundy{ - name = "landing marker" - }, -/turf/open/openspace/icemoon/keep_below, -/area/icemoon/underground/explored) -"mTX" = ( -/obj/structure/barricade/wooden, -/obj/structure/sign/warning/cold_temp/directional/north, -/obj/structure/sign/warning/gas_mask/directional/south{ - desc = "A sign that warns of dangerous gasses in the air, instructing you to wear internals." - }, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"mUs" = ( -/obj/machinery/light/directional/south, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"mUt" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"mUC" = ( -/obj/structure/table/wood, -/obj/item/taperecorder, -/obj/machinery/computer/security/telescreen/prison{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"mUM" = ( -/obj/effect/turf_decal/tile/red/anticorner{ - dir = 8 - }, -/obj/item/radio/intercom/prison/directional/north, -/turf/open/floor/iron/dark/textured_corner{ - dir = 4 - }, -/area/station/security/office) -"mVb" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"mVe" = ( -/obj/machinery/button/ignition/incinerator/atmos, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"mVh" = ( -/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, -/area/station/hallway/primary/starboard) -"mVm" = ( -/obj/structure/grille/broken, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"mVp" = ( -/obj/structure/cable, -/obj/machinery/holopad/secure, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"mVD" = ( -/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/starboard/aft) -"mVY" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"mWe" = ( -/obj/machinery/firealarm/directional/west, -/obj/machinery/modular_computer/console/preset/cargochat/cargo{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/office) -"mWf" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/ordnance/testlab) -"mWj" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/ordnance) -"mWo" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/engineering/lobby) -"mWp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hydroponics/glass{ - name = "Hydroponics" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/open/floor/iron/textured_half{ - dir = 1 - }, -/area/station/service/hydroponics) -"mWq" = ( -/obj/structure/rack, -/obj/item/stack/sheet/iron/twenty, -/turf/open/floor/iron/dark/textured, -/area/station/security/interrogation) -"mWz" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/engineering/lobby) -"mWB" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"mWM" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - 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/security/brig/upper) -"mWX" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - 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/hallway/primary/central) -"mXa" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"mXe" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/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/white, -/area/station/science/ordnance/office) -"mXf" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"mXi" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable/layer3, -/mob/living/simple_animal/bot/secbot/pingsky, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"mXl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/east{ - c_tag = "Labor Camp Library"; - network = list("labor") - }, -/turf/open/floor/iron, -/area/mine/laborcamp) -"mXm" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"mXn" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/service/salon) -"mXq" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/item/gun/energy/laser/practice, -/obj/item/gun/energy/laser/practice, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron, -/area/station/science/explab) -"mXC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/elevatorshaft, -/area/mine/storage) -"mXD" = ( -/obj/structure/rack, -/obj/item/mecha_parts/mecha_equipment/drill, -/obj/structure/sign/poster/official/random/directional/east, -/turf/open/floor/iron/smooth, -/area/mine/mechbay) -"mXK" = ( -/obj/structure/table, -/obj/structure/reagent_dispensers/servingdish, -/obj/effect/turf_decal/tile/red/opposingcorners, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"mXP" = ( -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"mYd" = ( -/obj/machinery/air_sensor/ordnance_burn_chamber, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"mYh" = ( -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"mYr" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/entertainment/gambling{ - pixel_y = 9 - }, -/obj/item/storage/fancy/donut_box{ - pixel_x = -6 - }, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"mYG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/start/mime, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood/tile, -/area/station/service/theater) -"mYJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/atmos/hfr_room) -"mYZ" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 6 - }, -/turf/open/floor/iron/textured, -/area/station/engineering/atmos) -"mZe" = ( -/obj/structure/filingcabinet, -/obj/machinery/requests_console/directional/west{ - announcementConsole = 1; - anon_tips_receiver = 1; - assistance_requestable = 1; - department = "Captain's Desk"; - departmentType = 5; - name = "Captain's Requests Console" - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"mZf" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"mZk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/mine/laborcamp) -"mZv" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light_switch/directional/south{ - pixel_x = 6; - pixel_y = -25 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"mZD" = ( -/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/white/textured, -/area/station/security/medical) -"mZG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/science/research) -"mZH" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Med-Sci Access"; - network = list("ss13","medbay","rd"); - pixel_y = -22 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/maintenance/aft/greater) -"mZJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/mine/laborcamp) -"mZK" = ( -/obj/machinery/holopad, -/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/fitness) -"mZS" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"mZV" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/t_scanner, -/obj/item/multitool, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"nac" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/structure/table, -/obj/item/food/cheesiehonkers, -/turf/open/floor/iron, -/area/station/cargo/office) -"nae" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint1" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"nap" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/sign/poster/contraband/random/directional/north, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"naL" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/item/stack/ore/silver, -/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/miningdock) -"naP" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/library) -"naW" = ( -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/white/side{ - dir = 10 - }, -/area/station/science/research) -"naX" = ( -/turf/closed/wall/mineral/iron, -/area/station/engineering/atmos/mix) -"nbi" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"nbj" = ( -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"nbm" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 6 - }, -/area/station/security/prison/safe) -"nbp" = ( -/turf/closed/wall/r_wall, -/area/station/security/office) -"nbq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"nbv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/mine/mechbay) -"nbC" = ( -/obj/machinery/smartfridge/chemistry/preloaded, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/station/medical/treatment_center) -"nbJ" = ( -/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/line{ - dir = 8 - }, -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron/smooth, -/area/mine/eva/lower) -"nbM" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ - dir = 5 - }, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"nbP" = ( -/obj/structure/bonfire/prelit, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"nbU" = ( -/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/item/radio/intercom/directional/south, -/obj/machinery/camera{ - c_tag = "Cargo Bay Drones"; - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/drone_bay) -"nbW" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"nci" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"ncl" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"ncp" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Arrivals Bay 3 & 4" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/spawner/random/vending/snackvend, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"ncB" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig Walkway" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brigentrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"ncO" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Fitness Room" - }, -/obj/structure/closet/masks, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron, -/area/station/commons/fitness) -"ncR" = ( -/turf/closed/wall/r_wall, -/area/station/security/courtroom) -"ncX" = ( -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/dark, -/obj/effect/turf_decal/tile/dark{ - dir = 4 - }, -/obj/structure/table/reinforced/plastitaniumglass, -/obj/item/flashlight, -/turf/open/floor/iron/white/side{ - dir = 8 - }, -/area/mine/living_quarters) -"ndi" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - 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, -/area/station/construction/mining/aux_base) -"ndu" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/mine/eva) -"ndz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"ndA" = ( -/obj/structure/fence/corner{ - dir = 9 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"ndC" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "Engineering Security Door" - }, -/obj/effect/turf_decal/delivery, -/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/main) -"ndF" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral, -/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/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/fitness) -"ndH" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/dark_blue/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"ndK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/status_display/supply{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"ndN" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/sign/warning/gas_mask/directional/west, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock) -"nea" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "hosspace"; - name = "Space Shutters" - }, -/turf/open/floor/plating, -/area/station/command/heads_quarters/hos) -"nef" = ( -/obj/effect/turf_decal/trimline/red/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/machinery/firealarm/directional/north, -/turf/open/floor/iron/dark/side{ - dir = 5 - }, -/area/station/security/prison) -"nek" = ( -/obj/machinery/flasher/directional/north{ - id = "Cell 1" - }, -/obj/structure/bed{ - dir = 1; - pixel_x = -2 - }, -/turf/open/floor/iron/smooth, -/area/station/security/brig) -"neo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "pharmacy_shutters3"; - name = "Pharmacy Shutter" - }, -/turf/open/floor/plating, -/area/station/medical/pharmacy) -"nep" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/door/window/right/directional/east{ - dir = 4 - }, -/obj/structure/sign/warning/cold_temp/directional/south, -/turf/open/floor/plating/snowed/coldroom, -/area/station/service/kitchen/coldroom) -"ner" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"neu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"neC" = ( -/obj/structure/chair{ - dir = 1; - name = "Prosecution" - }, -/turf/open/floor/wood, -/area/station/security/courtroom) -"neM" = ( -/obj/machinery/hydroponics/soil, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"neR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/machinery/meter, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"neY" = ( -/obj/machinery/telecomms/relay/preset/mining, -/obj/structure/window/reinforced/spawner/east, -/obj/structure/window/reinforced/spawner/north, -/turf/open/floor/circuit/green, -/area/mine/mechbay) -"nfb" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"nfj" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"nfk" = ( -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/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) -"nfr" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/mine/eva/lower) -"nfB" = ( -/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/white/corner{ - dir = 1 - }, -/area/station/hallway/secondary/exit/departure_lounge) -"nfG" = ( -/obj/structure/marker_beacon/burgundy{ - name = "landing marker" - }, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"nfR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"nga" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/item/book/manual/wiki/cooking_to_serve_man, -/obj/structure/table/reinforced, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"ngj" = ( -/obj/effect/turf_decal/tile/dark{ - dir = 8 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 1 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 9 - }, -/obj/structure/rack, -/turf/open/floor/iron/white/corner, -/area/mine/living_quarters) -"ngx" = ( -/obj/structure/table, -/obj/structure/sign/plaques/kiddie{ - pixel_x = 32 - }, -/obj/machinery/camera/motion/directional/east{ - c_tag = "ai_upload East"; - network = list("aiupload") - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"ngM" = ( -/obj/structure/lattice/catwalk, -/obj/structure/fence/door{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"ngY" = ( -/obj/structure/sign/warning/cold_temp, -/turf/closed/wall, -/area/station/service/chapel) -"ngZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"nhb" = ( -/obj/machinery/power/solar_control{ - id = "auxsolareast"; - name = "Port Bow Solar Control" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"nhf" = ( -/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/command/heads_quarters/rd) -"nhg" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/structure/mirror/directional/west, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/toilet) -"nhr" = ( -/obj/structure/table, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/obj/item/chisel{ - pixel_y = 7 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/storage/art) -"nhw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk/multiz/down{ - dir = 4 - }, -/obj/structure/tank_holder/extinguisher, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"nhI" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Genetics Monkey Pen"; - network = list("ss13","rd") - }, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/engine, -/area/station/science/genetics) -"nhT" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Labor Camp External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/mine/laborcamp) -"nhU" = ( -/obj/machinery/computer/scan_consolenew, -/obj/machinery/light/directional/north, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"nia" = ( -/obj/machinery/door/poddoor/shutters/window{ - id = "drone_bay"; - name = "Drone Bay Shutters"; - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"nid" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/obj/machinery/vending/medical, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"niu" = ( -/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) -"niy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"niB" = ( -/obj/structure/cable, -/obj/machinery/button/door/directional/west{ - id = "maint2"; - name = "Blast Door Control B"; - pixel_y = 4 - }, -/obj/machinery/button/door/directional/west{ - id = "maint1"; - name = "Blast Door Control A"; - pixel_y = -6 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"niC" = ( -/obj/structure/cable, -/obj/structure/sign/warning/secure_area/directional/east, -/turf/open/floor/iron/white/side{ - dir = 9 - }, -/area/station/science/research) -"niG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/eva) -"niJ" = ( -/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/psychology) -"niK" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/trimline/blue/filled/warning, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Service-Botany Bottom 2" - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"niN" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle, -/turf/open/floor/plating, -/area/mine/eva/lower) -"niZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"njb" = ( -/obj/structure/reagent_dispensers/fueltank/large, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos) -"njf" = ( -/obj/machinery/plate_press, -/turf/open/floor/iron/dark/smooth_half, -/area/station/security/prison/work) -"nji" = ( -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"njm" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/transit_tube) -"njn" = ( -/obj/machinery/holopad, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"njt" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/wood/fancy/red, -/obj/effect/spawner/random/aimodule/harmful, -/obj/machinery/door/window/brigdoor/left/directional/south{ - dir = 4; - name = "High-Risk Modules"; - req_access = list("captain") - }, -/obj/item/ai_module/reset/purge{ - pixel_y = 11 - }, -/turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) -"njA" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"njJ" = ( -/turf/closed/wall, -/area/mine/laborcamp) -"njO" = ( -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"njT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"nkb" = ( -/obj/machinery/computer/communications{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"nkh" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/station/science/ordnance/testlab) -"nko" = ( -/obj/structure/table, -/obj/item/assembly/signaler, -/obj/item/assembly/signaler, -/obj/item/radio/intercom/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"nks" = ( -/obj/effect/turf_decal/stripes/white/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"nkI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/structure/tank_holder/oxygen, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"nkM" = ( -/obj/machinery/door/airlock{ - name = "Unisex Showers" - }, -/obj/structure/cable, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"nkO" = ( -/obj/structure/table, -/obj/item/storage/box/matches, -/obj/item/storage/fancy/cigarettes, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"nkP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/vault, -/area/station/security/prison/rec) -"nkQ" = ( -/obj/structure/cable, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"nkX" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/closed/wall/r_wall, -/area/station/maintenance/department/medical/central) -"nll" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/stack/sheet/plasteel/twenty{ - pixel_x = 3; - pixel_y = -2 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"nlp" = ( -/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, -/area/station/security/brig/upper) -"nlz" = ( -/obj/machinery/computer/security/hos, -/obj/machinery/requests_console/directional/north{ - announcementConsole = 1; - anon_tips_receiver = 1; - assistance_requestable = 1; - department = "Head of Security's Desk"; - departmentType = 5; - name = "Head of Security Requests Console" - }, -/obj/machinery/button/door/directional/north{ - id = "hosspace"; - name = "Icemoon Shutters Control"; - pixel_x = -24 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/carpet/royalblue, -/area/station/command/heads_quarters/hos) -"nlJ" = ( -/obj/structure/railing{ - dir = 5 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/starboard) -"nlN" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/medical/chemistry) -"nlP" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"nlR" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"nlS" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron/smooth_half, -/area/station/medical/chemistry) -"nlT" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=AftH"; - location = "AIW" - }, -/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, -/area/station/hallway/primary/central) -"nmg" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Service External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"nmj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio4"; - name = "Xenobio Pen 4 Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"nmq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 18 - }, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"nmr" = ( -/obj/machinery/hydroponics/soil, -/obj/item/cultivator, -/obj/machinery/camera/directional/west{ - c_tag = "Prison Forestry"; - network = list("ss13","prison") - }, -/obj/effect/spawner/random/contraband/cannabis, -/turf/open/floor/grass, -/area/station/security/prison/garden) -"nmz" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/openspace, -/area/station/science/ordnance/office) -"nmD" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/glass/reinforced, -/area/station/science/xenobiology) -"nmI" = ( -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison) -"nmL" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"nmN" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/effect/landmark/navigate_destination/library, -/turf/open/floor/wood, -/area/station/service/library) -"nmP" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"nnk" = ( -/obj/item/chair/plastic, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"nnl" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"nnn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Fuel Pipe to Incinerator" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"nnw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"nnx" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"nnB" = ( -/obj/machinery/vending/assist, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"nnE" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/mine/laborcamp) -"noi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/airalarm/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/eva) -"non" = ( -/obj/structure/stairs/south, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"nou" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"noQ" = ( -/obj/structure/sign/warning/cold_temp/directional/north, -/obj/structure/sign/warning/gas_mask/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"noR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"noW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/warning, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"noX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/engineering/lobby) -"noY" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"npb" = ( -/obj/effect/turf_decal/weather/snow/corner, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"npn" = ( -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"npB" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/engineering/atmos/storage/gas) -"npD" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/aft/greater) -"npE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"npH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/iron/dark, -/area/mine/laborcamp) -"npJ" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/general/visible{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"npL" = ( -/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) -"npT" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/explab) -"npV" = ( -/obj/structure/window/reinforced/spawner, -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/machinery/light/warm/directional/north, -/turf/open/misc/ashplanet/wateryrock{ - initial_gas_mix = "o2=22;n2=82;TEMP=293.15" - }, -/area/station/security/prison/rec) -"npX" = ( -/obj/structure/fence, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"nqb" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"nqn" = ( -/obj/structure/ladder, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"nqv" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/structure/sign/nanotrasen, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"nqy" = ( -/obj/structure/stairs/east, -/obj/structure/railing, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"nqB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/service/chapel) -"nqP" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Research Division West"; - network = list("ss13","rd") - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/white/side{ - dir = 10 - }, -/area/station/science/research) -"nqX" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold/pink/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"nrk" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Fitness Room South" - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness) -"nro" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/chair/stool/bar/directional/east, -/obj/effect/landmark/start/hangover, -/turf/open/floor/stone, -/area/station/commons/lounge) -"nry" = ( -/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/blue/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"nrA" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nrB" = ( -/obj/machinery/light/directional/west, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"nrC" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/button/door/directional/south{ - id = "viroview"; - name = "Viewport Control"; - pixel_x = 5; - pixel_y = -21 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"nrF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/smooth, -/area/station/security/execution/transfer) -"nrG" = ( -/obj/effect/turf_decal/tile/red/half, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -7; - pixel_y = 5 - }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/structure/table, -/turf/open/floor/iron/smooth_half, -/area/station/security/brig/upper) -"nsf" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"nsi" = ( -/obj/machinery/door/airlock/external{ - name = "Construction Zone" - }, -/turf/open/floor/plating, -/area/station/construction/mining/aux_base) -"nsp" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"nsr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"nst" = ( -/obj/item/trash/sosjerky, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"nsv" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"nsy" = ( -/obj/structure/sign/warning/no_smoking/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/storage) -"nsK" = ( -/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) -"nsL" = ( -/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, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/processing) -"nsO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/textured, -/area/station/security/interrogation) -"nsU" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"nsZ" = ( -/turf/closed/wall/r_wall, -/area/station/science/ordnance/office) -"ntl" = ( -/turf/closed/wall/r_wall, -/area/station/service/lawoffice) -"nto" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"ntq" = ( -/obj/machinery/door/window/brigdoor{ - dir = 1; - req_access = list("brig") - }, -/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/border_only{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"ntK" = ( -/obj/structure/flora/rock/icy/style_random, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"ntT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/wood, -/area/station/security/courtroom) -"nuj" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"nul" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Public Mining Storage"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/mine/storage) -"nuo" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"nup" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"nuw" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 4 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/wood, -/area/station/service/library) -"nva" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/light/small/directional/east, -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"nvs" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"nvt" = ( -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"nvW" = ( -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nvX" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"nwd" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"nwo" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"nwF" = ( -/obj/structure/chair/sofa/bench{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"nwI" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"nwT" = ( -/turf/closed/wall, -/area/station/commons/vacant_room/office) -"nxa" = ( -/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/white/side{ - dir = 9 - }, -/area/station/science/research) -"nxf" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L13" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"nxm" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"nxy" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/suit/armor/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/head/helmet/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/riot, -/obj/item/clothing/head/helmet/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/shield/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/shield/riot, -/obj/item/shield/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/red/half, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) -"nxE" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"nxM" = ( -/turf/closed/wall, -/area/station/maintenance/department/medical/morgue) -"nxW" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L2" - }, -/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/hallway/primary/central) -"nxY" = ( -/obj/structure/chair/stool/directional/north, -/turf/open/floor/iron, -/area/station/commons/fitness) -"nyd" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"nyl" = ( -/obj/machinery/door/morgue{ - name = "Private Study"; - req_access = list("library") - }, -/turf/open/floor/engine/cult, -/area/station/service/library) -"nyn" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=AIE"; - location = "AftH" - }, -/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, -/area/station/hallway/primary/aft) -"nyA" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/station/engineering/transit_tube) -"nyC" = ( -/turf/open/floor/iron/dark/smooth_half, -/area/station/service/chapel) -"nyH" = ( -/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/cafeteria, -/area/station/command/heads_quarters/rd) -"nyJ" = ( -/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/lesser) -"nyP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/sign/poster/official/random/directional/south, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/dark/textured_edge{ - dir = 1 - }, -/area/station/security/prison) -"nyX" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/status_display/evac/directional/west, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"nzf" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"nzq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"nzs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/computer/crew, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/large, -/area/station/medical/treatment_center) -"nzC" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/command/gateway) -"nzF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/mine/laborcamp) -"nzG" = ( -/obj/structure/railing{ - dir = 10 - }, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"nzI" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/smooth_half{ - dir = 1 - }, -/area/station/engineering/engine_smes) -"nzK" = ( -/obj/structure/table/reinforced, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/item/storage/toolbox/mechanical, -/obj/item/clothing/head/welding, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/medical/chemistry) -"nzR" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"nzT" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/white/end{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"nzV" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"nAf" = ( -/obj/structure/cable, -/obj/item/wrench, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"nAr" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"nAv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron/dark/side, -/area/station/security/prison) -"nAD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"nAI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"nAN" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/landmark/start/paramedic, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/medical/break_room) -"nAP" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/mine/eva/lower) -"nBb" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"nBe" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/rack, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/crowbar, -/turf/open/floor/iron, -/area/station/service/chapel) -"nBj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"nBk" = ( -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"nBo" = ( -/obj/effect/landmark/start/ai/secondary, -/obj/item/radio/intercom/directional/north{ - freerange = 1; - listening = 0; - name = "Custom Channel" - }, -/obj/item/radio/intercom/directional/south{ - freerange = 1; - frequency = 1447; - listening = 0; - name = "Private Channel" - }, -/obj/item/radio/intercom/directional/east{ - freerange = 1; - listening = 0; - name = "Common Channel" - }, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"nBx" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Security - HoS Office" - }, -/obj/item/flashlight/lamp/green{ - on = 0; - pixel_x = -6; - pixel_y = 16 - }, -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/item/stamp/hos{ - pixel_x = 10; - pixel_y = 6 - }, -/obj/machinery/recharger{ - pixel_x = -4; - pixel_y = -1 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/wood/large, -/area/station/command/heads_quarters/hos) -"nBB" = ( -/obj/machinery/power/smes, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"nBD" = ( -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/closet/firecloset, -/obj/machinery/light/directional/west, -/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, -/area/station/engineering/main) -"nBG" = ( -/obj/item/cigbutt, -/obj/machinery/atmospherics/pipe/smart/manifold/general/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nBN" = ( -/obj/machinery/atmospherics/components/tank/air, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/aft) -"nBV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"nCa" = ( -/obj/structure/rack, -/obj/item/pickaxe, -/obj/item/pickaxe, -/obj/item/shovel, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/machinery/camera{ - c_tag = "Departure Lounge Emergency EVA"; - dir = 9 - }, -/obj/item/radio/off, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/white, -/area/station/hallway/secondary/exit/departure_lounge) -"nCb" = ( -/obj/structure/rack, -/obj/item/reagent_containers/glass/bottle/lithium{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/iron{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 1 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/dark/textured_edge{ - dir = 8 - }, -/area/station/medical/medbay/central) -"nCh" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"nCm" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small/directional/west, -/obj/effect/landmark/start/hangover, -/obj/machinery/button/door/directional/north{ - id = "Toilet1"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"nCs" = ( -/obj/structure/chair/stool/directional/north, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"nCD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/radio/intercom/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"nCJ" = ( -/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/department/crew_quarters/bar) -"nCO" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/commons/fitness) -"nCP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"nCQ" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"nCV" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"nDi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/obj/structure/closet/radiation, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"nDk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/goonplaque, -/area/station/hallway/secondary/entry) -"nDl" = ( -/obj/effect/turf_decal/tile/dark, -/obj/effect/turf_decal/tile/dark{ - dir = 8 - }, -/obj/structure/railing/corner, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"nDp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/textured, -/area/station/security/brig) -"nDq" = ( -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"nDw" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"nDz" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable/layer3, -/obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat/hallway"; - name = "Chamber Hallway Turret Control"; - pixel_x = 32; - pixel_y = -24; - req_access = list("minisat") - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"nDA" = ( -/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/command/heads_quarters/hop) -"nDE" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison/garden) -"nDV" = ( -/obj/machinery/shower{ - pixel_y = 12 - }, -/obj/effect/spawner/random/contraband/permabrig_weapon, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/toilet) -"nEb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"nEX" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small/directional/south, -/obj/structure/rack, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/chapel) -"nEZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"nFc" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/landmark/navigate_destination, -/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, -/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"nFf" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"nFk" = ( -/obj/machinery/mineral/equipment_vendor, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock) -"nFn" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"nFN" = ( -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"nFO" = ( -/obj/structure/transit_tube/horizontal, -/obj/structure/cable, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"nFR" = ( -/obj/structure/table, -/obj/item/clothing/glasses/meson, -/obj/item/storage/bag/ore, -/obj/item/pickaxe, -/obj/item/mining_scanner, -/obj/item/flashlight, -/obj/machinery/light/directional/west, -/obj/item/clothing/suit/hooded/wintercoat, -/turf/open/floor/iron, -/area/station/commons/storage/mining) -"nFU" = ( -/obj/structure/chair/stool/directional/west, -/obj/item/trash/energybar, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_y = -32 - }, -/turf/open/floor/iron, -/area/station/security/prison/work) -"nGb" = ( -/obj/effect/turf_decal/tile/red/full, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron/large, -/area/station/service/kitchen/diner) -"nGk" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/rack, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"nGq" = ( -/obj/machinery/duct, -/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; - sortType = 19 - }, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/station/service/bar) -"nGz" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/wood/parquet, -/area/station/service/bar/atrium) -"nGA" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"nGG" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 6 - }, -/turf/open/floor/glass/reinforced, -/area/station/engineering/atmos/pumproom) -"nGQ" = ( -/obj/machinery/flasher/directional/north{ - id = "Cell 3" - }, -/obj/structure/bed{ - dir = 1; - pixel_x = -2 - }, -/turf/open/floor/iron/smooth, -/area/station/security/brig) -"nGT" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Labor Camp Infirmary"; - network = list("labor") - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/mine/laborcamp) -"nGU" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/smooth_edge{ - dir = 1 - }, -/area/station/security/lockers) -"nHc" = ( -/obj/structure/bodycontainer/morgue, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"nHe" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"nHf" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/light/small/directional/south, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron/dark, -/area/station/science/breakroom) -"nHs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/toilet) -"nHO" = ( -/obj/effect/turf_decal/tile/blue/half{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/service/hydroponics) -"nHQ" = ( -/obj/structure/closet/firecloset, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"nHX" = ( -/obj/structure/sign/departments/psychology/directional/south, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/machinery/camera{ - c_tag = "Medbay South"; - dir = 5; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"nId" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/barricade/wooden, -/turf/open/floor/eighties/red, -/area/station/security/prison/safe) -"nIf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"nIr" = ( -/obj/structure/sign/poster/official/random/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"nIt" = ( -/obj/structure/stairs/west, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"nIx" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/solars/starboard/aft) -"nIJ" = ( -/obj/structure/closet/crate, -/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/effect/decal/cleanable/dirt, -/obj/structure/window/reinforced/spawner/west, -/obj/effect/spawner/random/contraband/prison, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"nIL" = ( -/obj/machinery/camera{ - c_tag = "Service-Hallway Bottom 1"; - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"nIN" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/freezer, -/area/mine/eva/lower) -"nJd" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"nJm" = ( -/obj/structure/fluff/fokoff_sign, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"nJo" = ( -/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) -"nJp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Storage" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engine_equipment, -/turf/open/floor/iron, -/area/station/engineering/storage) -"nJs" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Fore Starboard Solar Access" - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"nJy" = ( -/obj/structure/chair/pew{ - dir = 1 - }, -/turf/open/floor/iron/chapel{ - dir = 8 - }, -/area/station/service/chapel) -"nJI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/turf_decal/siding/wideplating/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"nJN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/common/cryopods) -"nJT" = ( -/obj/effect/landmark/event_spawn, -/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/research) -"nJX" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/checkpoint/science) -"nKa" = ( -/turf/closed/wall, -/area/station/security/checkpoint/medical) -"nKe" = ( -/obj/structure/table, -/obj/item/hand_tele, -/turf/open/floor/iron, -/area/station/command/teleporter) -"nKl" = ( -/obj/structure/railing{ - dir = 6 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"nKn" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"nKr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"nKK" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 10 - }, -/obj/structure/table, -/obj/item/folder/white{ - pixel_y = 4 - }, -/obj/item/pen/red, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"nKL" = ( -/obj/structure/chair/stool/directional/south, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"nKR" = ( -/obj/structure/table, -/obj/item/flashlight/lamp, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"nLb" = ( -/obj/machinery/blackbox_recorder, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"nLd" = ( -/obj/structure/table/glass, -/obj/item/computer_hardware/hard_drive/portable/medical, -/obj/item/computer_hardware/hard_drive/portable/medical, -/obj/item/computer_hardware/hard_drive/portable/chemistry, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"nLn" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/airalarm/directional/south, -/obj/machinery/light/directional/south, -/obj/machinery/camera{ - c_tag = "Medbay Lobby"; - dir = 5; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"nLH" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/command/teleporter) -"nLW" = ( -/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/yellow/line, -/turf/open/floor/iron/dark/side, -/area/station/security/prison/workout) -"nLY" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"nLZ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"nMc" = ( -/obj/structure/disposalpipe/trunk/multiz{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/station/medical/virology) -"nMf" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/sign/poster/official/fruit_bowl{ - pixel_y = 32 - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/maintenance/port/aft) -"nMu" = ( -/obj/effect/turf_decal/trimline/blue/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/medical/treatment_center) -"nMw" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/cafeteria, -/area/station/hallway/secondary/exit/departure_lounge) -"nMx" = ( -/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) -"nMA" = ( -/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) -"nMB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Mining Dock" - }, -/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/supply/mining, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"nME" = ( -/obj/item/clothing/head/hardhat, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"nMN" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chemistry Access Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"nMP" = ( -/obj/structure/chair/pew{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/chapel, -/area/station/service/chapel) -"nMR" = ( -/obj/effect/gibspawner/human/bodypartless, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"nNe" = ( -/obj/structure/disposalpipe/segment{ - 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/plating, -/area/station/maintenance/starboard/lesser) -"nNn" = ( -/turf/closed/wall, -/area/station/security/prison/rec) -"nNq" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/book/manual/wiki/surgery{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/storage/backpack/duffelbag/med/surgery, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"nNr" = ( -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"nNs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/table, -/obj/item/pen/red, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/folder/yellow, -/obj/machinery/keycard_auth/directional/west, -/turf/open/floor/iron, -/area/station/cargo/qm) -"nNv" = ( -/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_smooth, -/area/station/maintenance/starboard/fore) -"nNy" = ( -/obj/structure/sign/warning/xeno_mining{ - pixel_x = 29 - }, -/obj/structure/rack, -/obj/item/pickaxe, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/mine/mechbay) -"nNB" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/obj/effect/landmark/start/virologist, -/obj/structure/chair/stool/directional/east, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"nNC" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/food/pie/cream, -/turf/open/floor/carpet, -/area/station/service/theater) -"nNG" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/chair/sofa/corp/right{ - dir = 4; - pixel_x = -4 - }, -/obj/machinery/light/small/directional/south, -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/iron/grimy, -/area/station/service/bar/atrium) -"nNQ" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/service/bar) -"nNY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"nOb" = ( -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/processing) -"nOi" = ( -/obj/structure/table, -/obj/item/assembly/signaler{ - pixel_y = 8 - }, -/obj/item/assembly/signaler{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/assembly/signaler{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/assembly/signaler{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"nOk" = ( -/obj/item/chair/wood, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"nOl" = ( -/obj/structure/bed, -/obj/machinery/airalarm/directional/north, -/obj/item/bedsheet/dorms, -/obj/effect/landmark/start/hangover, -/obj/machinery/button/door/directional/east{ - id = "Dorm4"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"nOs" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Garden" - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"nOw" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"nOB" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/wood/parquet, -/area/station/service/bar/atrium) -"nOD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - 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, -/area/station/commons/dorms) -"nOG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Engineering Supermatter Port"; - network = list("ss13","engine") - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"nOH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/command/bridge) -"nOK" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/sign/warning/xeno_mining/directional/east, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/smooth_large, -/area/station/cargo/warehouse) -"nOQ" = ( -/obj/machinery/suit_storage_unit/security, -/obj/machinery/camera/directional/north{ - c_tag = "Security - EVA" - }, -/turf/open/floor/iron/smooth, -/area/station/security/brig/upper) -"nOS" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/dark_blue/line{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"nPf" = ( -/obj/machinery/computer/station_alert, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron, -/area/station/command/bridge) -"nPt" = ( -/obj/structure/chair/stool/directional/east, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"nPI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"nPU" = ( -/obj/structure/chair/stool/bar/directional/south, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/stone, -/area/station/commons/lounge) -"nQd" = ( -/obj/effect/turf_decal/trimline/green/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"nQf" = ( -/obj/effect/turf_decal/tile/red/half{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/smooth_half, -/area/station/security/office) -"nQh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"nQw" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron, -/area/station/engineering/main) -"nQH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/filingcabinet, -/obj/item/toy/figure/qm, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 8; - pixel_y = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"nQL" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/cafeteria, -/area/mine/laborcamp) -"nQM" = ( -/obj/structure/extinguisher_cabinet/directional/south{ - pixel_x = 4 - }, -/obj/machinery/light/directional/south, -/obj/machinery/light_switch/directional/south{ - pixel_x = -6 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"nQO" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=AIW"; - location = "QM" - }, -/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/hallway/primary/central) -"nQW" = ( -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"nRa" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Library Art Gallery" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/spawner/random/structure/table_fancy, -/obj/machinery/light/blacklight/directional/north, -/obj/structure/sign/painting/large/library{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/library) -"nRd" = ( -/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/blue/filled/corner, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"nRi" = ( -/obj/machinery/door/window/right/directional/east{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Fitness Ring" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness) -"nRq" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/closet/crate, -/turf/open/floor/iron, -/area/station/cargo/office) -"nRu" = ( -/obj/structure/industrial_lift, -/obj/structure/railing{ - dir = 10 - }, -/turf/open/openspace, -/area/station/commons/storage/mining) -"nRx" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/wood, -/area/station/service/library) -"nRO" = ( -/obj/structure/cable/multilayer/multiz, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"nRU" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) -"nRV" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"nRW" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/structure/mirror/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/locker) -"nRX" = ( -/turf/open/floor/iron/white/side{ - dir = 10 - }, -/area/station/science/research) -"nSc" = ( -/obj/effect/turf_decal/siding/yellow, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nSi" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/station/maintenance/fore/greater) -"nSk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron/textured, -/area/station/security/brig) -"nSs" = ( -/obj/effect/turf_decal/tile/dark{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/asteroid/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white/side{ - dir = 6 - }, -/area/mine/living_quarters) -"nSw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/layer_manifold/brown/visible, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"nSC" = ( -/obj/structure/table, -/obj/machinery/light/small/directional/north, -/obj/machinery/microwave, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/science/breakroom) -"nSD" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 9 - }, -/obj/effect/turf_decal/siding/wideplating{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"nSF" = ( -/obj/structure/rack, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"nSH" = ( -/obj/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/security/processing) -"nSK" = ( -/obj/structure/sign/departments/xenobio/directional/west, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"nSS" = ( -/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/fore/greater) -"nST" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer1, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"nSX" = ( -/obj/machinery/computer/cryopod{ - pixel_y = 32 - }, -/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/common/cryopods) -"nTf" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/closet/secure_closet/personal{ - anchored = 1 - }, -/obj/item/clothing/under/costume/jabroni, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"nTp" = ( -/obj/effect/turf_decal/tile/red/full, -/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/checkpoint/auxiliary) -"nTv" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/random/food_or_drink/cups, -/obj/effect/spawner/random/food_or_drink/booze, -/obj/effect/spawner/random/food_or_drink/booze, -/obj/machinery/light/small/directional/north, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"nTA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/cobweb, -/obj/item/radio/intercom/directional/north, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"nTL" = ( -/obj/structure/transit_tube, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/transit_tube) -"nTO" = ( -/turf/closed/wall/r_wall, -/area/mine/laborcamp/security) -"nUg" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark/side, -/area/station/security/processing) -"nUi" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle, -/turf/open/floor/plating, -/area/mine/mechbay) -"nUj" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/commons/fitness) -"nUl" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/auxiliary) -"nUo" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/chair/sofa/left{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/grimy, -/area/station/commons/lounge) -"nUw" = ( -/obj/machinery/conveyor{ - id = "garbage" - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"nUx" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/dark/side{ - dir = 9 - }, -/area/mine/eva) -"nUJ" = ( -/obj/machinery/flasher/directional/east{ - id = "brigentry" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"nUL" = ( -/obj/structure/sign/poster/official/random/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark/textured_edge, -/area/station/security/prison) -"nVc" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"nVe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"nVr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/service/library) -"nVR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/maintenance/port/aft) -"nVZ" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Office" - }, -/obj/structure/disposalpipe/segment, -/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/command/captain, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"nWf" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/noticeboard/directional/east, -/obj/item/plate, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"nWk" = ( -/obj/structure/table, -/obj/item/stamp/qm, -/turf/open/floor/carpet, -/area/station/cargo/qm) -"nWo" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"nWs" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/closet/secure_closet/labor_camp_security, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"nWy" = ( -/obj/structure/sign/poster/official/work_for_a_future, -/turf/closed/wall, -/area/station/maintenance/port/greater) -"nWA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible/layer4, -/obj/machinery/meter/layer4, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"nWH" = ( -/turf/closed/wall, -/area/station/maintenance/department/cargo) -"nWK" = ( -/obj/structure/cable, -/obj/machinery/holopad, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"nWP" = ( -/obj/effect/turf_decal/stripes/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/hallway/secondary/entry) -"nXb" = ( -/turf/closed/wall, -/area/icemoon/surface/outdoors/nospawn) -"nXc" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron/textured, -/area/station/security/brig) -"nXg" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"nXj" = ( -/obj/machinery/vending/sovietsoda, -/obj/structure/cable, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/safe) -"nXl" = ( -/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) -"nXn" = ( -/obj/structure/table, -/obj/item/storage/medkit/regular, -/turf/open/floor/iron, -/area/station/commons/fitness) -"nXu" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/closet/secure_closet/personal{ - anchored = 1 - }, -/obj/item/clothing/under/pants/track, -/obj/item/clothing/suit/ianshirt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"nXH" = ( -/obj/structure/bodycontainer/crematorium{ - id = "crematoriumChapel" - }, -/turf/open/floor/iron/dark/smooth_half{ - dir = 1 - }, -/area/station/service/chapel/office) -"nXQ" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/light_switch/directional/west, -/obj/machinery/dryer{ - dir = 4; - pixel_x = -6; - pixel_y = -6 - }, -/turf/open/floor/iron, -/area/service/salon) -"nXR" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"nXV" = ( -/obj/machinery/door/airlock/security{ - name = "Permabrig Visitation" - }, -/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/prison/visit) -"nYd" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - 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/aft) -"nYe" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"nYn" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"nYv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"nYQ" = ( -/obj/machinery/rnd/production/techfab/department/service, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/service) -"nYY" = ( -/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/edge{ - dir = 4 - }, -/area/station/engineering/lobby) -"nYZ" = ( -/obj/item/storage/bag/trash, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"nZb" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/command/teleporter) -"nZd" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Trial Transfer"; - name = "Transfer Blast Door" - }, -/obj/machinery/door/airlock/public/glass{ - name = "Trial Transfer" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/textured, -/area/station/security/brig) -"nZf" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/pen, -/turf/open/floor/iron/dark, -/area/station/science/server) -"nZh" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/checkpoint/supply) -"nZj" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"nZy" = ( -/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/greater) -"nZA" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/amplifier, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"nZH" = ( -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/engineering/atmos/storage) -"nZY" = ( -/obj/machinery/door/airlock{ - id_tag = "AuxToilet2"; - name = "Unit 2" - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/locker) -"oaa" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"oal" = ( -/obj/machinery/light/directional/south, -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"oaB" = ( -/obj/structure/janitorialcart, -/turf/open/floor/iron, -/area/station/service/janitor) -"oaG" = ( -/obj/effect/turf_decal/tile/dark{ - dir = 1 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 4 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/decal/cleanable/glass, -/obj/item/shard, -/obj/item/shard{ - icon_state = "medium"; - pixel_x = 5; - pixel_y = -3 - }, -/turf/open/floor/iron/white/corner, -/area/mine/living_quarters) -"oaP" = ( -/obj/machinery/door/airlock/research{ - name = "Crater Observation Room" - }, -/turf/open/floor/iron/white/side, -/area/mine/living_quarters) -"oaQ" = ( -/obj/structure/transit_tube, -/obj/structure/cable, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"oaX" = ( -/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/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"obj" = ( -/obj/structure/disposalpipe/segment, -/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/aft) -"obr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "surgery"; - name = "Surgery Shutter" - }, -/obj/structure/sign/warning/no_smoking/circle/directional/east, -/turf/open/floor/plating, -/area/station/medical/surgery/aft) -"obv" = ( -/obj/structure/cable, -/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/south, -/turf/open/floor/iron, -/area/station/security/prison/work) -"obG" = ( -/obj/effect/turf_decal/trimline/blue/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/corner{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"obK" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/engineering/atmos/storage/gas) -"obM" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/mine/mechbay) -"obZ" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Xeno Test Chamber Enterance"; - network = list("ss13","test","rd","xeno") - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"ocf" = ( -/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/parquet, -/area/station/commons/lounge) -"ocj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"ocu" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"ocD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"ocF" = ( -/mob/living/simple_animal/hostile/retaliate/goat{ - name = "Snowy Pete"; - desc = "Not known for their pleasant disposition. This one seems a bit more hardy to the cold."; - atmos_requirements = list("min_oxy"=1,"max_oxy"=0,"min_plas"=0,"max_plas"=1,"min_co2"=0,"max_co2"=5,"min_n2"=0,"max_n2"=0); - minbodytemp = 150 - }, -/turf/open/misc/asteroid/snow/coldroom, -/area/station/service/kitchen/coldroom) -"ocY" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"odd" = ( -/obj/machinery/door/window/left/directional/north{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen 6"; - req_access = list("xenobiology") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"odf" = ( -/obj/structure/cable, -/obj/item/reagent_containers/food/drinks/bottle/hooch, -/obj/machinery/power/apc/five_k/directional/north, -/turf/open/floor/plating, -/area/mine/storage) -"odm" = ( -/obj/structure/stairs/east, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"ody" = ( -/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/mine/laborcamp/security) -"odz" = ( -/obj/machinery/computer/arcade/orion_trail, -/turf/open/floor/iron, -/area/station/security/prison/work) -"odN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"odW" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"oed" = ( -/obj/machinery/door/window/right/directional/east{ - name = "Robotics Surgery"; - req_access = list("robotics") - }, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"oef" = ( -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"oeh" = ( -/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/general, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"oel" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"oem" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/machinery/computer/mech_bay_power_console{ - dir = 8 - }, -/obj/structure/window/reinforced/spawner, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/mine/mechbay) -"oeq" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/sign/warning/gas_mask/directional/north{ - desc = "A sign that warns of dangerous gasses in the air, instructing you to wear internals." - }, -/obj/machinery/button/door/directional/north{ - id = "drone_bay"; - name = "Shutter Control"; - pixel_x = -24 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"oes" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/glass/rag, -/obj/item/clothing/head/collectable/tophat{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/effect/spawner/random/entertainment/gambling{ - pixel_x = -13 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/fore/lesser) -"oex" = ( -/turf/open/openspace/icemoon/keep_below, -/area/station/maintenance/department/medical/morgue) -"oeM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"oeP" = ( -/obj/structure/table, -/obj/item/food/chococoin, -/obj/structure/sign/warning/gas_mask{ - desc = "A sign that warns of dangerous gasses in the air, instructing you to wear internals."; - pixel_x = 30 - }, -/turf/open/floor/iron/smooth, -/area/mine/eva) -"oeT" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/machinery/computer/pandemic, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"oeW" = ( -/obj/structure/table/glass, -/obj/item/stack/medical/gauze{ - pixel_x = 2 - }, -/obj/item/stack/medical/mesh, -/obj/item/stack/medical/suture, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/large, -/area/station/medical/treatment_center) -"ofm" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"ofz" = ( -/obj/structure/ore_box, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/mine/eva/lower) -"ofJ" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/item/paper/fluff/jobs/prisoner/letter{ - pixel_x = -8; - pixel_y = 9 - }, -/obj/item/restraints/handcuffs{ - pixel_x = 4; - pixel_y = -3 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"ofS" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"ofT" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/machinery/camera{ - c_tag = "Service-Botany Top 3"; - dir = 9 - }, -/turf/open/floor/plating, -/area/station/service/hydroponics) -"ogc" = ( -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"ogd" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/library) -"ogl" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/effect/landmark/start/scientist, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"ogC" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/modular_computer/console/preset/id, -/obj/machinery/computer/security/telescreen/vault{ - pixel_y = 30 - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"ogF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"ogL" = ( -/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/red/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/dark/side{ - dir = 9 - }, -/area/station/security/prison) -"ogM" = ( -/obj/effect/turf_decal/stripes/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, -/area/station/hallway/secondary/entry) -"oha" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"ohp" = ( -/turf/open/floor/glass, -/area/station/maintenance/department/medical/central) -"ohs" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"oht" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/corner{ - dir = 1 - }, -/area/station/engineering/lobby) -"ohw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/storage/gas) -"ohI" = ( -/obj/structure/grille, -/obj/structure/window{ - dir = 1 - }, -/obj/structure/window, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"ohS" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Security - Upper Permabrig Hallway Central"; - network = list("ss13","prison") - }, -/turf/open/openspace, -/area/station/security/prison) -"ohV" = ( -/obj/structure/chair/office, -/turf/open/floor/iron/grimy, -/area/station/commons/vacant_room/office) -"oic" = ( -/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/smooth, -/area/station/medical/chemistry) -"oie" = ( -/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, -/area/mine/laborcamp) -"oif" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/icemoon/underground/explored) -"oih" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"oik" = ( -/obj/structure/closet/emcloset, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"oiq" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/right/directional/west{ - name = "Hydroponics Desk"; - req_access = list("hydroponics") - }, -/obj/machinery/door/firedoor, -/obj/structure/desk_bell{ - pixel_x = 7 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"oir" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio10"; - name = "Xenobio Pen 10 Blast Door" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/electric_shock, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"oiy" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/service) -"oiz" = ( -/obj/structure/urinal/directional/north, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"oiB" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chemistry Lab Utilities" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/medical/central) -"oiH" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"oiK" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/spawner/structure/window, -/obj/structure/curtain/cloth/fancy/mechanical{ - id = "barbershopcurtains" - }, -/turf/open/floor/plating, -/area/service/salon) -"oiO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"oiT" = ( -/obj/effect/spawner/random/trash/grille_or_waste, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"oiX" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/pdapainter/medbay, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"ojf" = ( -/obj/structure/lattice/catwalk, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"ojk" = ( -/obj/item/stack/ore/iron, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"ojv" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"ojF" = ( -/obj/machinery/rnd/production/protolathe/department/science, -/turf/open/floor/iron/checker, -/area/station/science/lab) -"ojP" = ( -/obj/machinery/door/firedoor/heavy, -/obj/structure/sign/warning/firing_range/directional/west, -/turf/open/floor/iron/white/corner{ - dir = 4 - }, -/area/station/science/research) -"ojV" = ( -/obj/item/flashlight, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"ojW" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"okb" = ( -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"okf" = ( -/obj/structure/bodycontainer/morgue, -/obj/machinery/camera{ - c_tag = "Morgue"; - dir = 5; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"okk" = ( -/obj/effect/turf_decal/tile/blue, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/storage_shared) -"oko" = ( -/obj/effect/turf_decal/siding/wood/end, -/obj/structure/bookcase/random/fiction, -/turf/open/floor/iron/dark, -/area/station/commons/lounge) -"okx" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor{ - name = "Warden Desk"; - req_access = list("armory") - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/window/left/directional/north{ - name = "Warden Desk" - }, -/turf/open/floor/iron, -/area/station/security/warden) -"okH" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"okV" = ( -/obj/machinery/light_switch/directional/north, -/turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) -"olf" = ( -/turf/open/floor/carpet, -/area/station/commons/dorms) -"olH" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters" - }, -/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/command/captain, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"olI" = ( -/obj/structure/table/glass, -/obj/item/book/manual/wiki/medicine{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/book/manual/wiki/surgery{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/large, -/area/station/medical/treatment_center) -"olO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/footprints, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"olV" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet/black, -/area/station/security/prison/safe) -"olY" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Security EVA" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/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/smooth, -/area/station/security/processing) -"omh" = ( -/turf/closed/wall, -/area/station/maintenance/starboard/upper) -"omi" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/item/radio/off, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) -"omk" = ( -/turf/open/floor/glass/reinforced, -/area/station/security/office) -"omt" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"omE" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/camera/directional/west, -/turf/open/floor/iron/dark, -/area/station/common/cryopods) -"omJ" = ( -/obj/machinery/door/airlock{ - name = "Perma Overlook Closet" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/vault, -/area/station/security/prison/rec) -"omP" = ( -/obj/machinery/door/airlock{ - name = "Cleaning Closet" - }, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"ond" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"one" = ( -/obj/effect/turf_decal/box, -/turf/open/floor/iron/dark/textured_large, -/area/station/engineering/atmos/project) -"ong" = ( -/obj/structure/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/turf/open/floor/vault, -/area/station/security/prison/rec) -"oni" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white/side{ - dir = 9 - }, -/area/station/science/research) -"onr" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/space_heater, -/obj/machinery/camera/directional/south{ - c_tag = "Auxiliary Tool Storage" - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"ons" = ( -/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, -/area/station/hallway/primary/port) -"onv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchencounter"; - name = "Kitchen Counter Shutters"; - dir = 2 - }, -/turf/open/floor/plating, -/area/station/service/kitchen) -"ony" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - sortType = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"onJ" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/end{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/security/courtroom) -"onU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"onW" = ( -/obj/machinery/light/directional/north, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"ooo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/processor/slime, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"oop" = ( -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"oot" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"ooL" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"ooR" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/radio/intercom/directional/north, -/obj/item/storage/fancy/donut_box{ - pixel_x = 4; - pixel_y = 9 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"ooW" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/security/prison/rec) -"opc" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"opl" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hazardvest, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/construction) -"opm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "heads_meeting"; - name = "Privacy Shutters" - }, -/turf/open/floor/plating, -/area/station/command/meeting_room) -"opn" = ( -/obj/effect/spawner/random/structure/crate, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/upper) -"opr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"opu" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"opw" = ( -/obj/machinery/computer/pod/old/mass_driver_controller/chapelgun{ - pixel_x = 24 - }, -/turf/open/floor/iron/dark/smooth_edge{ - dir = 1 - }, -/area/station/service/chapel) -"opz" = ( -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/tank_holder/extinguisher, -/obj/machinery/camera{ - c_tag = "Pharmacy"; - dir = 9; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"opB" = ( -/obj/structure/table, -/obj/item/raw_anomaly_core/random{ - pixel_x = -7 - }, -/obj/item/raw_anomaly_core/random{ - pixel_y = 5 - }, -/obj/item/raw_anomaly_core/random{ - pixel_x = 8; - pixel_y = 9 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"opD" = ( -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"opI" = ( -/obj/machinery/microwave{ - pixel_y = 7 - }, -/obj/structure/table, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"oqb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) -"oqc" = ( -/obj/effect/turf_decal/trimline/dark_green/arrow_ccw{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage) -"oqf" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"oqg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"oqx" = ( -/obj/structure/closet/lasertag/blue, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron, -/area/station/commons/fitness) -"oqy" = ( -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/mine/production) -"oqz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) -"oqC" = ( -/obj/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/effect/landmark/start/station_engineer, -/turf/open/floor/iron, -/area/station/engineering/main) -"oqL" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/hollow/reinforced/middle, -/turf/open/floor/plating, -/area/station/security/prison/work) -"oqM" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Xenobiology Pens Observation - Starboard Fore"; - network = list("ss13","rd","xeno") - }, -/turf/open/openspace, -/area/station/science/xenobiology) -"orf" = ( -/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/starboard/fore) -"ork" = ( -/obj/structure/fence/door{ - dir = 4 - }, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"oro" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/railing/corner, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/iron/cafeteria{ - dir = 8 - }, -/area/station/science/ordnance/office) -"orq" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/button/door/directional/south{ - id = "AuxToilet4"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/obj/effect/spawner/random/trash/graffiti{ - pixel_x = -32; - spawn_loot_chance = 50 - }, -/obj/machinery/recharge_station, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/locker) -"orv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"orE" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_y = 5 - }, -/obj/item/reagent_containers/dropper{ - pixel_y = -4 - }, -/turf/open/floor/iron/dark/textured_edge{ - dir = 4 - }, -/area/station/medical/medbay/central) -"orK" = ( -/turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) -"orP" = ( -/obj/effect/landmark/blobstart, -/obj/machinery/camera{ - c_tag = "Virology Pen"; - dir = 9; - network = list("ss13","medbay") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/turf/open/floor/grass, -/area/station/medical/virology) -"orS" = ( -/obj/effect/turf_decal/tile/dark, -/obj/effect/turf_decal/tile/dark{ - dir = 8 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 10 - }, -/obj/structure/rack, -/turf/open/floor/iron/white/corner{ - dir = 4 - }, -/area/mine/living_quarters) -"orV" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"osm" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"osn" = ( -/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/greater) -"osq" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting Equipment" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"osr" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"osv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"osI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"osO" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"otd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/storage) -"ote" = ( -/obj/structure/closet/emcloset{ - anchored = 1 - }, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"otj" = ( -/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/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"ots" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/hollow/reinforced/middle, -/turf/open/floor/plating, -/area/station/security/prison/mess) -"otw" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Courtroom Audience" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"otQ" = ( -/obj/structure/sign/poster/official/random/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"oua" = ( -/obj/structure/cable, -/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/south, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"ouc" = ( -/obj/structure/table, -/obj/item/clothing/mask/gas, -/turf/open/floor/iron/smooth, -/area/mine/eva) -"ouk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/mine/eva) -"ouE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/computer/security/telescreen/engine{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"ouH" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/service/theater) -"ouP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"ouX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/closet/secure_closet/personal/patient{ - name = "test subject's closet" - }, -/turf/open/floor/iron/white, -/area/station/science/genetics) -"ovy" = ( -/obj/structure/closet, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"ovQ" = ( -/obj/structure/closet/secure_closet/detective, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"ovV" = ( -/obj/effect/landmark/start/security_officer, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/smooth, -/area/station/security/lockers) -"ovX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/end, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/textured, -/area/station/medical/medbay/central) -"owe" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"owf" = ( -/obj/effect/turf_decal/stripes/white/line, -/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/machinery/newscaster/directional/east, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"owv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/mob/living/simple_animal/hostile/lizard/wags_his_tail, -/turf/open/floor/iron, -/area/station/service/janitor) -"owC" = ( -/turf/closed/wall/r_wall, -/area/station/science/server) -"owG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"owS" = ( -/obj/structure/table/glass, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 8 - }, -/obj/item/storage/box/syringes{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"oxa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"oxe" = ( -/obj/machinery/computer/cargo/request, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"oxi" = ( -/obj/machinery/camera/directional/west{ - c_tag = "MiniSat External NorthEast"; - network = list("minisat"); - start_active = 1 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/station/ai_monitored/turret_protected/aisat/maint) -"oxs" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"oxB" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/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 = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"oxJ" = ( -/obj/structure/bed/dogbed/lia, -/mob/living/simple_animal/hostile/carp/lia, -/turf/open/floor/carpet/royalblue, -/area/station/command/heads_quarters/hos) -"oxO" = ( -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"oxR" = ( -/obj/structure/transit_tube/crossing/horizontal, -/obj/structure/cable, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"oxU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"oxV" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/service/chapel) -"oyb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/meeting_room) -"oyj" = ( -/obj/structure/table, -/obj/item/storage/box, -/obj/item/storage/box, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/clothing/head/welding{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/multitool, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage/gas) -"oyp" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/table, -/turf/open/floor/wood, -/area/station/command/meeting_room) -"oyy" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"oyz" = ( -/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) -"oyB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"oyC" = ( -/obj/structure/girder, -/obj/structure/grille, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/aft/lesser) -"oyH" = ( -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"oyV" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/cook, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"oyW" = ( -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"oyX" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Plasma to Pure" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ozn" = ( -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) -"ozo" = ( -/obj/effect/landmark/carpspawn, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"ozq" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"ozw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"ozA" = ( -/obj/structure/closet/secure_closet/research_director, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"ozE" = ( -/obj/structure/closet/emcloset, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"ozM" = ( -/obj/structure/railing/corner, -/obj/structure/sign/warning/biohazard/directional/west, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"ozN" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/structure/bed/roller, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"ozX" = ( -/obj/machinery/hydroponics/soil, -/turf/open/floor/grass, -/area/station/security/prison/garden) -"ozZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/medical/chemistry) -"oAd" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/decal/cleanable/plasma, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"oAe" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/end{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"oAh" = ( -/turf/open/floor/glass/reinforced, -/area/station/security/checkpoint/auxiliary) -"oAk" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"oAl" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/dark_green/arrow_ccw, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"oAp" = ( -/obj/machinery/door/poddoor/preopen{ - id = "pharmacy_shutters"; - name = "Pharmacy Shutter" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/pharmacy) -"oAw" = ( -/obj/structure/sign/painting/library_secure{ - pixel_x = 32 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window{ - dir = 8; - name = "Secure Art Exhibition"; - req_access = list("library") - }, -/obj/effect/spawner/random/structure/table_fancy, -/turf/open/floor/wood, -/area/station/service/library) -"oAD" = ( -/obj/effect/turf_decal/trimline/dark_green/arrow_ccw{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/violet/visible{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"oAH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"oAM" = ( -/obj/structure/fluff/tram_rail/end{ - dir = 4 - }, -/obj/structure/fluff/tram_rail/end{ - dir = 4; - pixel_y = -17 - }, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"oAP" = ( -/obj/machinery/portable_atmospherics/canister/bz, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"oBi" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"oBm" = ( -/obj/structure/chair/comfy/beige{ - dir = 1; - name = "Bench" - }, -/turf/open/floor/iron/dark, -/area/mine/eva/lower) -"oBp" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Service-Hallway Top 1" - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/service) -"oBs" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Security"; - location = "EVA2" - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L10" - }, -/obj/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/central) -"oBz" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"oBP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness) -"oBQ" = ( -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"oBZ" = ( -/obj/machinery/light/directional/west, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"oCd" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"oCe" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/bluespace_vendor/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Fore Primary Hallway" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"oCj" = ( -/obj/structure/table/wood, -/obj/item/camera_film{ - pixel_x = -4; - pixel_y = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/commons/vacant_room/office) -"oCm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"oCs" = ( -/obj/structure/table, -/obj/item/toy/figure/virologist{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/item/radio/headset/headset_med{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/book/manual/wiki/infections{ - pixel_x = 10; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/green/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/medical/virology) -"oCv" = ( -/obj/item/chair/plastic{ - pixel_y = 10 - }, -/obj/item/chair/plastic{ - pixel_y = 5 - }, -/obj/item/chair/plastic, -/obj/structure/rack, -/obj/item/stack/sheet/glass{ - amount = 12 - }, -/obj/item/stack/cable_coil/five, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"oCF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"oCJ" = ( -/obj/structure/closet/lasertag/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness) -"oCO" = ( -/turf/closed/wall, -/area/station/service/hydroponics/garden) -"oCR" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"oCT" = ( -/obj/item/instrument/harmonica, -/obj/structure/flora/bush/fullgrass/style_random, -/obj/machinery/light/small/directional/west, -/turf/open/floor/grass, -/area/station/security/prison/safe) -"oCU" = ( -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/dark/textured_edge{ - dir = 1 - }, -/area/station/security/prison) -"oDd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/icemoon, -/area/station/science/ordnance/bomb) -"oDg" = ( -/obj/structure/chair/stool/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/laborcamp) -"oDh" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 10 - }, -/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/machinery/atmospherics/pipe/smart/manifold/pink/visible/layer5{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark_green/arrow_ccw, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark_red/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"oDk" = ( -/obj/structure/sign/warning/secure_area/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/grille/broken, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"oDm" = ( -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/siding/white, -/turf/open/floor/iron/large, -/area/station/service/kitchen/diner) -"oDn" = ( -/obj/machinery/door/airlock/atmos/glass, -/obj/structure/cable, -/obj/machinery/door/firedoor/heavy, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/corner, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron/dark/smooth_half, -/area/station/engineering/atmos/project) -"oDB" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/mine/laborcamp) -"oDJ" = ( -/obj/structure/disposalpipe/segment, -/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/starboard/fore) -"oDQ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/medical/chemistry) -"oEh" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"oEj" = ( -/obj/structure/disposalpipe/segment, -/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/starboard/aft) -"oEl" = ( -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/cable/layer3, -/obj/machinery/requests_console/auto_name/directional/west, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"oEt" = ( -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/engineering/main) -"oEF" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/stripes/end, -/turf/open/floor/iron/dark/textured, -/area/station/medical/medbay/aft) -"oEX" = ( -/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/plating, -/area/station/maintenance/department/medical/morgue) -"oFb" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"oFd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"oFp" = ( -/obj/structure/sign/warning/docking/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/laborcamp) -"oFw" = ( -/obj/machinery/camera/directional/north{ - c_tag = "EVA Motion Sensor" - }, -/obj/structure/rack, -/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 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"oFx" = ( -/obj/machinery/airalarm/directional/south, -/obj/machinery/holopad/secure, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"oFI" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/glass/reinforced/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"oFW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"oFY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/iron, -/area/station/engineering/storage) -"oFZ" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/window/left/directional/east{ - name = "Drone Bay Access"; - req_access = list("cargo") - }, -/obj/effect/turf_decal/trimline/yellow/mid_joiner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/mid_joiner, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"oGm" = ( -/obj/machinery/power/solar_control{ - dir = 1; - id = "starboardsolar"; - name = "Starboard Quarter Solar Control" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"oGs" = ( -/obj/structure/disposalpipe/segment, -/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/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"oGB" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/prison) -"oGF" = ( -/obj/structure/closet/crate/bin, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/mine/eva) -"oGG" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"oGQ" = ( -/obj/machinery/light_switch/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"oGR" = ( -/obj/item/radio/intercom/directional/north, -/obj/structure/reagent_dispensers/plumbed{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/service) -"oGS" = ( -/obj/structure/table/wood, -/obj/machinery/libraryscanner, -/obj/effect/turf_decal/siding/wood/corner, -/obj/machinery/light/small/directional/east, -/turf/open/floor/wood, -/area/station/service/library) -"oGX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"oHp" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Engineering Escape Pod" - }, -/turf/open/floor/plating, -/area/station/engineering/storage_shared) -"oHG" = ( -/obj/item/flashlight/lantern, -/obj/machinery/light/directional/south, -/obj/structure/table/wood, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"oHH" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/service/chapel) -"oHK" = ( -/turf/closed/wall/r_wall, -/area/station/science/lab) -"oHS" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"oHV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"oIb" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"oIC" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"oIN" = ( -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/atmos/hfr_room) -"oIR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance/four, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"oJk" = ( -/obj/structure/railing/corner, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/iron, -/area/station/cargo/storage) -"oJo" = ( -/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/greater) -"oKd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron, -/area/service/salon) -"oKv" = ( -/obj/item/trash/popcorn, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"oKy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"oKJ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"oKY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plating, -/area/station/construction) -"oLa" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/two, -/obj/item/pickaxe, -/obj/item/mining_scanner, -/obj/item/storage/bag/ore, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"oLg" = ( -/turf/open/floor/iron/white/corner, -/area/station/science/research) -"oLn" = ( -/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/plating, -/area/station/maintenance/aft/greater) -"oLt" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/icemoon, -/area/station/science/ordnance/bomb) -"oLz" = ( -/obj/structure/disposalpipe/segment, -/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/secondary/exit/departure_lounge) -"oLG" = ( -/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/service/chapel) -"oLI" = ( -/obj/structure/table/wood, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"oLJ" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Foyer" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable/layer3, -/obj/effect/mapping_helpers/airlock/access/any/command/minisat, -/obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"oLK" = ( -/obj/machinery/air_sensor/mix_tank, -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"oLO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/gas_mask, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"oLP" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/item/food/chococoin, -/turf/open/misc/ice/coldroom, -/area/station/service/kitchen/coldroom) -"oLW" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used to access the various cameras on the station."; - dir = 1; - layer = 3.1; - name = "Security Camera Monitor"; - network = list("ss13"); - pixel_y = 2 - }, -/obj/structure/table, -/turf/open/floor/iron/dark/textured_edge{ - dir = 8 - }, -/area/station/security/checkpoint/auxiliary) -"oMd" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external/glass{ - name = "Supply Door Airlock" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/plating, -/area/station/cargo/storage) -"oMk" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Port Hallway 2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"oMs" = ( -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/iron/grimy, -/area/station/maintenance/aft/greater) -"oMN" = ( -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - dir = 8; - name = "Supply multi deck pipe adapter" - }, -/turf/open/floor/plating, -/area/station/medical/chemistry) -"oMO" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"oMP" = ( -/obj/machinery/computer/slot_machine, -/turf/open/floor/wood, -/area/station/command/meeting_room) -"oMR" = ( -/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/trimline/blue/filled/warning{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"oMT" = ( -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"oNp" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"oNA" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"oNC" = ( -/obj/machinery/light/small/directional/west, -/turf/open/openspace, -/area/station/service/chapel) -"oNO" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"oNP" = ( -/obj/structure/barricade/wooden, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/aft/lesser) -"oNX" = ( -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"oOh" = ( -/obj/machinery/light_switch/directional/north, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/vending/autodrobe/all_access, -/turf/open/floor/iron, -/area/station/commons/locker) -"oOk" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"oOo" = ( -/obj/structure/closet/firecloset, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron/white, -/area/station/science/research) -"oOD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"oOO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/secure_area/directional/south, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"oPa" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/security/prison/work) -"oPl" = ( -/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, -/area/station/security/courtroom) -"oPn" = ( -/obj/structure/closet/secure_closet/injection, -/obj/machinery/airalarm/directional/north, -/obj/item/soap/nanotrasen, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"oPq" = ( -/obj/machinery/cell_charger{ - pixel_y = 5 - }, -/obj/item/stock_parts/cell/high{ - pixel_y = 6 - }, -/obj/structure/table/glass, -/turf/open/floor/iron/white/side{ - dir = 9 - }, -/area/station/science/lab) -"oPv" = ( -/obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat/service"; - name = "Service Bay Turret Control"; - pixel_x = 27; - req_access = list("minisat") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"oPx" = ( -/obj/machinery/rnd/production/protolathe/department/engineering, -/obj/machinery/airalarm/directional/east, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) -"oPC" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/table, -/obj/item/toy/foamblade, -/obj/effect/spawner/random/clothing/kittyears_or_rabbitears, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"oPG" = ( -/obj/structure/rack, -/obj/item/clothing/shoes/magboots, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"oPP" = ( -/obj/machinery/computer/scan_consolenew{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"oPU" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"oPW" = ( -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/obj/docking_port/stationary{ - dheight = 3; - dir = 8; - dwidth = 8; - height = 11; - id = "ferry_home"; - name = "Port Bay 2"; - width = 20 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"oPX" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/light/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Auxillary Base Construction" - }, -/obj/machinery/computer/camera_advanced/base_construction/aux{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"oQg" = ( -/obj/structure/chair/pew/left, -/obj/machinery/light/warm/directional/west, -/turf/open/floor/wood, -/area/station/security/prison/rec) -"oQn" = ( -/obj/structure/chair/sofa/corp/left{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/breakroom) -"oQo" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio5"; - name = "Xenobio Pen 5 Blast Door" - }, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"oQp" = ( -/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/aft) -"oQv" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"oQA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"oQN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/security/courtroom) -"oQY" = ( -/turf/open/floor/iron/white, -/area/station/medical/virology) -"oRk" = ( -/obj/structure/disposalpipe/segment{ - 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/wood, -/area/station/command/heads_quarters/captain) -"oRo" = ( -/obj/structure/table, -/obj/item/wrench, -/obj/item/analyzer, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"oRq" = ( -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/white, -/area/station/medical/surgery/fore) -"oRw" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"oSa" = ( -/obj/machinery/door/airlock/public/glass{ - id_tag = "gulag3"; - name = "Cell 3" - }, -/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/mine/laborcamp) -"oSk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Fitness" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness) -"oSm" = ( -/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/security/office) -"oSw" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"oSC" = ( -/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/smooth, -/area/station/security/lockers) -"oSD" = ( -/obj/structure/stairs/south, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison) -"oSR" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/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) -"oSS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"oSU" = ( -/turf/open/genturf, -/area/icemoon/underground/unexplored/rivers/deep) -"oSX" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"oTe" = ( -/obj/structure/table/wood, -/obj/item/trapdoor_remote/preloaded{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/gavelblock{ - pixel_x = 5 - }, -/turf/open/floor/wood, -/area/station/security/courtroom) -"oTh" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm2"; - name = "Dorm 1" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/commons/dorms) -"oTx" = ( -/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_smooth, -/area/station/maintenance/starboard/lesser) -"oTA" = ( -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"oTB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - dir = 8; - name = "Supply multi deck pipe adapter" - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"oTK" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"oUi" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/table, -/obj/item/flashlight/lamp{ - on = 0 - }, -/turf/open/floor/wood, -/area/station/maintenance/aft/greater) -"oUr" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"oUA" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"oUE" = ( -/obj/item/radio/intercom/directional/west, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/commons/storage/mining) -"oUG" = ( -/obj/machinery/door/airlock{ - id_tag = "Toilet2"; - name = "Unit 2" - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"oUK" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"oUL" = ( -/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/command/teleporter) -"oUM" = ( -/obj/machinery/door/airlock/security{ - name = "Cafeteria" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/mess) -"oVy" = ( -/obj/machinery/door/airlock/security{ - name = "Permabrig Lab" - }, -/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/grimy, -/area/station/security/prison/work) -"oVz" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"oVR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/command/bridge) -"oVY" = ( -/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/security/prison) -"oWe" = ( -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/rec) -"oWg" = ( -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"oWj" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/machinery/camera/autoname/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"oWk" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"oWl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/storage/gas) -"oWP" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red, -/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/cable, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"oWQ" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"oXd" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/warning{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 10 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/range) -"oXe" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/obj/item/holosign_creator/robot_seat/bar, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/obj/structure/table/wood, -/turf/open/floor/stone, -/area/station/service/bar) -"oXk" = ( -/turf/open/floor/carpet, -/area/station/service/theater) -"oXm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"oXo" = ( -/turf/open/floor/iron/smooth_large, -/area/station/cargo/warehouse) -"oXq" = ( -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"oXr" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Kill Chamber"; - normalspeed = 0 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/iron/freezer, -/area/station/science/xenobiology) -"oXs" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/obj/machinery/camera{ - c_tag = "Virology Hallway"; - dir = 10; - network = list("ss13","medbay") - }, -/obj/effect/landmark/start/hangover, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"oXz" = ( -/obj/structure/rack, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/tank/internals/oxygen, -/obj/item/clothing/mask/gas, -/obj/item/extinguisher, -/obj/item/clothing/head/hardhat/red, -/obj/item/clothing/glasses/meson, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/binary/pump/on/general/visible/layer4{ - dir = 4; - name = "Air In" - }, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"oXJ" = ( -/obj/machinery/newscaster/directional/north, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/station/science/breakroom) -"oXM" = ( -/obj/structure/window/reinforced/plasma{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/power/energy_accumulator/grounding_rod/anchored, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"oXS" = ( -/obj/structure/chair/stool/directional/north, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"oXX" = ( -/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/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"oYc" = ( -/obj/structure/chair/wood/wings{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/wood/tile, -/area/station/service/theater) -"oYi" = ( -/obj/machinery/firealarm/directional/south, -/obj/structure/table, -/obj/machinery/microwave, -/turf/open/floor/iron, -/area/station/security/courtroom) -"oYm" = ( -/obj/structure/stairs/north, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"oYu" = ( -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"oYv" = ( -/obj/machinery/bluespace_vendor/directional/south, -/turf/open/floor/iron, -/area/station/commons/locker) -"oYx" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"oYH" = ( -/obj/effect/turf_decal/siding/wideplating/dark, -/obj/effect/landmark/start/botanist, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"oYI" = ( -/obj/effect/spawner/random/vending/colavend, -/turf/open/floor/wood, -/area/station/command/meeting_room) -"oYZ" = ( -/obj/machinery/modular_computer/console/preset/id, -/obj/machinery/light/directional/north, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/auxiliary) -"oZd" = ( -/obj/structure/fence/corner{ - dir = 9 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"oZg" = ( -/obj/machinery/camera/directional/south{ - c_tag = "EVA East" - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"oZn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/explab) -"oZu" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/table, -/obj/item/phone{ - pixel_x = -3 - }, -/obj/item/cigbutt, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"oZz" = ( -/obj/effect/turf_decal/trimline/red/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/side{ - dir = 4 - }, -/area/station/security/prison) -"oZA" = ( -/obj/machinery/airalarm/engine{ - dir = 8; - pixel_x = -23 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Gas to Filter" - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"oZR" = ( -/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_edge, -/area/station/security/prison) -"oZV" = ( -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/fore/greater) -"par" = ( -/obj/structure/toilet/greyscale, -/obj/machinery/airalarm/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/smooth_half{ - dir = 1 - }, -/area/station/security/prison/safe) -"paF" = ( -/obj/structure/table, -/obj/item/clothing/suit/hooded/wintercoat/science, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"paK" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/command/bridge) -"paL" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/cable, -/turf/open/floor/plating/icemoon, -/area/station/security/execution/education) -"paM" = ( -/turf/closed/wall, -/area/station/engineering/storage/tech) -"paR" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/mine/eva/lower) -"paT" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint3" - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"paW" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/large, -/area/station/engineering/engine_smes) -"pba" = ( -/obj/structure/table, -/obj/item/camera_film, -/obj/item/camera, -/turf/open/floor/iron, -/area/station/commons/storage/art) -"pbk" = ( -/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/cable, -/obj/effect/turf_decal/trimline/red/filled/end{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"pbs" = ( -/turf/closed/wall, -/area/station/ai_monitored/turret_protected/aisat/maint) -"pbu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"pbw" = ( -/obj/effect/turf_decal/tile/dark{ - dir = 1 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 5 - }, -/turf/open/floor/iron/white/side, -/area/mine/living_quarters) -"pby" = ( -/obj/effect/gibspawner/human, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"pbB" = ( -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - 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/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"pbH" = ( -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/science/ordnance/testlab) -"pbI" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/textured, -/area/station/security/office) -"pbK" = ( -/obj/structure/grille, -/obj/structure/window{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"pbQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/command/heads_quarters/rd) -"pbT" = ( -/obj/structure/chair/stool/directional/west, -/obj/effect/landmark/start/geneticist, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/genetics) -"pbW" = ( -/obj/structure/disposalpipe/segment, -/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/white, -/area/station/medical/medbay/central) -"pbZ" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/brown, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/white, -/area/station/medical/break_room) -"pcg" = ( -/obj/machinery/computer/apc_control{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"pcj" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Drone Bay" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/siding/brown/corner{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"pck" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/structure/chair/sofa/left{ - dir = 1; - name = "The Regular's Sofa"; - desc = "Hey, did you know you can get a pineapple on your burger here?" - }, -/turf/open/floor/stone, -/area/station/commons/lounge) -"pcr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_output{ - dir = 8 - }, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"pcs" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/atmos/storage/gas) -"pcB" = ( -/obj/structure/chair/pew{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/chapel, -/area/station/service/chapel) -"pcE" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"pcJ" = ( -/obj/structure/table/wood, -/obj/item/coin/silver, -/turf/open/floor/iron, -/area/station/commons/dorms) -"pcP" = ( -/obj/structure/cable, -/obj/machinery/photocopier, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hop) -"pdc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"pdf" = ( -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"pdx" = ( -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/turf/open/floor/sepia, -/area/station/security/prison/rec) -"pdy" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "robo2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"pdz" = ( -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark/textured, -/area/station/security/execution/transfer) -"pdC" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/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/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/fore/greater) -"pdK" = ( -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) -"pdO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/engine, -/area/station/science/explab) -"pdR" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Cargo Receiving Dock" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/computer/cargo{ - dir = 4 - }, -/obj/machinery/button/door/directional/west{ - id = "QMLoaddoor"; - layer = 4; - name = "Loading Doors"; - pixel_y = -8; - req_access = list("cargo") - }, -/obj/machinery/button/door/directional/west{ - id = "QMLoaddoor2"; - layer = 4; - name = "Loading Doors"; - pixel_y = 8; - req_access = list("cargo") - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"pdT" = ( -/obj/structure/chair/sofa/corp/right{ - dir = 8 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Security - Permabrig Library Reading Room"; - network = list("ss13","prison") - }, -/obj/effect/landmark/start/prisoner, -/turf/open/floor/carpet/blue, -/area/station/security/prison/work) -"pdV" = ( -/obj/machinery/vending/coffee, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) -"peb" = ( -/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/wood, -/area/station/commons/dorms) -"pee" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/research/glass{ - name = "Test Chamber" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/effect/mapping_helpers/airlock/access/all/science/research, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"pej" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"pem" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"pez" = ( -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/dark/textured_edge{ - dir = 1 - }, -/area/station/security/prison) -"peA" = ( -/obj/structure/table/wood, -/obj/item/storage/book/bible, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"peV" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"pfa" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"pfe" = ( -/turf/closed/wall, -/area/station/hallway/primary/fore) -"pfg" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/turf/open/openspace/icemoon/keep_below, -/area/icemoon/underground/explored) -"pfn" = ( -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_y = 32 - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"pfs" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"pfw" = ( -/obj/structure/flora/grass/green/style_random, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"pfB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"pfO" = ( -/obj/structure/chair/stool/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/mine/laborcamp) -"pfP" = ( -/obj/machinery/computer/mech_bay_power_console, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/maintenance/department/electrical) -"pfZ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/bed/pod, -/obj/structure/window, -/turf/open/floor/iron, -/area/service/salon) -"pgi" = ( -/obj/machinery/status_display/evac/directional/west, -/obj/machinery/light/small/directional/west, -/turf/open/floor/wood, -/area/station/service/library) -"pgo" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/misc/dirt{ - initial_gas_mix = "ICEMOON_ATMOS" - }, -/area/icemoon/underground/explored) -"pgG" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/orange, -/obj/item/restraints/handcuffs, -/obj/item/reagent_containers/spray/pepper, -/turf/open/floor/iron/smooth, -/area/station/security/execution/transfer) -"pgL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) -"pgN" = ( -/obj/item/organ/external/tail/monkey, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"phB" = ( -/obj/machinery/vending/coffee, -/obj/structure/sign/poster/official/science{ - pixel_y = -32 - }, -/turf/open/floor/iron/dark, -/area/station/science/breakroom) -"phK" = ( -/obj/effect/spawner/random/contraband/prison, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"phL" = ( -/obj/structure/reflector/single/anchored{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"phS" = ( -/obj/structure/table/reinforced, -/obj/item/hfr_box/body/fuel_input, -/obj/item/hfr_box/body/interface{ - pixel_x = 6; - pixel_y = 9 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"phU" = ( -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/machinery/door/window{ - base_state = "right"; - icon_state = "right"; - name = "Theater Stage" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/station/service/theater) -"phZ" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/bin, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"pie" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Engineering Access" - }, -/obj/structure/closet/radiation, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"piv" = ( -/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/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"pix" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/trimline/blue/filled/warning, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"piy" = ( -/obj/structure/fence, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"piC" = ( -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/obj/machinery/button/door/directional/south{ - id = "Dorm6"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"piI" = ( -/obj/machinery/airalarm/directional/south, -/obj/machinery/camera{ - c_tag = "Stasis Center South"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"piL" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - dir = 8; - id = "Cell 2"; - name = "Cell 2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/smooth_half{ - dir = 1 - }, -/area/station/security/brig) -"piM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"piQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"piV" = ( -/obj/machinery/button/door/directional/south{ - id = "Cargo_Store_In"; - name = "Shutter Control"; - pixel_x = -23 - }, -/turf/open/floor/iron/smooth_large, -/area/station/cargo/warehouse) -"pja" = ( -/obj/structure/rack, -/obj/item/pickaxe, -/obj/item/gps/mining, -/obj/item/gps/mining, -/obj/structure/sign/warning/cold_temp/directional/north, -/turf/open/floor/iron/smooth, -/area/mine/eva) -"pjc" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/research/glass{ - name = "Ordnance Lab" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/freezerchamber) -"pjj" = ( -/obj/structure/chair, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"pjl" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/engineering_all, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"pjp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"pjr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "Xenobio Pen 6 Blast Door" - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"pjw" = ( -/obj/structure/table/wood, -/obj/item/toy/cards/deck{ - pixel_x = 2 - }, -/obj/item/clothing/mask/balaclava{ - pixel_x = -8; - pixel_y = 8 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"pjF" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - dir = 4; - name = "Scrubbers multi deck pipe adapter" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"pjZ" = ( -/obj/structure/closet/crate/freezer/blood, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"pkf" = ( -/obj/structure/table/reinforced, -/obj/item/storage/secure/briefcase, -/obj/item/storage/box/pdas{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/silver_ids{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/box/ids, -/turf/open/floor/iron, -/area/station/command/bridge) -"pko" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"pkF" = ( -/obj/effect/turf_decal/tile/neutral, -/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, -/area/station/ai_monitored/command/nuke_storage) -"pkN" = ( -/obj/structure/railing, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"pkP" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"pkW" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L4" - }, -/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/hallway/primary/central) -"pkY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"plg" = ( -/obj/machinery/atmospherics/components/tank/air, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"plN" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 7; - pixel_y = 12 - }, -/obj/item/taperecorder{ - pixel_x = -5 - }, -/obj/item/lighter{ - pixel_x = 8; - pixel_y = -9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"plS" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"pmb" = ( -/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"pmg" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"pmn" = ( -/obj/effect/spawner/random/trash/caution_sign, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"pms" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/commons/storage/emergency/port) -"pmC" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/machinery/camera/motion/directional/south{ - c_tag = "MiniSat AI Chamber North"; - network = list("aicore") - }, -/obj/structure/cable, -/obj/machinery/flasher/directional/south{ - id = "AI"; - pixel_x = -10 - }, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"pmV" = ( -/obj/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_half, -/area/station/security/office) -"pmY" = ( -/obj/structure/rack, -/obj/structure/window/reinforced/spawner/east, -/obj/item/clothing/head/saints, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison) -"pna" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "Engineering Security Door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"pnf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"pnj" = ( -/obj/structure/closet/firecloset, -/obj/effect/landmark/start/hangover/closet, -/obj/effect/turf_decal/stripes/corner, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"pnn" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/tcommsat/computer) -"pnq" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/flora/grass/brown/style_random, -/turf/open/misc/asteroid/snow/standard_air, -/area/station/science/research) -"pnA" = ( -/obj/machinery/airalarm/directional/north, -/obj/structure/rack, -/obj/item/clothing/suit/hooded/wintercoat/science{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/suit/hooded/wintercoat/science{ - pixel_x = -1 - }, -/obj/item/clothing/shoes/winterboots{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/clothing/shoes/winterboots, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/glass/reinforced, -/area/station/science/xenobiology) -"pnG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/newscaster/directional/north, -/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, -/area/mine/laborcamp) -"pnR" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) -"poc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"pou" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/machinery/duct, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/obj/effect/landmark/start/atmospheric_technician, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"poy" = ( -/turf/open/floor/carpet/green, -/area/station/service/library) -"poE" = ( -/obj/machinery/computer/crew, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron, -/area/station/command/bridge) -"poR" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/security/holding_cell) -"ppl" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/dark/textured_edge{ - dir = 4 - }, -/area/station/security/checkpoint/auxiliary) -"ppp" = ( -/obj/structure/railing, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"ppu" = ( -/obj/machinery/light/small/directional/west, -/turf/open/misc/asteroid/snow/icemoon, -/area/mine/eva) -"ppD" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"ppK" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/command/bridge) -"ppN" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall, -/area/station/hallway/secondary/entry) -"ppS" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"pqa" = ( -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/station/hallway/secondary/entry) -"pqc" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 6 - }, -/obj/machinery/meter, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"pqk" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/directional/west, -/obj/machinery/pipedispenser/disposal, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"pql" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/production) -"pqo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "gene_desk_shutters"; - name = "Genetics Shutters"; - dir = 8 - }, -/turf/open/floor/plating, -/area/station/science/genetics) -"pqu" = ( -/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, -/area/station/security/prison/rec) -"pqv" = ( -/obj/item/storage/medkit/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron, -/area/mine/living_quarters) -"pqx" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"pqA" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/service/theater) -"pqG" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/light/small/directional/south, -/obj/structure/sign/poster/official/safety_eye_protection{ - pixel_y = -32 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"pqK" = ( -/obj/structure/sign/warning/secure_area/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"pqM" = ( -/obj/structure/window/reinforced, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"pqX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"pra" = ( -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"prf" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"prg" = ( -/turf/open/floor/wood, -/area/station/service/library) -"prk" = ( -/obj/machinery/keycard_auth/directional/west, -/obj/machinery/computer/cargo{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"pry" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"prz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"prB" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - 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, -/area/station/hallway/primary/central) -"prE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"prF" = ( -/obj/machinery/telecomms/server/presets/security, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"prH" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio11"; - name = "Xenobio Pen 11 Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"psb" = ( -/turf/closed/wall/ice, -/area/icemoon/underground/explored) -"psm" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"pst" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"psv" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/turf/open/floor/iron/smooth_edge, -/area/station/medical/chemistry) -"psD" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Quartermaster Office 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/supply/qm, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"psN" = ( -/turf/closed/wall/r_wall, -/area/station/security/checkpoint/auxiliary) -"psP" = ( -/obj/effect/turf_decal/tile/red/half{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/smooth_half, -/area/station/security/brig/upper) -"psW" = ( -/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/cargo/office) -"ptd" = ( -/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/aft) -"ptf" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"ptk" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/hallway/primary/port) -"ptp" = ( -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/newscaster/directional/north, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/white/smooth_large, -/area/station/service/kitchen/diner) -"ptx" = ( -/obj/structure/closet/crate, -/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/stock_parts/cell/high, -/obj/item/stack/sheet/mineral/plasma{ - amount = 30 - }, -/turf/open/floor/plating, -/area/station/engineering/engine_smes) -"ptB" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"ptO" = ( -/obj/structure/sign/barsign, -/turf/closed/wall, -/area/station/service/bar/atrium) -"ptQ" = ( -/obj/structure/disposalpipe/trunk/multiz/down, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"ptR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"ptY" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/maint) -"pua" = ( -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"pub" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"pue" = ( -/obj/effect/turf_decal/tile/red, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"puf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"puh" = ( -/obj/effect/spawner/random/clothing/bowler_or_that, -/obj/structure/rack, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"pum" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"pup" = ( -/obj/effect/turf_decal/siding/wood/corner{ - dir = 4 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/wood, -/area/station/service/library) -"pus" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"pve" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/mine/eva) -"pvh" = ( -/obj/item/clothing/glasses/meson, -/obj/item/flashlight, -/obj/item/clothing/suit/hooded/wintercoat/science, -/obj/structure/rack, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"pvm" = ( -/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, -/area/station/hallway/primary/fore) -"pvo" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"pvz" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Courtroom" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"pvB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"pvE" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"pvL" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/fore/greater) -"pvU" = ( -/obj/item/toy/snowball{ - pixel_x = 6; - pixel_y = -5 - }, -/obj/machinery/light/small/directional/south, -/turf/open/misc/asteroid/snow/standard_air, -/area/station/science/research) -"pwb" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "medsecprivacy"; - name = "Privacy Shutter" - }, -/obj/machinery/door/window/brigdoor/right/directional/east{ - req_access = list("brig_entrance"); - name = "Orderly Office's Desk" - }, -/turf/open/floor/plating, -/area/station/security/checkpoint/medical) -"pwd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"pwf" = ( -/obj/machinery/light_switch/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, -/area/station/command/teleporter) -"pwn" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/virology) -"pwo" = ( -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock"; - shuttledocked = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/processing) -"pwv" = ( -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - name = "Supply multi deck pipe adapter" - }, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"pwB" = ( -/obj/structure/stairs/west, -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"pwC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/service/chapel) -"pwD" = ( -/obj/structure/window/reinforced, -/obj/machinery/rnd/production/circuit_imprinter, -/obj/machinery/requests_console/directional/east{ - assistance_requestable = 1; - department = "Engineering"; - departmentType = 3; - name = "Engineering Requests Console"; - supplies_requestable = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) -"pwF" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"pwH" = ( -/obj/structure/chair/stool/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"pwL" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/auxiliary) -"pwM" = ( -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"pwV" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"pxi" = ( -/obj/machinery/door/window{ - dir = 8; - name = "Mass Driver"; - req_access = list("chapel_office") - }, -/obj/machinery/mass_driver/chapelgun{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/service/chapel) -"pxn" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"pxs" = ( -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/structure/chair, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron/white/smooth_large, -/area/station/service/kitchen/diner) -"pxu" = ( -/obj/structure/sign/warning/secure_area/directional/east, -/turf/open/floor/engine, -/area/station/science/explab) -"pxF" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchencounter"; - name = "Kitchen Counter Shutters"; - dir = 8 - }, -/obj/structure/displaycase/forsale/kitchen, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"pxL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"pxQ" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"pxX" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"pya" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/security_all, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"pye" = ( -/obj/machinery/light/directional/east, -/obj/machinery/status_display/evac/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/bookcase{ - name = "Holy Bookcase" - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"pyf" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/obj/structure/bed{ - dir = 4 - }, -/obj/item/bedsheet/medical{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"pyj" = ( -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white/smooth_large, -/area/station/service/kitchen/diner) -"pym" = ( -/obj/machinery/light/directional/north, -/obj/structure/table, -/obj/item/assembly/signaler, -/obj/item/assembly/signaler, -/obj/item/stock_parts/cell/high, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"pyr" = ( -/obj/machinery/griddle, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"pyu" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"pyJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/sepia, -/area/station/service/library) -"pyM" = ( -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"pyY" = ( -/obj/machinery/status_display/evac/directional/south, -/turf/open/openspace, -/area/station/engineering/atmos/storage) -"pzb" = ( -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"pzi" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/structure/cable, -/obj/machinery/duct, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"pzk" = ( -/obj/structure/railing{ - dir = 9 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/button/door/directional/east{ - id = "drone_bay"; - name = "Shutter Control"; - pixel_y = -8 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/station/cargo/drone_bay) -"pzn" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark_green/arrow_ccw, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"pzs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/engine, -/area/station/engineering/atmos/hfr_room) -"pzC" = ( -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"pzQ" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"pzV" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen/fountain, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"pzX" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"pzY" = ( -/obj/effect/landmark/start/cyborg, -/obj/structure/cable, -/obj/machinery/holopad/secure, -/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, -/obj/structure/cable/layer3, -/turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) -"pAj" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - 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/aft) -"pAs" = ( -/obj/structure/ladder, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark/textured_large, -/area/station/maintenance/department/medical/central) -"pAM" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/snowed/coldroom, -/area/station/service/kitchen/coldroom) -"pAT" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/mine/production) -"pAZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/primary/central) -"pBb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"pBA" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/treatment_center) -"pBI" = ( -/obj/machinery/power/smes{ - capacity = 9e+006; - charge = 10000 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/iron/dark/textured_large, -/area/station/maintenance/disposal/incinerator) -"pBN" = ( -/obj/structure/flora/tree/jungle/small/style_random, -/turf/open/floor/grass, -/area/station/security/warden) -"pBV" = ( -/obj/structure/chair/office/light, -/turf/open/floor/iron/dark, -/area/station/science/server) -"pBW" = ( -/obj/structure/disposalpipe/segment{ - 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/plating, -/area/station/maintenance/department/medical/morgue) -"pCi" = ( -/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/starboard/fore) -"pCI" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/hallway/secondary/exit/departure_lounge) -"pCK" = ( -/mob/living/simple_animal/bot/secbot/beepsky, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"pCM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/mine/eva) -"pDe" = ( -/obj/structure/closet/secure_closet/personal{ - anchored = 1 - }, -/obj/item/clothing/under/pants/youngfolksjeans, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"pDi" = ( -/obj/machinery/light/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"pDk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white/side{ - dir = 1 - }, -/area/station/science/lab) -"pDB" = ( -/obj/item/radio/intercom/prison/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/smooth, -/area/station/security/brig/upper) -"pDC" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Three"; - space_dir = 1 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/processing) -"pDI" = ( -/obj/structure/table, -/obj/machinery/computer/libraryconsole/bookmanagement, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/laborcamp) -"pDP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/elevatorshaft, -/area/mine/storage) -"pDQ" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/fore) -"pDR" = ( -/obj/effect/decal/cleanable/blood/tracks, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"pDS" = ( -/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/library) -"pDW" = ( -/turf/open/floor/plating, -/area/mine/laborcamp/security) -"pEf" = ( -/obj/item/trash/syndi_cakes, -/obj/effect/turf_decal/stripes/red/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"pEX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"pFi" = ( -/obj/machinery/light/directional/east, -/obj/structure/table, -/obj/item/toner, -/obj/item/hand_labeler, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/storage/box, -/obj/item/storage/box, -/obj/item/storage/box, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"pFl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"pFm" = ( -/obj/machinery/smartfridge, -/turf/closed/wall, -/area/station/service/bar) -"pFD" = ( -/obj/structure/cable, -/obj/machinery/light/small/directional/south, -/obj/structure/sign/warning/gas_mask/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"pFH" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) -"pFN" = ( -/obj/structure/chair/stool/directional/east, -/obj/effect/spawner/random/trash/mess, -/obj/machinery/light/small/directional/north, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"pFW" = ( -/obj/effect/turf_decal/siding/wood, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"pFZ" = ( -/obj/item/target/syndicate, -/obj/effect/decal/cleanable/dirt, -/obj/structure/training_machine, -/obj/effect/turf_decal/bot_red, -/turf/open/floor/iron/dark/textured, -/area/station/security/range) -"pGf" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"pGn" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"pGo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/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/engineering/atmos) -"pGp" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Research Break Room" - }, -/obj/machinery/door/firedoor, -/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/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron/dark, -/area/station/science/breakroom) -"pGt" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"pGM" = ( -/obj/structure/girder, -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"pGQ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/turf/closed/wall, -/area/station/engineering/atmos) -"pGS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/medical/virology) -"pGW" = ( -/obj/machinery/camera/directional/west{ - c_tag = "MiniSat External SouthEast"; - network = list("minisat"); - start_active = 1 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"pHd" = ( -/obj/machinery/door/airlock/engineering{ - name = "Starboard Bow Solar Access" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"pHD" = ( -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"pHQ" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/glass{ - name = "Mining Station Bridge" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/mine/living_quarters) -"pHR" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"pHS" = ( -/obj/structure/rack, -/obj/item/reagent_containers/glass/bottle/fluorine{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/iodine{ - pixel_x = 1 - }, -/obj/structure/sign/warning/chem_diamond/directional/west, -/turf/open/floor/iron/dark/textured_edge{ - dir = 8 - }, -/area/station/medical/medbay/central) -"pHX" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"pIj" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"pIk" = ( -/obj/machinery/light/directional/west, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"pIm" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Atmos to Loop" - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"pIt" = ( -/obj/structure/sign/warning/no_smoking/directional/east, -/turf/open/floor/iron/white/side{ - dir = 10 - }, -/area/station/science/research) -"pIz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating/elevatorshaft, -/area/mine/storage) -"pIF" = ( -/obj/structure/rack, -/obj/item/lighter, -/obj/item/clothing/glasses/meson{ - pixel_y = 4 - }, -/obj/item/stock_parts/cell/high, -/obj/item/reagent_containers/pill/patch/aiuri, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"pIQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/hallway/secondary/service) -"pIX" = ( -/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, -/area/station/commons/vacant_room/office) -"pIZ" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/item/radio/intercom/prison/directional/west, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/prison) -"pJc" = ( -/obj/machinery/component_printer, -/obj/machinery/camera/directional/west{ - c_tag = "Circuits Lab"; - network = list("ss13","rd") - }, -/turf/open/floor/iron/white/side{ - dir = 4 - }, -/area/station/science/explab) -"pJm" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"pJu" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/execution/transfer) -"pJv" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/item/radio/off, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) -"pJy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Cooling Loop Bypass" - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"pJC" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"pJN" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Personnel" - }, -/obj/structure/cable, -/obj/effect/landmark/navigate_destination, -/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/command/hop, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"pJQ" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/turf/open/floor/plating, -/area/station/engineering/atmos/storage/gas) -"pJV" = ( -/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) -"pJX" = ( -/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/medbay/aft) -"pJY" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red, -/obj/machinery/recharger, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"pKe" = ( -/obj/machinery/light/cold/directional/west, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plating/snowed/coldroom, -/area/station/service/kitchen/coldroom) -"pKf" = ( -/obj/structure/table, -/obj/item/radio/intercom/directional/north, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/paper/guides/jobs/medical/morgue{ - pixel_x = 4 - }, -/obj/item/pen, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"pKs" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"pKu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"pKw" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/chief_medical_officer, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"pKJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"pKO" = ( -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"pKR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"pKV" = ( -/obj/effect/turf_decal/tile/brown{ - 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, -/area/station/hallway/primary/central) -"pKW" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"pKY" = ( -/obj/machinery/door/poddoor/incinerator_atmos_aux, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"pLe" = ( -/obj/structure/sign/warning/xeno_mining, -/turf/closed/wall/ice, -/area/icemoon/surface/outdoors/nospawn) -"pLt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"pLv" = ( -/obj/structure/chair/stool/directional/south, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"pLw" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/button/door/directional/south{ - id = "AuxToilet3"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/obj/effect/spawner/random/trash/graffiti{ - pixel_x = -32; - spawn_loot_chance = 50 - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/locker) -"pLF" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron, -/area/service/salon) -"pLO" = ( -/obj/machinery/status_display/evac/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"pLT" = ( -/obj/machinery/space_heater, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/warden) -"pMe" = ( -/obj/structure/sign/warning/electric_shock/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/plating, -/area/station/maintenance/port/fore) -"pMg" = ( -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock"; - req_access = list("brig") - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/processing) -"pMj" = ( -/obj/structure/sign/warning/electric_shock/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Security - Brig Lower Hallway North"; - network = list("ss13","prison") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"pMq" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Atmospherics Project Room West" - }, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark_green/arrow_ccw, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"pMv" = ( -/turf/closed/wall, -/area/station/commons/storage/emergency/port) -"pMC" = ( -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"pMF" = ( -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"pMY" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"pNj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"pNm" = ( -/turf/closed/wall/r_wall, -/area/station/security/execution/education) -"pNp" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/item/stack/package_wrap{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/machinery/duct, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/service/bar) -"pNq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"pNs" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/command/meeting_room) -"pNy" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/machinery/camera{ - c_tag = "Virology Module South"; - dir = 4; - network = list("ss13","medbay") - }, -/obj/item/clothing/mask/breath/medical, -/obj/item/clothing/mask/breath/medical, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"pNB" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"pND" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/white/side{ - dir = 4 - }, -/area/station/science/genetics) -"pNO" = ( -/obj/machinery/duct, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/dark/smooth_half{ - dir = 1 - }, -/area/station/engineering/lobby) -"pNV" = ( -/obj/effect/turf_decal/siding/white, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/white/smooth_large, -/area/station/service/kitchen/diner) -"pNZ" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/disposalpipe/segment, -/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/unres, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"pOf" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/scanning_module, -/obj/item/stock_parts/scanning_module, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/white/side{ - dir = 10 - }, -/area/station/science/lab) -"pOk" = ( -/obj/structure/cable, -/turf/closed/wall/r_wall, -/area/station/security/prison/safe) -"pOo" = ( -/obj/machinery/airalarm/directional/north, -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"pOy" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"pOB" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"pOC" = ( -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"pOJ" = ( -/obj/structure/displaycase/forsale/kitchen{ - pixel_y = 8 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/station/service/bar) -"pOL" = ( -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"pOT" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/machinery/firealarm/directional/west, -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/rods/fifty, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"pOU" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"pOV" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hazardvest, -/obj/item/wrench, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"pPd" = ( -/obj/structure/chair/stool/directional/north, -/turf/open/floor/iron, -/area/station/command/gateway) -"pPy" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"pPz" = ( -/obj/docking_port/stationary{ - dheight = 1; - dir = 8; - dwidth = 12; - height = 17; - id = "syndicate_ne"; - name = "northeast of station"; - width = 23 - }, -/turf/open/genturf, -/area/icemoon/surface/outdoors/unexplored/rivers/no_monsters) -"pPB" = ( -/obj/machinery/seed_extractor, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"pPD" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/firealarm/directional/east, -/obj/structure/closet/l3closet/virology, -/obj/machinery/camera{ - c_tag = "Virology Airlock"; - dir = 9; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"pPK" = ( -/obj/structure/stairs/east, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) -"pPN" = ( -/obj/machinery/porta_turret/ai{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"pPO" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"pPR" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"pQa" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"pQo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/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) -"pQp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/textured, -/area/station/medical/medbay/central) -"pQs" = ( -/obj/machinery/space_heater, -/obj/effect/spawner/random/trash/graffiti{ - pixel_y = -32; - spawn_loot_chance = 50 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"pQv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/large, -/area/station/engineering/storage_shared) -"pQw" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/pen, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"pQG" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"pQH" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/command{ - name = "Command Tool Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/eva, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"pQK" = ( -/obj/structure/closet/secure_closet/evidence, -/turf/open/floor/iron/dark/textured_edge{ - dir = 1 - }, -/area/station/security/brig) -"pQL" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"pRa" = ( -/turf/closed/wall, -/area/station/science/ordnance/bomb) -"pRj" = ( -/turf/closed/wall, -/area/station/maintenance/port/aft) -"pRp" = ( -/obj/machinery/telecomms/bus/preset_three, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"pRx" = ( -/obj/machinery/vending/hydronutrients, -/obj/effect/turf_decal/tile/green/half{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/service/hydroponics) -"pRB" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Security - Lower Brig Hallway" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/textured, -/area/station/security/brig) -"pRG" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/spawner/random/entertainment/arcade{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/cafeteria, -/area/station/hallway/secondary/exit/departure_lounge) -"pRI" = ( -/obj/structure/table/glass, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/command/heads_quarters/cmo) -"pRU" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"pRZ" = ( -/obj/machinery/shower{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/freezer, -/area/mine/laborcamp) -"pSz" = ( -/turf/open/openspace, -/area/station/maintenance/starboard/upper) -"pST" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/locker) -"pTd" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "briggate"; - name = "Security Shutters"; - dir = 4 - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/door/window/brigdoor/right/directional/west{ - name = "Brig Reception"; - req_access = list("security") - }, -/obj/machinery/door/window/left/directional/east{ - name = "Brig Reception" - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/auxiliary) -"pTh" = ( -/obj/structure/table, -/obj/machinery/light/directional/east, -/obj/effect/spawner/round_default_module, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"pTB" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"pTJ" = ( -/obj/effect/turf_decal/trimline/green/filled/warning, -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"pTN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark/textured, -/area/station/security/warden) -"pTU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"pTW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/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/starboard/aft) -"pTY" = ( -/turf/open/floor/iron/white/side, -/area/station/science/explab) -"pUn" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/white, -/area/station/science/research) -"pUy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/genetics) -"pUI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"pUK" = ( -/obj/item/grenade/barrier{ - pixel_x = 4 - }, -/obj/item/grenade/barrier, -/obj/item/grenade/barrier{ - pixel_x = -4 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/red/half{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) -"pUN" = ( -/obj/structure/chair/stool/directional/south, -/obj/machinery/flasher/directional/west{ - id = "GulagCell 2" - }, -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/mine/laborcamp) -"pUQ" = ( -/obj/structure/bed/dogbed/ian, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/mob/living/simple_animal/pet/dog/corgi/ian{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"pUX" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"pVi" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"pVl" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"pVq" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - 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, -/area/station/command/bridge) -"pVv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"pVH" = ( -/turf/closed/wall/mineral/wood, -/area/station/maintenance/aft/lesser) -"pVK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/main) -"pVN" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"pVQ" = ( -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"pVV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "robo2" - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"pVX" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark/textured, -/area/station/security/office) -"pXe" = ( -/obj/item/stack/sheet/animalhide/monkey, -/obj/effect/decal/cleanable/blood, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"pXj" = ( -/obj/machinery/power/shieldwallgen/xenobiologyaccess, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"pXk" = ( -/obj/machinery/door/window/brigdoor/right/directional/north{ - name = "Flash Storage"; - req_access = list("armory") - }, -/obj/machinery/recharge_station, -/turf/open/floor/iron/smooth, -/area/station/security/brig/upper) -"pXv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"pXA" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"pXB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"pXE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/textured, -/area/mine/mechbay) -"pXH" = ( -/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/port/greater) -"pXR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"pXY" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"pXZ" = ( -/obj/structure/chair/stool/directional/north, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"pYa" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"pYf" = ( -/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 = 5 - }, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating/snowed/icemoon, -/area/mine/mechbay) -"pYg" = ( -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"pYl" = ( -/obj/machinery/mineral/equipment_vendor, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock) -"pYx" = ( -/obj/machinery/camera/motion/directional/south{ - c_tag = "Vault"; - network = list("vault") - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"pYz" = ( -/obj/structure/railing/corner, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/service/chapel) -"pYB" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"pYF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/service/janitor) -"pYI" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"pYM" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"pYT" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron, -/area/station/cargo/storage) -"pZh" = ( -/obj/effect/spawner/random/vending/snackvend, -/turf/open/floor/wood, -/area/station/command/meeting_room) -"pZm" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"pZn" = ( -/obj/effect/turf_decal/siding/yellow/corner, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"pZs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"pZD" = ( -/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, -/area/mine/eva) -"pZG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/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, -/area/station/engineering/storage) -"pZY" = ( -/mob/living/simple_animal/hostile/asteroid/polarbear{ - move_force = 999; - name = "Huey" - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"qab" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/plasma_input{ - dir = 8 - }, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"qam" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/plating, -/area/station/commons/storage/mining) -"qau" = ( -/obj/structure/fence{ - dir = 4 - }, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"qaA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"qaE" = ( -/obj/effect/turf_decal/tile/purple/half, -/obj/effect/turf_decal/arrows/red{ - dir = 8 - }, -/turf/open/floor/iron/half, -/area/station/hallway/primary/starboard) -"qaF" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/red/end{ - dir = 4 - }, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/main) -"qaL" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/science/ordnance) -"qaR" = ( -/obj/structure/closet/wardrobe/mixed, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"qbb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"qbd" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/dark, -/obj/effect/turf_decal/tile/dark{ - dir = 8 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"qbh" = ( -/obj/structure/chair/stool/directional/south, -/obj/machinery/camera/directional/west{ - c_tag = "Aft Starboard Solar Control" - }, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"qbl" = ( -/obj/machinery/vending/sustenance, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/mine/laborcamp) -"qbq" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio11"; - name = "Xenobio Pen 11 Blast Door" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"qbs" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron, -/area/station/commons/dorms) -"qbF" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/commons/dorms) -"qbI" = ( -/obj/structure/table/glass, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/siding/white{ - dir = 5 - }, -/obj/item/cultivator, -/obj/item/plant_analyzer, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"qbO" = ( -/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/aft) -"qbW" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/three, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"qca" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"qci" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/gas_mask, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"qck" = ( -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"qcr" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/chair/stool/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"qcu" = ( -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"qcE" = ( -/obj/structure/ladder, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"qcL" = ( -/obj/effect/turf_decal/siding/yellow/end{ - dir = 8 - }, -/obj/machinery/plumbing/sender, -/turf/open/floor/plating, -/area/station/medical/chemistry) -"qcZ" = ( -/obj/machinery/vending/modularpc, -/turf/open/floor/iron, -/area/station/commons/locker) -"qdd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/tile/neutral, -/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/commons/fitness) -"qde" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high/empty, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) -"qdl" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/warning{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 9 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/range) -"qdo" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"qdx" = ( -/obj/structure/stairs/north{ - dir = 4 - }, -/turf/open/floor/iron/stairs/old{ - dir = 4 - }, -/area/station/engineering/atmos/mix) -"qea" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/item/multitool, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"qeh" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/station/security/checkpoint/engineering) -"qeu" = ( -/obj/machinery/space_heater, -/obj/machinery/light/small/directional/north, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/fore/lesser) -"qeA" = ( -/obj/structure/sign/warning/secure_area/directional/west, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/vending/cigarette, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"qeJ" = ( -/obj/structure/chair/plastic{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"qeL" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"qeO" = ( -/obj/structure/cable, -/obj/item/radio/intercom/prison/directional/east, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark/textured_edge{ - dir = 8 - }, -/area/station/security/checkpoint/auxiliary) -"qeP" = ( -/obj/structure/table, -/obj/item/flashlight/lantern, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"qeR" = ( -/obj/structure/chair/pew{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/chapel{ - dir = 8 - }, -/area/station/service/chapel) -"qfe" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/item/book/manual/chef_recipes, -/obj/item/holosign_creator/robot_seat/restaurant, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"qfh" = ( -/turf/open/floor/iron/recharge_floor, -/area/station/science/robotics/mechbay) -"qfs" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"qfu" = ( -/obj/structure/closet/crate/wooden/toy, -/obj/machinery/camera/directional/south{ - c_tag = "Service-Backstage" - }, -/obj/item/staff/broom, -/turf/open/floor/wood/tile, -/area/station/service/theater) -"qfy" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"qfE" = ( -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"qgn" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Departure Lounge Holding Area"; - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"qgN" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/fitness) -"qgO" = ( -/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/security/processing) -"qhd" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/mob/living/simple_animal/bot/cleanbot, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/service) -"qhy" = ( -/obj/machinery/firealarm/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"qhL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"qhN" = ( -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"qhO" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"qhS" = ( -/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/catwalk_floor/iron_dark, -/area/station/security/prison) -"qia" = ( -/obj/machinery/button/door/directional/west{ - id = "gene_shutters"; - name = "Genetics Privacy Shutters"; - pixel_y = -4; - req_access = list("genetics") - }, -/obj/machinery/light_switch/directional/west{ - pixel_x = -34; - pixel_y = 7 - }, -/obj/machinery/button/door/directional/west{ - id = "gene_desk_shutters"; - name = "Genetics Desk Shutters"; - pixel_y = 6; - req_access = list("genetics") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/white, -/area/station/science/genetics) -"qig" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/meter/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"qis" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"qiu" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Conference Room" - }, -/turf/open/floor/wood, -/area/station/command/meeting_room) -"qiJ" = ( -/obj/structure/closet/secure_closet/freezer/kitchen/maintenance, -/obj/effect/spawner/random/contraband/prison, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/mess) -"qiN" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"qjb" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 10 - }, -/obj/effect/turf_decal/siding/wideplating/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"qjj" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/hallway/secondary/entry) -"qjx" = ( -/obj/structure/cable, -/obj/machinery/holopad/secure, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"qjF" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"qjK" = ( -/obj/effect/turf_decal/siding/white, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white/smooth_large, -/area/station/service/kitchen/diner) -"qjO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"qjQ" = ( -/turf/closed/wall, -/area/station/cargo/miningdock) -"qjV" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/turf/open/floor/plating, -/area/mine/eva) -"qjX" = ( -/obj/structure/table, -/obj/structure/table, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/machinery/processor{ - pixel_y = 6 - }, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"qkc" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/trunk/multiz/down, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/aft) -"qku" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/iron/grimy, -/area/station/commons/vacant_room/office) -"qkw" = ( -/obj/structure/disposalpipe/segment, -/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) -"qkB" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"qkG" = ( -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"qkH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white/side{ - dir = 8 - }, -/area/station/science/explab) -"qkL" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/lockers) -"qkP" = ( -/obj/item/trash/semki, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"qkT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"qlk" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Mining Mech Bay External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "mining-aux-mechbay-external" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron/large, -/area/mine/mechbay) -"qll" = ( -/obj/structure/table, -/obj/effect/spawner/random/maintenance/two, -/obj/item/wirecutters, -/turf/open/floor/plating, -/area/station/construction) -"qlw" = ( -/obj/machinery/disposal/bin, -/obj/item/radio/intercom/prison/directional/north, -/obj/machinery/camera/autoname/directional/north{ - c_tag = "Security - Warden's Office" - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"qlB" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/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/white, -/area/station/medical/medbay/lobby) -"qlG" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/mineral/plasma, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/science/explab) -"qlU" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"qmi" = ( -/turf/open/floor/iron, -/area/station/cargo/lobby) -"qmt" = ( -/turf/closed/wall, -/area/mine/eva/lower) -"qmK" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"qmT" = ( -/obj/structure/bed{ - dir = 4 - }, -/obj/item/bedsheet/brown{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "miningdorm_B"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_y = 23; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet/stellar, -/area/mine/production) -"qmU" = ( -/obj/machinery/duct, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/turf/open/floor/plating, -/area/station/medical/virology) -"qmV" = ( -/obj/structure/sign/warning/gas_mask, -/turf/closed/wall/r_wall, -/area/station/hallway/secondary/exit/departure_lounge) -"qna" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Security - Permabrig Chapel"; - network = list("ss13","prison") - }, -/turf/open/floor/carpet, -/area/station/security/prison/rec) -"qnd" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/rack, -/obj/item/storage/crayons, -/turf/open/floor/iron, -/area/station/security/processing) -"qnf" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"qnj" = ( -/turf/closed/wall, -/area/station/commons/locker) -"qno" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness) -"qnt" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"qnv" = ( -/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) -"qnC" = ( -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/ce) -"qnE" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/commons/fitness) -"qnO" = ( -/obj/machinery/atmospherics/components/trinary/mixer/airmix{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"qnU" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"qob" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"qoi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"qok" = ( -/obj/structure/displaycase/trophy, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/wood/parquet, -/area/station/service/library) -"qoz" = ( -/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/starboard/fore) -"qoM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"qoY" = ( -/obj/effect/spawner/random/structure/crate_abandoned, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"qoZ" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/white/arrow_ccw, -/obj/effect/turf_decal/trimline/white/arrow_cw{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"qpd" = ( -/obj/effect/landmark/blobstart, -/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/catwalk_floor/iron_smooth, -/area/station/maintenance/starboard/fore) -"qpe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/commons/locker) -"qpr" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/dark_blue/line, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"qpw" = ( -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"qpy" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"qpB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"qpD" = ( -/obj/effect/spawner/random/trash/hobo_squat, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"qpH" = ( -/obj/structure/fence/door, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"qpP" = ( -/obj/structure/chair/comfy/black, -/obj/effect/landmark/start/assistant, -/turf/open/floor/wood, -/area/station/service/library) -"qpR" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/space_hut/cabin) -"qpS" = ( -/obj/machinery/computer/security/telescreen/entertainment/directional/south, -/obj/machinery/recharge_station, -/turf/open/floor/wood, -/area/station/command/meeting_room) -"qqh" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8; - name = "Exfiltrate Port" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"qqn" = ( -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/iron/smooth, -/area/mine/eva/lower) -"qqx" = ( -/obj/structure/sign/painting/library{ - pixel_y = 32 - }, -/obj/item/kirbyplants{ - icon_state = "applebush" - }, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"qqz" = ( -/obj/machinery/door/airlock/security{ - name = "Security Checkpoint" - }, -/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/general, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/auxiliary) -"qqB" = ( -/obj/machinery/button/door/directional/north{ - id = "maint3"; - name = "Blast Door Control C" - }, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"qqC" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"qqM" = ( -/obj/effect/landmark/start/head_of_security, -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/security/office) -"qqY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron, -/area/service/salon) -"qrc" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - 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, -/area/station/hallway/primary/central) -"qrg" = ( -/obj/item/bodypart/head, -/obj/effect/decal/cleanable/blood, -/obj/item/bodypart/l_arm{ - pixel_x = -9; - pixel_y = -9 - }, -/obj/item/bodypart/l_leg, -/obj/item/bodypart/r_arm, -/obj/item/bodypart/r_leg{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/item/bodypart/chest, -/obj/item/organ/internal/heart, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"qrj" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/fluff/tram_rail, -/obj/structure/fluff/tram_rail{ - pixel_y = 17 - }, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"qrm" = ( -/obj/structure/sign/warning/gas_mask, -/turf/closed/wall/r_wall, -/area/station/engineering/storage_shared) -"qrq" = ( -/obj/structure/toilet/greyscale{ - cistern = 1; - dir = 1 - }, -/obj/effect/spawner/random/entertainment/cigar, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/toilet) -"qrr" = ( -/obj/effect/landmark/blobstart, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"qrB" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "QM #4" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"qrY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/requests_console/auto_name/directional/west, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"qsd" = ( -/obj/structure/sign/warning/secure_area/directional/west, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"qsk" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red, -/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/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"qsn" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/flora/bush/sunny/style_random, -/turf/open/floor/grass, -/area/station/security/warden) -"qsu" = ( -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/turf/open/floor/iron/white/side{ - dir = 5 - }, -/area/station/science/lab) -"qsG" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/sign/warning/secure_area/directional/west, -/obj/structure/closet/emcloset, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"qsQ" = ( -/obj/machinery/stasis, -/obj/machinery/defibrillator_mount/directional/north, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/large, -/area/station/medical/treatment_center) -"qsR" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/table/reinforced/rglass, -/obj/structure/window, -/obj/item/hairbrush, -/obj/item/lipstick/random, -/turf/open/floor/iron, -/area/service/salon) -"qta" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"qtj" = ( -/turf/closed/wall, -/area/station/engineering/storage) -"qtw" = ( -/obj/machinery/door/airlock/security{ - name = "Prison Forestry" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/station/security/prison/garden) -"qtz" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 4; - pixel_y = 10 - }, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"qtS" = ( -/obj/machinery/light/directional/north, -/turf/open/misc/asteroid/snow/icemoon, -/area/mine/storage) -"qtY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/greater) -"qum" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor{ - name = "Armory Desk"; - req_access = list("armory") - }, -/obj/machinery/door/window/left/directional/north{ - name = "Armory Desk" - }, -/turf/open/floor/iron, -/area/station/ai_monitored/security/armory/upper) -"quB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"quK" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Cargo Escape Airlock" - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"quY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/siding/brown, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"quZ" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/landmark/start/botanist, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"qvk" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"qvt" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"qvI" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L3" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"qvQ" = ( -/obj/structure/closet/secure_closet/atmospherics, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"qvW" = ( -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/t_scanner, -/obj/item/t_scanner, -/obj/item/t_scanner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -8 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -8 - }, -/obj/item/clothing/mask/breath{ - pixel_x = 4 - }, -/obj/item/clothing/mask/breath{ - pixel_x = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage/gas) -"qvZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/trimline/yellow/filled/end{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/textured, -/area/station/medical/medbay/central) -"qwa" = ( -/obj/machinery/door/window/brigdoor/right/directional/west{ - name = "Shooting Range" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/red/line{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/range) -"qwf" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"qwB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/wood, -/area/station/service/library) -"qwF" = ( -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"qwJ" = ( -/obj/machinery/computer/rdconsole{ - dir = 1 - }, -/obj/machinery/button/door/directional/south{ - id = "Biohazard"; - name = "Biohazard Shutter Control"; - pixel_x = -6; - req_access = list("research") - }, -/obj/machinery/button/door/directional/south{ - id = "rnd2"; - name = "Research Lab Shutter Control"; - pixel_x = 6; - req_access = list("research") - }, -/obj/machinery/button/door/directional/south{ - id = "xenobiomain"; - name = "Xenobiology Containment Blast Door"; - pixel_x = -6; - pixel_y = -34; - req_access = list("xenobiology") - }, -/obj/machinery/button/door/directional/south{ - id = "misclab"; - name = "Test Chamber Blast Doors"; - pixel_x = 6; - pixel_y = -34; - req_access = list("xenobiology") - }, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"qwN" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Research Division North"; - network = list("ss13","rd") - }, -/turf/open/floor/iron/white/side{ - dir = 9 - }, -/area/station/science/research) -"qwO" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"qwP" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/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/fitness) -"qxa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/chair/stool/directional/south, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"qxo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"qxp" = ( -/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) -"qxv" = ( -/obj/machinery/disposal/bin{ - desc = "A pneumatic waste disposal unit. This one leads to the frozen exterior of the moon."; - name = "deathsposal unit" - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/sign/warning/deathsposal/directional/north, -/obj/structure/sign/warning/fire/directional/west, -/obj/effect/turf_decal/tile/green/full, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/virology) -"qxy" = ( -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 4 - }, -/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/engineering/lobby) -"qxQ" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"qxW" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/rack, -/obj/item/storage/briefcase, -/obj/item/paicard, -/turf/open/floor/iron, -/area/station/commons/locker) -"qyf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/obj/machinery/holopad, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"qyn" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/server) -"qyI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"qyR" = ( -/turf/open/openspace, -/area/station/medical/treatment_center) -"qyU" = ( -/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, -/area/station/hallway/secondary/entry) -"qyV" = ( -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"qzq" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall/r_wall, -/area/mine/mechbay) -"qzu" = ( -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"qzF" = ( -/obj/item/poster/random_contraband, -/obj/effect/spawner/random/maintenance/two, -/obj/structure/rack, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"qzG" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Labor Camp External North"; - network = list("labor") - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/mine/laborcamp) -"qzM" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck/cas{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/toy/cards/deck/cas/black{ - pixel_x = -7 - }, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"qzN" = ( -/obj/structure/closet, -/obj/effect/spawner/random/clothing/costume, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"qzR" = ( -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"qzT" = ( -/obj/structure/closet/firecloset, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"qzV" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/hallway/primary/central/fore) -"qAf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"qAz" = ( -/obj/structure/disposalpipe/trunk/multiz{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"qAI" = ( -/obj/effect/decal/cleanable/food/flour, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"qAQ" = ( -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"qAT" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/dark_green/arrow_ccw, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"qAV" = ( -/obj/machinery/telecomms/server/presets/supply, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"qBd" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm3"; - name = "Dorm 3" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/commons/dorms) -"qBj" = ( -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lab) -"qBt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hop) -"qBT" = ( -/obj/structure/sign/warning/electric_shock/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/plating, -/area/station/maintenance/fore/greater) -"qCl" = ( -/obj/effect/spawner/random/trash/mess, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"qCn" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"qCz" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/obj/machinery/chem_dispenser/drinks/beer{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/obj/structure/table/wood, -/obj/structure/disposalpipe/segment, -/turf/open/floor/stone, -/area/station/service/bar) -"qCA" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/station/service/library) -"qCB" = ( -/obj/machinery/atmospherics/components/unary/passive_vent{ - dir = 1 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"qCE" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/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, -/area/station/hallway/secondary/entry) -"qCF" = ( -/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/starboard/upper) -"qCJ" = ( -/obj/structure/sign/warning/directional/north, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/service/chapel) -"qCP" = ( -/obj/machinery/airalarm/directional/west, -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) -"qCU" = ( -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) -"qCY" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "mining-aux-mechbay-external" - }, -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Mining Mech Bay External Airlock"; - opacity = 0 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/sign/warning/gas_mask/directional/south{ - desc = "A sign that warns of dangerous gasses in the air, instructing you to wear internals." - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron/large, -/area/mine/mechbay) -"qDo" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"qDv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"qDy" = ( -/obj/machinery/light/directional/south, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) -"qDF" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/chapel) -"qDG" = ( -/obj/structure/punching_bag, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/workout) -"qDI" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"qEa" = ( -/obj/structure/cable/layer3, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"qEf" = ( -/obj/structure/tank_holder/extinguisher{ - pixel_y = 8 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"qEm" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"qEu" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/structure/tank_holder/oxygen/yellow, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"qEz" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/dark, -/area/station/science/breakroom) -"qEC" = ( -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/obj/effect/turf_decal/siding/white{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/service/bar) -"qEE" = ( -/obj/item/trash/cheesie, -/turf/open/floor/plating, -/area/station/maintenance/fore/greater) -"qEJ" = ( -/turf/closed/wall, -/area/station/service/chapel/office) -"qEM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"qEV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"qEX" = ( -/obj/machinery/vending/clothing, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"qEZ" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/research{ - name = "Research Division Access" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron/white, -/area/station/science/research) -"qFn" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Cabins" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, -/turf/open/floor/iron/dark/textured_half, -/area/mine/production) -"qFp" = ( -/obj/item/radio/intercom/directional/west, -/obj/structure/rack, -/obj/item/storage/box/lights/tubes, -/obj/item/crowbar/red, -/turf/open/floor/glass/reinforced, -/area/station/science/xenobiology) -"qFr" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/fore/greater) -"qFt" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/science/explab) -"qFu" = ( -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/computer/station_alert{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"qFC" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"qFU" = ( -/obj/structure/cable/multilayer/multiz, -/obj/structure/window/reinforced/spawner, -/turf/open/floor/plating/snowed/icemoon, -/area/station/maintenance/port/aft) -"qFX" = ( -/obj/machinery/door/airlock{ - name = "Custodial Closet" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/navigate_destination, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/service/janitor, -/turf/open/floor/iron, -/area/station/service/janitor) -"qGe" = ( -/obj/structure/table, -/obj/item/scalpel{ - pixel_x = 2; - pixel_y = 6 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"qGg" = ( -/obj/structure/rack, -/obj/item/pickaxe, -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/item/gps/mining, -/obj/item/gps/mining, -/turf/open/floor/iron/smooth, -/area/mine/eva) -"qGi" = ( -/obj/machinery/computer/security/telescreen{ - dir = 8; - name = "Xenobio Monitor"; - network = list("xeno"); - pixel_x = 26 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"qGj" = ( -/obj/machinery/airalarm/directional/north, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"qGQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/command/heads_quarters/ce) -"qGV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"qHg" = ( -/obj/structure/transit_tube/curved/flipped{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"qHl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"qHn" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Research Break Room"; - network = list("ss13","rd") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/random/entertainment/arcade{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/dark, -/area/station/science/breakroom) -"qHt" = ( -/obj/machinery/light/directional/east, -/obj/machinery/status_display/evac/directional/east, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"qHD" = ( -/obj/machinery/computer/prisoner/management, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"qIa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/holopad, -/turf/open/floor/wood/parquet, -/area/station/service/bar/atrium) -"qIf" = ( -/obj/machinery/power/smes, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"qIo" = ( -/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/effect/turf_decal/tile/green/half/contrasted{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/obj/effect/spawner/random/food_or_drink/seed{ - spawn_all_loot = 1; - spawn_random_offset = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"qIC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"qII" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/duct, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"qIU" = ( -/turf/open/floor/iron, -/area/station/commons/dorms) -"qJh" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"qJu" = ( -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"qJv" = ( -/obj/effect/turf_decal/siding/wood, -/obj/item/cigbutt, -/turf/open/floor/wood/large, -/area/mine/eva/lower) -"qJJ" = ( -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"qJP" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"qJV" = ( -/obj/structure/sign/directions/security{ - dir = 1; - pixel_x = 32; - pixel_y = 40 - }, -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_x = 32; - pixel_y = 32 - }, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_x = 32; - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"qJY" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Permabrig 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/security/brig, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"qKi" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/chair/stool/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/binary/pump/on/general/visible/layer4{ - dir = 8; - name = "Air Out" - }, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"qKq" = ( -/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/general, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"qKt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/tank, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"qKx" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/atmos/storage/gas) -"qKz" = ( -/obj/structure/closet/crate, -/turf/open/floor/iron, -/area/station/command/teleporter) -"qKB" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/icemoon, -/area/station/science/ordnance/bomb) -"qKF" = ( -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/item/restraints/handcuffs, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"qKH" = ( -/obj/structure/sign/warning/cold_temp/directional/north, -/obj/effect/spawner/structure/window/hollow/reinforced/end, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"qKK" = ( -/obj/machinery/computer/atmos_control/nitrogen_tank{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"qKQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "ceprivacy"; - name = "Privacy Shutter" - }, -/turf/open/floor/plating, -/area/station/command/heads_quarters/ce) -"qKS" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 1"; - name = "Cell 1 Locker" - }, -/obj/structure/cable, -/turf/open/floor/iron/smooth, -/area/station/security/brig) -"qKX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"qLf" = ( -/obj/structure/sign/painting/library{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/library) -"qLg" = ( -/obj/effect/spawner/random/contraband/narcotics, -/obj/structure/sign/poster/contraband/syndiemoth{ - pixel_x = -32 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"qLm" = ( -/obj/machinery/suit_storage_unit/mining, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/mine/eva) -"qLo" = ( -/obj/machinery/light/directional/east, -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/medical/treatment_center) -"qLw" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"qLB" = ( -/obj/structure/filingcabinet/employment, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"qLD" = ( -/obj/machinery/firealarm/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/textured, -/area/station/security/brig) -"qLF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"qLG" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle, -/turf/open/floor/plating, -/area/station/service/lawoffice) -"qLN" = ( -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "Test Chamber Blast Door" - }, -/obj/machinery/door/window/left/directional/south{ - dir = 8; - name = "Test Chamber"; - req_access = list("xenobiology") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"qLU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 1 - }, -/obj/machinery/washing_machine, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"qLY" = ( -/turf/closed/wall/r_wall, -/area/station/science/xenobiology) -"qMe" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/machinery/door/airlock{ - name = "Theater Stage" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/theatre, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/service/theater) -"qMg" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"qMm" = ( -/obj/structure/bookcase/random/adult, -/turf/open/floor/wood, -/area/station/service/library) -"qMn" = ( -/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/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/work) -"qMo" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/commons/dorms/laundry) -"qMu" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/sign/warning/cold_temp{ - pixel_x = -2; - pixel_y = -32 - }, -/turf/open/floor/iron/dark/side, -/area/mine/eva/lower) -"qMv" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/chemist, -/obj/machinery/button/door/directional/north{ - id = "pharmacy_shutters"; - name = "Pharmacy Shutter Controls"; - pixel_y = 55; - req_access = list("pharmacy") - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"qMz" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"qMA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/textured_large, -/area/station/security/brig) -"qMH" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) -"qMI" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"qMN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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) -"qMQ" = ( -/obj/machinery/porta_turret/ai{ - dir = 4; - installation = /obj/item/gun/energy/e_gun - }, -/obj/machinery/light/directional/east, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"qMT" = ( -/turf/closed/wall, -/area/station/commons/lounge) -"qMU" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Escape Pod Four"; - space_dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/engineering/storage_shared) -"qMY" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/security/processing) -"qNc" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Service Hall Exit" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "service-hall-external" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/general, -/turf/open/floor/iron/textured_half{ - dir = 1 - }, -/area/station/hallway/secondary/service) -"qNk" = ( -/turf/open/floor/plating, -/area/station/construction/mining/aux_base) -"qNn" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/item/clothing/glasses/welding{ - pixel_y = 4 - }, -/obj/item/disk/tech_disk{ - pixel_x = -2; - pixel_y = -6 - }, -/obj/item/disk/tech_disk{ - pixel_x = -4; - pixel_y = -7 - }, -/turf/open/floor/iron/white/side{ - dir = 10 - }, -/area/station/science/lab) -"qNu" = ( -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/freezer, -/area/station/maintenance/starboard/fore) -"qNv" = ( -/obj/machinery/telecomms/receiver/preset_right, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"qNx" = ( -/obj/structure/ladder, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral/diagonal_centre, -/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, -/turf/open/floor/iron/dark/diagonal, -/area/station/engineering/atmos/mix) -"qND" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/effect/landmark/start/orderly, -/obj/machinery/button/door/directional/east{ - id = "medsecprivacy"; - name = "Privacy Shutters Control"; - pixel_x = -32; - pixel_y = 56; - req_access = list("brig_entrance") - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/medical) -"qNE" = ( -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"qNL" = ( -/obj/effect/spawner/random/vending/colavend, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"qNV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/upper) -"qNX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Xenobiology 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/science/xenobio, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"qOa" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"qOk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/electrolyzer, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"qOl" = ( -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"qOy" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/service) -"qOH" = ( -/obj/effect/landmark/blobstart, -/obj/structure/lattice/catwalk, -/turf/open/openspace/icemoon, -/area/station/science/server) -"qOP" = ( -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/directional/south{ - c_tag = "Security - Vestibule" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/processing) -"qOV" = ( -/obj/structure/table, -/obj/item/storage/medkit/regular, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/mine/laborcamp) -"qOW" = ( -/obj/structure/sign/warning/biohazard/directional/west, -/turf/open/openspace, -/area/station/medical/medbay/aft) -"qPd" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/structure/cloth_pile, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/work) -"qPp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/smooth, -/area/station/security/holding_cell) -"qPu" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"qPw" = ( -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks/beer{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"qPE" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/misc/asteroid/snow/coldroom, -/area/station/service/kitchen/coldroom) -"qPI" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"qPL" = ( -/turf/closed/wall/r_wall, -/area/station/hallway/secondary/exit/departure_lounge) -"qPP" = ( -/obj/structure/industrial_lift, -/obj/structure/railing{ - dir = 9 - }, -/turf/open/openspace, -/area/station/commons/storage/mining) -"qPR" = ( -/obj/item/target, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/icemoon, -/area/station/science/ordnance/bomb) -"qPY" = ( -/obj/structure/bookcase/random/fiction, -/turf/open/floor/wood, -/area/station/maintenance/space_hut/cabin) -"qQa" = ( -/obj/machinery/mass_driver/ordnance{ - dir = 4 - }, -/obj/machinery/door/window/left/directional/north, -/turf/open/floor/iron, -/area/station/science/ordnance/testlab) -"qQf" = ( -/turf/closed/wall, -/area/station/maintenance/fore/lesser) -"qQo" = ( -/turf/closed/wall, -/area/station/cargo/office) -"qQp" = ( -/turf/closed/wall, -/area/station/medical/storage) -"qQq" = ( -/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) -"qQs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"qQx" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"qQC" = ( -/turf/open/floor/iron, -/area/station/commons/storage/mining) -"qQG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"qQK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/processing) -"qQN" = ( -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"qRh" = ( -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"qRk" = ( -/obj/item/chair/wood, -/turf/open/floor/carpet, -/area/station/maintenance/space_hut/cabin) -"qRr" = ( -/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/hallway/secondary/exit/departure_lounge) -"qRs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/command/meeting_room) -"qRH" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"qRO" = ( -/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, -/area/station/science/ordnance) -"qRT" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"qRU" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/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, -/area/station/hallway/primary/starboard) -"qSe" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"qSh" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror/directional/west, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"qSk" = ( -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"qSq" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/structure/railing{ - dir = 10 - }, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"qSu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/sepia, -/area/station/security/prison/rec) -"qSB" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"qSC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"qSE" = ( -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "Test Chamber Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"qSN" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"qST" = ( -/obj/structure/table/reinforced, -/obj/item/pipe_dispenser, -/obj/item/multitool, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"qSY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"qTe" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"qTs" = ( -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/mess) -"qTI" = ( -/obj/structure/cable, -/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/carpet/red, -/area/station/security/prison/work) -"qTJ" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"qTS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"qUa" = ( -/obj/structure/closet/crate/secure/freezer/pizza, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/smooth_large, -/area/station/cargo/warehouse) -"qUb" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Fore - Courtroom Hallway" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"qUe" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"qUu" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible/layer2, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"qUv" = ( -/obj/structure/rack, -/obj/item/wirecutters, -/obj/item/screwdriver, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"qUw" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/laborcamp) -"qUx" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"qUF" = ( -/obj/structure/sign/warning/cold_temp, -/turf/closed/wall, -/area/station/maintenance/fore/greater) -"qUL" = ( -/obj/structure/closet/emcloset, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"qUM" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/maintenance/aft/greater) -"qUS" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"qUY" = ( -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"qVc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - 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) -"qVo" = ( -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"qVz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/rack, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"qVJ" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light_switch/directional/south, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/command/heads_quarters/hos) -"qVM" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"qVZ" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"qWn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rnd"; - name = "Research Lab Shutters"; - dir = 1 - }, -/turf/open/floor/plating, -/area/station/hallway/primary/starboard) -"qWu" = ( -/obj/structure/disposalpipe/segment{ - 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, -/area/station/science/breakroom) -"qWy" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/red/end{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/main) -"qWD" = ( -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"qWJ" = ( -/obj/item/crowbar/large, -/obj/structure/rack, -/obj/item/flashlight, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"qWK" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/dark_blue/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"qWM" = ( -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/structure/table, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) -"qWO" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/hallway/secondary/exit/departure_lounge) -"qWT" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/iron/dark/side, -/area/mine/eva/lower) -"qWX" = ( -/obj/effect/landmark/start/assistant, -/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, -/area/station/service/hydroponics/garden) -"qWZ" = ( -/turf/closed/wall/r_wall, -/area/station/command/bridge) -"qXf" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/upper) -"qXk" = ( -/obj/machinery/light/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/computer/atmos_control/nocontrol/incinerator{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"qXp" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Research Division Access"; - network = list("ss13","rd") - }, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"qXz" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"qXO" = ( -/obj/structure/flora/bush/jungle/c/style_random, -/turf/open/floor/grass, -/area/station/medical/virology) -"qXW" = ( -/obj/structure/ladder, -/obj/structure/sign/warning/cold_temp/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/engineering/lobby) -"qXY" = ( -/obj/effect/spawner/random/trash, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"qYh" = ( -/obj/structure/chair/pew{ - dir = 1 - }, -/turf/open/floor/iron/chapel, -/area/station/service/chapel) -"qYo" = ( -/obj/effect/turf_decal/tile/bar/opposingcorners, -/obj/effect/turf_decal/siding/white/corner, -/turf/open/floor/iron, -/area/station/service/bar) -"qYw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "robo1" - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"qYz" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 1" - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"qYD" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"qYI" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"qYP" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"qYQ" = ( -/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) -"qYZ" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"qZh" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/folder/white, -/obj/item/pen, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"qZl" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"qZm" = ( -/obj/machinery/chem_heater/withbuffer, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/full, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/pharmacy) -"qZs" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 5 - }, -/obj/machinery/light/directional/north, -/obj/structure/bed{ - dir = 4 - }, -/obj/item/bedsheet/medical{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"qZB" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchencounter"; - name = "Kitchen Counter Shutters"; - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"qZL" = ( -/obj/structure/table, -/obj/item/paper, -/obj/item/pen, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/west{ - c_tag = "Labor Camp Cell 3"; - network = list("labor") - }, -/turf/open/floor/iron, -/area/mine/laborcamp) -"qZN" = ( -/turf/closed/wall/r_wall, -/area/station/science/ordnance/freezerchamber) -"qZT" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 1 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/textured, -/area/mine/mechbay) -"raf" = ( -/obj/machinery/power/shieldwallgen, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/command/teleporter) -"rai" = ( -/obj/structure/table, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -8; - pixel_y = 11 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -8; - pixel_y = 6 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = 8; - pixel_y = 10 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/hand_labeler{ - pixel_x = -4; - pixel_y = -6 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"ras" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" - }, -/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/general, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"rat" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) -"rax" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/processing) -"raA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/atmospheric_technician, -/obj/machinery/atmospherics/pipe/smart/simple/brown/visible{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"raE" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) -"raH" = ( -/obj/effect/spawner/random/structure/crate, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"raN" = ( -/obj/machinery/firealarm/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/command/teleporter) -"raT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"raY" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Security - Permabrig Observation South"; - network = list("ss13","prison") - }, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"rbb" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"rbf" = ( -/obj/structure/closet, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"rbm" = ( -/obj/machinery/camera/directional/east{ - c_tag = "MiniSat External NorthWest"; - network = list("minisat"); - start_active = 1 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/station/ai_monitored/turret_protected/aisat/maint) -"rbC" = ( -/turf/closed/wall, -/area/station/cargo/qm) -"rbD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"rbK" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/obj/item/radio/intercom/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/station/medical/break_room) -"rbT" = ( -/obj/structure/ore_box, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/laborcamp) -"rbV" = ( -/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/secondary/entry) -"rbY" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/structure/table/reinforced, -/obj/item/pipe_dispenser, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"rbZ" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/misc/dirt{ - initial_gas_mix = "ICEMOON_ATMOS" - }, -/area/icemoon/underground/explored) -"rcd" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Security Checkpoint" - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/auxiliary) -"rcj" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Lockers"; - location = "EVA" - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L6" - }, -/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/hallway/primary/central) -"rck" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/science/explab) -"rcq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"rcD" = ( -/turf/open/floor/carpet/lone, -/area/station/service/chapel) -"rcE" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/hallway/primary/central) -"rcN" = ( -/obj/effect/turf_decal/siding/yellow{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"rcO" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) -"rcP" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"rcY" = ( -/obj/structure/fence{ - dir = 4 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"rdb" = ( -/obj/structure/table/optable{ - name = "Robotics Operating Table" - }, -/obj/effect/landmark/event_spawn, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"rdd" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"rdl" = ( -/obj/machinery/button/door/directional/east{ - id = "misclab"; - name = "Test Chamber Blast Doors"; - pixel_y = 6; - req_access = list("xenobiology") - }, -/obj/machinery/button/door/directional/east{ - id = "xenobiomain"; - name = "Xenobiology Containment Blast Door"; - pixel_y = -6; - req_access = list("xenobiology") - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"rdo" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"rdG" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"rdO" = ( -/obj/machinery/light_switch/directional/north{ - pixel_x = -7 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"ree" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"reh" = ( -/turf/open/floor/iron/textured_half, -/area/station/service/hydroponics) -"rek" = ( -/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, -/area/station/hallway/primary/starboard) -"rex" = ( -/obj/effect/turf_decal/tile/dark{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/asteroid/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/oil, -/obj/item/wrench, -/turf/open/floor/iron/white/side{ - dir = 5 - }, -/area/mine/living_quarters) -"reT" = ( -/obj/machinery/door/window/left/directional/north{ - dir = 4; - name = "Containment Pen 8"; - req_access = list("xenobiology") - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "Xenobio Pen 8 Blast Door" - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"rfh" = ( -/obj/structure/cable, -/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/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"rft" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"rfu" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison/rec) -"rfS" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"rga" = ( -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/service/kitchen/diner) -"rgh" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"rgi" = ( -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"rgm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/table, -/obj/item/folder/yellow{ - pixel_x = -9; - pixel_y = 8 - }, -/obj/item/folder/yellow{ - pixel_x = -16; - pixel_y = 14 - }, -/obj/item/folder{ - pixel_x = -12; - pixel_y = 17 - }, -/obj/item/paper{ - pixel_x = -13; - pixel_y = 10 - }, -/obj/item/pen/blue{ - pixel_x = -13; - pixel_y = 10 - }, -/obj/item/stack/package_wrap, -/turf/open/floor/wood/large, -/area/mine/eva/lower) -"rgx" = ( -/obj/machinery/requests_console/directional/north{ - announcementConsole = 1; - anon_tips_receiver = 1; - assistance_requestable = 1; - department = "Research Director's Desk"; - departmentType = 5; - name = "Research Director's Requests Console"; - receive_ore_updates = 1 - }, -/obj/machinery/pdapainter/research, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"rgB" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/trimline/dark_blue/line, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"rgC" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"rgE" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/hfr_room) -"rgS" = ( -/obj/item/bedsheet/red, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"rhf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosspace"; - name = "Space Shutters" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/command/heads_quarters/hos) -"rhi" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/iron/cafeteria{ - dir = 8 - }, -/area/station/science/ordnance/office) -"rhE" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Two"; - space_dir = 8 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"rhF" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Security - Permabrig Observation North"; - network = list("ss13","prison") - }, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"rhP" = ( -/obj/machinery/flasher/directional/north{ - id = "Cell 2" - }, -/obj/structure/bed{ - dir = 1; - pixel_x = -2 - }, -/turf/open/floor/iron/smooth, -/area/station/security/brig) -"rhR" = ( -/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/line, -/obj/effect/turf_decal/trimline/blue/filled/warning, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"rhY" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/box/red, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"rhZ" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/light_switch/directional/north, -/obj/item/stock_parts/cell/high, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"rid" = ( -/turf/closed/wall/r_wall, -/area/station/commons/storage/primary) -"rig" = ( -/obj/structure/bed, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"ril" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/catwalk_floor/iron_smooth, -/area/station/maintenance/department/medical/central) -"riL" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/mine/living_quarters) -"riT" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on, -/turf/open/floor/plating/snowed/icemoon, -/area/station/maintenance/port/aft) -"rjh" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"rjr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/turf/open/floor/plating, -/area/station/medical/virology) -"rjB" = ( -/obj/structure/chair/comfy/brown, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"rjE" = ( -/obj/structure/fluff/tram_rail{ - pixel_y = 17 - }, -/obj/structure/fluff/tram_rail, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"rjK" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"rjP" = ( -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"rjR" = ( -/obj/effect/turf_decal/tile/brown{ - 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) -"rjT" = ( -/obj/machinery/button/door/directional/west{ - id = "xenobio3"; - layer = 4; - name = "Xenobio Pen 3 Blast Door"; - req_access = list("xenobiology") - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"rkc" = ( -/obj/effect/turf_decal/siding/yellow, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/storage) -"rki" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/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) -"rkl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiomain"; - name = "Containment Blast Door" - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"rkm" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"rkt" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/trimline/dark_blue/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"rky" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light_switch/directional/west, -/obj/structure/sign/warning/bodysposal/directional/north, -/obj/machinery/disposal/bin{ - desc = "A pneumatic waste disposal unit. This one leads to the morgue."; - name = "corpse disposal" - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron/white, -/area/station/medical/surgery/fore) -"rkK" = ( -/obj/machinery/suit_storage_unit/cmo, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"rkL" = ( -/turf/open/floor/carpet/blue, -/area/station/medical/psychology) -"rkM" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"rkN" = ( -/turf/closed/wall, -/area/station/engineering/atmos/hfr_room) -"rkT" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Security - Permabrig Upper Hallway South"; - network = list("ss13","prison") - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison) -"rlf" = ( -/obj/effect/spawner/random/structure/steam_vent, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"rlh" = ( -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/rec) -"rlj" = ( -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"rlp" = ( -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 5 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 4 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/white/side, -/area/mine/living_quarters) -"rlS" = ( -/obj/structure/cable, -/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, -/area/station/ai_monitored/turret_protected/aisat_interior) -"rlV" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/station/commons/dorms) -"rmh" = ( -/obj/structure/ladder, -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured_large, -/area/station/maintenance/department/medical/morgue) -"rmn" = ( -/obj/structure/chair/stool/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"rmv" = ( -/obj/structure/rack, -/obj/item/wrench, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"rmB" = ( -/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 = "Mining Mechbay Control" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron/dark/textured_half, -/area/mine/mechbay) -"rmD" = ( -/obj/machinery/oven, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"rmM" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/command/meeting_room) -"rnb" = ( -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron/textured, -/area/station/security/brig) -"rnh" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/table, -/obj/item/crowbar/red, -/obj/item/stock_parts/cell/high{ - pixel_x = 6; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"rns" = ( -/obj/structure/table/reinforced, -/obj/item/aicard, -/obj/item/multitool, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"rnt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"rnu" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/sign/warning/secure_area/directional/east, -/turf/open/floor/engine, -/area/station/science/explab) -"rnQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio1"; - name = "Xenobio Pen 1 Blast Door" - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"roa" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/button/door/directional/north{ - id = "Lakeview_Bathroom"; - pixel_x = 22; - pixel_y = -10; - req_access = list("robotics") - }, -/turf/open/floor/iron/freezer, -/area/mine/eva/lower) -"roA" = ( -/obj/machinery/door/window/left/directional/north{ - dir = 4; - name = "Containment Pen 4"; - req_access = list("xenobiology") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"roH" = ( -/obj/structure/chair/pew/right, -/turf/open/floor/wood, -/area/station/security/prison/rec) -"roQ" = ( -/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/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"rpa" = ( -/obj/structure/closet/athletic_mixed, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"rpu" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"rpB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"rpF" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/suit_storage_unit/engine, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/engine_smes) -"rpG" = ( -/obj/machinery/door/firedoor, -/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, -/area/station/hallway/primary/central) -"rpK" = ( -/obj/structure/chair/pew/left{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"rpM" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"rpU" = ( -/obj/machinery/iv_drip, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"rpV" = ( -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"rqa" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/science/explab) -"rqq" = ( -/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/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/obj/machinery/holopad, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"rqD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"rqF" = ( -/obj/machinery/door/poddoor{ - id = "Secure Storage"; - name = "Secure Storage" - }, -/turf/open/floor/plating, -/area/station/engineering/engine_smes) -"rqH" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/leather, -/obj/effect/spawner/random/maintenance/two, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"rqI" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plating, -/area/station/medical/virology) -"rqJ" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"rqR" = ( -/obj/structure/table/glass, -/obj/item/storage/book/bible, -/turf/open/floor/iron/chapel, -/area/station/service/chapel) -"rqT" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"rqY" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"rrf" = ( -/obj/structure/table/wood, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"rro" = ( -/obj/machinery/door/window/right/directional/north{ - dir = 8; - name = "Shop Counter" - }, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/siding/red{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) -"rrp" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/starboard) -"rrx" = ( -/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{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"rrI" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron/dark/textured, -/area/station/security/range) -"rrV" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/end, -/turf/open/floor/plating, -/area/mine/eva) -"rrX" = ( -/obj/effect/turf_decal/siding/wood, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/airalarm/directional/east, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/service/theater) -"rsp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 27 - }, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"rsC" = ( -/obj/machinery/light/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Xenobiology Pens - Port Mid"; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"rsL" = ( -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"rsM" = ( -/obj/structure/bed/maint, -/obj/item/toy/plush/rouny{ - desc = "What is this? Is this a dog?"; - name = "Therapy Dog" - }, -/obj/structure/cable, -/obj/machinery/camera/directional/east{ - c_tag = "Security - Isolation Cell"; - network = list("ss13","prison","Isolation"); - view_range = 5 - }, -/turf/open/floor/iron/smooth_half{ - dir = 1 - }, -/area/station/security/prison/safe) -"rsR" = ( -/obj/structure/table/optable, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/large, -/area/station/medical/treatment_center) -"rsW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"rsY" = ( -/turf/closed/wall/r_wall, -/area/mine/eva) -"rtc" = ( -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"rth" = ( -/obj/effect/turf_decal/siding/white, -/obj/effect/turf_decal/siding/white, -/obj/effect/spawner/random/entertainment/arcade, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"rtn" = ( -/obj/structure/chair/comfy/black, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/scientist, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"rtp" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Crematorium Maintenance" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/service/crematorium, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"rtt" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/dark_green/line, -/obj/effect/turf_decal/trimline/dark_green/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"rtP" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Engineering West" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/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, -/area/station/engineering/main) -"rtR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/textured, -/area/mine/mechbay) -"ruo" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/atmos/storage/gas) -"ruw" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - dir = 1; - name = "plasma mixer" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ruC" = ( -/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) -"ruD" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"ruI" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Air to Port" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ruO" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/service/theater) -"ruZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable/layer3, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"rvi" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/obj/item/food/grown/pumpkin{ - pixel_y = 5 - }, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"rvj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/eighties/red, -/area/station/security/prison/safe) -"rvy" = ( -/obj/effect/turf_decal/bot, -/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/mine/laborcamp) -"rvE" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall/r_wall, -/area/station/hallway/secondary/entry) -"rvZ" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"rwe" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/openspace, -/area/station/engineering/atmos/storage) -"rwk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - dir = 4; - name = "Scrubbers multi deck pipe adapter" - }, -/turf/open/floor/plating, -/area/station/medical/chemistry) -"rwt" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"rwu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/sign/poster/official/random/directional/south, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/dark/textured_edge{ - dir = 1 - }, -/area/station/security/prison) -"rwB" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"rwC" = ( -/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"rwD" = ( -/obj/structure/rack, -/obj/item/clothing/head/soft/mime, -/obj/item/clothing/suit/apron/chef, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"rwF" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/landmark/start/barber, -/obj/machinery/button/curtain{ - id = "barbershopcurtains1"; - pixel_x = 25; - pixel_y = 24 - }, -/turf/open/floor/iron, -/area/service/salon) -"rwG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"rwW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/gas_mask, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"rwX" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Arrivals North" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"rxa" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/station/maintenance/department/medical/central) -"rxz" = ( -/obj/structure/girder, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"rxG" = ( -/obj/machinery/light_switch/directional/south, -/obj/structure/closet/secure_closet/security/cargo, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"rxK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/white/smooth_large, -/area/station/service/kitchen/diner) -"rxM" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "Xenobio Pen 8 Blast Door" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/electric_shock, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"rxW" = ( -/turf/closed/mineral/random/snow, -/area/icemoon/underground/unexplored/rivers) -"ryf" = ( -/obj/structure/cable, -/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, -/area/station/ai_monitored/turret_protected/ai) -"ryl" = ( -/obj/machinery/vending/wardrobe/det_wardrobe, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"ryu" = ( -/turf/open/floor/iron/dark/textured, -/area/station/security/execution/transfer) -"ryC" = ( -/obj/structure/cable, -/obj/structure/fence/door/opened, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"ryG" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron/smooth, -/area/station/security/holding_cell) -"ryO" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"rza" = ( -/obj/structure/disposalpipe/segment, -/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, -/area/station/commons/fitness) -"rzc" = ( -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/service/library) -"rzg" = ( -/turf/open/genturf/alternative, -/area/icemoon/underground/unexplored/rivers) -"rzj" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/stack/sheet/iron/fifty, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"rzm" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall, -/area/station/cargo/lobby) -"rzr" = ( -/obj/structure/table, -/obj/item/mod/module/plasma_stabilizer, -/obj/item/mod/module/thermal_regulator, -/obj/item/assembly/flash/handheld, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/security/office) -"rzz" = ( -/obj/machinery/door/airlock/command{ - name = "Server Room" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/science/rd, -/turf/open/floor/iron/dark, -/area/station/science/server) -"rzA" = ( -/obj/machinery/door/airlock{ - name = "Theater Backstage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/duct, -/obj/effect/mapping_helpers/airlock/access/all/service/theatre, -/turf/open/floor/iron/textured_half{ - dir = 1 - }, -/area/station/service/theater) -"rzD" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/manifold/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/ordnance_freezer_chamber_input{ - dir = 1 - }, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"rzG" = ( -/obj/structure/railing, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"rzL" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"rzO" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"rzS" = ( -/obj/structure/sign/departments/chemistry/pharmacy/directional/west, -/turf/open/openspace, -/area/station/medical/medbay/lobby) -"rAr" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/mob/living/simple_animal/bot/secbot/beepsky{ - desc = "Powered by the tears and sweat of laborers."; - name = "Prison Ofitser" - }, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"rAC" = ( -/obj/structure/chair, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/cafeteria, -/area/station/hallway/secondary/exit/departure_lounge) -"rAF" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Air to External" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"rAL" = ( -/obj/structure/rack, -/obj/item/crowbar/red, -/obj/item/wrench, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) -"rAN" = ( -/obj/structure/disposalpipe/segment{ - 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, -/area/station/security/brig/upper) -"rAO" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"rAR" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/prison) -"rAW" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"rBn" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/dorms) -"rBo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer1{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"rBt" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/service/kitchen/diner) -"rBv" = ( -/obj/structure/chair/stool/directional/north, -/obj/item/storage/toolbox/artistic{ - pixel_y = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"rBI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"rBQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"rBU" = ( -/obj/structure/table/glass, -/obj/structure/sign/barsign{ - chosen_sign = "thecavern"; - icon_state = "thecavern"; - pixel_y = 32 - }, -/obj/item/reagent_containers/food/drinks/bottle/vermouth{ - pixel_x = 10; - pixel_y = 14 - }, -/obj/item/reagent_containers/food/drinks/bottle/pineapplejuice{ - pixel_y = 9 - }, -/obj/item/reagent_containers/food/drinks/bottle/orangejuice{ - pixel_x = 15 - }, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_x = -11; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/soda_cans/tonic, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"rBV" = ( -/turf/closed/wall, -/area/station/tcommsat/computer) -"rCb" = ( -/obj/docking_port/stationary/public_mining_dock{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/construction/mining/aux_base) -"rCf" = ( -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"rCh" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Icemoon Exterior Garden" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "hydroponics-external" - }, -/turf/open/floor/iron/textured_half, -/area/station/service/hydroponics) -"rCo" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small/directional/west, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/start/hangover, -/obj/machinery/button/door/directional/north{ - id = "Toilet2"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"rCu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"rCB" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/station/engineering/supermatter) -"rCC" = ( -/turf/closed/wall, -/area/station/cargo/sorting) -"rCD" = ( -/obj/machinery/light_switch/directional/north, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"rCE" = ( -/obj/structure/table, -/obj/item/plate/large, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"rCO" = ( -/obj/structure/closet/crate, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/smooth_large, -/area/station/cargo/warehouse) -"rCT" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"rCW" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics Internal Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"rCX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/table, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/clothing/glasses/welding, -/obj/item/multitool{ - pixel_x = 3 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"rDa" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/structure/bed/roller, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"rDg" = ( -/obj/item/wrench, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"rDE" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"rDF" = ( -/turf/open/floor/iron/white/smooth_large, -/area/station/service/kitchen/diner) -"rDJ" = ( -/obj/structure/ladder{ - name = "upper dispenser access" - }, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/treatment_center) -"rDO" = ( -/obj/structure/table, -/obj/item/storage/box/lights/mixed, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/flashlight{ - pixel_x = -1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) -"rDR" = ( -/obj/effect/turf_decal/stripes/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, -/area/station/hallway/secondary/entry) -"rDZ" = ( -/turf/open/floor/engine, -/area/station/science/explab) -"rEd" = ( -/obj/machinery/modular_computer/console/preset/research{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/computer/security/telescreen/rd{ - dir = 4; - pixel_x = -26 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"rEe" = ( -/obj/structure/closet{ - name = "Evidence Closet 4" - }, -/turf/open/floor/iron/dark/textured_edge{ - dir = 1 - }, -/area/station/security/brig) -"rEf" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/structure/sign/warning/chem_diamond/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"rEh" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"rEj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/science/ordnance) -"rEk" = ( -/obj/machinery/vending/drugs, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"rEr" = ( -/obj/effect/turf_decal/tile/dark, -/obj/effect/turf_decal/tile/dark{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 6 - }, -/turf/open/floor/iron/white/side{ - dir = 1 - }, -/area/mine/living_quarters) -"rEx" = ( -/obj/effect/turf_decal/bot_white, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"rEz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/qm) -"rEB" = ( -/obj/structure/closet, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"rEG" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"rEH" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/computer/med_data/laptop{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"rEN" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"rEP" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark/side, -/area/station/security/processing) -"rET" = ( -/obj/machinery/atmospherics/components/unary/bluespace_sender, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos) -"rEX" = ( -/obj/effect/spawner/random/trash/mess, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"rFf" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/commons/storage/mining) -"rFj" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Aft Primary Hallway 1"; - pixel_y = -22 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"rFl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 4 - }, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"rFD" = ( -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/commons/storage/mining) -"rFI" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/machinery/button/door/directional/north{ - id = "Atmospherics Project Shutters"; - name = "Atmospherics Project Shutters"; - req_access = list("atmospherics") - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"rGd" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen/invisible, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/engine/cult, -/area/station/service/library) -"rGl" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"rGu" = ( -/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/engineering/main) -"rGw" = ( -/obj/item/stack/rods/fifty, -/obj/structure/rack, -/obj/item/stack/cable_coil{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil{ - amount = 5 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"rHc" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"rHo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"rHp" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "HoP Queue Shutters"; - dir = 8 - }, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/machinery/ticket_machine/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"rHz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"rHH" = ( -/obj/structure/table, -/obj/effect/spawner/random/food_or_drink/snack/lizard, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"rHI" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"rHN" = ( -/obj/machinery/light/directional/north, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"rIc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"rIl" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"rIF" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/camera/autoname/directional/south, -/obj/effect/turf_decal/trimline/dark_blue/line, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"rIU" = ( -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"rIX" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Engineering External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/engineering/main) -"rJa" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Atmospherics East" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/general/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"rJe" = ( -/obj/machinery/door/window/left/directional/north{ - dir = 4; - name = "Containment Pen 1"; - req_access = list("xenobiology") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"rJi" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"rJv" = ( -/obj/machinery/bluespace_beacon, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/command/teleporter) -"rJz" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/item/stack/rods/fifty, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"rKd" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/spawner/random/entertainment/gambling, -/obj/structure/table/wood, -/obj/machinery/camera{ - c_tag = "Service-Bar 2"; - dir = 9 - }, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"rKQ" = ( -/obj/structure/mineral_door/wood{ - name = "Maintenance Bar" - }, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"rKS" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Dormitory Toilets" - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"rKZ" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"rLb" = ( -/obj/structure/chair/comfy/beige, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"rLe" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/dresser, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"rLo" = ( -/turf/open/floor/plating, -/area/station/cargo/miningdock) -"rLq" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark/side, -/area/mine/eva/lower) -"rLs" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"rLu" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/office) -"rMa" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/cold_temp, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"rMr" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"rMB" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/computer/slot_machine{ - pixel_y = -6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/west, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"rME" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/openspace, -/area/station/security/prison) -"rMG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"rMY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"rNF" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/red/full, -/obj/machinery/requests_console/directional/east{ - anon_tips_receiver = 1; - assistance_requestable = 1; - department = "Security"; - departmentType = 5; - name = "Security Requests Console" - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring medbay to ensure patient safety."; - dir = 8; - name = "Medbay Monitor"; - network = list("medbay"); - pixel_y = 4 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/medical) -"rNQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"rNR" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"rNU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "ert-lz-starboard" - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - space_dir = 8 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"rOe" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"rOj" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/obj/structure/fence, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"rOA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"rOB" = ( -/obj/effect/turf_decal/tile/dark{ - dir = 8 - }, -/obj/effect/turf_decal/tile/dark, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 10 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 1 - }, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/iron/white/corner{ - dir = 4 - }, -/area/mine/living_quarters) -"rOC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) -"rOF" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/mine/eva) -"rOH" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/obj/structure/sink{ - pixel_y = 20 - }, -/obj/machinery/camera{ - c_tag = "Virology Break Room"; - dir = 1; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"rOU" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) -"rOV" = ( -/obj/item/storage/backpack{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/backpack, -/obj/structure/table, -/turf/open/floor/iron, -/area/station/commons/locker) -"rOX" = ( -/obj/structure/chair, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"rPa" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/mask/muzzle, -/obj/machinery/flasher/directional/east{ - id = "cell4" - }, -/turf/open/floor/iron/smooth, -/area/station/security/holding_cell) -"rPd" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 8 - }, -/obj/structure/sign/warning/no_smoking/directional/east, -/turf/open/floor/iron/textured, -/area/station/engineering/atmos) -"rPe" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/closet/toolcloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"rPf" = ( -/obj/structure/table/wood/poker, -/obj/item/clothing/mask/cigarette/pipe, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"rPn" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/obj/machinery/camera{ - c_tag = "Atmospherics South East"; - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"rPu" = ( -/obj/machinery/power/smes, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"rPL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"rPP" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/carpet/royalblue, -/area/station/command/heads_quarters/hos) -"rPX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/sign/warning/xeno_mining/directional/south, -/turf/open/floor/plating/elevatorshaft, -/area/mine/storage) -"rQf" = ( -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"rQl" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"rQn" = ( -/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, -/area/station/hallway/primary/central) -"rQt" = ( -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"rQw" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"rQx" = ( -/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/mine/laborcamp) -"rQG" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"rQN" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/carbon_input{ - dir = 8 - }, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"rQO" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/seeds/carrot, -/turf/open/floor/iron/dark, -/area/mine/laborcamp) -"rRc" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"rRd" = ( -/obj/machinery/conveyor{ - dir = 6; - id = "garbage" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"rRk" = ( -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"rRl" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/ordnance) -"rRy" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/wood/parquet, -/area/station/service/bar/atrium) -"rRA" = ( -/obj/machinery/button/flasher{ - id = "transferflash"; - pixel_x = 23; - pixel_y = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/smooth, -/area/station/security/execution/transfer) -"rRS" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/lapvend, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"rSl" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/catwalk_floor/iron_smooth, -/area/station/maintenance/starboard/fore) -"rSn" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/commons/locker) -"rSq" = ( -/obj/structure/closet, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"rSu" = ( -/turf/open/floor/iron/white/side{ - dir = 8 - }, -/area/station/science/xenobiology) -"rSx" = ( -/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/plating, -/area/station/maintenance/department/medical/central) -"rSz" = ( -/obj/machinery/light/directional/west, -/turf/open/openspace, -/area/station/science/xenobiology) -"rSA" = ( -/turf/closed/wall, -/area/station/maintenance/fore/greater) -"rSC" = ( -/turf/open/floor/glass/reinforced, -/area/station/engineering/lobby) -"rSK" = ( -/obj/effect/turf_decal/siding/white/corner, -/obj/effect/turf_decal/tile/red/full, -/obj/machinery/holopad, -/turf/open/floor/iron/large, -/area/station/service/kitchen/diner) -"rSN" = ( -/obj/machinery/computer/upload/borg{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "station intercom (AI Private)" - }, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) -"rSP" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"rSW" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"rTo" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"rTv" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/psychologist, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"rTD" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod One" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"rTI" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"rTV" = ( -/obj/structure/gulag_beacon, -/turf/open/floor/iron, -/area/mine/laborcamp) -"rTX" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Labor Shuttle Dock" - }, -/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, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/security/processing) -"rUl" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/effect/turf_decal/tile/red/half{ - dir = 8 - }, -/obj/structure/closet/ammunitionlocker/useful, -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) -"rUo" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"rUz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"rUJ" = ( -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"rUP" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"rUR" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"rUT" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/dark_blue/line{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"rUY" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"rVd" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"rVe" = ( -/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_multi{ - cycle_id = "miner-passthrough" - }, -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Dock" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"rVq" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"rVy" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark/textured, -/area/station/security/processing) -"rVA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"rVO" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/structure/reagent_dispensers/beerkeg, -/obj/item/stack/package_wrap{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/iron, -/area/station/service/bar) -"rVV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"rVX" = ( -/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/cable, -/turf/open/floor/iron, -/area/mine/laborcamp) -"rWn" = ( -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"rWp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_output{ - dir = 8 - }, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"rWO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "Atmospherics HFR Shutters" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/trimline/red/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"rWU" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Prison Wing" - }, -/obj/machinery/door/firedoor, -/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/security/brig, -/turf/open/floor/iron/smooth, -/area/station/security/execution/transfer) -"rWW" = ( -/obj/machinery/vending/wardrobe/medi_wardrobe, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"rWZ" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"rXc" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - sortType = 15 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"rXd" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/chair/sofa/corp/left{ - dir = 4; - pixel_x = -4; - pixel_y = 8 - }, -/obj/effect/landmark/start/hangover, -/obj/machinery/light/small/directional/north, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/iron/grimy, -/area/station/service/bar/atrium) -"rXe" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"rXg" = ( -/obj/structure/closet/crate/internals, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/laborcamp) -"rXi" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"rXw" = ( -/obj/machinery/mech_bay_recharge_port{ - dir = 1 - }, -/obj/structure/window/reinforced/spawner, -/obj/effect/turf_decal/siding/white, -/turf/open/floor/iron/smooth, -/area/mine/mechbay) -"rXD" = ( -/obj/machinery/button/door/directional/east{ - id = "xenobio7"; - layer = 4; - name = "Xenobio Pen 7 Blast DOors"; - req_access = list("xenobiology") - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"rXN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Teleport Access" - }, -/obj/structure/cable, -/obj/effect/landmark/navigate_destination, -/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/command/teleporter, -/turf/open/floor/iron, -/area/station/command/teleporter) -"rXO" = ( -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"rXX" = ( -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock"; - shuttledocked = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/processing) -"rYq" = ( -/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, -/area/station/ai_monitored/turret_protected/aisat_interior) -"rYt" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"rYw" = ( -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 5 - }, -/obj/effect/turf_decal/tile/dark, -/obj/effect/turf_decal/tile/dark{ - dir = 1 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 4 - }, -/obj/structure/table/reinforced/plastitaniumglass, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/turf/open/floor/iron/white/corner{ - dir = 8 - }, -/area/mine/living_quarters) -"rYA" = ( -/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, -/area/station/command/heads_quarters/hop) -"rYB" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"rYL" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/break_room) -"rYT" = ( -/obj/structure/ladder, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"rYW" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/built/directional/west, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) -"rYZ" = ( -/obj/machinery/modular_computer/console/preset/civilian, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"rZa" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"rZg" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/carpet/red, -/area/station/commons/vacant_room/office) -"rZm" = ( -/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/iron/white, -/area/station/medical/storage) -"rZn" = ( -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"rZs" = ( -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"rZC" = ( -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/mine/living_quarters) -"rZE" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"rZN" = ( -/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 = 10 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"rZR" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/effect/landmark/start/chief_medical_officer, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"rZT" = ( -/obj/structure/fireplace{ - dir = 4; - pixel_y = -15 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/stone, -/area/station/commons/lounge) -"rZX" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/rack, -/obj/item/pickaxe, -/turf/open/floor/plating, -/area/station/medical/morgue) -"rZZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"sab" = ( -/turf/open/floor/iron/chapel{ - dir = 4 - }, -/area/station/service/chapel) -"saJ" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wideplating{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"sbc" = ( -/obj/machinery/conveyor{ - id = "garbage" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Disposal Exit"; - name = "Disposal Exit Vent" - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"sbf" = ( -/obj/structure/sign/plaques/kiddie/devils_tooth{ - pixel_y = 32 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"sbt" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"sby" = ( -/obj/effect/turf_decal/trimline/red/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/sign/poster/random/directional/north, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/prison) -"sbD" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"sbK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/large, -/area/station/engineering/storage_shared) -"sbN" = ( -/obj/effect/turf_decal/tile/red/half{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/smooth_half, -/area/station/security/brig/upper) -"sbU" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/iron/dark, -/area/mine/eva) -"sbZ" = ( -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"sca" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "gene_shutters"; - name = "Genetics Shutters" - }, -/turf/open/floor/plating, -/area/station/science/genetics) -"sce" = ( -/obj/effect/turf_decal/siding/brown{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt{ - pixel_x = -9 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"scl" = ( -/obj/structure/bookcase/random, -/turf/open/floor/carpet/red, -/area/station/security/prison/work) -"sco" = ( -/obj/effect/turf_decal/trimline/blue/filled/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/white, -/area/station/medical/medbay/central) -"scu" = ( -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"scw" = ( -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"scx" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/command/bridge) -"scH" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/bar) -"scJ" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 15; - id = "arrivals_stationary"; - name = "arrivals"; - roundstart_template = /datum/map_template/shuttle/arrival/box; - width = 7 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"scQ" = ( -/obj/structure/tank_holder/oxygen, -/obj/effect/decal/cleanable/wrapping, -/turf/open/floor/vault, -/area/station/security/prison/rec) -"scV" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Security - Detective's Office" - }, -/obj/machinery/computer/secure_data, -/obj/item/radio/intercom/prison/directional/north, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"sdc" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall/r_wall, -/area/mine/eva) -"sde" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 1" - }, -/obj/effect/landmark/navigate_destination{ - location = "Arrival Shuttle" - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"sdh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/button/curtain{ - id = "barbershopcurtains"; - pixel_x = 25; - pixel_y = -24 - }, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/iron, -/area/service/salon) -"sdl" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 5 - }, -/obj/machinery/meter, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/science/ordnance) -"sdr" = ( -/obj/structure/transit_tube/horizontal, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"sdN" = ( -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2, -/turf/open/floor/plating, -/area/station/maintenance/fore/greater) -"sdP" = ( -/obj/machinery/light/warm/directional/east, -/obj/structure/chair/sofa/bench/right{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"sdW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"seA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/courtroom) -"seE" = ( -/obj/structure/table/reinforced, -/obj/item/radio/off{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/machinery/light/directional/north, -/obj/item/radio/intercom/directional/north, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/red/full, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/medical) -"seR" = ( -/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, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"seX" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"seY" = ( -/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/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"sfg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"sfi" = ( -/obj/item/radio/intercom/directional/west, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"sfq" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"sfv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"sfy" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"sfM" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Psychology"; - dir = 6; - network = list("ss13","medbay"); - pixel_y = -22 - }, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"sfY" = ( -/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/side{ - dir = 5 - }, -/area/station/science/research) -"sga" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) -"sgA" = ( -/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/smooth, -/area/mine/mechbay) -"sgJ" = ( -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Mix to Engine" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"sgV" = ( -/obj/effect/turf_decal/siding/brown/corner, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"sgW" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/glass/reinforced/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"sgZ" = ( -/obj/machinery/flasher/directional/east{ - id = "executionflash" - }, -/turf/open/openspace/icemoon/keep_below, -/area/station/security/execution/education) -"shb" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/table, -/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, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) -"shc" = ( -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"she" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"shh" = ( -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"shj" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"shl" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 1; - height = 4; - name = "escape pod loader"; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"shs" = ( -/obj/effect/turf_decal/weather/snow/corner, -/obj/structure/fence/door, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"shB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"shD" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/stone, -/area/station/commons/lounge) -"shG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"shH" = ( -/obj/structure/cable, -/obj/structure/transit_tube/curved{ - dir = 8 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"shP" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Personnel" - }, -/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/command/hop, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"shU" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/fore/greater) -"sib" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - dir = 8; - name = "Supply multi deck pipe adapter" - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"sil" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Art Gallery" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/sepia, -/area/station/service/library) -"sin" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint3" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"siu" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"six" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/pen/red{ - pixel_x = -6 - }, -/obj/item/pen/blue{ - pixel_x = -1; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/station/service/library) -"siz" = ( -/obj/machinery/holopad, -/obj/machinery/duct, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/large, -/area/station/engineering/lobby) -"siF" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/mine/eva) -"siI" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/mine/eva) -"sjb" = ( -/turf/closed/wall/r_wall, -/area/station/cargo/drone_bay) -"sjc" = ( -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"sjk" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 6 - }, -/turf/open/floor/glass/reinforced, -/area/station/engineering/atmos/pumproom) -"sjv" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001; - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/red/half, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) -"sjX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/treatment_center) -"skc" = ( -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 1"; - space_dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"skh" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/disposal/bin, -/obj/structure/cable, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"skl" = ( -/turf/closed/wall, -/area/station/maintenance/fore) -"skx" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump/off{ - dir = 1; - name = "O2 To Pure" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"skB" = ( -/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/ai_monitored/command/storage/eva) -"skJ" = ( -/obj/structure/grille/broken, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"skU" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"skV" = ( -/obj/structure/chair/stool/bar/directional/south, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/stone, -/area/station/commons/lounge) -"skW" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"skX" = ( -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/effect/turf_decal/stripes/line, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"slc" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/structure/bed/roller, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"slf" = ( -/obj/machinery/light/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"slp" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio9"; - name = "Xenobio Pen 9 Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"slx" = ( -/obj/structure/sign/warning/fire/directional/west, -/obj/machinery/atmospherics/components/unary/passive_vent/layer2{ - dir = 8 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/station/medical/virology) -"slD" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"slI" = ( -/obj/structure/sign/warning/electric_shock/directional/north, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"slK" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark/textured, -/area/station/medical/cryo) -"slU" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"smg" = ( -/obj/structure/disposalpipe/segment{ - 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/plating, -/area/station/construction) -"smj" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"smC" = ( -/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/chapel) -"smI" = ( -/obj/structure/chair{ - dir = 1; - name = "Command Station" - }, -/obj/machinery/button/door{ - id = "bridge blast"; - name = "Bridge Blast Door Control"; - pixel_x = 28; - pixel_y = -2; - req_access = list("command") - }, -/obj/machinery/keycard_auth{ - pixel_x = 29; - pixel_y = 8 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"snj" = ( -/obj/structure/disposalpipe/segment, -/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, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"snt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"snw" = ( -/obj/structure/table, -/obj/machinery/microwave, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"snE" = ( -/obj/effect/turf_decal/tile/red/half{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/half{ - dir = 1 - }, -/area/station/hallway/secondary/service) -"snO" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"snQ" = ( -/obj/machinery/light/directional/east, -/obj/structure/sign/warning/fire/directional/north, -/turf/open/floor/glass/reinforced, -/area/station/science/ordnance/office) -"soc" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/button/ticket_machine{ - pixel_x = -32; - pixel_y = 38 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"soe" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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, -/area/station/commons/fitness) -"son" = ( -/obj/effect/turf_decal/siding/white, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white/smooth_large, -/area/station/service/kitchen/diner) -"sou" = ( -/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/maintenance/aft/greater) -"soA" = ( -/obj/structure/table/glass, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/box/syringes, -/obj/item/stack/sheet/mineral/plasma{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/effect/turf_decal/trimline/green/filled/corner, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"soF" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/dark_red/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/dark_blue/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/dark_red/line{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"soK" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"spg" = ( -/obj/structure/table, -/obj/item/storage/box/monkeycubes{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/storage/box/monkeycubes{ - pixel_x = -5 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"spq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/supply/visible{ - dir = 1 - }, -/obj/machinery/newscaster/directional/north, -/obj/effect/turf_decal/siding/wideplating, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"spF" = ( -/obj/structure/window/reinforced/plasma{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/power/energy_accumulator/grounding_rod/anchored, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"spM" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/blue, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"spW" = ( -/obj/structure/sign/painting/library_secure{ - pixel_x = 32 - }, -/obj/machinery/door/window{ - dir = 8; - name = "Secure Art Exhibition"; - req_access = list("library") - }, -/obj/effect/spawner/random/structure/table_fancy, -/turf/open/floor/wood, -/area/station/service/library) -"sql" = ( -/obj/structure/table/glass, -/obj/item/cultivator, -/obj/item/hatchet, -/obj/item/crowbar, -/obj/item/plant_analyzer, -/obj/item/reagent_containers/glass/watering_can, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"sqs" = ( -/obj/machinery/skill_station, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/wood, -/area/station/service/library) -"sqt" = ( -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"sqB" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"sqN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"sqU" = ( -/obj/machinery/newscaster/directional/west, -/obj/machinery/keycard_auth/directional/south, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"sqW" = ( -/obj/structure/marker_beacon/burgundy{ - name = "landing marker" - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"sra" = ( -/obj/structure/table, -/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, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"srk" = ( -/obj/machinery/door/window/right/directional/north{ - dir = 8; - name = "Library Desk Door"; - req_access = list("library") - }, -/turf/open/floor/wood, -/area/station/service/library) -"srn" = ( -/turf/open/floor/glass/reinforced, -/area/station/medical/treatment_center) -"sro" = ( -/obj/structure/cable, -/turf/closed/wall/r_wall, -/area/station/maintenance/port/aft) -"srE" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"srM" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"srP" = ( -/turf/closed/wall, -/area/station/science/breakroom) -"srW" = ( -/obj/structure/table, -/obj/item/assembly/prox_sensor{ - pixel_x = 5; - pixel_y = 7 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 9; - pixel_y = -2 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"srY" = ( -/obj/machinery/deepfryer, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"srZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/smooth, -/area/mine/mechbay) -"ssc" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/office) -"ssf" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/commons/fitness) -"ssh" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"sso" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/table, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"ssq" = ( -/obj/structure/table/wood, -/obj/item/camera_film, -/obj/item/camera_film, -/turf/open/floor/wood, -/area/station/service/library) -"ssr" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/engineering/storage/tech) -"ssB" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"ssG" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"ssM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"ssY" = ( -/obj/machinery/airalarm/directional/south, -/obj/machinery/firealarm/directional/west, -/obj/machinery/computer/warrant{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"stb" = ( -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"std" = ( -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"sto" = ( -/obj/effect/spawner/structure/window, -/obj/structure/curtain/cloth/fancy/mechanical{ - id = "barbershopcurtains1" - }, -/turf/open/floor/plating, -/area/service/salon) -"stt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/smooth_edge{ - dir = 1 - }, -/area/station/security/lockers) -"stA" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"stD" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, -/turf/open/floor/plating, -/area/station/engineering/atmos/storage/gas) -"stG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"stI" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/sign/warning/electric_shock/directional/north, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"stZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/mine/eva) -"sup" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/gas_mask, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"sut" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 12 - }, -/turf/open/floor/iron/white/side{ - dir = 8 - }, -/area/station/science/lab) -"suR" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/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) -"sve" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/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) -"svk" = ( -/obj/effect/turf_decal/tile/dark, -/obj/effect/turf_decal/tile/dark{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"svq" = ( -/obj/structure/table/glass, -/obj/item/stack/medical/gauze{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/stack/medical/mesh{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/stack/medical/suture, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 6 - }, -/obj/item/reagent_containers/syringe, -/obj/machinery/defibrillator_mount/directional/east, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/large, -/area/station/medical/treatment_center) -"svw" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/iron/smooth, -/area/station/security/execution/transfer) -"svy" = ( -/obj/effect/decal/cleanable/oil, -/obj/item/stack/ore/glass, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth_large, -/area/station/cargo/warehouse) -"svF" = ( -/turf/open/floor/iron/smooth, -/area/station/security/execution/transfer) -"svH" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/dresser, -/turf/open/floor/wood, -/area/station/commons/dorms) -"svL" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Cargo Bay North" - }, -/obj/machinery/vending/wardrobe/cargo_wardrobe, -/turf/open/floor/iron, -/area/station/cargo/storage) -"svO" = ( -/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/warden) -"svP" = ( -/obj/machinery/light/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"svX" = ( -/obj/structure/table/glass, -/obj/item/grenade/chem_grenade/antiweed, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_y = 3 - }, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/siding/white{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"swc" = ( -/obj/machinery/light/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line, -/obj/effect/turf_decal/trimline/red/line{ - dir = 1 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/range) -"swe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"swf" = ( -/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/security/prison/safe) -"swk" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/security/prison/rec) -"sws" = ( -/obj/machinery/door/airlock/security{ - name = "Permabrig Library" - }, -/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/textured, -/area/station/security/prison/work) -"swt" = ( -/obj/machinery/power/terminal, -/obj/machinery/light/small/directional/east, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"swu" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"sww" = ( -/obj/machinery/light/directional/south, -/obj/machinery/light_switch/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"swx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"swF" = ( -/turf/closed/wall, -/area/station/ai_monitored/turret_protected/aisat_interior) -"swQ" = ( -/obj/structure/table, -/obj/item/electronics/apc, -/obj/item/electronics/airlock, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"swS" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"swU" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/lobby) -"sxb" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"sxe" = ( -/obj/structure/fence{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"sxu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"sxy" = ( -/obj/structure/fence/corner{ - dir = 4 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"sxF" = ( -/obj/structure/chair/stool/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"sxO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/closet/secure_closet/personal{ - anchored = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"sxT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/security/prison/rec) -"sxW" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"sxZ" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/white, -/area/station/science/research) -"syh" = ( -/obj/structure/chair/pew/right{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"sym" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"syn" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_centre, -/obj/machinery/atmospherics/pipe/multiz/violet/visible{ - name = "Infiltrate" - }, -/obj/effect/turf_decal/tile/dark_green/diagonal_edge, -/turf/open/floor/iron/dark/diagonal, -/area/station/engineering/atmos/mix) -"syw" = ( -/obj/structure/fence/corner{ - dir = 4 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"syB" = ( -/obj/effect/turf_decal/siding/red{ - dir = 4 - }, -/turf/open/floor/iron/dark/textured_edge{ - dir = 8 - }, -/area/station/security/prison) -"syE" = ( -/obj/effect/turf_decal/trimline/green/filled/corner, -/obj/effect/turf_decal/trimline/blue/corner, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"syG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/blobstart, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"syL" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/sink{ - pixel_y = 20 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"syW" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/end, -/turf/open/floor/plating, -/area/station/medical/morgue) -"syY" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "MiniSat Atmospherics"; - network = list("minisat"); - start_active = 1 - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/space_heater, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"syZ" = ( -/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/fore/greater) -"szo" = ( -/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, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"szp" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"szq" = ( -/obj/structure/disposalpipe/segment{ - 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/plating, -/area/station/maintenance/port/greater) -"szu" = ( -/obj/structure/sign/poster/official/obey{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/laborcamp) -"szz" = ( -/obj/machinery/newscaster/directional/north, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/textured, -/area/station/security/brig) -"szD" = ( -/obj/effect/turf_decal/trimline/green/filled/end, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"szG" = ( -/turf/closed/mineral/random/snow/high_chance, -/area/icemoon/underground/explored) -"szJ" = ( -/obj/structure/sign/warning/cold_temp/directional/north, -/turf/open/floor/iron/smooth, -/area/station/cargo/warehouse) -"szV" = ( -/obj/machinery/light/small/directional/west, -/turf/open/openspace/icemoon/keep_below, -/area/station/security/execution/education) -"szY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/auxiliary) -"sAa" = ( -/obj/structure/stairs/north, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/iron, -/area/mine/eva/lower) -"sAc" = ( -/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 = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"sAu" = ( -/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/catwalk_floor/iron_smooth, -/area/station/maintenance/department/chapel) -"sAy" = ( -/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/storage/tools) -"sAC" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"sAI" = ( -/obj/machinery/camera{ - c_tag = "Morgue Hallway" - }, -/obj/effect/landmark/start/hangover, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"sAL" = ( -/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, -/area/station/commons/locker) -"sAS" = ( -/turf/closed/wall, -/area/station/commons/storage/art) -"sAT" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/chem_mass_spec, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"sAV" = ( -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/stripes/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, -/area/station/hallway/secondary/entry) -"sAY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"sBh" = ( -/obj/structure/table, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/rods/fifty, -/obj/item/stack/rods/fifty, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"sBi" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"sBt" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka{ - pixel_x = 7; - pixel_y = 20 - }, -/obj/item/taperecorder{ - pixel_x = -5; - pixel_y = 1 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 7; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 6 - }, -/obj/item/storage/secure/safe/hos{ - pixel_x = 35 - }, -/obj/machinery/light/directional/south, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark/smooth_large, -/area/station/command/heads_quarters/hos) -"sBv" = ( -/obj/structure/table, -/obj/item/t_scanner, -/obj/machinery/airalarm/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"sBy" = ( -/turf/closed/wall, -/area/station/service/theater) -"sBJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/maintenance/department/medical/morgue) -"sBK" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/atmos/storage/gas) -"sBS" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Aft Primary Hallway 2" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"sBV" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/computer/security/telescreen/entertainment/directional/south, -/obj/effect/spawner/random/vending/snackvend, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/exit/departure_lounge) -"sBY" = ( -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole/bookmanagement, -/obj/machinery/light_switch/directional/north, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/wood, -/area/station/service/library) -"sCc" = ( -/obj/machinery/biogenerator, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/mine/laborcamp) -"sCe" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Security" - }, -/obj/structure/plasticflaps/opaque, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"sCg" = ( -/obj/effect/turf_decal/siding/wood, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood/large, -/area/mine/eva/lower) -"sCw" = ( -/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/aft) -"sCx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"sCA" = ( -/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) -"sCQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"sCY" = ( -/obj/machinery/door/airlock/security/glass{ - name = "N2O Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"sCZ" = ( -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"sDg" = ( -/obj/effect/turf_decal/siding/purple/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"sDl" = ( -/turf/open/openspace/icemoon/keep_below, -/area/icemoon/surface/outdoors/nospawn) -"sDp" = ( -/obj/structure/cable, -/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/east, -/turf/open/floor/plating, -/area/station/commons/storage/mining) -"sDs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"sDA" = ( -/obj/machinery/igniter/incinerator_ordmix, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"sDT" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"sDU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"sEi" = ( -/turf/open/floor/carpet, -/area/station/service/library) -"sEl" = ( -/obj/structure/table, -/turf/open/floor/wood, -/area/station/command/meeting_room) -"sEp" = ( -/obj/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/crew_quarters/bar) -"sEq" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/end{ - dir = 8 - }, -/turf/open/floor/plating, -/area/mine/living_quarters) -"sEt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/command/gateway) -"sEx" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"sEz" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/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/white, -/area/station/medical/medbay/central) -"sEB" = ( -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"sEC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/red/opposingcorners, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"sED" = ( -/obj/structure/disposalpipe/segment{ - 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/plating, -/area/station/maintenance/starboard/upper) -"sEE" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/junction{ - dir = 2 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"sEK" = ( -/obj/structure/table/glass, -/obj/item/stack/medical/gauze{ - pixel_x = 1 - }, -/obj/item/stack/medical/mesh, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/button/door/directional/west{ - id = "chemistry_access_shutters"; - name = "Chemistry Access Shutter Control"; - req_access = list("medical") - }, -/obj/item/stack/medical/suture, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/large, -/area/station/medical/treatment_center) -"sEU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter/room) -"sEX" = ( -/obj/machinery/computer/atmos_control/air_tank{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white/corner, -/area/station/engineering/atmos) -"sFj" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/scientist, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/explab) -"sFu" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Security - Upper Permabrig Hallway North"; - network = list("ss13","prison") - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark/textured_edge, -/area/station/security/prison) -"sFv" = ( -/obj/machinery/mineral/processing_unit{ - dir = 1 - }, -/obj/structure/window/reinforced/spawner/west, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/mine/production) -"sFy" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/head_of_personnel, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"sFA" = ( -/obj/machinery/sparker/directional/west{ - id = "testigniter" - }, -/turf/open/floor/engine, -/area/station/science/explab) -"sFG" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"sGf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/door/window/brigdoor/right/directional/north{ - dir = 8; - name = "Medbay Access"; - req_access = list("medical") - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"sGk" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"sGp" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"sGv" = ( -/obj/structure/ladder, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/commons/storage/mining) -"sGE" = ( -/obj/effect/turf_decal/stripes/asteroid/line{ - 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/white, -/area/mine/living_quarters) -"sGH" = ( -/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/dark_red/arrow_ccw{ - dir = 8 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"sGJ" = ( -/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) -"sGV" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/station/medical/break_room) -"sGZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"sHc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/medical/glass{ - name = "Pharmacy" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/full, -/obj/effect/mapping_helpers/airlock/access/all/medical/pharmacy, -/turf/open/floor/iron/large, -/area/station/medical/pharmacy) -"sHd" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/bin, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"sHh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/service/chapel) -"sHp" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/storage) -"sHB" = ( -/obj/effect/turf_decal/tile/red/full, -/turf/open/floor/iron/large, -/area/station/service/kitchen/diner) -"sHC" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"sHD" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"sHM" = ( -/obj/structure/disposalpipe/segment{ - 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/starboard/upper) -"sHX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/smooth, -/area/mine/mechbay) -"sIh" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"sIm" = ( -/obj/machinery/hydroponics/soil, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"sIt" = ( -/turf/closed/wall, -/area/station/maintenance/central/lesser) -"sIw" = ( -/obj/structure/disposalpipe/segment, -/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/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"sIA" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"sIC" = ( -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/sign/poster/random/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/large, -/area/station/service/kitchen/diner) -"sIJ" = ( -/obj/machinery/firealarm/directional/west, -/turf/open/floor/carpet/blue, -/area/station/medical/psychology) -"sIM" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"sIN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 10 - }, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/large, -/area/station/engineering/storage) -"sIO" = ( -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - name = "Supply multi deck pipe adapter" - }, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - name = "Scrubbers multi deck pipe adapter" - }, -/obj/effect/turf_decal/stripes/box, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/storage) -"sJi" = ( -/obj/machinery/vending/donksofttoyvendor, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/safe) -"sJl" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"sJq" = ( -/obj/machinery/airalarm/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"sJt" = ( -/obj/machinery/door/poddoor{ - id = "executionfireblast" - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plating/icemoon, -/area/station/security/execution/education) -"sJH" = ( -/turf/closed/wall, -/area/mine/living_quarters) -"sJL" = ( -/obj/machinery/light/directional/north, -/obj/machinery/recharge_station, -/obj/effect/turf_decal/tile/yellow/full, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"sJR" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"sJW" = ( -/obj/machinery/mineral/stacking_unit_console{ - machinedir = 8 - }, -/turf/closed/wall, -/area/station/maintenance/port/greater) -"sKf" = ( -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"sKo" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Lakeview_Bathroom"; - name = "Privacy Shutters"; - dir = 8 - }, -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/turf/open/floor/plating, -/area/mine/eva/lower) -"sKu" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Security - Permabrig Lower Hallway East"; - network = list("ss13","prison") - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/prison) -"sKz" = ( -/obj/machinery/airalarm/directional/west, -/turf/open/floor/wood, -/area/station/command/meeting_room) -"sKN" = ( -/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) -"sKW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/structure/railing/corner, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"sLr" = ( -/obj/structure/flora/grass/jungle/b/style_random, -/obj/structure/window/reinforced/spawner/west, -/obj/structure/window/reinforced/spawner, -/obj/item/throwing_star/toy, -/turf/open/misc/ashplanet/wateryrock{ - initial_gas_mix = "o2=22;n2=82;TEMP=293.15" - }, -/area/station/security/prison/rec) -"sLD" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/construction/plumbing, -/obj/item/construction/plumbing{ - pixel_y = -5 - }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/medical/chemistry) -"sMg" = ( -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"sMo" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Aft Starboard Solar Access" - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"sMp" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) -"sMs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/dark/textured_edge{ - dir = 1 - }, -/area/station/security/prison) -"sMD" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/obj/structure/disposaloutlet{ - desc = "An outlet for the pneumatic disposal system. This one seems designed for rapid corpse disposal."; - dir = 1; - name = "rapid corpse mover 9000" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"sMY" = ( -/obj/structure/table, -/obj/item/radio/off, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/security/office) -"sNb" = ( -/obj/machinery/airalarm/directional/west, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/dark/textured, -/area/station/security/interrogation) -"sNs" = ( -/obj/structure/closet/crate/hydroponics, -/obj/effect/turf_decal/trimline/green/filled, -/obj/item/seeds/poppy, -/obj/item/seeds/poppy, -/obj/item/seeds/grass, -/obj/item/seeds/glowshroom, -/obj/item/seeds/nettle, -/obj/item/seeds/orange, -/obj/item/seeds/potato, -/turf/open/floor/iron, -/area/station/maintenance/starboard/aft) -"sNu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/machinery/duct, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"sNI" = ( -/obj/effect/landmark/event_spawn, -/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, -/area/station/hallway/primary/central) -"sNQ" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge" - }, -/obj/structure/disposalpipe/segment{ - 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/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron, -/area/station/command/bridge) -"sOl" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"sOm" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"sOn" = ( -/turf/closed/wall, -/area/station/cargo/lobby) -"sOo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"sOE" = ( -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"sOH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"sOO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"sOT" = ( -/obj/structure/table, -/obj/item/kitchen/fork/plastic, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"sOX" = ( -/turf/open/floor/iron, -/area/station/commons/storage/art) -"sPu" = ( -/obj/structure/table, -/obj/item/paper{ - pixel_y = 7 - }, -/obj/item/paper{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood/large, -/area/mine/eva/lower) -"sPx" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood, -/area/station/maintenance/aft/greater) -"sPA" = ( -/obj/structure/rack, -/obj/item/storage/bag/ore, -/obj/item/pickaxe, -/obj/item/flashlight, -/obj/item/clothing/glasses/meson, -/obj/item/mining_scanner, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/hooded/wintercoat, -/turf/open/floor/iron, -/area/mine/laborcamp) -"sPG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/large, -/area/station/engineering/main) -"sPK" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_x = -6 - }, -/obj/machinery/button/door{ - id = "BrigLock"; - name = "Cell Shutters"; - pixel_x = 7; - pixel_y = 9 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"sPV" = ( -/obj/machinery/door/airlock/atmos/glass, -/obj/machinery/door/firedoor/heavy, -/obj/effect/turf_decal/trimline/yellow/corner, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron/dark/smooth_half{ - dir = 1 - }, -/area/station/engineering/atmos/hfr_room) -"sQa" = ( -/obj/machinery/door/airlock/mining/glass{ - id_tag = "innercargo"; - name = "Cargo Bay" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron, -/area/station/cargo/storage) -"sQm" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 3" - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"sQv" = ( -/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/carpet, -/area/station/service/chapel) -"sQx" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/iron/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"sQB" = ( -/turf/closed/wall, -/area/station/security/brig/upper) -"sQE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"sQW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/medical_kiosk, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"sQZ" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=QM"; - location = "CHW" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"sRc" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 10 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"sRp" = ( -/obj/structure/fence, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"sRI" = ( -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"sSy" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/processing) -"sSD" = ( -/obj/effect/landmark/observer_start, -/obj/effect/turf_decal/plaque{ - icon_state = "L8" - }, -/obj/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) -"sSE" = ( -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/iron/white/side{ - dir = 1 - }, -/area/station/science/research) -"sSF" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"sSJ" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"sSO" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 3"; - name = "Cell 3 Locker" - }, -/obj/structure/cable, -/turf/open/floor/iron/smooth, -/area/station/security/brig) -"sSS" = ( -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) -"sTe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"sTi" = ( -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/turf/open/floor/engine, -/area/station/engineering/atmos/hfr_room) -"sTO" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restroom" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/mine/laborcamp) -"sTQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron, -/area/service/salon) -"sTV" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Teleporter Maintenance" - }, -/obj/structure/sign/warning/secure_area/directional/west, -/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/command/teleporter, -/turf/open/floor/plating, -/area/station/maintenance/central/lesser) -"sUb" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Permabrig Visitation" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/security/brig, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"sUi" = ( -/obj/structure/disposalpipe/segment{ - 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, -/area/station/hallway/primary/central) -"sUv" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/mob/living/simple_animal/bot/floorbot, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"sUE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/frame/computer{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/smooth, -/area/mine/eva) -"sUN" = ( -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/obj/structure/cable, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"sUO" = ( -/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, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"sUR" = ( -/obj/structure/table/optable, -/obj/machinery/newscaster/directional/east, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"sUS" = ( -/obj/structure/table/wood, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"sVm" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"sVn" = ( -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/locker) -"sVr" = ( -/obj/effect/spawner/random/trash/mess, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"sVJ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/storage/gas) -"sVL" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/large, -/area/station/engineering/atmos) -"sVN" = ( -/obj/item/screwdriver, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"sWa" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small/directional/north, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/dark, -/area/mine/eva/lower) -"sWl" = ( -/obj/machinery/door/airlock/command{ - name = "Chief Medical Officer" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/full, -/obj/effect/mapping_helpers/airlock/access/all/medical/cmo, -/turf/open/floor/iron/dark/smooth_large, -/area/station/command/heads_quarters/cmo) -"sWs" = ( -/obj/structure/disposalpipe/segment, -/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/aft/greater) -"sWx" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"sWB" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Smeltery" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, -/turf/open/floor/iron/textured_half, -/area/mine/production) -"sWC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/service/theater) -"sWG" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/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/freezer, -/area/station/commons/toilet/locker) -"sWQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Central Primary Hallway South" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"sXb" = ( -/obj/machinery/status_display/ai/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark_blue/line{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"sXg" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"sXz" = ( -/obj/machinery/light/directional/north, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/dark, -/area/station/medical/chemistry) -"sXC" = ( -/obj/structure/table, -/obj/machinery/button/ignition{ - id = "testigniter"; - pixel_x = -6; - pixel_y = 2 - }, -/obj/machinery/button/door{ - id = "testlab"; - name = "Test Chamber Blast Doors"; - pixel_x = 4; - pixel_y = 2; - req_access = list("xenobiology") - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"sXQ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/dark_green/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/dark_green/line{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"sYg" = ( -/obj/machinery/light/directional/east, -/obj/item/radio/intercom/directional/east, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/machinery/computer/security/telescreen/entertainment/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) -"sYu" = ( -/obj/machinery/door/firedoor, -/obj/effect/landmark/event_spawn, -/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/iron, -/area/station/hallway/primary/central) -"sYA" = ( -/obj/structure/fluff/tram_rail{ - pixel_y = 17 - }, -/obj/structure/lattice/catwalk, -/obj/structure/fluff/tram_rail, -/obj/structure/marker_beacon/burgundy{ - name = "landing marker" - }, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"sYF" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"sYG" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"sYJ" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/service/chapel) -"sYU" = ( -/obj/structure/grille/broken, -/obj/effect/spawner/random/trash/moisture_trap, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"sZa" = ( -/obj/effect/turf_decal/box/white{ - color = "#9FED58" - }, -/turf/open/floor/engine, -/area/station/engineering/atmos/hfr_room) -"sZp" = ( -/obj/effect/turf_decal/siding/wideplating_new/light{ - dir = 6 - }, -/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/prisoner, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/work) -"sZD" = ( -/obj/structure/disposalpipe/segment{ - 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/white, -/area/station/medical/medbay/aft) -"sZF" = ( -/turf/closed/wall, -/area/station/maintenance/aft/greater) -"sZO" = ( -/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/line{ - dir = 4 - }, -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron/smooth, -/area/mine/eva/lower) -"taf" = ( -/obj/effect/landmark/start/quartermaster, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/cargo/qm) -"tag" = ( -/obj/machinery/light/directional/north, -/obj/structure/sign/warning/electric_shock/directional/north, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"tai" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chemistry Maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"tao" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) -"tau" = ( -/obj/effect/turf_decal/tile/green/half/contrasted, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"taK" = ( -/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/duct, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"taL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail{ - dir = 2; - sortType = 27 - }, -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"taN" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"taV" = ( -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"tbb" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wideplating{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"tbh" = ( -/turf/open/floor/iron/half{ - dir = 1 - }, -/area/station/engineering/atmos) -"tbl" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/light_construct/directional/south, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) -"tbI" = ( -/obj/machinery/power/shieldwallgen, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/command/teleporter) -"tbL" = ( -/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; - sortType = 23 - }, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"tbQ" = ( -/turf/open/floor/iron/grimy, -/area/station/maintenance/aft/greater) -"tbX" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/turf/open/floor/plating, -/area/mine/eva/lower) -"tci" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/right/directional/east{ - dir = 8; - name = "Pharmacy Desk"; - req_access = list("pharmacy") - }, -/obj/item/folder/white{ - pixel_x = -5 - }, -/obj/item/pen{ - pixel_x = -5 - }, -/obj/machinery/door/poddoor/preopen{ - id = "pharmacy_shutters"; - name = "Pharmacy Shutter" - }, -/obj/structure/desk_bell{ - pixel_x = 7 - }, -/turf/open/floor/iron, -/area/station/medical/pharmacy) -"tcD" = ( -/obj/structure/chair, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria, -/area/station/hallway/secondary/exit/departure_lounge) -"tcJ" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/east, -/obj/machinery/firealarm/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"tcQ" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Security - Permabrig Recreation"; - network = list("ss13","prison") - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/rec) -"tdb" = ( -/obj/effect/landmark/event_spawn, -/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/aft) -"tdL" = ( -/obj/structure/stairs/south, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"tdR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"tdY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/station/science/ordnance/burnchamber) -"ted" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"tei" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/carpet/red, -/area/station/security/prison/work) -"tej" = ( -/obj/structure/fence, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"teB" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "packageSort2" - }, -/obj/machinery/requests_console/directional/west{ - department = "Cargo Bay"; - departmentType = 2; - name = "Cargo Bay Requests Console"; - supplies_requestable = 1 - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"teN" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"teP" = ( -/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/checkpoint/auxiliary) -"teQ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/table, -/obj/item/restraints/handcuffs, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"teR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/theater) -"tfm" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"tfu" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall, -/area/station/maintenance/starboard/fore) -"tfx" = ( -/obj/machinery/portable_atmospherics/canister/water_vapor, -/turf/open/floor/iron, -/area/station/service/janitor) -"tfA" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/security/checkpoint/auxiliary) -"tfG" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"tfM" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"tfO" = ( -/obj/structure/table/wood, -/obj/item/paicard, -/turf/open/floor/iron, -/area/station/commons/dorms) -"tfR" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Engine Coolant Bypass" - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"tgn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/ai_monitored/command/storage/eva) -"tgq" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"tgu" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"tgw" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Research Delivery Access" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"tgx" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/openspace, -/area/station/science/xenobiology) -"tgA" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/command/teleporter) -"tgB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white/smooth_large, -/area/station/science/genetics) -"tgP" = ( -/mob/living/simple_animal/bot/secbot/beepsky/armsky, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) -"thv" = ( -/obj/structure/rack, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/item/clothing/head/welding, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"thK" = ( -/obj/item/radio/off, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/landmark/start/customs_agent, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"thW" = ( -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"tia" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/iron/fifty, -/obj/machinery/camera/directional/east{ - c_tag = "Research and Development"; - network = list("ss13","rd") - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/white/side{ - dir = 10 - }, -/area/station/science/lab) -"tis" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/transit_tube/horizontal, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"tix" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"tiF" = ( -/obj/structure/chair/stool/directional/west, -/turf/open/floor/carpet, -/area/station/service/theater) -"tiN" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/station/science/xenobiology) -"tiQ" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/machinery/button/door/directional/west{ - id = "xenobio2"; - layer = 4; - name = "Xenobio Pen 2 Blast Door"; - req_access = list("xenobiology") - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"tiV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/chapel) -"tiX" = ( -/obj/effect/turf_decal/siding/wood, -/obj/structure/cable, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/service/theater) -"tiY" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"tiZ" = ( -/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/atmos{ - name = "Atmospherics" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/engineering/atmos/storage) -"tja" = ( -/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/effect/turf_decal/tile/green/half{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/service/hydroponics) -"tjk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"tjm" = ( -/obj/structure/closet/boxinggloves, -/obj/machinery/light/directional/north, -/obj/item/clothing/shoes/jackboots, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness) -"tjo" = ( -/turf/open/genturf, -/area/icemoon/underground/unexplored/rivers) -"tjs" = ( -/obj/structure/disposalpipe/segment{ - 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/plating, -/area/station/maintenance/starboard/lesser) -"tjC" = ( -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/dark/textured_edge{ - dir = 1 - }, -/area/station/security/prison) -"tjH" = ( -/obj/effect/turf_decal/loading_area, -/obj/effect/turf_decal/siding/yellow, -/turf/open/floor/iron/half{ - dir = 1 - }, -/area/station/engineering/storage) -"tjN" = ( -/obj/structure/closet/secure_closet/personal{ - anchored = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"tjS" = ( -/obj/structure/table, -/obj/item/paper_bin/construction, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/turf/open/floor/iron, -/area/station/commons/storage/art) -"tjV" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/closet/secure_closet/personal{ - anchored = 1 - }, -/obj/item/clothing/gloves/boxing, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"tjW" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/commons/storage/emergency/port) -"tjY" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/storage/gas) -"tkc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"tkf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"tkk" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"tkG" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/station/maintenance/starboard/lesser) -"tkP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron/freezer, -/area/station/science/xenobiology) -"tkS" = ( -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/white/side{ - dir = 9 - }, -/area/station/science/research) -"tlc" = ( -/obj/structure/disposalpipe/trunk/multiz/down, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore/greater) -"tlh" = ( -/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/engineering/storage_shared) -"tln" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"tlr" = ( -/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/starboard/lesser) -"tlA" = ( -/obj/machinery/light/small/directional/south, -/obj/item/radio/intercom/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth_large, -/area/station/cargo/warehouse) -"tlE" = ( -/turf/open/floor/glass/reinforced/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"tlF" = ( -/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/plating, -/area/station/maintenance/starboard/lesser) -"tlH" = ( -/turf/open/openspace/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"tlP" = ( -/obj/effect/turf_decal/stripes/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/button/door/directional/north{ - id = "Skynet_launch"; - name = "Mech Bay Door Control"; - req_access = list("robotics") - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"tlS" = ( -/obj/machinery/door/airlock/security{ - name = "Permanent Cell 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/textured, -/area/station/security/prison/safe) -"tmb" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Ordnance Lab Maintenance" - }, -/obj/machinery/door/firedoor/heavy, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/plating, -/area/station/science/ordnance) -"tml" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"tms" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"tmw" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"tmA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/storage/gas) -"tmB" = ( -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"tmE" = ( -/obj/structure/chair/comfy/beige{ - dir = 1; - name = "Bench" - }, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron/dark, -/area/mine/eva/lower) -"tmN" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"tmQ" = ( -/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) -"tmR" = ( -/obj/structure/cable, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"tnb" = ( -/obj/structure/rack, -/turf/open/floor/plating, -/area/mine/eva/lower) -"tnp" = ( -/obj/structure/table, -/obj/item/folder/blue{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/folder/yellow, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"tnB" = ( -/obj/machinery/door/airlock{ - name = "Theater Backstage" - }, -/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/effect/mapping_helpers/airlock/access/all/service/theatre, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"tnI" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/dark_blue/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"tnX" = ( -/obj/effect/landmark/event_spawn, -/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/command/gateway) -"too" = ( -/obj/structure/flora/bush/sparsegrass/style_random, -/turf/open/floor/grass, -/area/station/maintenance/starboard/aft) -"toq" = ( -/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/effect/turf_decal/siding/yellow, -/turf/open/floor/iron, -/area/station/engineering/storage) -"tov" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"toG" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"toH" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"toV" = ( -/obj/structure/table, -/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, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"tpd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"tpj" = ( -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/machinery/firealarm/directional/south, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"tpz" = ( -/obj/structure/bookcase{ - name = "Holy Bookcase" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"tpH" = ( -/turf/closed/wall, -/area/station/security/execution/education) -"tpK" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/turf/open/floor/wood, -/area/station/security/courtroom) -"tpU" = ( -/obj/structure/chair/stool/directional/south, -/obj/machinery/flasher/directional/west{ - id = "GulagCell 3" - }, -/obj/structure/sign/poster/official/obey{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/mine/laborcamp) -"tqc" = ( -/obj/item/target, -/obj/item/target/syndicate, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced/spawner/west, -/obj/structure/window/reinforced/spawner/north, -/obj/structure/closet/crate{ - name = "Firing Range Supplies Set" - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/range) -"tqk" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/item/key/janitor, -/turf/open/floor/iron, -/area/station/service/janitor) -"tqQ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"tqZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Service Hall" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/general, -/turf/open/floor/iron/textured_half, -/area/station/hallway/secondary/service) -"trb" = ( -/obj/structure/table, -/obj/machinery/computer/security/telescreen{ - dir = 8; - name = "Test Chamber Monitor"; - network = list("test") - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"trf" = ( -/obj/structure/cable, -/obj/machinery/light/directional/north, -/obj/structure/closet/radiation, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"trl" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/white/smooth_large, -/area/station/service/kitchen/diner) -"trm" = ( -/turf/open/floor/plating, -/area/station/science/ordnance/testlab) -"tru" = ( -/obj/structure/chair/pew/left{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/starboard) -"trA" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/sign/poster/official/obey{ - pixel_x = -32 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/execution/transfer) -"trG" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"trH" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"trK" = ( -/obj/structure/disposalpipe/junction/flip, -/turf/open/floor/iron/dark, -/area/station/science/breakroom) -"tsa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/iron/freezer, -/area/station/science/xenobiology) -"tsh" = ( -/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 = 5 - }, -/turf/open/floor/wood, -/area/station/service/library) -"tsl" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"tsr" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/rnd/server/master, -/turf/open/openspace/icemoon, -/area/station/science/server) -"tsH" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Interrogation" - }, -/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, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark/textured, -/area/station/security/interrogation) -"tsJ" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"tsK" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/structure/bed{ - dir = 1 - }, -/obj/item/bedsheet/dorms{ - dir = 1 - }, -/obj/effect/spawner/random/contraband/permabrig_gear, -/turf/open/floor/iron/white, -/area/station/security/prison/safe) -"tsQ" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Public Mining Storage" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/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/commons/storage/mining) -"tsR" = ( -/obj/structure/cable, -/obj/structure/chair/stool/directional/south, -/obj/effect/decal/cleanable/oil/slippery, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"tsY" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/break_room) -"tsZ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/radio/intercom/directional/south, -/obj/structure/closet/secure_closet/psychology, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"tta" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/pen{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/folder/white{ - pixel_x = 2 - }, -/obj/machinery/light/directional/west, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"ttb" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/effect/landmark/start/chemist, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"ttk" = ( -/obj/machinery/door/airlock/freezer, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/mess) -"ttm" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/computer/accounting{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"ttv" = ( -/obj/structure/sign/painting/library{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/station/service/library) -"ttw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/white/smooth_large, -/area/station/science/lab) -"ttD" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/sign/painting/large, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/security/prison/rec) -"ttE" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/obj/structure/fence/door{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"ttL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"ttT" = ( -/obj/machinery/door/airlock/mining/glass{ - id_tag = "innercargo"; - name = "Cargo Bay" - }, -/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/supply/general, -/turf/open/floor/iron, -/area/station/cargo/storage) -"tuc" = ( -/turf/closed/wall, -/area/station/ai_monitored/security/armory) -"tue" = ( -/turf/closed/wall, -/area/station/security/checkpoint/supply) -"tug" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Distribution Loop" - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"tuk" = ( -/obj/structure/closet/crate/grave, -/turf/open/misc/dirt/dark{ - initial_gas_mix = "ICEMOON_ATMOS" - }, -/area/icemoon/underground/explored) -"tur" = ( -/turf/open/floor/iron/cafeteria{ - dir = 8 - }, -/area/station/science/ordnance/office) -"tut" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"tuv" = ( -/obj/effect/turf_decal/tile/dark{ - dir = 1 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 1 - }, -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/iron/white/side, -/area/mine/living_quarters) -"tux" = ( -/obj/structure/railing/corner, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"tuH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/prisoner, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"tuU" = ( -/obj/structure/reagent_dispensers/wall/peppertank/directional/west, -/obj/machinery/airalarm/directional/north, -/obj/structure/closet/secure_closet/security/science, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) -"tvd" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos) -"tvg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"tvu" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/mine/mechbay) -"tvv" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Research Director" - }, -/obj/structure/disposalpipe/segment{ - 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/door/firedoor/heavy, -/obj/effect/mapping_helpers/airlock/access/all/science/rd, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"tvw" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"tvx" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall/r_wall, -/area/station/maintenance/aft/greater) -"tvF" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/turf/open/floor/iron/dark/smooth_half{ - dir = 1 - }, -/area/station/engineering/engine_smes) -"tvJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"tvK" = ( -/obj/structure/closet{ - name = "Evidence Closet 2" - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark/textured_edge, -/area/station/security/brig) -"tvS" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/obj/structure/rack/gunrack, -/obj/effect/spawner/armory_spawn/shotguns, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) -"tvX" = ( -/obj/effect/landmark/start/engineering_guard, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/engineering) -"tvZ" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"twt" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/engine_smes) -"twz" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"twK" = ( -/obj/machinery/porta_turret/ai{ - dir = 8 - }, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) -"twP" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_x = -6 - }, -/obj/machinery/button/door{ - id = "Secure Gate"; - name = "Cell Shutters"; - pixel_x = 7; - pixel_y = 9 - }, -/obj/machinery/button/door{ - id = "Prison Gate"; - name = "Prison Wing Lockdown"; - pixel_x = 7; - req_access = list("brig") - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"twU" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"twZ" = ( -/obj/structure/table, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"txc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Construction Area Maintenance" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/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/construction, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"txj" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"txk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/aft) -"txo" = ( -/obj/effect/turf_decal/siding/yellow/end{ - dir = 4 - }, -/obj/machinery/plumbing/receiver, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plating, -/area/station/medical/treatment_center) -"txC" = ( -/obj/structure/disposalpipe/segment{ - 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/heads_quarters/cmo) -"txE" = ( -/obj/item/cigbutt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"txI" = ( -/obj/structure/closet/wardrobe/black, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"txU" = ( -/obj/effect/turf_decal/tile/red/half{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/smooth_half, -/area/station/security/brig/upper) -"tyb" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"tyc" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "Tool Storage" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"tyf" = ( -/obj/structure/table/reinforced, -/obj/machinery/light_switch/directional/east, -/obj/machinery/reagentgrinder{ - pixel_y = 8 - }, -/turf/open/floor/iron/dark/textured_edge{ - dir = 4 - }, -/area/station/medical/medbay/central) -"tyg" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron, -/area/station/construction) -"tyv" = ( -/obj/effect/landmark/start/librarian, -/obj/structure/chair/office, -/turf/open/floor/wood, -/area/station/service/library) -"tyK" = ( -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/iron, -/area/station/service/janitor) -"tyS" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Mix to Distro" - }, -/turf/open/floor/glass/reinforced, -/area/station/engineering/atmos/pumproom) -"tza" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"tzf" = ( -/obj/effect/turf_decal/tile/green/anticorner/contrasted, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"tzp" = ( -/obj/structure/disposalpipe/segment, -/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/greater) -"tzv" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/light/small/directional/west, -/obj/structure/sign/warning/gas_mask{ - desc = "A sign that warns of dangerous gasses in the air, instructing you to wear internals."; - pixel_x = 3; - pixel_y = -32 - }, -/turf/open/floor/iron/dark/side, -/area/mine/eva/lower) -"tzE" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/end{ - dir = 4 - }, -/turf/open/floor/plating, -/area/mine/eva) -"tzO" = ( -/obj/effect/spawner/random/structure/crate, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"tzR" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L1" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"tAe" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/chem_dispenser/drinks{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/obj/structure/table/wood, -/turf/open/floor/stone, -/area/station/service/bar) -"tAg" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"tAh" = ( -/obj/structure/table, -/obj/item/ai_module/reset, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"tAi" = ( -/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, -/turf/open/floor/plating, -/area/station/commons/storage/mining) -"tAx" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"tAA" = ( -/obj/structure/table/glass, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/iron/chapel{ - dir = 4 - }, -/area/station/service/chapel) -"tAM" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/spawner/random/vending/snackvend, -/obj/structure/sign/departments/restroom/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/break_room) -"tAR" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Port Hallway 3" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"tAS" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Dock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "miner-passthrough" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"tBs" = ( -/turf/closed/wall, -/area/station/maintenance/department/chapel) -"tBB" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness) -"tBD" = ( -/obj/machinery/computer/telecomms/monitor{ - dir = 4; - network = "tcommsat" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"tBK" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"tBN" = ( -/obj/structure/table, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/fore) -"tBP" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/sign/warning/secure_area/directional/west, -/turf/open/floor/engine, -/area/station/science/explab) -"tBW" = ( -/obj/structure/railing{ - dir = 5 - }, -/obj/structure/sign/warning/biohazard/directional/west, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"tCe" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"tCf" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "medsecprivacy"; - name = "Privacy Shutter" - }, -/obj/machinery/door/window/brigdoor/left/directional/east{ - name = "Orderly Office's Desk"; - req_access = list("brig_entrance") - }, -/turf/open/floor/plating, -/area/station/security/checkpoint/medical) -"tCj" = ( -/obj/structure/sign/warning, -/turf/closed/wall/r_wall, -/area/icemoon/surface/outdoors/nospawn) -"tCl" = ( -/obj/machinery/smartfridge/food, -/turf/closed/wall, -/area/station/service/kitchen) -"tCo" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/paper_bin{ - pixel_y = 4 - }, -/obj/item/folder/white{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen{ - pixel_x = -4 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"tCr" = ( -/obj/structure/grille, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"tCs" = ( -/obj/structure/table, -/obj/item/book/manual/hydroponics_pod_people, -/obj/item/watertank, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"tCx" = ( -/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/white, -/area/station/science/xenobiology) -"tCB" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"tCE" = ( -/obj/structure/table/glass, -/obj/item/storage/medkit/fire{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/medkit/fire, -/obj/item/storage/medkit/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/machinery/door/window/left/directional/north{ - dir = 4; - name = "First-Aid Supplies"; - red_alert_access = 1; - req_access = list("medical") - }, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/maintenance/department/medical) -"tCF" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/camera/autoname/directional/east, -/obj/effect/turf_decal/trimline/dark_blue/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"tCL" = ( -/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/security/prison/work) -"tCM" = ( -/obj/structure/bed{ - dir = 4 - }, -/obj/item/bedsheet/medical{ - dir = 4 - }, -/obj/item/storage/secure/safe/directional/south, -/obj/effect/turf_decal/tile/green/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/medical/virology) -"tCO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/mine/eva) -"tCR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "Interrogation"; - name = "Interrogation Shutters" - }, -/turf/open/floor/plating, -/area/station/security/interrogation) -"tCT" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/station/service/bar) -"tCV" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Security - Permabrig Observation Prep"; - network = list("ss13","prison") - }, -/obj/structure/sign/poster/official/safety_internals{ - pixel_x = -32 - }, -/turf/open/floor/vault, -/area/station/security/prison/rec) -"tCW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/machinery/meter, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"tDa" = ( -/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, -/area/mine/production) -"tDg" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/glass/reinforced/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"tDk" = ( -/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, -/area/station/security/brig/upper) -"tDv" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"tDw" = ( -/obj/machinery/suit_storage_unit/hos, -/obj/structure/reagent_dispensers/wall/peppertank/directional/west, -/turf/open/floor/iron/dark/smooth_large, -/area/station/command/heads_quarters/hos) -"tDy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"tDF" = ( -/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/hallway/primary/central) -"tDL" = ( -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) -"tDN" = ( -/obj/structure/chair{ - name = "Defense" - }, -/obj/effect/landmark/start/lawyer, -/turf/open/floor/wood, -/area/station/security/courtroom) -"tDU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron, -/area/station/cargo/storage) -"tDX" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/paper_bin{ - pixel_y = 4 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/pen{ - pixel_x = -4 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"tDY" = ( -/obj/machinery/vending/cola/sodie, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"tEj" = ( -/obj/machinery/conveyor{ - dir = 9; - id = "QMLoad" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"tEC" = ( -/obj/structure/ore_box, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"tEG" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"tEK" = ( -/obj/structure/table, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/iron, -/area/station/commons/storage/mining) -"tEL" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"tEZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"tFd" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"tFs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"tFC" = ( -/obj/effect/turf_decal/tile/dark{ - dir = 8 - }, -/obj/effect/turf_decal/tile/dark, -/obj/effect/turf_decal/stripes/asteroid/line, -/turf/open/floor/iron/white/side{ - dir = 1 - }, -/area/mine/living_quarters) -"tFP" = ( -/obj/structure/closet/crate, -/obj/machinery/light/small/directional/east, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"tFW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"tGi" = ( -/obj/effect/turf_decal/stripes/end, -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron/smooth, -/area/mine/eva/lower) -"tGm" = ( -/obj/machinery/computer/prisoner/management{ - dir = 1 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"tGr" = ( -/turf/closed/mineral/random/snow, -/area/icemoon/surface/outdoors/nospawn) -"tGx" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Departure Lounge East" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"tGB" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/obj/structure/cable, -/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, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"tGF" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Bridge East" - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"tGH" = ( -/obj/structure/cable, -/turf/open/floor/iron/edge{ - dir = 1 - }, -/area/station/engineering/lobby) -"tGP" = ( -/obj/machinery/conveyor{ - id = "gulag" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/mine/laborcamp) -"tGZ" = ( -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"tHe" = ( -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"tHr" = ( -/turf/closed/wall/r_wall, -/area/station/medical/treatment_center) -"tHt" = ( -/obj/structure/window/reinforced/tinted/frosted{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/station/security/prison/work) -"tHv" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"tHN" = ( -/obj/structure/window/reinforced, -/obj/machinery/light/directional/west, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/service/chapel) -"tHQ" = ( -/obj/effect/turf_decal/tile/dark{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/asteroid/corner{ - dir = 4 - }, -/obj/structure/table/reinforced/plastitaniumglass, -/obj/item/folder/white, -/turf/open/floor/iron/white/side{ - dir = 10 - }, -/area/mine/living_quarters) -"tHT" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/camera/directional/south{ - c_tag = "Ordnance Upper Mix Lab"; - network = list("ss13","rd") - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"tIf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/security/processing) -"tIq" = ( -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"tIt" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/structure/sign/warning/chem_diamond/directional/west, -/obj/machinery/light/directional/west, -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"tIu" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = 13 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"tIv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiomain"; - name = "Containment Blast Door" - }, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"tIM" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/fore/lesser) -"tIS" = ( -/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/white, -/area/station/security/prison/safe) -"tIW" = ( -/obj/structure/disposalpipe/segment, -/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/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"tIX" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"tJa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"tJe" = ( -/obj/structure/lattice/catwalk, -/obj/structure/window/reinforced, -/obj/structure/reagent_dispensers/watertank, -/turf/open/openspace, -/area/station/science/xenobiology) -"tJv" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos) -"tJD" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/misc/dirt/dark{ - initial_gas_mix = "ICEMOON_ATMOS" - }, -/area/icemoon/underground/explored) -"tJE" = ( -/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, -/obj/effect/spawner/random/structure/steam_vent, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"tJG" = ( -/obj/machinery/firealarm/directional/south, -/obj/item/experi_scanner{ - pixel_x = 4 - }, -/obj/item/experi_scanner, -/obj/item/experi_scanner{ - pixel_x = -4 - }, -/obj/structure/table/glass, -/turf/open/floor/iron/white/side{ - dir = 1 - }, -/area/station/science/lab) -"tJI" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "robo1" - }, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"tJN" = ( -/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, -/area/station/security/office) -"tJR" = ( -/obj/structure/rack, -/obj/item/tank/internals/oxygen, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/station/command/teleporter) -"tJV" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/beakers{ - pixel_y = 7 - }, -/obj/item/assembly/igniter{ - pixel_y = -3 - }, -/turf/open/floor/iron/dark/textured_edge{ - dir = 4 - }, -/area/station/medical/medbay/central) -"tKa" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/cable, -/obj/machinery/computer/prisoner/management, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"tKf" = ( -/obj/structure/closet, -/obj/machinery/light/small/directional/north, -/obj/structure/sign/poster/official/random/directional/east, -/turf/open/floor/carpet/donk, -/area/mine/production) -"tKi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/lobby) -"tKl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/meter/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"tKm" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"tKn" = ( -/obj/machinery/light/directional/north, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"tKz" = ( -/obj/structure/closet/wardrobe/mixed, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"tKA" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"tKB" = ( -/obj/structure/chair/pew/left, -/turf/open/floor/wood, -/area/station/security/prison/rec) -"tKI" = ( -/turf/closed/wall, -/area/station/maintenance/port/greater) -"tKN" = ( -/obj/structure/chair/stool/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"tKR" = ( -/obj/machinery/chem_dispenser, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/yellow/full, -/obj/structure/sign/warning/no_smoking/directional/north, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/pharmacy) -"tKV" = ( -/obj/structure/table_frame, -/obj/effect/decal/cleanable/glass, -/obj/item/food/canned/peaches/maint, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"tKZ" = ( -/obj/machinery/light/directional/north, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"tLc" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Public Mining Storage"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/sign/warning/gas_mask/directional/south{ - desc = "A sign that warns of dangerous gasses in the air, instructing you to wear internals." - }, -/obj/structure/sign/warning/cold_temp/directional/north, -/turf/open/floor/iron/dark, -/area/mine/storage) -"tLp" = ( -/obj/machinery/computer/med_data{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/command/heads_quarters/cmo) -"tLF" = ( -/turf/closed/wall, -/area/station/hallway/primary/starboard) -"tLM" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Robotics Lab - South"; - network = list("ss13","rd") - }, -/obj/machinery/mechpad, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"tLQ" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/iron/chapel{ - dir = 1 - }, -/area/station/service/chapel) -"tLT" = ( -/obj/structure/disposalpipe/segment, -/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, -/area/station/science/ordnance/testlab) -"tLW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"tMe" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/computer/mechpad{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"tMk" = ( -/obj/machinery/duct, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - name = "Virology Service Room" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/turf/open/floor/plating, -/area/station/medical/virology) -"tMu" = ( -/obj/structure/sign/departments/medbay/alt/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/mine/laborcamp) -"tMD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"tMG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"tMO" = ( -/turf/closed/wall, -/area/station/medical/break_room) -"tMY" = ( -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, -/obj/structure/closet, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"tNi" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"tNA" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Chapel Maintenance External Airlock"; - opacity = 0 - }, -/obj/structure/sign/warning/cold_temp/directional/north, -/obj/structure/sign/warning/gas_mask/directional/south{ - desc = "A sign that warns of dangerous gasses in the air, instructing you to wear internals." - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"tND" = ( -/obj/effect/turf_decal/stripes/asteroid/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 4 - }, -/turf/open/floor/iron/white/side{ - dir = 10 - }, -/area/mine/living_quarters) -"tNJ" = ( -/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/lesser) -"tNY" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"tOf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio1"; - name = "Xenobio Pen 1 Blast Door" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/warning/electric_shock, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"tOw" = ( -/turf/closed/wall, -/area/station/commons/toilet/locker) -"tOy" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/layer_manifold/general/visible{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/dark_blue/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"tOF" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/command/meeting_room) -"tOJ" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/official/random/directional/west, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/mine/eva) -"tOX" = ( -/obj/machinery/light/small/broken/directional/south, -/obj/item/trash/energybar, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"tPg" = ( -/obj/structure/table/wood, -/obj/item/food/chips, -/obj/item/reagent_containers/food/drinks/soda_cans/cola, -/turf/open/floor/carpet, -/area/station/hallway/secondary/entry) -"tPz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white/side{ - dir = 6 - }, -/area/station/science/research) -"tPC" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/command/bridge) -"tPG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/iron, -/area/station/science/ordnance) -"tPI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/table, -/obj/item/hand_labeler, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"tPM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/obj/structure/disposalpipe/segment{ - 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/plating, -/area/station/maintenance/department/medical/morgue) -"tPR" = ( -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"tPW" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Secure Walkway" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/security/checkpoint/auxiliary) -"tPY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"tQb" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"tQc" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/storage) -"tQJ" = ( -/obj/machinery/modular_computer/console/preset/civilian, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"tQM" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) -"tQW" = ( -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/turf/open/floor/iron/dark, -/area/mine/eva) -"tQX" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/upper) -"tRc" = ( -/obj/effect/turf_decal/trimline, -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/sign/warning/gas_mask/directional/south{ - desc = "A sign that warns of dangerous gasses in the air, instructing you to wear internals." - }, -/turf/open/floor/iron/smooth, -/area/mine/eva/lower) -"tRd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"tRA" = ( -/obj/machinery/door/airlock{ - name = "Bar" - }, -/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/bar, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"tRE" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/siding/wood/corner, -/obj/machinery/light/small/directional/east, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/wood, -/area/station/service/library) -"tRG" = ( -/obj/machinery/light/directional/south, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/turf_decal/tile/brown, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"tRX" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/upper) -"tRZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/yellow, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"tSc" = ( -/obj/machinery/computer/operating{ - dir = 1; - name = "Robotics Operating Computer" - }, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"tSs" = ( -/obj/item/flashlight/lantern{ - light_on = 1 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"tSt" = ( -/obj/structure/sign/painting/library, -/turf/closed/wall, -/area/station/service/library) -"tSx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"tSy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"tSA" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"tSN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"tTw" = ( -/obj/structure/stairs/east, -/obj/structure/railing, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"tTL" = ( -/obj/structure/chair, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"tTT" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/commons/locker) -"tTV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) -"tTY" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"tUh" = ( -/obj/item/chair/wood, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/space_hut/cabin) -"tUn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"tUo" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/ordnance) -"tUx" = ( -/obj/effect/spawner/random/trash/moisture_trap, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"tUK" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/turf/open/floor/plating, -/area/mine/living_quarters) -"tUN" = ( -/obj/machinery/atmospherics/components/binary/pump, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"tUO" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge" - }, -/obj/structure/disposalpipe/segment{ - 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/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron, -/area/station/command/bridge) -"tUV" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"tVf" = ( -/turf/closed/wall, -/area/station/security/prison) -"tVj" = ( -/obj/effect/turf_decal/weather/snow/corner, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating/snowed/icemoon, -/area/mine/eva) -"tVn" = ( -/obj/structure/cable, -/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/iron/dark, -/area/station/science/server) -"tVr" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/siding/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) -"tVA" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot, -/obj/structure/closet/radiation, -/obj/item/analyzer, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"tVH" = ( -/turf/open/floor/iron/white, -/area/station/maintenance/fore/greater) -"tVR" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/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) -"tWc" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/spawner/random/trash/soap, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"tWd" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "Xenobio Pen 6 Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"tWp" = ( -/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/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "ai-passthrough" - }, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Atmospherics" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"tWy" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "MiniSat External Access" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/command/minisat, -/obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"tWD" = ( -/obj/machinery/microwave{ - pixel_y = 5; - name = "Emergency Heating Appliance"; - desc = "Turn it on and you'll immediately get warmer! Warranty void if left in weather conditions." - }, -/obj/structure/table, -/turf/open/floor/plating/snowed/coldroom, -/area/station/service/kitchen/coldroom) -"tWK" = ( -/obj/structure/cable, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"tWL" = ( -/obj/machinery/computer/operating, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/large, -/area/station/medical/treatment_center) -"tWO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/camera/directional/south{ - c_tag = "Security - Permabrig Workroom" - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/security/prison/work) -"tWT" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock) -"tWZ" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"tXb" = ( -/obj/structure/table, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"tXc" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"tXd" = ( -/obj/machinery/seed_extractor, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 1 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Security - Permabrig Forestry"; - network = list("ss13","prison") - }, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"tXh" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"tXw" = ( -/obj/machinery/conveyor{ - dir = 10; - id = "garbage" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"tXy" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - 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/commons/fitness) -"tXB" = ( -/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/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"tXE" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) -"tXV" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Chapel Mass Driver" - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"tXX" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"tXY" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/multitool, -/obj/item/clothing/glasses/meson, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"tYe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/server) -"tYl" = ( -/obj/machinery/requests_console/directional/west{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - receive_ore_updates = 1; - supplies_requestable = 1 - }, -/obj/machinery/computer/rdconsole{ - dir = 4 - }, -/turf/open/floor/iron/checker, -/area/station/science/lab) -"tYm" = ( -/obj/structure/rack, -/obj/item/storage/box/evidence, -/obj/item/storage/box/evidence, -/obj/machinery/button/door{ - id = "Trial Transfer"; - name = "Trial Transfer Lockdown"; - pixel_x = -7; - pixel_y = -23; - req_access = list("brig") - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron/textured, -/area/station/security/brig) -"tYs" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/iron/cafeteria{ - dir = 8 - }, -/area/station/science/ordnance/office) -"tYz" = ( -/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/mine/eva/lower) -"tYJ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"tYR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/iron, -/area/station/cargo/storage) -"tYZ" = ( -/obj/machinery/door/airlock/external{ - name = "External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"tZa" = ( -/obj/effect/turf_decal/weather/snow, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"tZc" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/fore/greater) -"tZd" = ( -/obj/machinery/hydroponics/soil{ - pixel_y = 8 - }, -/obj/item/shovel/spade, -/turf/open/floor/grass, -/area/station/maintenance/starboard/aft) -"tZe" = ( -/obj/machinery/vending/wardrobe/gene_wardrobe, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"tZf" = ( -/obj/structure/cable, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"tZm" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"tZp" = ( -/obj/structure/ladder, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"tZG" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ - dir = 8 - }, -/obj/machinery/meter, -/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage) -"tZO" = ( -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 8 - }, -/obj/structure/sign/poster/official/build{ - pixel_y = 32 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) -"tZR" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/structure/plasticflaps, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"tZS" = ( -/obj/machinery/light/small/directional/south, -/turf/open/misc/asteroid/snow/icemoon, -/area/mine/eva) -"tZZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"uab" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - name = "AI Upload Access" - }, -/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/command/ai_upload, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"uan" = ( -/obj/structure/disposalpipe/trunk/multiz, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"uar" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"uau" = ( -/turf/open/openspace, -/area/station/medical/medbay/lobby) -"uaz" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/heads_quarters/ce) -"uaG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/storage) -"uaP" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"uaW" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/chair/sofa/right{ - dir = 1 - }, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/break_room) -"ubk" = ( -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"ubo" = ( -/obj/machinery/door_timer{ - id = "Cell 1"; - name = "Cell 1"; - pixel_x = -32 - }, -/obj/machinery/door/poddoor/preopen{ - id = "Prison Gate"; - name = "Prison Blast Door" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/textured, -/area/station/security/brig) -"ubq" = ( -/turf/open/floor/iron/white, -/area/station/medical/storage) -"ubF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ubI" = ( -/obj/structure/ladder{ - name = "upper dispenser access" - }, -/obj/structure/sign/warning/no_smoking/directional/east, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/iron/dark/textured_large, -/area/station/medical/chemistry) -"ubY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair/stool/directional/south, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/science/breakroom) -"ucl" = ( -/obj/machinery/door/window/left/directional/north{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen 4"; - req_access = list("xenobiology") - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio4"; - name = "Xenobio Pen 4 Blast Door" - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"ucp" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"ucx" = ( -/obj/structure/chair/comfy/brown, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"ucB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"ucN" = ( -/turf/closed/wall/r_wall, -/area/station/security/detectives_office) -"ucO" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"udg" = ( -/obj/structure/window/reinforced/spawner/north, -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/workout) -"udw" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"udA" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"udC" = ( -/turf/open/genturf/alternative, -/area/icemoon/underground/unexplored/rivers/deep/shoreline) -"udE" = ( -/obj/effect/spawner/random/vending/snackvend, -/turf/open/floor/iron/dark, -/area/mine/eva) -"udK" = ( -/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/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"udL" = ( -/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/glass, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"udQ" = ( -/obj/structure/table, -/obj/item/computer_hardware/hard_drive/portable/ordnance, -/obj/item/computer_hardware/hard_drive/portable/ordnance, -/obj/item/computer_hardware/hard_drive/portable/ordnance, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"udX" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"uee" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"uei" = ( -/obj/machinery/power/solar{ - id = "auxsolareast"; - name = "Port Auxiliary Solar Array" - }, -/obj/structure/cable, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"ueo" = ( -/obj/machinery/light/warm/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/cafeteria, -/area/station/security/prison/mess) -"uep" = ( -/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/central) -"uer" = ( -/obj/structure/flora/tree/pine/style_random, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"uey" = ( -/obj/machinery/power/supermatter_crystal/engine, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"ueD" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Maintenance External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/sign/warning/directional/north, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"ueE" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/east{ - pixel_y = -6 - }, -/obj/structure/cable, -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"ueH" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/mine/eva/lower) -"ueN" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"ueP" = ( -/obj/structure/table, -/obj/structure/reagent_dispensers/servingdish, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"ueQ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/right/directional/south{ - dir = 4; - name = "Genetics Desk"; - req_access = list("genetics") - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "gene_desk_shutters"; - name = "Genetics Shutters"; - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/station/science/genetics) -"ueV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/engine, -/area/station/engineering/atmos/hfr_room) -"ufe" = ( -/obj/machinery/light/directional/west, -/obj/structure/closet/secure_closet/freezer/gulag_fridge, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"ufm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/processing) -"ufw" = ( -/obj/machinery/door/firedoor, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"ufF" = ( -/obj/structure/table, -/obj/item/storage/box/prisoner{ - pixel_y = 8 - }, -/obj/item/storage/box/prisoner, -/turf/open/floor/iron/smooth, -/area/station/security/execution/transfer) -"ufN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"ugd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/camera/directional/south{ - c_tag = "Security - Permabrig Meditation"; - network = list("ss13","prison") - }, -/turf/open/floor/sepia, -/area/station/security/prison/rec) -"ugq" = ( -/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) -"ugs" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/obj/machinery/requests_console/auto_name/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"ugP" = ( -/obj/effect/turf_decal/siding/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison) -"ugR" = ( -/obj/structure/reagent_dispensers/watertank/high, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos) -"ugW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"uha" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"uhk" = ( -/obj/structure/beebox, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"uht" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Pure to Mix" - }, -/obj/effect/turf_decal/siding/wideplating{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"uhx" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"uhC" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"uhD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"uhH" = ( -/obj/machinery/door/airlock/engineering{ - name = "Chemistry Lab Utilities" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"uhP" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/sign/warning/deathsposal/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"uie" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Testing Chamber"; - network = list("test","rd") - }, -/obj/machinery/light/directional/south, -/turf/open/floor/engine, -/area/station/science/explab) -"uif" = ( -/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/engineering/main) -"uig" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/brown{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"uim" = ( -/obj/effect/spawner/random/trash/moisture_trap, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/fore/lesser) -"uin" = ( -/obj/structure/sign/warning/fire/directional/south, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/dark_green/arrow_ccw, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"uip" = ( -/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/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron, -/area/service/salon) -"uiq" = ( -/obj/machinery/computer/atmos_control/plasma_tank{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"uiv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"uiw" = ( -/obj/machinery/vending/wardrobe/hydro_wardrobe, -/obj/effect/turf_decal/siding/thinplating/dark, -/turf/open/floor/plating, -/area/station/service/hydroponics) -"uiI" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/three, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"uiK" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/camera/directional/south, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"uiM" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/nuke_storage) -"uiN" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/box/red, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"uiZ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1; - sortType = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"uja" = ( -/turf/closed/wall, -/area/station/commons/toilet) -"ujj" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"ujp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"ujq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/light/dim/directional/south, -/obj/machinery/requests_console/directional/south{ - assistance_requestable = 1; - department = "Medbay"; - departmentType = 1; - name = "Medbay Requests Console" - }, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"ujr" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/mine/eva) -"ujs" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai) -"ujB" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron/smooth, -/area/station/engineering/lobby) -"ujI" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"ukb" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness) -"uke" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron, -/area/service/salon) -"ukf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/iron/dark, -/area/station/science/explab) -"ukg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/autodrobe, -/obj/structure/light_construct/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"uko" = ( -/obj/structure/chair/pew/left{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"ukw" = ( -/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/turf_decal/tile/bar/opposingcorners, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/bar) -"ukz" = ( -/obj/machinery/duct, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"ukA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/cafeteria, -/area/station/maintenance/port/aft) -"ukD" = ( -/obj/effect/decal/cleanable/dirt, -/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, -/turf/open/floor/iron, -/area/mine/laborcamp) -"ukN" = ( -/obj/structure/table, -/obj/machinery/door/poddoor/shutters{ - id = "visitation"; - name = "Visitation Shutters" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/left/directional/north, -/obj/machinery/door/window/left/directional/south, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"ukV" = ( -/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/lizard, -/obj/item/reagent_containers/blood/ethereal, -/obj/item/reagent_containers/blood, -/obj/item/reagent_containers/blood, -/obj/item/reagent_containers/blood, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"ulj" = ( -/obj/structure/flora/tree/pine/style_random, -/obj/structure/flora/grass/green/style_random, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"ulk" = ( -/obj/structure/chair/stool/directional/west, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/commons/dorms) -"ulm" = ( -/obj/structure/chair/sofa/corner, -/obj/structure/cable, -/turf/open/floor/carpet/blue, -/area/station/security/prison/work) -"ult" = ( -/turf/closed/wall/r_wall, -/area/station/science/robotics/lab) -"ulz" = ( -/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/security/prison/safe) -"ulK" = ( -/obj/effect/turf_decal/caution{ - dir = 8 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/station/cargo/miningdock) -"uma" = ( -/obj/item/chisel, -/obj/item/storage/toolbox/artistic, -/obj/structure/rack, -/obj/item/storage/crayons, -/turf/open/floor/sepia, -/area/station/security/prison/rec) -"umi" = ( -/obj/structure/window/reinforced, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"umo" = ( -/obj/structure/chair/plastic{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron, -/area/mine/living_quarters) -"umz" = ( -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"umC" = ( -/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/decal/cleanable/dirt, -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"umD" = ( -/obj/effect/turf_decal/trimline/yellow/end{ - dir = 1 - }, -/obj/machinery/exodrone_launcher, -/obj/item/fuel_pellet, -/obj/effect/turf_decal/trimline/yellow/mid_joiner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/mid_joiner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/mid_joiner{ - dir = 1 - }, -/turf/open/floor/iron/smooth_large, -/area/station/cargo/drone_bay) -"umF" = ( -/obj/structure/stairs/north, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/chapel) -"umK" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder{ - desc = "Used to grind things up into raw materials and liquids."; - pixel_y = 5 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"umR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"una" = ( -/obj/machinery/door/window/left/directional/west, -/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/carpet/blue, -/area/station/security/prison/work) -"unc" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/effect/spawner/random/vending/snackvend, -/obj/machinery/camera/directional/east{ - c_tag = "Engineering Lobby" - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) -"unm" = ( -/obj/machinery/plumbing/growing_vat, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/work) -"unu" = ( -/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/starboard/fore) -"unw" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"unM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"unO" = ( -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/clipboard, -/obj/item/pen/red, -/obj/structure/table, -/turf/open/floor/iron, -/area/station/cargo/office) -"uog" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"uoi" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 12 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/obj/item/reagent_containers/glass/bottle/ammonia, -/obj/machinery/airalarm/directional/south, -/obj/effect/spawner/random/contraband/prison, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"uop" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 5 - }, -/turf/open/floor/iron/textured, -/area/station/engineering/atmos) -"uoB" = ( -/obj/structure/disposalpipe/junction/yjunction{ - 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/plating, -/area/station/maintenance/port/aft) -"uoC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rnd2"; - name = "Research Lab Shutters"; - dir = 8 - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plating, -/area/station/science/ordnance/office) -"uoE" = ( -/obj/effect/turf_decal/stripes/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/engineering/atmos) -"uoF" = ( -/obj/machinery/pdapainter/engineering, -/obj/effect/turf_decal/tile/neutral/full, -/obj/machinery/button/door/directional/west{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_y = 10; - req_access = list("engineering") - }, -/obj/machinery/button/door/directional/west{ - id = "Secure Storage"; - name = "Engineering Secure Storage"; - req_access = list("engine_equip") - }, -/obj/machinery/button/door/directional/west{ - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_y = -10; - req_access = list("engineering") - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/command/heads_quarters/ce) -"uoT" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/structure/table, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/command/teleporter) -"uoV" = ( -/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) -"upa" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"upd" = ( -/obj/machinery/vending/medical{ - pixel_x = -2 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"upw" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison) -"upH" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos/mix) -"upK" = ( -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - dir = 4; - name = "Supply multi deck pipe adapter" - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"upO" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/structure/tank_holder/extinguisher, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"uqa" = ( -/obj/docking_port/stationary/random/icemoon{ - id = "pod_3_lavaland"; - name = "lavaland" - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"uqg" = ( -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "QMLoad" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"uqB" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/effect/turf_decal/tile/blue/diagonal_edge, -/obj/machinery/vending/wardrobe/chef_wardrobe{ - pixel_y = 0; - pixel_x = -2 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"uqC" = ( -/obj/structure/rack, -/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/machinery/computer/security/telescreen/auxbase{ - dir = 8; - pixel_x = 30 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"uqF" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"uqG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"uqH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"urd" = ( -/obj/structure/chair/stool/directional/north, -/turf/open/floor/iron, -/area/station/commons/dorms) -"urk" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/structure/cable, -/turf/open/floor/iron/dark/side, -/area/mine/eva) -"urt" = ( -/obj/machinery/hydroponics/soil, -/obj/machinery/light/directional/east, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"urw" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/starboard) -"urx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"urG" = ( -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"urK" = ( -/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/research) -"uso" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/random/contraband/prison, -/obj/item/trash/chips, -/obj/item/trash/candy, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"usx" = ( -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/laborcamp) -"usI" = ( -/obj/effect/turf_decal/tile/red/full, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/large, -/area/station/service/kitchen/diner) -"usP" = ( -/turf/open/misc/asteroid/snow/standard_air, -/area/station/science/research) -"usQ" = ( -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"usS" = ( -/obj/structure/bed{ - dir = 1 - }, -/obj/item/bedsheet/dorms{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/dark/side{ - dir = 10 - }, -/area/station/security/prison/safe) -"utl" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=CHW"; - location = "Lockers" - }, -/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, -/area/station/hallway/primary/port) -"utr" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/clothing/glasses/welding, -/obj/item/multitool{ - pixel_x = 3 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"utz" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/item/radio/intercom/directional/east, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"utA" = ( -/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) -"utR" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"uub" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Port to Fuel Pipe" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"uud" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/tcomms_all, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"uum" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Chapel" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/sepia, -/area/station/service/library) -"uuq" = ( -/obj/structure/disposalpipe/segment, -/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, -/area/station/hallway/primary/central) -"uuw" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark_blue/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/dark_red/end{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"uuC" = ( -/obj/structure/railing/corner, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"uuI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"uuP" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/office) -"uuX" = ( -/obj/effect/turf_decal/weather/snow/corner, -/obj/machinery/light/small/directional/north, -/obj/structure/sign/departments/maint/directional/north, -/turf/open/floor/plating/snowed/icemoon, -/area/mine/eva) -"uvi" = ( -/obj/machinery/door/firedoor, -/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/medical/cryo) -"uvm" = ( -/obj/machinery/hydroponics/soil, -/obj/machinery/light/directional/west, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"uvp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"uvt" = ( -/turf/closed/wall, -/area/station/science/robotics/mechbay) -"uvv" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"uvM" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle, -/turf/open/floor/plating, -/area/mine/production) -"uvX" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"uwb" = ( -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"uwf" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"uwj" = ( -/obj/machinery/duct, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark/smooth_half{ - dir = 1 - }, -/area/station/engineering/lobby) -"uwB" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig Walkway" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brigoutpost" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron/dark/textured_edge{ - dir = 8 - }, -/area/station/security/checkpoint/auxiliary) -"uwH" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 9 - }, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"uwO" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Custodial 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/service/janitor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"uxj" = ( -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron/white/side{ - dir = 10 - }, -/area/station/science/research) -"uxp" = ( -/turf/open/floor/iron/stairs/medium{ - dir = 4 - }, -/area/station/engineering/lobby) -"uxx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/air_output{ - dir = 1 - }, -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"uxA" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"uxF" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible/layer2, -/obj/machinery/air_sensor/incinerator_tank, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"uxK" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"uyq" = ( -/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/mine/eva/lower) -"uyA" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/mine/eva) -"uyF" = ( -/obj/machinery/newscaster/directional/south, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"uyO" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/line{ - dir = 5 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/dark/textured, -/area/station/medical/treatment_center) -"uyU" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"uyV" = ( -/obj/item/target/alien/anchored, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/icemoon, -/area/station/science/ordnance/bomb) -"uza" = ( -/obj/machinery/computer/exoscanner_control{ - dir = 1 - }, -/obj/machinery/light_switch/directional/east{ - pixel_x = 22; - pixel_y = 8 - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/dark, -/area/station/cargo/drone_bay) -"uzc" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/decal/cleanable/food/flour, -/turf/open/floor/iron, -/area/station/service/bar) -"uzd" = ( -/obj/structure/rack, -/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp{ - pixel_y = 4 - }, -/turf/open/floor/iron/smooth, -/area/mine/mechbay) -"uze" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"uzi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"uzs" = ( -/obj/effect/turf_decal/tile/dark/fourcorners, -/obj/structure/rack, -/obj/item/pickaxe, -/turf/open/floor/iron, -/area/mine/living_quarters) -"uzB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"uzK" = ( -/obj/machinery/light_switch/directional/west, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"uzL" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/maintenance/fore/greater) -"uzM" = ( -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison) -"uAi" = ( -/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{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Atmospherics - HFR"; - name = "atmospherics camera" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"uAx" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"uAE" = ( -/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/security/range) -"uAJ" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"uAK" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 1 - }, -/obj/machinery/duct, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"uBi" = ( -/turf/closed/wall, -/area/station/ai_monitored/turret_protected/ai) -"uBs" = ( -/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/ai_monitored/security/armory) -"uBt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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, -/area/station/commons/fitness) -"uBy" = ( -/obj/structure/flora/grass/brown/style_random, -/obj/structure/railing{ - dir = 9 - }, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"uBA" = ( -/turf/closed/wall, -/area/station/engineering/atmos/project) -"uBM" = ( -/obj/structure/rack, -/obj/effect/spawner/random/clothing/costume, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) -"uBP" = ( -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"uCe" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"uCg" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_y = 4 - }, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"uCo" = ( -/obj/structure/flora/bush/flowers_br/style_random, -/obj/item/shovel, -/turf/open/floor/grass, -/area/station/maintenance/starboard/aft) -"uCJ" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/research/glass{ - name = "Test Chamber" - }, -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "Test Chamber Blast Door" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/effect/mapping_helpers/airlock/access/all/science/research, -/turf/open/floor/engine, -/area/station/science/explab) -"uCN" = ( -/obj/structure/grille/broken, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"uCU" = ( -/obj/machinery/button/flasher{ - id = "executionflash"; - pixel_x = -24; - pixel_y = 5 - }, -/obj/machinery/button/door/directional/west{ - id = "executionfireblast"; - name = "Transfer Area Lockdown"; - pixel_y = -6; - req_access = list("brig") - }, -/obj/structure/railing, -/obj/machinery/door/window/left/directional/south, -/turf/open/floor/plating/icemoon, -/area/station/security/execution/education) -"uDi" = ( -/obj/structure/closet/emcloset/anchored, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating, -/area/station/engineering/storage_shared) -"uDk" = ( -/obj/structure/rack, -/obj/item/clothing/head/soft/blue{ - pixel_x = 8 - }, -/obj/item/clothing/head/soft/blue{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/item/clothing/head/soft/blue{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/clothing/head/soft/red{ - pixel_x = -5 - }, -/obj/item/clothing/head/soft/red{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/clothing/head/soft/red{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Security - Permabrig Workout"; - network = list("ss13","prison"); - view_range = 5 - }, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"uDl" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"uDq" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/training_machine, -/obj/item/target, -/turf/open/floor/iron, -/area/station/commons/fitness) -"uDr" = ( -/obj/item/stamp{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stamp/denied{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/structure/table, -/turf/open/floor/iron, -/area/station/cargo/office) -"uDE" = ( -/obj/structure/table, -/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 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) -"uDF" = ( -/obj/machinery/duct, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"uDL" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/machinery/computer/mechpad{ - dir = 8 - }, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/machinery/light/small/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/mine/mechbay) -"uDN" = ( -/obj/effect/turf_decal/stripes{ - dir = 6 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"uDP" = ( -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"uDR" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"uDT" = ( -/obj/effect/landmark/xeno_spawn, -/obj/item/bikehorn/rubberducky, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"uDW" = ( -/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/fore) -"uEj" = ( -/obj/machinery/computer/gateway_control, -/turf/open/floor/iron, -/area/station/command/gateway) -"uEm" = ( -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"uEr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/medical_kiosk, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/large, -/area/station/medical/treatment_center) -"uEA" = ( -/obj/structure/closet/crate, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"uEE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"uEJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"uEQ" = ( -/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) -"uFf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/processing) -"uFh" = ( -/turf/open/floor/plating, -/area/station/construction) -"uFz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"uFH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"uFI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"uFM" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage) -"uFW" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/item/stack/package_wrap{ - pixel_x = 10; - pixel_y = -6 - }, -/obj/machinery/duct, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron, -/area/station/service/bar) -"uGo" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"uGr" = ( -/turf/open/openspace, -/area/station/security/brig/upper) -"uGy" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer1{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"uGz" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 4 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Chief Engineer's Office" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/requests_console/directional/west{ - announcementConsole = 1; - assistance_requestable = 1; - department = "Chief Engineer's Desk"; - departmentType = 3; - name = "Chief Engineer's Requests Console"; - supplies_requestable = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"uGG" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"uGK" = ( -/obj/machinery/computer/operating{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/fore) -"uGT" = ( -/obj/machinery/light/directional/east, -/obj/item/radio/intercom/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/engineering/main) -"uHa" = ( -/obj/effect/turf_decal/siding/wood, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/service/theater) -"uHi" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod One"; - space_dir = 8 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"uHm" = ( -/obj/effect/turf_decal/siding/blue/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) -"uHv" = ( -/obj/structure/chair/stool/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"uHS" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"uHV" = ( -/obj/structure/disposalpipe/trunk/multiz{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/station/medical/morgue) -"uIf" = ( -/turf/closed/wall/r_wall, -/area/station/science/ordnance) -"uIg" = ( -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"uIj" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"uIt" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"uIx" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"uIz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/plating, -/area/station/engineering/lobby) -"uIC" = ( -/obj/machinery/door/airlock/security{ - aiControlDisabled = 1; - name = "Prisoner Transfer Centre" - }, -/obj/machinery/door/firedoor, -/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/security/armory, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"uID" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"uII" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/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/dark, -/area/station/service/chapel/office) -"uIM" = ( -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"uIV" = ( -/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) -"uJn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"uJq" = ( -/obj/machinery/holopad, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"uJt" = ( -/turf/open/floor/carpet, -/area/station/service/chapel) -"uJC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall, -/area/station/maintenance/starboard/aft) -"uJX" = ( -/obj/effect/turf_decal/tile/red/half, -/obj/structure/closet/firecloset, -/obj/item/radio/intercom/prison/directional/north, -/turf/open/floor/iron/smooth_half, -/area/station/security/brig/upper) -"uJZ" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"uKg" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"uKj" = ( -/obj/machinery/portable_atmospherics/canister/anesthetic_mix, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"uKr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"uKx" = ( -/obj/structure/closet, -/obj/item/clothing/suit/hooded/wintercoat{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/shoes/wheelys/skishoes{ - pixel_y = -8 - }, -/obj/effect/spawner/random/maintenance, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"uKM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/command/heads_quarters/ce) -"uKP" = ( -/obj/structure/table/wood, -/obj/item/radio{ - desc = "An old handheld radio. You could use it, if you really wanted to."; - icon_state = "radio"; - name = "old radio"; - pixel_y = 15 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"uKU" = ( -/obj/structure/table, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/iron, -/area/station/commons/locker) -"uKW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/execution/education) -"uLe" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/engineering/supermatter) -"uLo" = ( -/obj/structure/table, -/obj/item/clothing/glasses/meson, -/obj/item/storage/bag/ore, -/obj/item/pickaxe, -/obj/item/mining_scanner, -/obj/item/flashlight, -/obj/machinery/light/directional/east, -/obj/item/clothing/suit/hooded/wintercoat, -/turf/open/floor/iron, -/area/station/commons/storage/mining) -"uLp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "Bridge Blast Door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/command/bridge) -"uLr" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/engineering/storage_shared) -"uLF" = ( -/turf/open/floor/carpet, -/area/station/security/processing) -"uLH" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"uLU" = ( -/obj/machinery/computer/atmos_control/carbon_tank{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"uMq" = ( -/obj/structure/sign/warning/cold_temp{ - pixel_x = -29 - }, -/obj/structure/sign/warning/gas_mask{ - desc = "A sign that warns of dangerous gasses in the air, instructing you to wear internals."; - pixel_x = 30 - }, -/turf/open/floor/iron/dark, -/area/mine/storage) -"uMu" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/primary/starboard) -"uMA" = ( -/obj/structure/railing/corner, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Mining B-1 Hallway 2" - }, -/turf/open/floor/iron/dark/side, -/area/mine/eva) -"uME" = ( -/turf/closed/wall/r_wall, -/area/station/security/execution/transfer) -"uMH" = ( -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/locker) -"uMK" = ( -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"uNq" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/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/white, -/area/station/medical/treatment_center) -"uNt" = ( -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"uNu" = ( -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/yellow/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/large, -/area/station/engineering/storage) -"uNw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/trash/raisins, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"uNG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"uNZ" = ( -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/storage/medkit/regular, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"uOb" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison/toilet) -"uOf" = ( -/obj/machinery/door/airlock{ - id_tag = "miningdorm_A"; - name = "Room 1" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/mine/production) -"uOg" = ( -/obj/structure/table/glass, -/obj/item/storage/medkit/brute{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/medkit/brute, -/obj/item/storage/medkit/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/maintenance/department/medical) -"uOj" = ( -/turf/open/floor/iron, -/area/station/command/gateway) -"uOk" = ( -/obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat_interior"; - name = "Antechamber Turret Control"; - pixel_y = -24; - req_access = list("minisat") - }, -/obj/machinery/light/small/directional/south, -/obj/machinery/camera/motion/directional/south{ - c_tag = "MiniSat Foyer"; - network = list("minisat") - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"uOn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"uOq" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/obj/structure/railing/corner, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"uOE" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"uOH" = ( -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/machinery/restaurant_portal/restaurant, -/turf/open/floor/iron/large, -/area/station/service/kitchen/diner) -"uOK" = ( -/obj/machinery/cryopod{ - dir = 8 - }, -/obj/effect/turf_decal/siding/white{ - dir = 9 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/common/cryopods) -"uOL" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"uOM" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/structure/window, -/obj/structure/window{ - dir = 8 - }, -/turf/open/floor/iron, -/area/service/salon) -"uOS" = ( -/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/power/apc/auto_name/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"uOU" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/left/directional/north{ - dir = 8; - name = "Reception Window" - }, -/obj/machinery/door/window/brigdoor{ - base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - name = "Head of Personnel's Desk"; - req_access = list("hop") - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hop"; - name = "Privacy Shutters"; - dir = 8 - }, -/obj/machinery/flasher/directional/north{ - id = "hopflash" - }, -/obj/structure/desk_bell{ - pixel_x = 7 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"uPh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/button/door/directional/south{ - id = "Mining_launch"; - name = "Mech Bay Door Control"; - pixel_x = 8; - pixel_y = 23 - }, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/textured, -/area/mine/mechbay) -"uPk" = ( -/turf/closed/wall/r_wall, -/area/station/security/range) -"uPl" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Shuttle Prisoner Airlock" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron, -/area/mine/laborcamp) -"uPt" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/iron/dark, -/area/mine/eva/lower) -"uPL" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"uPO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/camera/directional/east{ - c_tag = "Locker Room East" - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"uPS" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"uPY" = ( -/obj/structure/noticeboard/directional/east, -/turf/open/floor/wood, -/area/station/command/meeting_room) -"uQl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/production) -"uQx" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/mine/production) -"uQy" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"uQC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron/textured, -/area/station/security/brig) -"uQK" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"uQL" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"uQS" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 4" - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"uQV" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"uQW" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"uRi" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/vault, -/area/station/security/prison/rec) -"uRk" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 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, -/area/station/hallway/primary/central/fore) -"uRu" = ( -/obj/effect/turf_decal/siding/red{ - dir = 4 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison) -"uRz" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/obj/machinery/light/small/directional/east, -/turf/open/floor/stone, -/area/station/commons/lounge) -"uRV" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible/layer2{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"uSb" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"uSo" = ( -/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/duct, -/turf/open/floor/iron/dark/smooth_half{ - dir = 1 - }, -/area/station/engineering/main) -"uSU" = ( -/obj/structure/closet/wardrobe/grey, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/maintenance/port/fore) -"uTa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"uTk" = ( -/obj/structure/disposalpipe/segment, -/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/white, -/area/station/medical/pharmacy) -"uTr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"uTL" = ( -/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/south, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"uUn" = ( -/obj/structure/table/optable, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"uUH" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer1{ - dir = 10 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"uUT" = ( -/turf/closed/wall, -/area/mine/mechbay) -"uUV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/wood/parquet, -/area/station/service/bar/atrium) -"uVa" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - dir = 4; - name = "old sink"; - pixel_x = -12 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"uVf" = ( -/obj/structure/marker_beacon/burgundy{ - name = "landing marker" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"uVj" = ( -/obj/effect/turf_decal/arrows/white, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/atmos/hfr_room) -"uVn" = ( -/obj/effect/turf_decal/tile/red/half{ - 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/half{ - dir = 1 - }, -/area/station/hallway/secondary/service) -"uVz" = ( -/obj/structure/table/optable{ - desc = "A cold, hard place for your final rest."; - name = "Morgue Slab" - }, -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/blood/bubblegum, -/obj/machinery/newscaster/directional/east, -/obj/effect/turf_decal/tile/neutral/full, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"uVC" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/dark/textured_edge, -/area/station/security/prison) -"uVP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/smooth_edge{ - dir = 1 - }, -/area/station/security/lockers) -"uWi" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"uWn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/r_wall, -/area/station/maintenance/aft/lesser) -"uWp" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/maintenance/aft/greater) -"uWv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"uWw" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"uWx" = ( -/obj/structure/table, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = -2 - }, -/obj/item/computer_hardware/hard_drive/portable/scipaper_program{ - pixel_x = -5; - pixel_y = 6 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"uWW" = ( -/obj/structure/closet/cardboard, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"uXd" = ( -/obj/machinery/door/airlock/command{ - name = "Command Tool Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/eva, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"uXh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/cafeteria{ - dir = 8 - }, -/area/station/science/ordnance/office) -"uXk" = ( -/turf/open/misc/dirt/dark{ - initial_gas_mix = "ICEMOON_ATMOS" - }, -/area/icemoon/underground/explored) -"uXm" = ( -/obj/structure/chair{ - dir = 1; - name = "The Peanut's Gallery"; - desc = "Aw geez, I wonder what the chef's cooking up in there!" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"uXr" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Chapel East" - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"uXs" = ( -/obj/structure/table, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/machinery/requests_console/directional/north{ - department = "Circuits Lab"; - departmentType = 2; - name = "Circuits Lab Requests Console"; - receive_ore_updates = 1 - }, -/turf/open/floor/iron, -/area/station/science/explab) -"uXu" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"uXx" = ( -/obj/structure/window/reinforced, -/obj/machinery/computer/atmos_control/ordnancemix{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/ordnance) -"uXC" = ( -/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 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"uXV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/chemistry) -"uXW" = ( -/obj/machinery/modular_computer/console/preset/cargochat/security{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark/textured, -/area/station/security/office) -"uXY" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/hallway/secondary/entry) -"uYj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/freezer, -/area/mine/laborcamp) -"uYm" = ( -/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 = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"uYu" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"uYB" = ( -/obj/effect/turf_decal/trimline/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/white, -/area/station/medical/medbay/aft) -"uYH" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/dark/visible{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"uYO" = ( -/obj/structure/closet/firecloset, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"uYR" = ( -/obj/effect/spawner/random/trash/mess, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"uYV" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/dorms) -"uZc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"uZn" = ( -/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/starboard/fore) -"uZA" = ( -/obj/machinery/light_switch/directional/north{ - pixel_x = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/start/science_guard, -/obj/machinery/button/door/directional/north{ - id = "Biohazard"; - name = "Biohazard Shutter Control"; - pixel_x = -6; - req_access = list("brig_entrance") - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) -"uZB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/white/side{ - dir = 9 - }, -/area/station/science/research) -"uZC" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"uZL" = ( -/obj/structure/table, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/fore) -"uZP" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"vaa" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/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/ordnance/office) -"vae" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"vah" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/barricade/wooden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"vav" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"vaw" = ( -/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/extinguisher_cabinet/directional/south, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"vaA" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"vaO" = ( -/obj/machinery/light/directional/east, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"vaQ" = ( -/obj/item/radio/intercom/directional/south, -/obj/machinery/computer/robotics{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"vaZ" = ( -/obj/item/book/manual/wiki/plumbing{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/book/manual/wiki/grenades, -/obj/item/book/manual/wiki/chemistry{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/machinery/status_display/evac/directional/east, -/obj/structure/table/reinforced, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/medical/chemistry) -"vbd" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/arrows/white{ - color = "#0000FF"; - pixel_y = 15 - }, -/turf/open/floor/engine, -/area/station/engineering/atmos/hfr_room) -"vbg" = ( -/obj/structure/cable, -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Labor Camp Utilities"; - network = list("labor") - }, -/turf/open/floor/iron/smooth, -/area/mine/laborcamp/security) -"vbj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"vbn" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"vbz" = ( -/obj/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/starboard/lesser) -"vbF" = ( -/obj/structure/table/wood, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/storage/box/deputy, -/obj/item/storage/box/seccarts{ - pixel_x = 9; - pixel_y = 9 - }, -/turf/open/floor/wood/large, -/area/station/command/heads_quarters/hos) -"vbG" = ( -/obj/structure/railing, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"vbJ" = ( -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/iron/dark/textured, -/area/station/security/range) -"vbO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos) -"vbZ" = ( -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"vcj" = ( -/turf/closed/wall/r_wall, -/area/mine/storage) -"vcx" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"vcE" = ( -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"vcH" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 9 - }, -/obj/machinery/meter, -/obj/machinery/button/ignition/incinerator/ordmix{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/machinery/button/door/incinerator_vent_ordmix{ - pixel_x = -8; - pixel_y = 32 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"vcO" = ( -/obj/machinery/vending/wardrobe/chap_wardrobe, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"vcY" = ( -/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, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"vdf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/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/security/brig/upper) -"vdi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/command/meeting_room) -"vdo" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"vds" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "surgery"; - name = "Surgery Shutter" - }, -/turf/open/floor/plating, -/area/station/medical/surgery/aft) -"vdE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/commons/locker) -"vdM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Ordnance Launch Room" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"veh" = ( -/obj/machinery/rnd/bepis, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"ven" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"vep" = ( -/turf/closed/wall, -/area/station/maintenance/disposal/incinerator) -"ver" = ( -/obj/structure/lattice/catwalk, -/obj/structure/marker_beacon/burgundy{ - name = "landing marker" - }, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"vev" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"vey" = ( -/turf/closed/wall, -/area/station/command/heads_quarters/captain) -"vez" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/common/cryopods) -"veD" = ( -/obj/structure/ladder, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"veH" = ( -/obj/structure/table, -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/item/crowbar, -/obj/item/radio/headset/headset_sci{ - pixel_x = -3 - }, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"veK" = ( -/turf/open/floor/iron/white, -/area/mine/living_quarters) -"veL" = ( -/obj/structure/sign/painting/library{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"veT" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron, -/area/station/construction) -"veU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"veX" = ( -/obj/machinery/camera{ - c_tag = "Science - Server Room"; - dir = 5; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/structure/lattice/catwalk, -/turf/open/openspace/icemoon, -/area/station/science/server) -"vfg" = ( -/obj/structure/stairs/north, -/turf/open/floor/iron, -/area/station/cargo/storage) -"vfo" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/wood, -/area/station/service/library) -"vfp" = ( -/obj/structure/ore_box, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"vfq" = ( -/obj/machinery/monkey_recycler, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"vfI" = ( -/obj/machinery/door/window/right/directional/south{ - name = "Ordnance Freezer Chamber Access"; - req_access = list("ordnance") - }, -/turf/open/floor/iron, -/area/station/science/ordnance) -"vfS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"vfW" = ( -/turf/open/floor/iron, -/area/station/commons/fitness) -"vgf" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"vgu" = ( -/obj/structure/table, -/obj/item/toy/plush/beeplushie{ - name = "multi-bee plushie"; - pixel_y = 4 - }, -/turf/open/floor/plating, -/area/station/commons/storage/mining) -"vgx" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"vgD" = ( -/obj/structure/rack, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/cable_coil, -/turf/open/floor/iron/smooth, -/area/mine/eva) -"vgM" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"vgP" = ( -/obj/structure/table/optable, -/obj/machinery/newscaster/directional/east, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/fore) -"vha" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/item/radio/intercom/directional/south{ - pixel_x = -28 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"vhl" = ( -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"vhm" = ( -/obj/structure/sign/poster/random/directional/west, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"vhL" = ( -/obj/effect/turf_decal/tile/red/anticorner/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{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/security/processing) -"vhT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/brown/visible{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"via" = ( -/turf/open/floor/iron/white/side{ - dir = 6 - }, -/area/station/science/research) -"vib" = ( -/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; - sortType = 3 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"vip" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron, -/area/mine/eva/lower) -"viC" = ( -/obj/machinery/holopad, -/obj/effect/mapping_helpers/ianbirthday, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hop) -"viH" = ( -/obj/machinery/power/emitter/welded{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"viN" = ( -/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/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"viO" = ( -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/security/processing) -"viP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"viQ" = ( -/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, -/area/station/command/heads_quarters/captain) -"viR" = ( -/obj/effect/spawner/random/medical/two_percent_xeno_egg_spawner, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"viW" = ( -/obj/effect/turf_decal/tile/dark{ - dir = 8 - }, -/obj/effect/turf_decal/tile/dark, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 6 - }, -/turf/open/floor/iron/white/side{ - dir = 1 - }, -/area/mine/living_quarters) -"vjh" = ( -/turf/closed/wall/r_wall, -/area/mine/laborcamp) -"vjj" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rnd2"; - name = "Research Lab Shutters"; - dir = 8 - }, -/turf/open/floor/plating, -/area/station/science/research) -"vjk" = ( -/obj/machinery/atmospherics/components/binary/crystallizer{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"vjx" = ( -/obj/machinery/telecomms/server/presets/engineering, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"vjJ" = ( -/obj/structure/table, -/obj/machinery/light/directional/north, -/obj/machinery/microwave, -/obj/effect/turf_decal/tile/green/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/medical/virology) -"vjM" = ( -/obj/machinery/light/floor, -/turf/open/floor/iron, -/area/station/cargo/storage) -"vjS" = ( -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"vjW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/chair/stool/directional/south, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/commons/locker) -"vjZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"vkg" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/trimline/blue/filled/warning, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"vkm" = ( -/obj/machinery/newscaster/directional/north, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/structure/window{ - dir = 8 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Salon" - }, -/turf/open/floor/iron, -/area/service/salon) -"vkz" = ( -/obj/machinery/suit_storage_unit/ce, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron/white/textured, -/area/station/command/heads_quarters/ce) -"vkC" = ( -/obj/effect/decal/cleanable/insectguts, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"vkD" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"vkF" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"vkG" = ( -/obj/effect/turf_decal/trimline/blue/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/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/white, -/area/station/medical/medbay/lobby) -"vkJ" = ( -/obj/structure/table, -/obj/item/plate, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"vkT" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/item/radio/intercom/prison/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"vkU" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/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/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"vlb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 4 - }, -/obj/machinery/light_switch/directional/north{ - pixel_x = 12 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"vlf" = ( -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"vlt" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/sign/warning/cold_temp/directional/west, -/turf/open/floor/plating, -/area/station/cargo/storage) -"vlv" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/food/drinks/bottle/amaretto{ - pixel_x = -5; - pixel_y = 10 - }, -/obj/item/reagent_containers/food/drinks/bottle/fernet{ - pixel_x = 7; - pixel_y = 16 - }, -/obj/item/reagent_containers/food/drinks/soda_cans/sol_dry, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 10 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"vlD" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 1 - }, -/obj/structure/cable/multilayer/multiz, -/obj/structure/window/reinforced/spawner/north, -/turf/open/floor/plating/snowed/icemoon, -/area/station/maintenance/port/aft) -"vlI" = ( -/obj/machinery/disposal/bin, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"vlL" = ( -/obj/machinery/computer/cargo/request, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"vlN" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"vlP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood/tile, -/area/station/service/theater) -"vlS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Mining Mech Bay External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "mining-mechbay-external" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron/smooth, -/area/mine/mechbay) -"vlZ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/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/mine/storage) -"vmj" = ( -/obj/structure/chair{ - dir = 1; - name = "Logistics Station" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/command/bridge) -"vmk" = ( -/obj/effect/turf_decal/tile/yellow, -/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/hallway/primary/aft) -"vmn" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"vmp" = ( -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"vmr" = ( -/obj/structure/musician/piano, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"vms" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/textured, -/area/station/security/brig) -"vmu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/atmos/hfr_room) -"vmA" = ( -/obj/structure/fluff/tram_rail{ - pixel_y = 17 - }, -/obj/structure/fluff/tram_rail, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"vmH" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron, -/area/mine/eva/lower) -"vmL" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/computer/slot_machine{ - pixel_y = -6 - }, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"vmP" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/end, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"vmR" = ( -/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) -"vmS" = ( -/obj/machinery/airalarm/directional/east, -/obj/structure/closet/l3closet/scientist, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"vmU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"vnc" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - 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/miningdock) -"vng" = ( -/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/aft/greater) -"vns" = ( -/obj/machinery/firealarm/directional/west, -/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, -/obj/machinery/camera{ - c_tag = "Departure Lounge West"; - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/hallway/secondary/exit/departure_lounge) -"vnt" = ( -/obj/machinery/computer/station_alert{ - dir = 8 - }, -/obj/machinery/button/door/directional/south{ - id = "atmos" - }, -/obj/machinery/light_switch/directional/south{ - pixel_x = -10 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage/gas) -"vnz" = ( -/obj/effect/turf_decal/tile/dark, -/obj/effect/turf_decal/tile/dark{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/asteroid/line, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/white/side{ - dir = 1 - }, -/area/mine/living_quarters) -"vnG" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/right/directional/east{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Robotics Desk"; - req_access = list("robotics") - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics2"; - name = "Robotics Lab Shutters"; - dir = 4 - }, -/obj/item/folder/white, -/obj/item/pen, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/station/science/robotics/lab) -"vnK" = ( -/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/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"vnN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/textured, -/area/station/medical/medbay/central) -"vnQ" = ( -/obj/structure/window/reinforced/tinted/frosted{ - dir = 8 - }, -/obj/structure/chair/sofa/right, -/turf/open/floor/carpet/blue, -/area/station/security/prison/work) -"vnT" = ( -/obj/structure/window/reinforced/tinted/frosted{ - dir = 8 - }, -/obj/structure/table/wood, -/turf/open/floor/carpet/blue, -/area/station/security/prison/work) -"vnY" = ( -/obj/structure/closet/crate/critter, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"vos" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/table/glass, -/obj/item/stack/sticky_tape/surgical, -/obj/item/stack/medical/bone_gel, -/turf/open/floor/iron/white, -/area/station/medical/surgery/fore) -"voK" = ( -/turf/closed/wall/r_wall, -/area/station/tcommsat/computer) -"voS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table, -/obj/item/pen/red, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood/large, -/area/mine/eva/lower) -"voY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) -"vpc" = ( -/obj/structure/closet, -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet/stellar, -/area/mine/production) -"vpd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"vpg" = ( -/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/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"vpi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/smooth, -/area/station/security/execution/transfer) -"vps" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"vpI" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 1; - height = 4; - name = "escape pod loader"; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"vpR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/medical/central) -"vpW" = ( -/obj/structure/displaycase/labcage, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"vpX" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/obj/machinery/requests_console/auto_name/directional/south, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"vqa" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - sortType = 14 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"vqv" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/science/ordnance) -"vqx" = ( -/obj/effect/turf_decal/tile/dark{ - dir = 1 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 1 - }, -/obj/structure/table/reinforced/plastitaniumglass, -/obj/machinery/microwave, -/obj/machinery/camera/directional/north{ - c_tag = "Mining B-1 Crater Observatory 1" - }, -/turf/open/floor/iron/white/side, -/area/mine/living_quarters) -"vqD" = ( -/obj/machinery/door/airlock{ - name = "Hydroponics Backroom" - }, -/obj/machinery/door/firedoor, -/obj/machinery/duct, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/open/floor/iron/textured_half, -/area/station/service/hydroponics) -"vqF" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Chapel" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/sepia, -/area/station/service/library) -"vqH" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"vqN" = ( -/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, -/turf/open/floor/iron/white, -/area/station/science/lab) -"vqX" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/machinery/iv_drip, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"vqY" = ( -/obj/structure/table, -/obj/item/crowbar, -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/clothing/gloves/color/fyellow, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"vrC" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"vrG" = ( -/turf/open/floor/iron, -/area/station/security/prison/mess) -"vrI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"vrO" = ( -/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/starboard/aft) -"vrS" = ( -/obj/structure/table, -/obj/item/storage/box/chemimp{ - pixel_x = 6 - }, -/obj/item/storage/box/trackimp{ - pixel_x = -3 - }, -/obj/item/storage/lockbox/loyalty, -/obj/effect/turf_decal/tile/red/half{ - dir = 1 - }, -/obj/machinery/light_switch/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) -"vrX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"vsF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/locker) -"vsI" = ( -/obj/structure/marker_beacon/burgundy, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"vsM" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/hallway/secondary/exit/departure_lounge) -"vsY" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/firealarm/directional/east, -/obj/structure/closet/secure_closet/engineering_welding, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/engineering/main) -"vsZ" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"vtj" = ( -/obj/machinery/air_sensor/carbon_tank, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"vtk" = ( -/obj/machinery/newscaster/directional/east, -/obj/structure/bed/pod, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/large, -/area/station/medical/treatment_center) -"vtr" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/station/maintenance/aft/greater) -"vtv" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Port to Infiltrate/Filter" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vtz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"vtA" = ( -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/white/side{ - dir = 10 - }, -/area/station/science/research) -"vtD" = ( -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"vuu" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/layer_manifold/dark, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"vux" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/mine/laborcamp) -"vuK" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"vuR" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"vvc" = ( -/obj/structure/cable, -/turf/open/floor/iron/smooth_half, -/area/station/security/brig/upper) -"vve" = ( -/obj/structure/sign/poster/official/no_erp{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/freezer, -/area/station/maintenance/starboard/fore) -"vvh" = ( -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"vvi" = ( -/obj/machinery/airalarm/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, -/area/station/command/heads_quarters/hop) -"vvn" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/item/radio/intercom/prison/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"vvv" = ( -/obj/structure/filingcabinet, -/obj/machinery/airalarm/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) -"vvy" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"vvE" = ( -/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/white/side{ - dir = 5 - }, -/area/station/science/lab) -"vvG" = ( -/obj/structure/closet{ - name = "Evidence Closet 6" - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/textured_edge{ - dir = 1 - }, -/area/station/security/brig) -"vvJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/service/library) -"vvL" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/service/library) -"vvP" = ( -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/science/robotics/mechbay) -"vvX" = ( -/obj/structure/disposalpipe/segment{ - 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/plating, -/area/station/maintenance/port/aft) -"vwl" = ( -/obj/machinery/light_switch/directional/south, -/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/wood, -/area/station/service/lawoffice) -"vwo" = ( -/obj/machinery/newscaster/directional/east, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/work) -"vwr" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"vwt" = ( -/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/smooth, -/area/station/security/holding_cell) -"vwB" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"vwC" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"vwE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair/wood{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/security/prison/rec) -"vwI" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/effect/spawner/random/medical/patient_stretcher, -/obj/effect/decal/cleanable/blood/gibs/torso, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"vwJ" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"vwN" = ( -/obj/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/aft/greater) -"vwO" = ( -/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, -/area/station/hallway/primary/starboard) -"vxd" = ( -/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/white, -/area/mine/living_quarters) -"vxf" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/airalarm/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/smooth, -/area/station/engineering/lobby) -"vxx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK"; - pixel_y = 32 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"vxE" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/turf/open/floor/iron/white, -/area/station/medical/break_room) -"vxM" = ( -/obj/structure/window/reinforced/tinted/frosted{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/item/book/manual/wiki/detective, -/turf/open/floor/carpet/blue, -/area/station/security/prison/work) -"vxV" = ( -/obj/structure/cable, -/obj/machinery/duct, -/obj/machinery/atmospherics/components/trinary/filter/atmos/co2, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/large, -/area/station/engineering/atmos) -"vyb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"vyd" = ( -/obj/machinery/modular_computer/console/preset/id, -/turf/open/floor/carpet/royalblue, -/area/station/command/heads_quarters/hos) -"vyg" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/mine/storage) -"vyh" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/processing) -"vyj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Service-Ultils Bottom" - }, -/turf/open/floor/catwalk_floor/iron_smooth, -/area/station/maintenance/starboard/lesser) -"vym" = ( -/turf/closed/wall, -/area/station/construction) -"vyt" = ( -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) -"vyw" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark/textured, -/area/station/security/range) -"vyU" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"vzb" = ( -/obj/structure/rack, -/obj/effect/spawner/random/clothing/costume, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"vzc" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/newscaster/directional/west, -/obj/machinery/camera{ - c_tag = "Research Lobby"; - dir = 10; - network = list("ss13","rd") - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"vzm" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"vzo" = ( -/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/side{ - dir = 1 - }, -/area/station/science/research) -"vzD" = ( -/turf/closed/wall, -/area/station/maintenance/starboard/aft) -"vzE" = ( -/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/greater) -"vzI" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/turf/closed/wall/r_wall, -/area/mine/production) -"vzN" = ( -/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/cryo) -"vzU" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"vzW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"vzX" = ( -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/recharge_floor, -/area/station/science/robotics/mechbay) -"vzY" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/two, -/obj/item/storage/toolbox/emergency, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"vAj" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate, -/obj/structure/sign/warning/cold_temp{ - pixel_x = -29 - }, -/obj/structure/sign/warning/xeno_mining{ - pixel_x = 2; - pixel_y = -32 - }, -/turf/open/floor/iron/smooth, -/area/mine/living_quarters) -"vAm" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"vAn" = ( -/obj/machinery/status_display/ai/directional/south, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"vAo" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm5"; - name = "Cabin 1" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/commons/dorms) -"vAq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/medical/morgue) -"vAt" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -4; - pixel_y = 5 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"vAu" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/blue/half{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/service/hydroponics) -"vAx" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"vAF" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Teleporter" - }, -/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/command/minisat, -/obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"vAT" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/iron, -/area/station/cargo/qm) -"vAV" = ( -/obj/structure/chair/stool/directional/south, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"vAZ" = ( -/obj/structure/table, -/obj/item/food/spaghetti/meatballspaghetti{ - pixel_x = -1; - pixel_y = 6 - }, -/obj/item/candle/infinite{ - pixel_x = -11; - pixel_y = 11 - }, -/obj/item/trash/candle{ - pixel_x = 9; - pixel_y = -1 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"vBa" = ( -/obj/structure/table, -/obj/item/storage/crayons, -/obj/item/trash/candle{ - pixel_y = 12 - }, -/turf/open/floor/wood, -/area/station/maintenance/aft/greater) -"vBh" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"vBm" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"vBv" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 9 - }, -/obj/effect/turf_decal/siding/wideplating/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"vBC" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vBG" = ( -/turf/closed/wall, -/area/station/command/heads_quarters/cmo) -"vCn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/directional/north{ - c_tag = "Security - Upper Permabrig Cafeteria"; - network = list("ss13","prison") - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"vCv" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"vCz" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"vCD" = ( -/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, -/area/station/hallway/secondary/exit/departure_lounge) -"vCK" = ( -/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/edge, -/area/station/engineering/lobby) -"vCT" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"vDb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/checkpoint/auxiliary) -"vDh" = ( -/obj/structure/table/glass, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/dropper, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/turf_decal/tile/yellow/full, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/pharmacy) -"vDu" = ( -/obj/structure/table/glass, -/obj/item/biopsy_tool{ - pixel_x = -10; - pixel_y = 3 - }, -/obj/structure/microscope{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"vDy" = ( -/obj/structure/sign/poster/official/safety_report{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/west{ - c_tag = "Labor Camp Central"; - network = list("labor") - }, -/turf/open/floor/iron, -/area/mine/laborcamp) -"vDS" = ( -/obj/machinery/computer/department_orders/security{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/textured, -/area/station/security/office) -"vEi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "holodeck" - }, -/turf/open/floor/iron, -/area/station/commons/fitness) -"vEu" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"vEw" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Atmospherics Access" - }, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vEA" = ( -/obj/structure/table, -/obj/item/paper_bin/carbon{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/item/stamp/hop, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"vEH" = ( -/obj/structure/industrial_lift, -/obj/structure/railing{ - dir = 6 - }, -/turf/open/openspace, -/area/station/commons/storage/mining) -"vEI" = ( -/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/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"vEN" = ( -/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_half, -/area/station/maintenance/department/medical/central) -"vEU" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Drone Bay External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron/smooth, -/area/station/cargo/drone_bay) -"vFg" = ( -/obj/structure/falsewall, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"vFq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Mining External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, -/turf/open/floor/iron/smooth, -/area/mine/living_quarters) -"vFr" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/maintenance/fore/greater) -"vFs" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"vGg" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/mine/eva) -"vGi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/cold_temp, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"vGp" = ( -/obj/structure/closet/radiation, -/obj/machinery/light/directional/north, -/obj/machinery/requests_console/directional/north{ - department = "Genetics"; - departmentType = 2; - name = "Genetics Requests Console" - }, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"vGu" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"vGx" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/mine/eva) -"vGy" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Xenobiology Pens Observation - Starboard Aft"; - network = list("ss13","rd","xeno") - }, -/turf/open/openspace, -/area/station/science/xenobiology) -"vGI" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/vault{ - name = "Vault" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/effect/landmark/navigate_destination, -/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/supply/vault, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"vGJ" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"vGM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"vGY" = ( -/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/commons/storage/mining) -"vHa" = ( -/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/tcommsat/computer) -"vHf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/effect/landmark/start/orderly, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/medical) -"vHm" = ( -/obj/structure/rack, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"vHq" = ( -/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/xenobiology) -"vHE" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"vHI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Chapel" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/exit/departure_lounge) -"vHM" = ( -/obj/structure/chair/office, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs/auxiliary) -"vHR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/chemistry) -"vHT" = ( -/obj/effect/spawner/random/trash/mess, -/obj/item/storage/box, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"vHU" = ( -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/item/radio/intercom/prison/directional/south, -/turf/open/floor/iron/dark/textured_edge{ - dir = 1 - }, -/area/station/security/prison) -"vHZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/chemistry) -"vIk" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/components/unary/passive_vent, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/freezer, -/area/station/science/xenobiology) -"vIm" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"vIH" = ( -/obj/structure/closet{ - name = "Evidence Closet 1" - }, -/obj/item/radio/intercom/prison/directional/north, -/turf/open/floor/iron/dark/textured_edge, -/area/station/security/brig) -"vIZ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/camera/directional/south{ - c_tag = "Ordnance Lower Mix Lab"; - network = list("ss13","rd") - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"vJk" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/upper) -"vJE" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"vJI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"vJL" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"vJS" = ( -/obj/structure/chair/sofa/corp/right{ - dir = 4; - pixel_x = -4 - }, -/obj/effect/landmark/start/hangover, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron/dark, -/area/station/science/breakroom) -"vJU" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/engine, -/area/station/science/explab) -"vJY" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor{ - dir = 8; - name = "Research Director Observation"; - req_access = list("rd") - }, -/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/cafeteria, -/area/station/command/heads_quarters/rd) -"vKa" = ( -/obj/structure/statue/snow/snowman, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"vKp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/machinery/holopad, -/turf/open/floor/iron/white/smooth_large, -/area/station/science/lab) -"vKC" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/wood{ - name = "Bar" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/bar, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/service/bar) -"vLk" = ( -/obj/structure/sign/warning/gas_mask, -/turf/closed/wall, -/area/station/maintenance/starboard/fore) -"vLl" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/construction/mining/aux_base) -"vLn" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Service-Hallway Top 2" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"vLx" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/bar) -"vLY" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"vMa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"vMe" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/closet/emcloset, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/processing) -"vMf" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 10 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"vMi" = ( -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/siding/white{ - dir = 9 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/large, -/area/station/service/kitchen/diner) -"vMl" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/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/dark, -/area/station/service/chapel/office) -"vMq" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"vMA" = ( -/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/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"vMR" = ( -/obj/structure/table/glass, -/obj/item/seeds/glowshroom, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"vNk" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/chair/wood{ - dir = 8 - }, -/obj/machinery/newscaster/directional/north, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"vNp" = ( -/obj/structure/chair/plastic{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/camera/directional/east{ - c_tag = "Mining B-1 Crater Observatory 2" - }, -/turf/open/floor/iron, -/area/mine/living_quarters) -"vND" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"vNI" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/mix) -"vNM" = ( -/obj/machinery/atmospherics/components/unary/passive_vent{ - dir = 1 - }, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"vNT" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/machinery/light/small/directional/north, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron, -/area/mine/production) -"vOr" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"vOw" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"vOB" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/fore/greater) -"vOD" = ( -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"vOI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/grille_or_waste, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"vPh" = ( -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"vPi" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/maintenance/four, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"vPt" = ( -/obj/structure/closet/secure_closet/freezer/meat{ - req_access = "0" - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/mess) -"vPx" = ( -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/workout) -"vPC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=EVA"; - location = "Security" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"vPD" = ( -/obj/machinery/door/window/left/directional/north{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen 1"; - req_access = list("xenobiology") - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio1"; - name = "Xenobio Pen 1 Blast Door" - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"vPE" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/surgical_drapes, -/obj/item/razor, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"vPF" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"vPV" = ( -/obj/structure/cable, -/obj/machinery/button/door/directional/north{ - id = "pharmacy_shutters3"; - name = "Pharmacy Shutter Controls"; - pixel_y = 55; - req_access = list("pharmacy") - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"vQh" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/medical/treatment_center) -"vQp" = ( -/obj/machinery/research/anomaly_refinery, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"vQt" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/commons/storage/primary) -"vQy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/mine/production) -"vQG" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/commons/storage/mining) -"vQL" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"vQQ" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"vQY" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/vending/wardrobe/curator_wardrobe, -/turf/open/floor/engine/cult, -/area/station/service/library) -"vRo" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/line{ - dir = 9 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron/dark/textured, -/area/station/medical/treatment_center) -"vRp" = ( -/obj/machinery/camera{ - c_tag = "Surgery B"; - network = list("ss13","medbay"); - pixel_x = 22 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/vending/wallmed/directional/south, -/obj/structure/cable, -/obj/structure/table/glass, -/obj/item/stack/sticky_tape/surgical, -/obj/item/stack/medical/bone_gel, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"vRy" = ( -/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, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/firealarm/directional/west{ - pixel_y = 30 - }, -/turf/open/floor/iron/white, -/area/station/medical/break_room) -"vRz" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"vRE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"vRN" = ( -/obj/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/security/processing) -"vRO" = ( -/obj/machinery/mineral/unloading_machine{ - dir = 1; - icon_state = "unloader-corner"; - input_dir = 1; - output_dir = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/mine/laborcamp) -"vRS" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/storage/gas) -"vRW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vRY" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"vSa" = ( -/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 = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"vSi" = ( -/turf/closed/wall, -/area/mine/eva) -"vSl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"vSo" = ( -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"vSq" = ( -/obj/structure/window/reinforced, -/obj/machinery/camera/directional/east{ - c_tag = "Xenobiology Pens - Starboard Mid"; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"vSr" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Service Hall Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/general, -/obj/machinery/duct, -/obj/effect/mapping_helpers/airlock/unres{ - 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/plating, -/area/station/maintenance/starboard/fore) -"vSE" = ( -/obj/machinery/door/window/right/directional/east{ - name = "Bar Access" - }, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"vSH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/dead_body_placer, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"vSM" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 10 - }, -/obj/structure/table, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 6 - }, -/obj/item/reagent_containers/syringe, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"vSX" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/item/training_toolbox{ - pixel_y = 5 - }, -/obj/structure/table, -/obj/item/training_toolbox{ - pixel_y = -2 - }, -/turf/open/floor/iron, -/area/station/commons/fitness) -"vSY" = ( -/obj/structure/table, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/box/syringes, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_x = 8; - pixel_y = -3 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/reagent_containers/syringe{ - pixel_x = 6; - pixel_y = -3 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"vTi" = ( -/obj/structure/table/reinforced, -/obj/item/computer_hardware/hard_drive/portable/engineering, -/obj/item/computer_hardware/hard_drive/portable/engineering, -/obj/item/computer_hardware/hard_drive/portable/engineering, -/obj/item/computer_hardware/hard_drive/portable/atmos, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"vTl" = ( -/obj/machinery/door/airlock/engineering{ - name = "Starboard Quarter Solar Access" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"vTp" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"vTB" = ( -/obj/machinery/door/airlock/research/glass/incinerator/ordmix_interior{ - name = "Burn Chamber Interior Airlock" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_ordmix{ - pixel_x = 24 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/engine, -/area/station/science/ordnance/burnchamber) -"vTJ" = ( -/obj/structure/table, -/obj/item/toy/plush/slimeplushie{ - name = "Gish" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"vTL" = ( -/obj/structure/table, -/obj/item/radio/off{ - pixel_y = 6 - }, -/obj/item/radio/off{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/radio/off{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/radio/off, -/turf/open/floor/iron, -/area/station/command/gateway) -"vTN" = ( -/obj/machinery/door/airlock/security{ - name = "Science Guard's Office" - }, -/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/science/sci_guard, -/turf/open/floor/iron/white, -/area/station/security/checkpoint/science) -"vUi" = ( -/obj/structure/sign/picture_frame/portrait/bar{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/obj/effect/turf_decal/siding/white, -/turf/open/floor/iron, -/area/station/service/bar) -"vUj" = ( -/obj/machinery/light/dim/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"vUr" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"vUs" = ( -/obj/structure/easel, -/obj/item/canvas/nineteen_nineteen, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/sepia, -/area/station/security/prison/rec) -"vUW" = ( -/obj/item/stack/cable_coil{ - amount = 7; - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"vUY" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible/layer2{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/science/ordnance) -"vVg" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"vVh" = ( -/obj/effect/turf_decal/siding/white/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/obj/effect/turf_decal/siding/white/corner, -/turf/open/floor/iron, -/area/station/service/bar) -"vVj" = ( -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"vVk" = ( -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"vVw" = ( -/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/freezer, -/area/station/commons/toilet) -"vVD" = ( -/obj/structure/closet/wardrobe/miner, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock) -"vVH" = ( -/turf/closed/wall, -/area/station/security/prison/safe) -"vVO" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/general/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vVP" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/openspace, -/area/station/science/xenobiology) -"vWe" = ( -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/storage) -"vWh" = ( -/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 = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"vWk" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"vWo" = ( -/obj/machinery/light_switch/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/science/explab) -"vWr" = ( -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"vWz" = ( -/turf/closed/wall, -/area/mine/storage) -"vWB" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/common/cryopods) -"vWL" = ( -/obj/structure/chair{ - dir = 1; - name = "Security Station" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/command/bridge) -"vWP" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/structure/railing, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"vWV" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/shaft_miner, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"vXb" = ( -/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/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"vXd" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting Equipment" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"vXh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"vXi" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"vXn" = ( -/obj/structure/table, -/obj/item/food/pie/cream, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"vXv" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/openspace, -/area/station/engineering/atmos/storage) -"vXy" = ( -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"vXC" = ( -/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/white, -/area/mine/living_quarters) -"vXD" = ( -/obj/structure/stairs/south, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"vXH" = ( -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/mine/living_quarters) -"vXL" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/mine/eva) -"vXO" = ( -/obj/structure/fluff/tram_rail, -/obj/structure/lattice/catwalk, -/obj/structure/fluff/tram_rail{ - pixel_y = 17 - }, -/obj/structure/marker_beacon/burgundy{ - name = "landing marker" - }, -/obj/structure/marker_beacon/burgundy{ - name = "landing marker" - }, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"vYd" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"vYq" = ( -/obj/structure/barricade/wooden/snowed, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"vYs" = ( -/obj/machinery/light/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, -/area/station/command/heads_quarters/hop) -"vYv" = ( -/obj/structure/disposalpipe/segment{ - 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/plating, -/area/station/maintenance/starboard/fore) -"vYH" = ( -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"vYJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/large, -/area/station/engineering/lobby) -"vYN" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"vZq" = ( -/obj/structure/chair/plastic{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"vZt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vZz" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/effect/landmark/start/hangover, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"vZB" = ( -/obj/structure/cable, -/obj/structure/table, -/obj/item/storage/medkit/regular, -/obj/item/storage/medkit/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"vZD" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/railing, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"vZH" = ( -/obj/item/storage/briefcase, -/obj/structure/rack, -/obj/item/camera/detective, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"vZS" = ( -/obj/structure/rack, -/turf/open/floor/iron/smooth, -/area/mine/living_quarters) -"vZW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Mix to Space" - }, -/turf/open/floor/plating/snowed/icemoon, -/area/station/maintenance/port/aft) -"waa" = ( -/obj/machinery/door/poddoor/massdriver_trash, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"wab" = ( -/obj/structure/cable, -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"wal" = ( -/obj/structure/sign/warning, -/turf/closed/wall, -/area/station/commons/storage/mining) -"wam" = ( -/turf/open/openspace, -/area/station/cargo/storage) -"waE" = ( -/obj/machinery/requests_console/directional/north{ - department = "Cargo Bay"; - departmentType = 2; - name = "Cargo Bay Requests Console"; - supplies_requestable = 1 - }, -/obj/structure/table, -/obj/item/hand_labeler, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/folder/yellow, -/turf/open/floor/iron, -/area/station/cargo/storage) -"waL" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red, -/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, -/area/station/hallway/primary/central/fore) -"waM" = ( -/obj/structure/table/glass, -/obj/item/restraints/handcuffs/cable/zipties, -/obj/item/reagent_containers/blood/random, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"wba" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"wbe" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"wbf" = ( -/obj/structure/closet/decay, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"wbk" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"wbn" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria, -/area/mine/laborcamp) -"wbw" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"wbB" = ( -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/structure/table, -/obj/effect/spawner/random/food_or_drink/donkpockets{ - pixel_y = 8 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/white/smooth_large, -/area/station/service/kitchen/diner) -"wbN" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/aft) -"wbR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/cafeteria{ - dir = 8 - }, -/area/station/science/ordnance/office) -"wbW" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"wbY" = ( -/obj/machinery/door/airlock{ - id_tag = "AuxToilet4"; - name = "Unit 4" - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/locker) -"wbZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"wct" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"wcx" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/large, -/area/station/command/heads_quarters/ce) -"wcz" = ( -/obj/structure/sink{ - pixel_y = 20 - }, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"wcN" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/end{ - dir = 8 - }, -/turf/open/floor/plating, -/area/mine/eva) -"wcV" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"wda" = ( -/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, -/area/station/hallway/secondary/entry) -"wde" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"wdg" = ( -/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/central/lesser) -"wdL" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"wdM" = ( -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/workout) -"weg" = ( -/obj/structure/sign/warning/gas_mask/directional/south{ - desc = "A sign that warns of dangerous gasses in the air, instructing you to wear internals." - }, -/turf/open/floor/iron/smooth, -/area/mine/mechbay) -"wet" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - space_dir = 8 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"wew" = ( -/obj/structure/chair/stool/directional/north, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"weF" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"weK" = ( -/obj/structure/table/wood, -/obj/item/food/grown/harebell{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/food/grown/harebell{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/food/grown/harebell, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"weR" = ( -/turf/open/floor/wood, -/area/station/maintenance/space_hut/cabin) -"weT" = ( -/obj/structure/rack, -/obj/machinery/syndicatebomb/training, -/obj/structure/cable, -/obj/machinery/light/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/smooth_half, -/area/station/security/office) -"wfc" = ( -/turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) -"wfm" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer1{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"wfn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/main) -"wfp" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Security - Upper Hallway North" - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"wfs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"wfu" = ( -/obj/structure/sign/poster/official/wtf_is_co2, -/turf/closed/wall/r_wall, -/area/station/maintenance/aft/greater) -"wfE" = ( -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/item/clothing/head/welding, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"wfK" = ( -/obj/item/folder/blue, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/station/command/meeting_room) -"wfR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"wgn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"wgr" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio9"; - name = "Xenobio Pen 9 Blast Door" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"wgu" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/candle_box{ - pixel_y = 5 - }, -/obj/item/storage/crayons, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"wgE" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/plant_analyzer, -/turf/open/floor/iron/dark, -/area/mine/laborcamp) -"wgG" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/dark_green/arrow_ccw, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wgI" = ( -/obj/effect/turf_decal/trimline/green/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"wgL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/science/breakroom) -"wgO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rnd2"; - name = "Research Lab Shutters" - }, -/turf/open/floor/plating, -/area/station/science/breakroom) -"wgR" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "Biohazard Containment Door" - }, -/obj/effect/turf_decal/bot, -/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/science/research) -"wha" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/clothing/gloves/color/latex, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"whb" = ( -/obj/machinery/recharge_station, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"whc" = ( -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron/white/side{ - dir = 4 - }, -/area/station/science/xenobiology) -"whf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible, -/turf/open/floor/glass/reinforced, -/area/station/engineering/atmos/pumproom) -"whg" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/light/directional/south, -/obj/item/storage/crayons, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"whh" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/button/door/directional/east{ - id = "chemistry_access_shutters"; - name = "Chemistry Access Shutter Control"; - req_access = list("medical") - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"whi" = ( -/obj/structure/table, -/obj/item/rcl/pre_loaded, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/turf/open/floor/iron, -/area/station/commons/storage/art) -"whl" = ( -/obj/machinery/door/airlock/external, -/obj/structure/sign/warning/gas_mask/directional/south{ - desc = "A sign that warns of dangerous gasses in the air, instructing you to wear internals." - }, -/obj/structure/sign/warning/cold_temp/directional/north, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "chem-morgue-airlock" - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/medical/morgue) -"whm" = ( -/obj/structure/closet/wardrobe/grey, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"whn" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/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/mine/laborcamp) -"whr" = ( -/obj/machinery/hydroponics/soil, -/obj/item/cultivator, -/turf/open/floor/grass, -/area/station/security/prison/garden) -"whu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/hallway/secondary/service) -"whF" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"whP" = ( -/obj/structure/table, -/obj/effect/spawner/random/food_or_drink/donkpockets, -/obj/structure/sign/poster/official/random/directional/east, -/turf/open/floor/iron/dark/smooth_half, -/area/station/science/breakroom) -"whV" = ( -/obj/structure/chair{ - pixel_y = -2 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/food_packaging, -/obj/structure/sign/poster/official/random/directional/west, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"whW" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/tank_dispenser, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"wij" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"wio" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"wiv" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/medical/chemistry) -"wiA" = ( -/turf/closed/wall, -/area/station/common/cryopods) -"wiD" = ( -/obj/effect/turf_decal/tile/dark{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"wiM" = ( -/obj/machinery/computer/station_alert, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"wiQ" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/mine/mechbay) -"wjj" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Vacant Office" - }, -/obj/machinery/photocopier, -/turf/open/floor/iron/grimy, -/area/station/commons/vacant_room/office) -"wjl" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"wjr" = ( -/obj/structure/table, -/obj/machinery/camera/motion/directional/west{ - c_tag = "ai_upload West"; - network = list("aiupload") - }, -/obj/item/ai_module/supplied/freeform, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"wjy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/warning/radiation/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"wjL" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"wjS" = ( -/obj/effect/landmark/start/assistant, -/obj/structure/chair/pew{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/starboard) -"wjZ" = ( -/obj/effect/turf_decal/caution{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"wkj" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"wkl" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Telecomms Server Room"; - network = list("tcomms") - }, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"wkr" = ( -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"wks" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/table/reinforced/plastitaniumglass, -/obj/item/paper/carbon, -/turf/open/floor/iron, -/area/mine/living_quarters) -"wkw" = ( -/obj/machinery/power/emitter, -/turf/open/floor/plating, -/area/station/engineering/engine_smes) -"wkC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"wkF" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/closed/wall, -/area/station/maintenance/starboard/fore) -"wkR" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/item/food/grilled_cheese_sandwich{ - name = "idiot sandwich"; - pixel_y = 8 - }, -/turf/open/floor/iron, -/area/mine/living_quarters) -"wkV" = ( -/obj/structure/fence/corner{ - dir = 1 - }, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"wkW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/dark_red/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"wkZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/aft/greater) -"wlm" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"wls" = ( -/obj/item/trash/sosjerky, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"wlx" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Arrivals Bay 2" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"wlz" = ( -/obj/structure/filingcabinet, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"wlF" = ( -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/station/medical/virology) -"wlR" = ( -/obj/structure/closet/boxinggloves, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"wlY" = ( -/obj/machinery/door/airlock/freezer, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/mess) -"wlZ" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark_red/line, -/obj/effect/turf_decal/trimline/dark_red/line{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/trimline/dark_blue/mid_joiner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"wma" = ( -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"wmb" = ( -/obj/item/beacon, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/eva) -"wmu" = ( -/obj/structure/closet/secure_closet/security/cargo, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"wmy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"wmG" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/light/directional/west, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/science/ordnance/testlab) -"wmK" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L5" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"wmN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"wmR" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/glass{ - name = "Mining Station Bridge" - }, -/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, -/area/mine/production) -"wmT" = ( -/turf/open/floor/iron/dark, -/area/mine/eva) -"wna" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/command/bridge) -"wng" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/item/vending_refill/cigarette, -/obj/machinery/light/small/directional/east, -/obj/structure/table/wood, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/service/bar) -"wnv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"wnB" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Xenobiology Pens - Starboard Aft"; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"wnK" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/genetics) -"wnL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"wnO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1; - sortType = 21 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"wnT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rnd2"; - name = "Research Lab Shutters"; - dir = 8 - }, -/turf/open/floor/plating, -/area/station/science/lab) -"wob" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/brig) -"wor" = ( -/turf/open/openspace, -/area/station/medical/medbay/aft) -"wou" = ( -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"wox" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/stamp/ce, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"woF" = ( -/obj/machinery/modular_computer/console/preset/cargochat/medical{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/end{ - dir = 8 - }, -/turf/open/floor/iron/large, -/area/station/medical/medbay/aft) -"woP" = ( -/obj/structure/fluff/tram_rail/end{ - dir = 4; - pixel_y = -17 - }, -/obj/structure/fluff/tram_rail/end{ - dir = 4 - }, -/turf/open/openspace/icemoon/keep_below, -/area/icemoon/underground/explored) -"woQ" = ( -/obj/machinery/requests_console/directional/south{ - assistance_requestable = 1; - department = "Atmospherics"; - departmentType = 3; - name = "Atmospherics Requests Console"; - supplies_requestable = 1 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/storage/gas) -"woU" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Cargo Escape Airlock"; - space_dir = 4 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"wpg" = ( -/obj/structure/rack, -/obj/item/hand_labeler, -/obj/item/hand_labeler, -/obj/machinery/light/directional/east, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron/textured, -/area/station/security/brig) -"wpi" = ( -/obj/structure/table, -/obj/item/holosign_creator/atmos{ - pixel_x = -5 - }, -/obj/item/holosign_creator/atmos{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"wpv" = ( -/obj/structure/sign/warning/cold_temp, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"wpF" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/security/holding_cell) -"wpO" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"wpY" = ( -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"wqb" = ( -/obj/structure/cable, -/obj/machinery/camera/directional/east{ - c_tag = "Research Division South" - }, -/turf/open/floor/iron/white/side{ - dir = 9 - }, -/area/station/science/research) -"wqc" = ( -/obj/machinery/vending/wardrobe/engi_wardrobe, -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/storage_shared) -"wqi" = ( -/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/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"wqj" = ( -/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, -/area/station/commons/storage/mining) -"wqx" = ( -/turf/closed/wall/r_wall, -/area/station/hallway/primary/fore) -"wqI" = ( -/obj/item/radio/intercom/prison/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/smooth, -/area/station/security/brig) -"wqT" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Public Mining Storage"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/mine/storage) -"wqZ" = ( -/obj/machinery/deepfryer, -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/machinery/light/directional/east, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"wrc" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/machinery/light_switch/directional/north{ - pixel_x = -11 - }, -/turf/open/floor/iron, -/area/station/engineering/storage) -"wrE" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 2; - pixel_y = 0 - }, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/cable_coil{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"wrN" = ( -/obj/structure/sign/departments/court/directional/north, -/turf/open/openspace, -/area/station/hallway/primary/fore) -"wrP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/co2, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"wrU" = ( -/obj/structure/rack, -/obj/item/screwdriver, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"wrV" = ( -/obj/structure/cable, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"wrX" = ( -/turf/closed/wall, -/area/station/service/chapel) -"wsh" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/three, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"wsp" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/ordnance) -"wsu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"wsx" = ( -/obj/structure/closet, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"wsF" = ( -/obj/structure/table/glass, -/obj/item/book/manual/wiki/infections{ - pixel_y = 7 - }, -/obj/item/reagent_containers/syringe/antiviral, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/spray/cleaner, -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/structure/reagent_dispensers/wall/virusfood/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"wsN" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/chair/stool/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"wsO" = ( -/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/plating, -/area/station/maintenance/starboard/fore) -"wsT" = ( -/obj/machinery/button/door/directional/west{ - id = "chemistry_lower_shutters"; - name = "Chemistry Exterior Shutter Control"; - req_access = list("plumbing") - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"wsW" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/commons/fitness) -"wta" = ( -/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/department/chapel) -"wtb" = ( -/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, -/area/station/hallway/primary/central) -"wte" = ( -/obj/machinery/light/directional/west, -/obj/structure/bookcase{ - name = "Holy Bookcase" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"wtg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/wood/large, -/area/station/command/heads_quarters/hos) -"wtX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/cold_temp, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"wug" = ( -/obj/machinery/gulag_item_reclaimer{ - pixel_y = 24 - }, -/turf/open/floor/carpet, -/area/station/security/processing) -"wun" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/obj/item/paicard, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/station/service/bar) -"wuo" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"wuC" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"wuH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/directional/west{ - c_tag = "Security - Upper Permabrig Hallway West"; - network = list("ss13","prison") - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison) -"wuV" = ( -/obj/effect/turf_decal/siding/yellow/corner, -/obj/machinery/status_display/evac/directional/south, -/obj/structure/table, -/obj/effect/spawner/random/trash/food_packaging, -/obj/effect/spawner/random/trash/cigbutt, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"wva" = ( -/obj/machinery/light/directional/west, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"wvb" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood, -/obj/machinery/door/firedoor, -/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, -/area/station/service/bar/atrium) -"wve" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"wvh" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 1; - height = 13; - id = "arrivals_stationary"; - name = "arrivals"; - width = 5 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"wvl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/service/chapel) -"wvv" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Ordnance Launch Room" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/plating, -/area/station/science/ordnance/testlab) -"wvw" = ( -/obj/machinery/button/door/directional/north{ - id = "heads_meeting"; - name = "Security Shutters" - }, -/turf/open/floor/wood, -/area/station/command/meeting_room) -"wvx" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"wvz" = ( -/obj/structure/table, -/obj/item/assembly/timer{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/assembly/timer{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/assembly/timer{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/assembly/timer, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"wvI" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"wvL" = ( -/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/firealarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"wvN" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/siding/white{ - dir = 6 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/large, -/area/station/service/kitchen/diner) -"wvV" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/pumproom) -"wvW" = ( -/obj/structure/bed/dogbed/runtime, -/obj/item/toy/cattoy, -/obj/machinery/newscaster/directional/north, -/mob/living/simple_animal/pet/cat/runtime, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"wwo" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"wws" = ( -/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) -"wwu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/general/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wwB" = ( -/obj/structure/table/wood, -/obj/item/pinpointer/nuke, -/obj/item/disk/nuclear, -/obj/item/storage/secure/safe/directional/east, -/obj/machinery/light/directional/east, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"wwG" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 1 - }, -/obj/item/seeds/berry, -/turf/open/floor/grass, -/area/station/maintenance/starboard/fore) -"wwI" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"wwK" = ( -/obj/effect/turf_decal/trimline/green/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"wwL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Law Office" - }, -/obj/machinery/door/firedoor, -/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/service/lawyer, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"wxg" = ( -/turf/open/floor/iron/freezer, -/area/mine/laborcamp) -"wxp" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/poddoor/shutters{ - id = "Cargo_Store_In"; - name = "Cargo Warehouse Shutters"; - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"wxw" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/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/chapel) -"wxy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Primary Tool Storage" - }, -/obj/structure/cable, -/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, -/area/station/commons/storage/primary) -"wxA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"wxH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"wxI" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock) -"wxL" = ( -/obj/effect/turf_decal/tile/blue/half{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/service/hydroponics) -"wxN" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/solars/port/fore) -"wxR" = ( -/obj/effect/turf_decal/tile/red/half{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/half{ - dir = 1 - }, -/area/station/hallway/secondary/service) -"wyj" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"wyo" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Holding Area" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"wyB" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"wyO" = ( -/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/machinery/camera/directional/south{ - c_tag = "Security - Permabrig Meditation"; - network = list("ss13","prison") - }, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"wyU" = ( -/obj/machinery/light/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Xenobiology Pens - Port Aft"; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"wzc" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/machinery/computer/med_data, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"wzg" = ( -/obj/structure/rack, -/obj/effect/spawner/random/clothing/bowler_or_that, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"wzk" = ( -/turf/open/floor/wood, -/area/station/command/meeting_room) -"wzl" = ( -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/wood/large, -/area/mine/eva/lower) -"wzm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"wzn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/mine/laborcamp) -"wAb" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"wAo" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wAq" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Security - Upper Brig South" - }, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"wAv" = ( -/obj/structure/chair/comfy/brown{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"wAx" = ( -/obj/structure/sign/warning/secure_area/directional/north{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/server) -"wAB" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wAQ" = ( -/obj/machinery/computer/shuttle/labor/one_way{ - dir = 4 - }, -/turf/open/floor/iron, -/area/mine/laborcamp) -"wAT" = ( -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"wAU" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/hallway/secondary/entry) -"wAW" = ( -/obj/structure/table, -/obj/item/knife/kitchen, -/obj/item/storage/box/donkpockets, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"wAY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"wBb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"wBc" = ( -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/showroomfloor, -/area/station/security/processing) -"wBk" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Robotics Lab"; - network = list("ss13","rd") - }, -/obj/structure/table, -/obj/item/book/manual/wiki/robotics_cyborgs{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "robotics"; - name = "Shutters Control Button"; - req_access = list("robotics") - }, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"wBp" = ( -/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/security/prison/workout) -"wBF" = ( -/obj/machinery/status_display/supply{ - pixel_y = 2 - }, -/turf/closed/wall, -/area/station/cargo/sorting) -"wBL" = ( -/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/port/greater) -"wBV" = ( -/obj/structure/closet/crate, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"wBZ" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/machinery/recycler, -/obj/structure/sign/warning/secure_area/directional/north{ - name = "\improper STAY CLEAR HEAVY MACHINERY" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"wCd" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"wCl" = ( -/obj/structure/table/glass, -/obj/machinery/vending/wallmed/directional/north, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/book/manual/wiki/surgery{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/machinery/camera{ - c_tag = "Surgery A"; - dir = 1; - network = list("ss13","medbay"); - pixel_x = 22 - }, -/obj/item/storage/backpack/duffelbag/med/surgery, -/turf/open/floor/iron/white, -/area/station/medical/surgery/fore) -"wCn" = ( -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/structure/table, -/obj/machinery/door_buttons/access_button, -/obj/item/clothing/mask/gas{ - pixel_x = 6; - pixel_y = 2 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"wCo" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"wCx" = ( -/obj/effect/turf_decal/siding/yellow{ - dir = 5 - }, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"wCK" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/dark_blue/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/mix) -"wCV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white/side{ - dir = 8 - }, -/area/station/science/explab) -"wCZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"wDc" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/engineering{ - name = "Utilities Room" - }, -/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/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"wDe" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"wDg" = ( -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"wDi" = ( -/obj/structure/table, -/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 = 2; - pixel_y = -1 - }, -/obj/item/clothing/mask/breath{ - pixel_x = 2; - pixel_y = -1 - }, -/obj/item/clothing/mask/breath{ - pixel_x = 2; - pixel_y = -1 - }, -/turf/open/floor/iron, -/area/station/commons/storage/mining) -"wDk" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/sink{ - dir = 8; - pixel_x = 12 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"wDr" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"wDB" = ( -/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/starboard/lesser) -"wDG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/mine/storage) -"wDK" = ( -/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/structure/steam_vent, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"wDU" = ( -/turf/closed/wall/r_wall, -/area/mine/eva/lower) -"wEa" = ( -/obj/structure/sign/painting/library{ - pixel_y = 32 - }, -/obj/structure/table, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"wEh" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"wEy" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - 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/science_guard, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) -"wEL" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"wET" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/science/lab) -"wEU" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"wEV" = ( -/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/aft/greater) -"wEW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"wFe" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"wFg" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"wFr" = ( -/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, -/area/station/hallway/primary/aft) -"wFD" = ( -/obj/machinery/light/directional/south, -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/obj/structure/window/reinforced/spawner/north, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/mine/production) -"wFJ" = ( -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"wFK" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"wFO" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/service/library) -"wFU" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"wGc" = ( -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "Test Chamber Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/engine, -/area/station/science/explab) -"wGv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/service/chapel) -"wGE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"wGF" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/robotics/lab) -"wGN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "Xenobio Pen 6 Blast Door" - }, -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/electric_shock, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"wGO" = ( -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/multiz/violet/visible{ - dir = 8; - name = "Infiltrate" - }, -/obj/effect/turf_decal/tile/neutral/diagonal_centre, -/obj/effect/turf_decal/tile/dark_green/diagonal_edge, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/iron/dark/diagonal, -/area/station/engineering/atmos/storage) -"wGW" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/security/office) -"wGX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"wHb" = ( -/obj/machinery/atmospherics/components/unary/passive_vent{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/freezer, -/area/station/science/xenobiology) -"wHc" = ( -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/rd) -"wHd" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/turf/closed/wall/r_wall, -/area/station/science/ordnance/burnchamber) -"wHe" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) -"wHg" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "Atmospherics Project Shutters"; - name = "Atmospherics Project Shutters"; - dir = 1 - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"wHj" = ( -/obj/structure/chair/sofa/corp{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"wHl" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/light_switch/directional/west, -/obj/structure/closet/secure_closet/quartermaster, -/turf/open/floor/iron, -/area/station/cargo/qm) -"wHv" = ( -/obj/machinery/airalarm/directional/west, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - 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, -/area/station/commons/fitness) -"wHB" = ( -/obj/effect/turf_decal/tile/dark{ - dir = 1 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/structure/cable, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/stack/sheet/mineral/plasma/five, -/turf/open/floor/iron/white/side{ - dir = 4 - }, -/area/mine/living_quarters) -"wHH" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"wIg" = ( -/obj/machinery/mech_bay_recharge_port{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/robotics/mechbay) -"wIz" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/table/wood, -/obj/effect/landmark/start/hangover, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"wIE" = ( -/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/fore/greater) -"wIF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair/stool/directional/west, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"wIS" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/table, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"wJa" = ( -/obj/machinery/light/warm/directional/north, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 5 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/rec) -"wJd" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_large{ - name = "The Girly Boar" - }, -/turf/open/floor/iron/dark/textured_half, -/area/station/service/bar/atrium) -"wJe" = ( -/obj/structure/filingcabinet, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/sign/poster/official/space_cops{ - pixel_x = -32 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) -"wJf" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"wJi" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/openspace, -/area/station/security/prison) -"wJk" = ( -/obj/machinery/firealarm/directional/north, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"wJD" = ( -/obj/structure/sign/departments/maint/alt, -/turf/closed/wall, -/area/station/maintenance/aft/lesser) -"wJG" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"wJM" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"wJR" = ( -/obj/structure/chair/sofa/bench/right{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"wJU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/mine/eva) -"wKe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/effect/landmark/start/orderly, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/medical) -"wKm" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"wKv" = ( -/obj/structure/table, -/obj/item/radio/off, -/turf/open/floor/iron/cafeteria, -/area/station/hallway/secondary/exit/departure_lounge) -"wKw" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"wKC" = ( -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"wKI" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/command/bridge) -"wLk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/upper) -"wLl" = ( -/turf/closed/wall/r_wall, -/area/station/science/research) -"wLI" = ( -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"wLJ" = ( -/obj/item/circuitboard/machine/stasis, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/item/wrench/medical, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"wLO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/qm) -"wLS" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/hallway/secondary/exit/departure_lounge) -"wLU" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"wLY" = ( -/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/heads_quarters/cmo) -"wLZ" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/potato{ - name = "\improper Beepsky's emergency battery" - }, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"wMe" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"wMj" = ( -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"wMm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/white/side{ - dir = 9 - }, -/area/station/science/research) -"wMq" = ( -/obj/structure/table, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/machinery/light/directional/west, -/obj/machinery/requests_console/directional/west{ - department = "Mining"; - name = "Mining Requests Console"; - supplies_requestable = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"wMt" = ( -/turf/closed/wall, -/area/station/hallway/primary/central/fore) -"wMu" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/chair/sofa/right{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/entertainment/directional/south, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/grimy, -/area/station/commons/lounge) -"wMz" = ( -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - name = "Supply multi deck pipe adapter" - }, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - name = "Scrubbers multi deck pipe adapter" - }, -/obj/effect/turf_decal/stripes/box, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/commons/storage/mining) -"wMT" = ( -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"wMU" = ( -/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/aft) -"wMV" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/security/office) -"wNp" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"wNt" = ( -/turf/open/floor/iron/smooth, -/area/station/security/brig/upper) -"wND" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/service/library) -"wNO" = ( -/turf/open/genturf, -/area/icemoon/surface/outdoors/unexplored/rivers/no_monsters) -"wNQ" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/obj/structure/desk_bell{ - pixel_y = 10 - }, -/turf/open/floor/iron, -/area/station/service/bar) -"wOc" = ( -/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/security/processing) -"wOn" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos/storage) -"wOp" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/eighties/red, -/area/station/security/prison/safe) -"wOt" = ( -/obj/machinery/vending/games, -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison) -"wOy" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"wOB" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"wOH" = ( -/obj/structure/rack, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"wON" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/commons/locker) -"wOO" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"wOR" = ( -/obj/item/stack/rods/ten, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"wOS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"wOX" = ( -/obj/machinery/door/airlock/research{ - name = "Circuit Testing Lab" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/research, -/turf/open/floor/iron, -/area/station/science/explab) -"wPd" = ( -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"wPf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"wPg" = ( -/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/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/prison) -"wPD" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Evidence Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/machinery/door/firedoor, -/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_large, -/area/station/security/brig) -"wPK" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/commons/storage/emergency/port) -"wPN" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"wPT" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"wPZ" = ( -/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_smooth, -/area/station/maintenance/starboard/fore) -"wQi" = ( -/obj/machinery/portable_atmospherics/canister/plasma, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"wQj" = ( -/obj/structure/cable, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/red, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"wQr" = ( -/turf/closed/wall, -/area/station/cargo/drone_bay) -"wQu" = ( -/obj/structure/table, -/obj/item/taperecorder{ - pixel_x = -3 - }, -/obj/item/folder/red{ - pixel_x = 3 - }, -/obj/item/reagent_containers/spray/pepper, -/obj/item/assembly/flash, -/turf/open/floor/plating/icemoon, -/area/station/security/execution/education) -"wQx" = ( -/obj/structure/chair, -/obj/machinery/light/small/red/directional/north, -/obj/item/radio/intercom/chapel/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"wQI" = ( -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/four, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"wQM" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"wQR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron/textured, -/area/station/security/brig) -"wQY" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 9 - }, -/turf/open/openspace, -/area/station/science/ordnance/office) -"wRa" = ( -/turf/open/openspace, -/area/station/security/prison) -"wRd" = ( -/turf/open/floor/iron, -/area/station/engineering/main) -"wRr" = ( -/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/greater) -"wRs" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/glass/reinforced, -/area/station/security/lockers) -"wRv" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"wRx" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"wRJ" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/service) -"wRK" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "gulag" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/plasticflaps, -/turf/open/floor/plating, -/area/mine/laborcamp) -"wRM" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"wRO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/machinery/door/firedoor/heavy, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"wRR" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_lower_shutters"; - name = "Chemistry Exterior Shutters"; - dir = 1 - }, -/obj/structure/cable, -/obj/effect/spawner/structure/window/hollow/reinforced/middle, -/turf/open/floor/plating, -/area/station/medical/chemistry) -"wRU" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"wSd" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/warning/secure_area/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"wSo" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wSs" = ( -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"wSz" = ( -/obj/structure/chair/stool/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison/work) -"wSC" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer1{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wSM" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/machinery/door/poddoor{ - id = "QMLoaddoor2"; - name = "Supply Dock Loading Door" - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"wSU" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"wSZ" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Security - Permabrig Upper Hallway East"; - network = list("ss13","prison") - }, -/turf/open/openspace, -/area/station/security/prison) -"wTg" = ( -/turf/closed/wall, -/area/station/engineering/main) -"wTh" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"wTA" = ( -/obj/machinery/telecomms/bus/preset_one, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"wTG" = ( -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating/snowed/icemoon, -/area/mine/eva/lower) -"wTV" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Bridge West Entrance" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"wUb" = ( -/obj/structure/rack, -/obj/item/poster/random_contraband, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"wUi" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Stbd"; - location = "HOP" - }, -/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, -/area/station/hallway/primary/central) -"wUj" = ( -/turf/closed/wall, -/area/station/service/lawoffice) -"wUq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/warm/directional/east, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"wUt" = ( -/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/science/research) -"wUw" = ( -/obj/machinery/door/poddoor/shutters{ - id = "aux_base_shutters"; - name = "Auxillary Base Shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"wUA" = ( -/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/maintenance/aft/greater) -"wUE" = ( -/obj/machinery/light_switch/directional/north{ - pixel_x = -7 - }, -/obj/structure/table, -/obj/item/stock_parts/cell/high/empty, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/tile/brown/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) -"wUJ" = ( -/obj/machinery/computer/atmos_alert, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"wUL" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Warehouse" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, -/turf/open/floor/iron/dark/textured_half, -/area/station/cargo/warehouse) -"wUO" = ( -/obj/machinery/door/airlock{ - name = "Utility Closet" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/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/security/prison/safe) -"wUP" = ( -/obj/structure/closet/crate, -/turf/open/floor/iron, -/area/station/cargo/storage) -"wUQ" = ( -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"wUR" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/engine, -/area/station/engineering/atmos/hfr_room) -"wVe" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"wVl" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/service/library) -"wVu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/command/teleporter) -"wVz" = ( -/turf/open/floor/iron/dark, -/area/mine/storage) -"wVE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/gun_vendor, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) -"wVF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/sorting/wrap/flip{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"wVJ" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"wVR" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"wWm" = ( -/obj/item/trash/raisins, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"wWn" = ( -/obj/item/food/fried_chicken, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/station/maintenance/fore) -"wWs" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 11; - height = 22; - id = "whiteship_home"; - name = "SS13: Auxiliary Dock, Station-Port"; - width = 35 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"wWt" = ( -/obj/machinery/light/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Atmospherics Central" - }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Port to Infiltrate" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wWL" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron, -/area/mine/living_quarters) -"wWM" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"wWO" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light/directional/south, -/obj/structure/closet/secure_closet/personal{ - anchored = 1 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"wWU" = ( -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/security/processing) -"wWY" = ( -/obj/effect/turf_decal/bot, -/obj/structure/ore_box, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/mine/laborcamp) -"wXc" = ( -/obj/structure/sign/warning/cold_temp/directional/east, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"wXr" = ( -/obj/structure/closet/secure_closet/chemical, -/obj/effect/turf_decal/trimline/blue/line, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/maintenance/fore/greater) -"wXw" = ( -/turf/open/genturf/alternative, -/area/icemoon/surface/outdoors/noruins) -"wXW" = ( -/obj/structure/sign/warning/gas_mask/directional/south, -/obj/effect/spawner/random/trash/grille_or_waste, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"wXX" = ( -/obj/machinery/door/window/left/directional/north{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen 10"; - req_access = list("xenobiology") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"wYb" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/trash/waffles, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"wYf" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"wYh" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"wYl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"wYm" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"wYp" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/ice, -/area/icemoon/underground/explored) -"wYq" = ( -/obj/machinery/door/airlock{ - name = "Perma Overlook Closet" - }, -/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/cyclelink_helper_multi{ - cycle_id = "perma-overlook" - }, -/turf/open/floor/vault, -/area/station/security/prison/rec) -"wYs" = ( -/turf/open/floor/plating, -/area/station/service/kitchen/coldroom) -"wYw" = ( -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/white, -/area/mine/living_quarters) -"wYJ" = ( -/turf/closed/wall, -/area/station/engineering/storage_shared) -"wYK" = ( -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"wYP" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/end{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/security/courtroom) -"wZj" = ( -/turf/open/floor/iron/dark/textured, -/area/station/security/warden) -"wZr" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"wZv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/camera{ - c_tag = "Xenobiology Pens Hall - Fore"; - dir = 9; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"wZC" = ( -/obj/machinery/chem_heater/withbuffer, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/treatment_center) -"wZK" = ( -/obj/structure/chair/stool/bar/directional/south, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/stone, -/area/station/commons/lounge) -"wZL" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"wZT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"wZZ" = ( -/obj/structure/tank_holder/oxygen/red, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"xad" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/range) -"xak" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Chapel External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/service/chapel) -"xal" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/cargo/qm) -"xan" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/button/door/directional/south{ - id = "AuxToilet1"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/obj/effect/spawner/random/trash/graffiti{ - pixel_x = -32; - spawn_loot_chance = 50 - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/locker) -"xaH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/ai_monitored/security/armory) -"xaI" = ( -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"xaU" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 5 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"xaV" = ( -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/white, -/area/mine/living_quarters) -"xbh" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness) -"xbn" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"xbo" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"xbr" = ( -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"xbv" = ( -/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/workout) -"xby" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/hollow/reinforced/middle, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"xbA" = ( -/obj/machinery/door/airlock/silver{ - name = "Restroom" - }, -/turf/open/floor/iron/freezer, -/area/mine/eva/lower) -"xbC" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/trimline/dark_green/arrow_ccw, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ - dir = 8 - }, -/obj/machinery/meter, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage) -"xbR" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 29 - }, -/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, -/area/station/hallway/primary/central/fore) -"xbV" = ( -/obj/structure/ladder, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"xcj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"xcp" = ( -/obj/item/trash/pistachios, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"xcu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"xcx" = ( -/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, -/area/mine/laborcamp/security) -"xcy" = ( -/obj/effect/spawner/random/vending/colavend, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"xcC" = ( -/obj/structure/fluff/tram_rail/end{ - dir = 4; - pixel_y = -17 - }, -/obj/structure/fluff/tram_rail/end{ - dir = 4 - }, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"xcE" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/storage/box/lights/mixed, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"xcZ" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "MiniSat External Access" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/command/minisat, -/obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"xdf" = ( -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"xdl" = ( -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"xdz" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"xdA" = ( -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/structure/chair/stool/bar/directional/east, -/turf/open/floor/iron/white/smooth_large, -/area/station/service/kitchen/diner) -"xdM" = ( -/obj/structure/sign/warning/cold_temp, -/turf/closed/wall, -/area/station/hallway/secondary/exit/departure_lounge) -"xdU" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/chair/stool/directional/north, -/obj/effect/landmark/start/scientist, -/turf/open/floor/iron/white, -/area/station/science/lab) -"xdW" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Central Hallway South-East" - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"xdZ" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 6 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/rec) -"xex" = ( -/obj/machinery/teleport/hub, -/turf/open/floor/plating, -/area/station/command/teleporter) -"xeH" = ( -/obj/machinery/airalarm/directional/west, -/turf/open/floor/wood, -/area/station/service/library) -"xeM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/carbon_output{ - dir = 8 - }, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"xeX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"xfb" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"xfc" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/engineering/storage_shared) -"xfd" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/research{ - name = "Research Division Access" - }, -/obj/effect/landmark/navigate_destination, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron/white, -/area/station/science/research) -"xfi" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating/snowed/icemoon, -/area/station/cargo/miningdock) -"xfn" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix to Gas" - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"xfr" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) -"xfB" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xfK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Testing Lab Maintenance" - }, -/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/access/all/science/research, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"xfM" = ( -/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/obj/machinery/atmospherics/pipe/layer_manifold/pink/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage) -"xfZ" = ( -/obj/structure/flora/bush/snow/style_random, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"xgi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/engineering/atmos/hfr_room) -"xgm" = ( -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_x = -31; - pixel_y = -32 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = -31; - pixel_y = -40 - }, -/obj/structure/sign/directions/security{ - dir = 4; - pixel_x = -31; - pixel_y = -24 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"xgr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/machinery/button/door/incinerator_vent_atmos_aux{ - pixel_x = -8; - pixel_y = -24 - }, -/obj/machinery/button/door/incinerator_vent_atmos_main{ - pixel_x = -8; - pixel_y = -36 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"xgy" = ( -/turf/open/openspace, -/area/station/service/hydroponics) -"xgB" = ( -/obj/structure/flora/rock/style_random, -/obj/structure/window/reinforced/spawner, -/turf/open/misc/asteroid/snow/icemoon, -/area/station/maintenance/port/aft) -"xgH" = ( -/obj/structure/closet/crate/coffin, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small/directional/north, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"xgI" = ( -/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) -"xgK" = ( -/obj/structure/table, -/obj/item/transfer_valve{ - pixel_x = -5 - }, -/obj/item/transfer_valve, -/obj/item/transfer_valve{ - pixel_x = 5 - }, -/obj/item/transfer_valve{ - pixel_x = -5 - }, -/obj/item/transfer_valve{ - pixel_x = 5 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"xgL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron/dark/textured_edge, -/area/station/security/prison) -"xgO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/mid_joiner{ - dir = 4 - }, -/turf/open/floor/iron/smooth_large, -/area/station/cargo/drone_bay) -"xgX" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/structure/reagent_dispensers/wall/peppertank/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"xhv" = ( -/obj/machinery/door/window/left/directional/north{ - dir = 4; - name = "Containment Pen 2"; - req_access = list("xenobiology") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"xhx" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/fore/greater) -"xhz" = ( -/obj/structure/ladder{ - name = "Kitchen Access" - }, -/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen/coldroom) -"xhD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/statue{ - desc = "A lifelike statue of a horrifying monster."; - dir = 8; - icon = 'icons/mob/lavaland/lavaland_monsters.dmi'; - icon_state = "goliath"; - name = "goliath" - }, -/turf/open/floor/iron/white, -/area/mine/living_quarters) -"xhK" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison/safe) -"xie" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Engineering MiniSat Access" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"xit" = ( -/obj/item/book/manual/wiki/security_space_law, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/station/command/meeting_room) -"xiC" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/food_or_drink/snack, -/turf/open/floor/iron/dark, -/area/station/science/breakroom) -"xiO" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/obj/structure/marker_beacon/burgundy, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"xiR" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/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/greater) -"xiS" = ( -/obj/structure/window/reinforced/spawner/north, -/obj/structure/window/reinforced/spawner/east, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/structure/statue/snow/snowman{ - name = "Cecil"; - pixel_x = -2; - pixel_y = -3 - }, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/mine/mechbay) -"xiU" = ( -/obj/effect/spawner/random/vending/colavend, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"xiW" = ( -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"xjg" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/station/medical/medbay/lobby) -"xji" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"xjj" = ( -/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/lesser) -"xjm" = ( -/obj/machinery/light_switch/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Custodial Closet" - }, -/obj/vehicle/ridden/janicart, -/turf/open/floor/iron, -/area/station/service/janitor) -"xjs" = ( -/obj/machinery/door/firedoor/heavy, -/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/research) -"xjC" = ( -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"xjD" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/structure/chair/sofa/left{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/break_room) -"xjL" = ( -/obj/machinery/computer/shuttle/labor{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/showroomfloor, -/area/station/security/processing) -"xjO" = ( -/obj/machinery/power/port_gen/pacman{ - anchored = 1 - }, -/turf/open/floor/iron/smooth, -/area/mine/laborcamp/security) -"xjP" = ( -/obj/machinery/disposal/delivery_chute{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"xjZ" = ( -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/iron/dark, -/area/mine/eva) -"xke" = ( -/obj/effect/turf_decal/trimline/dark_red/filled/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump/off{ - dir = 8; - name = "Exfiltrate to Waste" - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"xkg" = ( -/obj/structure/table/glass, -/obj/item/storage/box/syringes, -/obj/item/clothing/glasses/science{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/clothing/glasses/science, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/requests_console/directional/south{ - assistance_requestable = 1; - department = "Chemistry"; - departmentType = 1; - name = "Chemistry Requests Console" - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"xkp" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm4"; - name = "Dorm 4" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/commons/dorms) -"xkt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/window{ - id = "stationawaygate"; - name = "Gateway Access Shutters" - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"xkZ" = ( -/obj/machinery/teleport/station, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat_interior) -"xlq" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"xlv" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/service/kitchen/diner) -"xlx" = ( -/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/smooth_half, -/area/station/security/office) -"xlL" = ( -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"xlN" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint2" - }, -/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/fore) -"xmd" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Locker Room West" - }, -/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, -/area/station/commons/locker) -"xmf" = ( -/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/side{ - dir = 9 - }, -/area/station/science/research) -"xmx" = ( -/obj/structure/sink/kitchen{ - pixel_y = 20 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"xmB" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 5 - }, -/obj/machinery/light_switch/directional/north{ - pixel_x = -5 - }, -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"xmD" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/mine/eva) -"xmK" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) -"xmL" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/structure/sign/warning/no_smoking{ - pixel_x = -28 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xmN" = ( -/obj/structure/table/reinforced, -/obj/item/radio/intercom/directional/south, -/obj/item/paper_bin{ - pixel_x = -3 - }, -/obj/item/pen{ - pixel_x = -3 - }, -/obj/item/folder/yellow{ - pixel_x = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"xmQ" = ( -/obj/machinery/computer/security/telescreen/entertainment/directional/south, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"xmR" = ( -/obj/structure/disposalpipe/segment, -/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/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"xnk" = ( -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"xnr" = ( -/obj/structure/sign/poster/official/here_for_your_safety{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"xns" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/camera/directional/south{ - c_tag = "Xenobiology Pens Hall - Aft"; - network = list("ss13","rd","xeno_pens") - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"xnt" = ( -/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/upper) -"xnC" = ( -/obj/structure/sign/warning/fire/directional/east, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"xnE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos) -"xnM" = ( -/obj/structure/cable, -/turf/open/floor/iron/white/side{ - dir = 9 - }, -/area/station/science/research) -"xnX" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 6 - }, -/turf/open/lava/plasma/ice_moon, -/area/icemoon/underground/explored) -"xow" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"xoy" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/light/directional/south, -/obj/effect/landmark/start/paramedic, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"xoB" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"xoY" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"xoZ" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/west, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/stone, -/area/station/commons/lounge) -"xpd" = ( -/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 = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"xpp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"xpw" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - 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 = 1 - }, -/area/mine/eva) -"xpE" = ( -/obj/structure/table, -/obj/item/knife/kitchen, -/obj/item/wirecutters, -/obj/item/stack/sheet/leather, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"xpP" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"xpQ" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/mine/production) -"xpT" = ( -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"xqu" = ( -/obj/machinery/door/window/left/directional/north{ - dir = 4; - name = "Containment Pen 10"; - req_access = list("xenobiology") - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio10"; - name = "Xenobio Pen 10 Blast Door" - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"xqv" = ( -/obj/effect/spawner/random/entertainment/gambling, -/obj/structure/table/wood, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"xqy" = ( -/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/office) -"xqA" = ( -/obj/machinery/door/airlock/external{ - name = "Service Hall Exit" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "service-hall-external" - }, -/obj/structure/sign/warning/gas_mask/directional/south{ - desc = "A sign that warns of dangerous gasses in the air, instructing you to wear internals." - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/access/all/service/general, -/turf/open/floor/iron/dark/textured, -/area/station/hallway/secondary/service) -"xqY" = ( -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/medical/chemistry) -"xrb" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"xrf" = ( -/obj/structure/railing, -/obj/structure/cable, -/obj/machinery/door/window/right/directional/south, -/turf/open/floor/plating/icemoon, -/area/station/security/execution/education) -"xri" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/commons/dorms) -"xrm" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"xry" = ( -/obj/machinery/newscaster/directional/west, -/turf/open/floor/wood, -/area/station/service/library) -"xrC" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 9 - }, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/rec) -"xrI" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/mine/storage) -"xrS" = ( -/obj/structure/ladder, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"xsq" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/maintenance/port/fore) -"xsv" = ( -/obj/machinery/door/airlock/engineering{ - name = "Tech Storage" - }, -/obj/structure/cable, -/obj/effect/landmark/navigate_destination, -/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/tech_storage, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"xsD" = ( -/obj/item/food/grown/carrot, -/turf/open/misc/asteroid/snow/standard_air, -/area/station/science/research) -"xsQ" = ( -/obj/vehicle/ridden/secway, -/obj/effect/turf_decal/tile/red/half, -/obj/structure/cable, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) -"xta" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"xtc" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"xtn" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/security/courtroom) -"xtp" = ( -/obj/structure/bookcase/random/fiction, -/turf/open/floor/wood, -/area/station/service/library) -"xtr" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Mining Dock External" - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"xtz" = ( -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark/textured_edge, -/area/station/security/prison) -"xtR" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/closet/l3closet/virology, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"xtS" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"xtX" = ( -/obj/structure/sign/warning/secure_area/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{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"xuj" = ( -/obj/machinery/computer/operating{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"xun" = ( -/obj/machinery/door/poddoor/massdriver_chapel, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/station/service/chapel) -"xuo" = ( -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/underground/explored) -"xur" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "Xenobio Pen 8 Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"xuz" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"xuA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory) -"xuJ" = ( -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/engineering/atmos/hfr_room) -"xuM" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera{ - c_tag = "Cryogenics"; - dir = 9; - network = list("ss13","medbay") - }, -/obj/structure/sign/warning/cold_temp/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/iron/dark/textured, -/area/station/medical/cryo) -"xuQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/station/medical/virology) -"xuR" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/manifold{ - dir = 4 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"xvc" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"xvj" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/dark_green/arrow_ccw, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xvn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/landmark/start/chemist, -/turf/open/floor/iron/dark, -/area/station/medical/chemistry) -"xvy" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"xvO" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/mine/eva/lower) -"xvZ" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"xwc" = ( -/obj/effect/landmark/blobstart, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"xwd" = ( -/obj/structure/stairs/east, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"xwf" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"xwk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"xwm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"xwp" = ( -/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/storage) -"xws" = ( -/obj/structure/table, -/obj/machinery/light/small/directional/north, -/obj/item/folder{ - pixel_x = 3 - }, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"xwt" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/construction) -"xwu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/airlock/virology/glass{ - name = "Monkey Pen" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"xwx" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"xwz" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"xwC" = ( -/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, -/area/station/hallway/primary/central) -"xwD" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Tool Storage 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/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"xwE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"xwM" = ( -/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/maintenance/aft/greater) -"xwN" = ( -/obj/structure/bodycontainer/morgue, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"xxc" = ( -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/machinery/light/directional/south, -/obj/item/stack/sheet/mineral/plasma/thirty, -/turf/open/floor/iron/smooth, -/area/mine/laborcamp/security) -"xxg" = ( -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"xxs" = ( -/obj/effect/turf_decal/bot_white, -/obj/structure/reagent_dispensers/plumbed, -/obj/effect/turf_decal/siding/yellow/corner, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/large, -/area/station/engineering/atmos) -"xxv" = ( -/obj/effect/turf_decal/arrows, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/maintenance/starboard/aft) -"xxx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"xxB" = ( -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/obj/structure/cable, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"xxI" = ( -/obj/structure/filingcabinet, -/turf/open/floor/iron/grimy, -/area/station/commons/vacant_room/office) -"xyc" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/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/white, -/area/station/medical/medbay/aft) -"xyd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kanyewest"; - name = "Privacy Shutters"; - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/detectives_office) -"xyn" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiomain"; - name = "Containment Blast Door" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"xyx" = ( -/obj/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/smooth_large, -/area/station/command/heads_quarters/hos) -"xyG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"xyS" = ( -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/station/security/processing) -"xyT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"xyU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/mess) -"xza" = ( -/obj/structure/closet/crate, -/obj/effect/landmark/blobstart, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/construction) -"xzd" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Library South" - }, -/obj/structure/displaycase/trophy, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/wood/parquet, -/area/station/service/library) -"xzh" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"xzp" = ( -/obj/item/kirbyplants/random, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"xzI" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/effect/spawner/random/vending/colavend, -/turf/open/floor/iron, -/area/station/commons/locker) -"xzL" = ( -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"xzO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance/three, -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"xzT" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"xAb" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"xAc" = ( -/obj/structure/plasticflaps, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"xAf" = ( -/obj/machinery/firealarm/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron, -/area/station/engineering/storage) -"xAs" = ( -/turf/closed/wall/r_wall, -/area/icemoon/surface/outdoors/nospawn) -"xAQ" = ( -/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/security/brig/upper) -"xAW" = ( -/obj/machinery/door/airlock/security{ - name = "Cafeteria" - }, -/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/textured, -/area/station/security/prison/mess) -"xBa" = ( -/obj/structure/table, -/obj/item/storage/toolbox/electrical{ - pixel_y = 5 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/white/side{ - dir = 1 - }, -/area/station/science/explab) -"xBh" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/button/door/directional/north{ - id = "ceprivacy"; - name = "Privacy Shutters Control" - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"xBp" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"xBv" = ( -/obj/machinery/light/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/line, -/turf/open/floor/iron/dark/textured, -/area/station/security/range) -"xBF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/mine/eva/lower) -"xBN" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/atmos/storage/gas) -"xBO" = ( -/obj/machinery/light/directional/east, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"xBU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"xBX" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix to Port" - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"xCb" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/security/courtroom) -"xCh" = ( -/obj/machinery/button/door/directional/west{ - id = "xenobio5"; - layer = 4; - name = "Xenobio Pen 5 Blast Door"; - req_access = list("xenobiology") - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"xCj" = ( -/obj/structure/sign/departments/holy, -/turf/closed/wall, -/area/station/service/chapel) -"xCl" = ( -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"xCv" = ( -/obj/machinery/computer/security, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"xCz" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"xCD" = ( -/turf/open/floor/iron/smooth, -/area/mine/living_quarters) -"xCF" = ( -/obj/machinery/nuclearbomb/beer, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"xCP" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/ai_monitored/command/storage/eva) -"xCQ" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/pill_bottle/mannitol, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"xDb" = ( -/turf/closed/wall/r_wall, -/area/station/medical/virology) -"xDr" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/siding/white, -/obj/effect/spawner/random/vending/snackvend, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"xDG" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"xDK" = ( -/obj/effect/turf_decal/stripes/white/line, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/prisoner, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"xDU" = ( -/obj/structure/table, -/obj/effect/spawner/random/entertainment/drugs, -/obj/item/poster/random_contraband, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/showroomfloor, -/area/station/maintenance/department/medical/morgue) -"xEb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/green/filled/warning{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"xEc" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"xEd" = ( -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured_large, -/area/station/security/brig) -"xEh" = ( -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation A" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/obj/effect/turf_decal/tile/green/full, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/turf/open/floor/iron/dark/smooth_large, -/area/station/medical/virology) -"xEx" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/item/gun/ballistic/shotgun/doublebarrel, -/obj/structure/table/wood, -/obj/machinery/camera/directional/east{ - c_tag = "Service-Back Bar" - }, -/obj/machinery/requests_console/auto_name/directional/east, -/turf/open/floor/iron, -/area/station/service/bar) -"xEI" = ( -/obj/machinery/door/airlock/security{ - name = "Private Cell" - }, -/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/carpet/black, -/area/station/security/prison/safe) -"xEP" = ( -/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, -/area/station/hallway/secondary/entry) -"xEQ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/ordnance) -"xFj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/trunk/multiz/down{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"xFm" = ( -/obj/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/security/brig/upper) -"xFA" = ( -/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, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"xFB" = ( -/obj/structure/table, -/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 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage) -"xFC" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"xFI" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/sign/poster/contraband/missing_gloves{ - pixel_x = 32 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"xFU" = ( -/obj/structure/barricade/wooden, -/obj/structure/sign/warning/gas_mask/directional/south{ - desc = "A sign that warns of dangerous gasses in the air, instructing you to wear internals." - }, -/obj/structure/sign/warning/cold_temp/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"xFW" = ( -/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/ai_monitored/command/storage/eva) -"xGp" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/left/directional/north{ - dir = 4; - name = "Atmospherics Desk"; - req_access = list("atmospherics") - }, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/effect/turf_decal/delivery, -/obj/item/wrench, -/obj/item/crowbar, -/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, -/area/station/engineering/atmos/storage/gas) -"xGt" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Mining External Airlock"; - opacity = 0 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, -/turf/open/floor/iron/smooth, -/area/mine/eva) -"xGF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/construction) -"xGI" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xGJ" = ( -/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/storage/mining) -"xGX" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Trial Transfer" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/textured, -/area/station/security/courtroom) -"xGZ" = ( -/obj/machinery/vending/boozeomat, -/turf/closed/wall, -/area/station/service/bar) -"xHe" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"xHf" = ( -/obj/structure/closet/crate/bin, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"xHi" = ( -/obj/effect/turf_decal/tile/neutral/diagonal_edge, -/obj/machinery/griddle, -/turf/open/floor/iron/kitchen/diagonal, -/area/station/service/kitchen) -"xHk" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"xHq" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig Entrance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brigentrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron, -/area/station/security/brig/upper) -"xHs" = ( -/obj/machinery/atmospherics/components/binary/pump/off{ - dir = 8; - name = "Exfiltrate to Waste" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xHx" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/vending/modularpc, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"xHE" = ( -/obj/structure/stairs/east, -/turf/open/floor/plating, -/area/station/security/brig) -"xHY" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) -"xIk" = ( -/obj/structure/chair/comfy{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/carpet, -/area/station/security/processing) -"xIo" = ( -/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{ - sortTypes = list(12,23) - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"xIp" = ( -/obj/structure/filingcabinet, -/obj/machinery/light/directional/east, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark/textured, -/area/station/security/office) -"xIF" = ( -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/science/server) -"xII" = ( -/obj/structure/closet/secure_closet/personal{ - anchored = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"xIR" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/glass/reinforced, -/area/station/security/checkpoint/auxiliary) -"xIW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"xJj" = ( -/turf/open/floor/iron, -/area/station/science/xenobiology) -"xJv" = ( -/obj/structure/sign/map/right{ - pixel_y = 32 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"xJw" = ( -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/project) -"xJF" = ( -/obj/structure/flora/bush/flowers_yw/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"xJG" = ( -/obj/machinery/light/directional/east, -/turf/open/openspace, -/area/station/science/xenobiology) -"xJH" = ( -/obj/machinery/button/door/directional/east{ - id = "Atmospherics HFR Shutters"; - name = "Atmospherics HFR Shutters"; - req_access = list("atmospherics") - }, -/obj/effect/turf_decal/trimline/yellow/filled/shrink_ccw{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/hfr_room) -"xKa" = ( -/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/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron, -/area/station/cargo/qm) -"xKd" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"xKe" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"xKj" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"xKo" = ( -/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/starboard/upper) -"xKA" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"xKD" = ( -/obj/item/radio/intercom/directional/west, -/obj/structure/table/reinforced/rglass, -/obj/item/reagent_containers/spray/quantum_hair_dye{ - pixel_x = 6 - }, -/obj/item/lipstick/random, -/turf/open/floor/iron, -/area/service/salon) -"xKG" = ( -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/two, -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"xKJ" = ( -/turf/closed/wall, -/area/station/command/meeting_room) -"xKO" = ( -/obj/structure/table, -/obj/machinery/light_switch/directional/north, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 7 - }, -/obj/item/pen, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"xKR" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/commons/storage/primary) -"xKX" = ( -/obj/effect/turf_decal/trimline/dark_green/arrow_ccw{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"xKY" = ( -/obj/effect/turf_decal/bot, -/obj/effect/landmark/secequipment, -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/machinery/camera/directional/north{ - c_tag = "Security - Office" - }, -/turf/open/floor/iron/dark/textured_half, -/area/station/security/office) -"xLn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"xLq" = ( -/turf/open/floor/glass/reinforced, -/area/station/science/ordnance/office) -"xLF" = ( -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Captain's Desk Door"; - req_access = list("captain") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"xLK" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"xLO" = ( -/obj/machinery/flasher/directional/east{ - id = "brigentry" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark/textured_edge{ - dir = 8 - }, -/area/station/security/checkpoint/auxiliary) -"xLR" = ( -/obj/machinery/light/directional/east, -/obj/structure/closet/secure_closet/exile, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"xLS" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"xLV" = ( -/obj/machinery/washing_machine, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/work) -"xMe" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/general/visible{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xMh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"xMq" = ( -/turf/closed/mineral/random/snow, -/area/icemoon/underground/explored) -"xMy" = ( -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"xMA" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/storage) -"xMI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/elevatorshaft, -/area/mine/storage) -"xMT" = ( -/turf/closed/wall, -/area/station/science/research) -"xNa" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"xNn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"xNs" = ( -/obj/machinery/washing_machine, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria, -/area/mine/laborcamp) -"xNu" = ( -/obj/machinery/requests_console/directional/west{ - department = "Cargo Bay"; - departmentType = 2; - name = "Cargo Bay Requests Console"; - supplies_requestable = 1 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Cargo Office" - }, -/obj/machinery/rnd/production/techfab/department/cargo, -/turf/open/floor/iron, -/area/station/cargo/office) -"xNE" = ( -/obj/structure/stairs/west, -/obj/structure/railing, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"xNF" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Dorm"; - location = "HOP2" - }, -/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, -/area/station/hallway/primary/central) -"xOb" = ( -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/machinery/door/window/right/directional/west{ - dir = 4; - name = "Airlock" - }, -/turf/open/floor/iron/dark, -/area/mine/mechbay) -"xOl" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"xOM" = ( -/obj/structure/table, -/obj/machinery/mineral/processing_unit_console, -/turf/open/floor/iron, -/area/mine/production) -"xPk" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow, -/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/cable, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"xPu" = ( -/obj/machinery/light/directional/east, -/turf/open/misc/asteroid/snow/icemoon, -/area/mine/storage) -"xPv" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/aft) -"xPB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "EVA Storage" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/landmark/navigate_destination, -/obj/effect/mapping_helpers/airlock/access/all/command/eva, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"xPF" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/structure/sign/nanotrasen, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"xPI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"xPN" = ( -/obj/item/storage/box/lights/mixed, -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/janitor) -"xPT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"xPV" = ( -/obj/machinery/computer/arcade/battle{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison/work) -"xPW" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Holodeck - Fore"; - name = "holodeck camera" - }, -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/station/holodeck/rec_center) -"xPZ" = ( -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"xQg" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Disposal Access" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"xQh" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/machinery/light/small/directional/east, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"xQm" = ( -/obj/structure/closet/secure_closet/freezer/fridge{ - req_access = "0" - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/mess) -"xQu" = ( -/obj/machinery/light/directional/north, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/mine/storage) -"xQG" = ( -/obj/effect/turf_decal/tile/red/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/side{ - dir = 1 - }, -/area/station/security/processing) -"xQO" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"xQT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/turf/open/floor/plating, -/area/station/medical/virology) -"xRg" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"xRw" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/command/bridge) -"xRP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/eighties/red, -/area/station/security/prison/safe) -"xSl" = ( -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"xSn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/smooth, -/area/station/security/brig) -"xSp" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/tcomms, -/obj/item/radio/off, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"xSs" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/white, -/area/mine/laborcamp) -"xSv" = ( -/obj/structure/closet/firecloset, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) -"xSw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/warning/secure_area/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/starboard/upper) -"xSA" = ( -/turf/open/floor/wood, -/area/station/service/lawoffice) -"xSP" = ( -/obj/machinery/vending/security{ - onstation_override = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"xTp" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Fore Starboard Solars" - }, -/obj/machinery/power/smes, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"xTu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/west{ - c_tag = "Incinerator" - }, -/obj/machinery/atmospherics/components/tank/plasma, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"xTy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/upper) -"xTQ" = ( -/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/plating, -/area/station/maintenance/aft/greater) -"xTX" = ( -/obj/effect/turf_decal/siding/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/door/airlock{ - name = "Bar" - }, -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/service/bar, -/turf/open/floor/iron/dark/textured_half, -/area/station/service/bar) -"xUb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"xUe" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"xUf" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/medical/morgue) -"xUi" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"xUk" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/openspace, -/area/station/science/ordnance/office) -"xUm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood/tile, -/area/station/service/theater) -"xUw" = ( -/obj/structure/sign/departments/maint/directional/west, -/turf/open/floor/plating/snowed/smoothed/icemoon, -/area/icemoon/underground/explored) -"xUG" = ( -/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/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"xUH" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/engine/cult, -/area/station/service/library) -"xUM" = ( -/obj/structure/disposalpipe/segment{ - 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/plating, -/area/station/maintenance/fore/lesser) -"xUP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"xUR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/security/courtroom) -"xUS" = ( -/obj/machinery/computer/message_monitor{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"xUT" = ( -/obj/structure/chair/stool/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"xUU" = ( -/obj/effect/turf_decal/tile/blue, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"xUW" = ( -/obj/machinery/airalarm/directional/south, -/obj/machinery/light/directional/south, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"xVf" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"xVx" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/textured, -/area/station/security/warden) -"xVB" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"xVD" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 10 - }, -/obj/machinery/hydroponics/constructable, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"xVG" = ( -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"xVJ" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 2; - height = 5; - id = "laborcamp_away"; - name = "labor camp"; - width = 9 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"xVK" = ( -/turf/closed/wall, -/area/station/service/janitor) -"xVL" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/closet/secure_closet/personal{ - anchored = 1 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"xVO" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/mug/coco{ - desc = "Still hot!"; - pixel_x = -4; - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/station/maintenance/space_hut/cabin) -"xVS" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lantern, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/stone, -/area/mine/eva/lower) -"xVT" = ( -/obj/structure/railing{ - dir = 9 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) -"xVU" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/mapping_helpers/broken_floor, -/obj/structure/bookcase/random, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"xVX" = ( -/obj/structure/closet/crate, -/obj/machinery/light/small/directional/south, -/obj/structure/sign/warning/cold_temp/directional/south, -/obj/structure/sign/warning/xeno_mining{ - pixel_x = 29 - }, -/turf/open/floor/iron/smooth, -/area/mine/eva/lower) -"xVZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"xWo" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"xWr" = ( -/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/security/processing) -"xWu" = ( -/obj/structure/rack, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 5; - pixel_y = -2 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_y = 3 - }, -/obj/item/tank/internals/emergency_oxygen, -/obj/structure/sign/warning/cold_temp/directional/west, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/iron/white, -/area/station/hallway/secondary/exit/departure_lounge) -"xWA" = ( -/obj/structure/table, -/obj/item/plate, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"xWG" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"xWM" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"xWN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) -"xWR" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"xWT" = ( -/obj/machinery/firealarm/directional/south, -/obj/structure/closet/crate/freezer/surplus_limbs, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"xXf" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/engineering/atmos/storage/gas) -"xXm" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"xXt" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/public/glass{ - name = "Public Mining Storage" - }, -/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/storage/mining) -"xXz" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "External to Filter" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xXE" = ( -/obj/structure/chair/pew{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/chapel, -/area/station/service/chapel) -"xXQ" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/book/manual/chef_recipes{ - pixel_x = 2; - pixel_y = 6 - }, -/turf/open/floor/iron, -/area/mine/laborcamp) -"xXR" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"xXV" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"xYj" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/white/side{ - dir = 10 - }, -/area/station/science/research) -"xYv" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"xYw" = ( -/obj/structure/flora/bush/leavy/style_random, -/turf/open/floor/grass, -/area/station/maintenance/starboard/aft) -"xYA" = ( -/obj/machinery/holopad, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"xYF" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - 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, -/area/station/hallway/secondary/entry) -"xYI" = ( -/obj/machinery/telecomms/server/presets/science, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"xYT" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/iron/smooth, -/area/mine/eva) -"xZg" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/security/prison/safe) -"xZl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/engineering/main) -"xZA" = ( -/turf/open/floor/iron/checker, -/area/station/science/lab) -"xZL" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock) -"xZQ" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/clothing/head/soft/grey{ - pixel_x = -2; - pixel_y = 3 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"yap" = ( -/obj/structure/stairs/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"yar" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics"; - name = "Robotics Lab Shutters"; - dir = 1 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/robotics/lab) -"yav" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/misc/dirt{ - initial_gas_mix = "ICEMOON_ATMOS" - }, -/area/icemoon/underground/explored) -"yaF" = ( -/obj/machinery/light/directional/west, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"yaG" = ( -/obj/effect/landmark/navigate_destination/chapel, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/hallway/primary/starboard) -"yaJ" = ( -/obj/effect/turf_decal/trimline/green/filled/warning{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"yaL" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/engine_smes) -"yaR" = ( -/obj/structure/disposalpipe/trunk/multiz/down{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"yaT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/oxygen_output{ - dir = 1 - }, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"yaZ" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/mess) -"yba" = ( -/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/iron/freezer, -/area/station/commons/toilet) -"ybq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron/dark/smooth_edge{ - dir = 4 - }, -/area/station/engineering/transit_tube) -"ybr" = ( -/obj/structure/bookcase{ - name = "Forbidden Knowledge" - }, -/obj/structure/sign/painting/large/library_private{ - dir = 1 - }, -/turf/open/floor/engine/cult, -/area/station/service/library) -"ybs" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/locker) -"ybu" = ( -/obj/structure/chair/stool/directional/north, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"ybv" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload) -"yby" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/bed/dogbed, -/obj/effect/decal/cleanable/insectguts, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"ybD" = ( -/obj/machinery/suit_storage_unit/security, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/smooth, -/area/station/security/brig/upper) -"ybF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"ybN" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Courtroom" - }, -/obj/machinery/door/firedoor, -/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/security/court, -/turf/open/floor/iron, -/area/station/security/courtroom) -"ybQ" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/nuke_storage) -"yca" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mining Station Maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/maintenance/department/cargo) -"ycj" = ( -/obj/structure/window/reinforced/spawner, -/obj/structure/flora/bush/jungle/a/style_random, -/obj/structure/flora/bush/sparsegrass/style_random, -/turf/open/misc/ashplanet/wateryrock{ - initial_gas_mix = "o2=22;n2=82;TEMP=293.15" - }, -/area/station/security/prison/rec) -"yco" = ( -/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/white, -/area/station/medical/chemistry) -"ycw" = ( -/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, -/area/station/hallway/primary/central) -"ycz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood/tile, -/area/station/service/theater) -"ycB" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/engineering/storage) -"ycQ" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"ycS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"ycT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"ycY" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"ydc" = ( -/obj/structure/sign/warning/pods/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/tank_holder/oxygen/yellow, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"ydg" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"ydt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/prison/mess) -"ydD" = ( -/obj/effect/spawner/random/structure/crate_abandoned, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/fore) -"ydI" = ( -/turf/closed/wall/r_wall, -/area/station/hallway/secondary/entry) -"ydU" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"ydZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair/stool/directional/north, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"yef" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/suit_storage_unit/industrial/loader, -/turf/open/floor/iron/smooth_large, -/area/station/cargo/warehouse) -"yej" = ( -/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/starboard/fore) -"yep" = ( -/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/mine/production) -"yev" = ( -/obj/effect/turf_decal/siding/thinplating_new{ - dir = 5 - }, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"yew" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/firealarm/directional/south, -/obj/machinery/light/directional/south, -/turf/open/openspace, -/area/station/science/xenobiology) -"yey" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"yeA" = ( -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/requests_console/directional/south{ - announcementConsole = 1; - anon_tips_receiver = 1; - assistance_requestable = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge Requests Console" - }, -/turf/open/floor/wood, -/area/station/command/meeting_room) -"yeB" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"yeC" = ( -/turf/open/floor/iron, -/area/station/science/explab) -"yeD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Mix Bypass" - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"yeF" = ( -/obj/item/radio/intercom/directional/west, -/obj/machinery/light/small/directional/west, -/turf/open/floor/wood, -/area/station/service/library) -"yfb" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"yfp" = ( -/obj/machinery/firealarm/directional/north, -/turf/open/floor/wood/parquet, -/area/station/commons/lounge) -"yfs" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/tile/red/half, -/turf/open/floor/iron/dark/textured, -/area/station/ai_monitored/security/armory/upper) -"yfS" = ( -/obj/structure/table, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"yfT" = ( -/obj/structure/sign/warning/secure_area/directional/east, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) -"yfW" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/computer/holodeck, -/turf/open/floor/iron, -/area/station/commons/fitness) -"ygd" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating/snowed/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"ygp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/storage/book/bible, -/obj/structure/altar_of_gods, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"ygs" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/obj/machinery/light/directional/north, -/obj/machinery/duct, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply, -/obj/structure/sign/warning/electric_shock/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"ygu" = ( -/obj/item/instrument/saxophone, -/obj/machinery/light/directional/north, -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/obj/item/instrument/piano_synth, -/obj/structure/table/wood, -/obj/machinery/camera{ - c_tag = "Service-Theater"; - dir = 9 - }, -/turf/open/floor/wood/tile, -/area/station/service/theater) -"ygv" = ( -/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/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/command/gateway) -"ygB" = ( -/turf/closed/wall, -/area/station/commons/dorms) -"ygE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/structure/cable, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"ygF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"ygM" = ( -/obj/effect/turf_decal/tile/red/half{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/smooth_half, -/area/station/security/brig/upper) -"ygX" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"yhp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/station/maintenance/port/greater) -"yhw" = ( -/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/grimy, -/area/station/ai_monitored/turret_protected/aisat_interior) -"yhC" = ( -/obj/structure/sign/warning/cold_temp/directional/east, -/turf/open/floor/plating, -/area/station/engineering/main) -"yhU" = ( -/obj/structure/chair/stool/directional/north, -/turf/open/floor/iron, -/area/station/security/prison/work) -"yia" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/toilet) -"yiv" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"yiz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/showroomfloor, -/area/station/security/prison/toilet) -"yiK" = ( -/obj/structure/rack, -/obj/item/reagent_containers/glass/bottle/potassium{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/phosphorus{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/sodium{ - pixel_x = 1 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark/textured_edge{ - dir = 4 - }, -/area/station/medical/medbay/central) -"yiL" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory) -"yjh" = ( -/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) -"yjn" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Fore Port Solar Access" - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"yju" = ( -/obj/structure/table, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"yjA" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "Xenobio Pen 2 Blast Door" - }, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"yjK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/morgue) -"yjP" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/turf/open/floor/stone, -/area/station/commons/lounge) -"yjV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"yjX" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/effect/turf_decal/siding/white, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"yki" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/storage/box/monkeycubes, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"ykj" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"ykr" = ( -/obj/structure/chair/sofa/right{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"ykw" = ( -/turf/closed/wall/r_wall, -/area/station/security/processing) -"ykE" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"ykL" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/analyzer, -/obj/item/stock_parts/subspace/analyzer, -/obj/item/stock_parts/subspace/analyzer, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"ykM" = ( -/obj/structure/disposalpipe/segment, -/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, -/area/station/hallway/primary/central/fore) -"ykW" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/stamp/captain, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"ykZ" = ( -/obj/effect/turf_decal/siding/wideplating/dark, -/obj/item/radio/intercom/directional/east, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"ylk" = ( -/obj/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/sign/warning/cold_temp/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"ylr" = ( -/obj/machinery/seed_extractor, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/siding/white{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"ylD" = ( -/obj/machinery/computer/security/labor, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/mine/laborcamp/security) -"ylF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"ylM" = ( -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer5{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark_green/arrow_ccw, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage) -"ylU" = ( -/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/iron, -/area/station/hallway/primary/central) -"ylY" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"ymg" = ( -/obj/machinery/gateway/centerstation, -/turf/open/floor/iron/dark, -/area/station/command/gateway) - -(1,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(2,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(3,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(4,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(5,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(6,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(7,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(8,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(9,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(10,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(11,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(12,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -fqJ -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(13,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(14,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(15,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(16,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(17,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(18,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(19,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(20,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(21,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(22,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(23,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(24,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(25,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(26,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(27,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(28,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(29,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(30,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(31,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(32,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(33,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(34,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(35,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(36,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(37,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(38,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(39,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(40,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(41,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(42,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(43,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(44,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(45,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(46,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(47,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -iDt -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(48,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -iDt -iDt -iDt -iDt -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(49,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -iDt -abB -exv -iDt -iDt -iDt -exv -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(50,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -iDt -iDt -iDt -eUY -iDt -iDt -iDt -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(51,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -iDt -iDt -iDt -iDt -ksu -iDt -exv -iDt -iDt -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(52,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -iDt -exv -iDt -qrg -iDt -iDt -exv -iDt -iDt -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(53,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -iDt -oSU -iDt -iDt -exv -iDt -iDt -iDt -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(54,1,1) = {" -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -iDt -oSU -exv -iDt -iDt -iDt -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(55,1,1) = {" -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -iDt -oSU -iDt -iDt -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(56,1,1) = {" -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(57,1,1) = {" -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(58,1,1) = {" -ghx -ghx -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(59,1,1) = {" -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(60,1,1) = {" -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(61,1,1) = {" -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -iDt -iDt -iDt -cCb -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(62,1,1) = {" -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -iDt -scw -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(63,1,1) = {" -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -oAM -ghx -ghx -ghx -xcC -ghx -ghx -ghx -udC -iDt -iDt -iDt -iDt -xMq -xMq -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(64,1,1) = {" -udC -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -sYA -ghx -ghx -ghx -vXO -hMz -ghx -hMz -psb -scw -scw -jSy -xMq -xMq -xMq -xMq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(65,1,1) = {" -udC -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ipf -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -rjE -ghx -ghx -ghx -isU -ghx -ghx -hMz -hUy -dZS -xuo -scw -iDt -qau -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(66,1,1) = {" -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -rjE -ghx -ghx -ghx -isU -ghx -ghx -ghx -ghx -stA -xuo -xuo -xuo -nqv -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(67,1,1) = {" -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -hMz -hMz -ghx -ghx -rjE -ghx -ghx -ghx -isU -ghx -ghx -ghx -ghx -stA -rQl -hUK -hUK -xMq -udC -udC -udC -udC -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(68,1,1) = {" -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -jlu -uwH -lWI -flZ -lWI -lWI -lWI -qrj -ena -ghx -ghx -ghx -stA -xlq -ghx -ghx -xMq -xMq -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(69,1,1) = {" -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ndA -mSH -ngM -kgN -wDU -sKo -sKo -sKo -wDU -kUP -okH -qSq -ghx -stA -xlq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(70,1,1) = {" -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -cpt -dLH -kIX -xuo -xuo -qlU -wDU -roa -nIN -fob -wDU -xlq -ghx -qeL -lWI -gUp -ayG -okH -qSq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(71,1,1) = {" -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -iDt -aNc -xuo -xuo -xuo -xuo -lnx -wDU -qmt -xbA -qmt -wDU -oBz -lWI -gUp -ojf -ojf -xlq -ghx -cpA -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(72,1,1) = {" -ghx -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -iDt -sxe -xuo -xuo -jNH -wDU -tbX -qmt -fiC -vmH -tzv -qmt -tbX -wDU -wTG -xuo -xuo -oBz -lWI -vWP -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -ghx -ghx -ghx -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(73,1,1) = {" -ghx -ghx -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -iDt -aUC -xuo -xuo -xuo -dBY -moc -tGi -ueH -fdp -lDc -dBY -moc -tGi -xuo -xuo -xuo -xuo -psb -xnX -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(74,1,1) = {" -ghx -ghx -ghx -ghx -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -ghx -ghx -ghx -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -iDt -sxe -xuo -jNH -wDU -qmt -qmt -qmt -hdY -tYz -qMu -qmt -qmt -qmt -tbX -tbX -tbX -wDU -wDU -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(75,1,1) = {" -iZz -ghx -ghx -ghx -ghx -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -iDt -psb -rxz -qlU -wDU -aNw -qmt -dzL -fVA -tYz -lDc -oBm -qmt -bhs -dLe -dLe -sCg -fas -wDU -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(76,1,1) = {" -iZz -iZz -ghx -ghx -ghx -ghx -ghx -udC -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -iDt -xuo -wDU -wDU -qmt -nfr -kLa -giV -kdu -vip -qWT -tmE -qmt -iBd -chO -sPu -sCg -hor -wDU -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(77,1,1) = {" -iZz -dhq -dhq -ghx -ghx -ghx -ghx -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -ghx -udC -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -iDt -xuo -wDU -krn -xvO -nfr -qmt -qmt -jLX -vip -fff -fYH -fEV -cVc -voS -rgm -qJv -xVS -wDU -ver -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(78,1,1) = {" -iZz -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -iDt -xuo -wDU -haq -xBF -nfr -qmt -iVm -iuh -vip -qWT -uPt -qmt -mwU -fOV -dLe -wzl -kFG -wDU -scw -ghx -ghx -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(79,1,1) = {" -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -iDt -wDU -qmt -qmt -kLa -qmt -qmt -sAa -ego -vip -rLq -uUT -uUT -uUT -uUT -uUT -uUT -uUT -wDU -scw -ghx -ghx -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(80,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -hpE -xuo -xuo -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -iDt -wDU -btB -gfw -nfr -ecR -qmt -qmt -liK -tYz -jYM -rmB -agk -bjN -nbv -bYd -lcY -nUi -scw -iDt -ghx -ghx -ghx -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(81,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -psb -fSd -hUK -gqG -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -iDt -wDU -haq -bRC -nfr -jAu -qmt -ofz -nAP -tYz -aSc -uUT -uDL -kgU -oem -dsn -neY -nUi -iDt -scw -ghx -ghx -ghx -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(82,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -iZz -iZz -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -lwF -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -iDt -wDU -paR -haq -bQN -tnb -qmt -sWa -jnt -tYz -lDc -gIu -hOo -sgA -rXw -xOb -xiS -iwf -iDt -cCb -ghx -ghx -ghx -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(83,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -dhq -dhq -iZz -iZz -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -lwF -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -iDt -wDU -wDU -wDU -wDU -wDU -wDU -qmt -bfo -nbJ -bsb -uUT -dNA -sHX -dNA -dNA -uzd -nUi -iDt -iDt -scw -ghx -ghx -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(84,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -dhq -dhq -dhq -dhq -iZz -iZz -iZz -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -lwF -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -iDt -iDt -iDt -fNp -gxS -tEC -oNA -vfp -niN -eSY -uyq -tRc -uUT -bzJ -srZ -jla -ebv -mXD -nUi -scw -iDt -iDt -ghx -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(85,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -dhq -dhq -dhq -dhq -dhq -dhq -iZz -iZz -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -fIt -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -lwF -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -iDt -iDt -iDt -rcY -scw -dga -scw -dga -niN -qqn -uyq -xVX -uUT -uUT -vlS -hex -uUT -iwf -iwf -wkV -iDt -iDt -ghx -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(86,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -fIt -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -lwF -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ipf -cCb -iDt -mJZ -iDt -scw -scw -scw -wDU -bfo -sZO -wDU -iwf -cEh -dNA -weg -iwf -lQw -fWX -nqv -iDt -iDt -ghx -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(87,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -fIt -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -xuo -wYp -odW -uWw -psb -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -iDt -rcY -iDt -scw -scw -scw -ger -scw -agI -agI -iwf -iwf -gvc -gvc -iwf -kZx -wrV -qau -iDt -cCb -ghx -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(88,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iZz -ghx -ghx -ghx -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -fIt -rhF -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -xuo -xuo -xuo -xuo -xuo -hpE -udC -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -iDt -rcY -iDt -iDt -iDt -scw -scw -scw -scw -agI -ryC -pYf -cPd -hYP -aro -agI -scw -qau -iDt -iDt -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(89,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iZz -iZz -iZz -ghx -iZz -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -fIt -lWI -lWI -adD -lWI -ena -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -iDt -rcY -iDt -iDt -iDt -iDt -scw -scw -scw -scw -mJZ -iDt -scw -scw -rcY -iDt -scw -qau -iDt -iDt -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(90,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iZz -ghx -ghx -iZz -iZz -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -iZz -iZz -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -fIt -xuo -xuo -xuo -xuo -oBz -ena -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -iDt -syw -kNC -kNC -kNC -kNC -kNC -kNC -ork -tej -gIl -scw -iDt -iDt -syw -tej -tej -gIl -iDt -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(91,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iZz -iZz -iZz -iZz -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -dhq -iZz -iZz -iZz -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -fIt -xuo -xuo -xuo -xuo -xuo -oBz -ena -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -udC -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -scw -iDt -iDt -iDt -scw -scw -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(92,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iZz -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -dhq -dhq -dhq -iZz -iZz -iZz -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -uOb -uOb -uOb -uOb -uOb -uOb -uOb -uOb -uOb -uOb -uOb -rfu -omJ -rfu -pjj -daf -kmH -oBz -ena -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -scw -udC -ipf -cCb -iDt -scw -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(93,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -dhq -dhq -dhq -dhq -iZz -iZz -iZz -iZz -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -uOb -nDV -amx -fXO -lBR -nhg -gnR -lBR -nhg -qrq -lBR -kIo -hap -rfu -pjj -daf -daf -xuo -oBz -ena -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(94,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -uOb -eAg -eAg -yiz -lBR -fZq -lBR -lBR -fZq -lBR -lBR -kZI -hap -rfu -kuu -dFF -dFF -xuo -xuo -xlq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -scw -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(95,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -uOb -jnX -amx -kHn -lBR -xrC -tcQ -egG -cur -gQE -nNn -nNn -nNn -rfu -ooW -ooW -rfu -xuo -xuo -xlq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(96,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -uOb -eAg -eAg -nHs -lBR -oWe -swk -mbp -fWa -beQ -nNn -hYy -oQg -bAk -mAO -kXY -mJX -xuo -xuo -xlq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -ghx -ghx -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(97,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -uOb -ifZ -amx -ddz -lBR -rlh -fnj -egz -hsr -alA -nNn -alA -roH -foO -bDF -kXY -mJX -xuo -xuo -xlq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -ghx -ghx -ghx -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(98,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -uOb -eAg -eAg -kXO -lBR -jbb -ibz -mpf -ehZ -bwi -hPk -bwi -pqu -dEz -gcP -hOA -mJX -xuo -xuo -xlq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -ghx -ghx -ghx -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(99,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -uOb -aLM -amx -yia -dhS -cTv -vwE -kqh -kqh -ttD -nNn -sxT -tKB -foO -bdo -kXY -mJX -xuo -xuo -xlq -raY -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -ghx -ghx -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(100,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -gBl -uSb -uSb -uSb -gBl -uOb -uOb -lBR -lBR -lBR -wJa -jRu -kzr -khb -xdZ -nNn -iDu -mQV -qna -dEz -gxx -rfu -kIi -rfu -rfu -rfu -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -ghx -udC -ghx -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(101,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -iDt -iDt -iDt -tWK -tWK -tWK -xhK -tsK -jGg -vVH -iBh -ogL -jZI -fqp -vVH -vVH -vVH -vVH -nNn -gzV -nNn -nNn -axb -tCV -cFc -mJX -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -lcA -ghx -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(102,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -iDt -iDt -iDt -tWK -xby -dSm -hMS -vVH -wOt -wPg -fHg -pmY -vVH -fps -usS -vVH -keD -kqR -qSu -wYq -nkP -kry -uRi -mJX -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -psb -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(103,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -iDt -iDt -iDt -iDt -xby -byq -tIS -tlS -npL -wPg -nAv -yjh -eJU -dFX -nbm -vVH -vUs -kqR -hjQ -nNn -scQ -aJu -ong -mJX -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -psb -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(104,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -iDt -iDt -iDt -scw -xhK -vVH -vVH -vVH -dWn -wPg -fHg -jjo -vVH -vVH -vVH -vVH -sLr -kqR -ugd -nNn -ldH -ldH -ldH -dbH -dbH -dbH -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -psb -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(105,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iZz -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -iDt -iDt -scw -xhK -taV -kZh -vVH -iCO -wPg -fHg -hnt -vVH -fps -usS -vVH -npV -ixw -kqR -gzV -xUG -kcC -ddd -ioC -sEC -dbH -ghx -ghx -ghx -ghx -ghx -ghx -ghx -lcA -psb -psb -lcA -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(106,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iZz -iZz -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -eZz -efi -xhK -nCQ -swf -vVH -jli -wPg -aDJ -yjh -eTv -dFX -nbm -vVH -ycj -pdx -uma -nNn -fTb -cgb -nwF -nwF -kFN -ots -ghx -ghx -ghx -ghx -ghx -ghx -ghx -rcY -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(107,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iZz -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -iDt -nbP -xhK -ikb -swf -vVH -iVN -wPg -fHg -tVf -tVf -tVf -ldH -ldH -ldH -ldH -ldH -ldH -fTb -iKw -iZs -sOT -rCE -ots -ghx -ghx -ghx -ghx -ghx -ghx -ghx -rcY -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(108,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -fIt -xhK -vVH -wUO -vVH -vVH -dZW -fHg -lJS -bol -oSD -ldH -xQm -yaZ -dNH -xyU -wlY -fTb -eQA -xWA -rHH -bZK -ots -ghx -ghx -ghx -ghx -ghx -ghx -ghx -lcA -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(109,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -xby -nXj -xRP -nId -myQ -sby -fHg -bol -bol -oSD -ldH -qiJ -qTs -vPt -hfv -ldH -pEX -bta -lpY -lpY -kse -ots -ghx -ghx -ghx -ghx -ghx -ghx -ghx -psb -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(110,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -xby -lFe -rvj -gcE -vVH -gZP -mbZ -tVf -tVf -tVf -ldH -ldH -ttk -ldH -ldH -ldH -vCn -jdf -tuH -jdf -fhU -ots -ghx -ghx -ghx -ghx -ghx -ghx -ghx -psb -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(111,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -xby -sJi -wOp -gaS -vVH -fQG -lsN -pIZ -fwn -oGB -sKu -rAR -jZI -oUM -nFn -jQE -fTb -vrG -vrG -cgb -kFN -ots -ghx -ghx -ghx -ghx -ghx -ghx -ghx -psb -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(112,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -xhK -vVH -vVH -vVH -vVH -nef -oZz -oZz -oZz -oZz -oZz -oZz -hme -xAW -xUG -mpn -bfg -bfg -ydt -sOT -vkJ -ots -ghx -ghx -ghx -ghx -ghx -ghx -ghx -psb -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(113,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -axF -dcw -fGI -mHv -etw -lXJ -xbv -cNw -cNw -cNw -cNw -udg -gMR -kwd -ldH -mXK -ueP -bZK -gOS -wZT -sdP -kse -dbH -ghx -ghx -ghx -ghx -ghx -ghx -ghx -psb -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(114,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -dcw -fGI -fKh -nks -cfh -nLW -hhr -iZo -czW -gSy -vPx -qDG -bDj -ldH -hfq -nga -nIJ -kFx -dbH -dbH -dbH -dbH -ghx -ghx -ghx -ghx -ghx -ghx -ghx -psb -iDt -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(115,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -dcw -cpp -gTW -xDK -cfh -wBp -knq -iHQ -tSx -nAD -hpB -wdM -wdM -ldH -pyr -lkS -wKC -wyO -dbH -aCH -iDt -iDt -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(116,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -axF -dcw -fGI -gTW -nks -cfh -nLW -hhr -giN -czW -gSy -tqc -vbJ -rrI -ldH -rmD -pBb -gbu -ueo -dbH -psb -psb -psb -psb -fIt -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(117,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -dcw -fGI -gTW -cPQ -cfh -wBp -gvj -gNH -gvj -gvj -vyw -vyw -mxG -ldH -opI -daE -uTa -hCv -ots -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(118,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -iDt -scw -iDt -scw -scw -iDt -scw -scw -scw -iDt -scw -scw -iDt -iDt -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -dcw -bDd -wUq -owf -bkX -cJI -uDk -fIH -iUw -wlR -aMR -vyw -fuX -ldH -srY -wKC -pYa -gcZ -ots -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(119,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -scw -scw -scw -scw -scw -scw -iDt -scw -scw -scw -scw -scw -scw -scw -iDt -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -jmI -jmI -jmI -jmI -jmI -jmI -jmI -jmI -jmI -uPk -dRM -qwa -fXj -ldH -fwL -hux -kDu -vXn -ots -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(120,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -scw -scw -scw -iDt -scw -iDt -iDt -iDt -scw -iDt -iDt -iDt -iDt -iDt -scw -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -uPk -jYj -uAE -dKS -dbH -dbH -dbH -dbH -dbH -dbH -psb -psb -psb -psb -fIt -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(121,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -iDt -iDt -scw -iDt -scw -scw -iDt -iDt -scw -scw -iDt -iDt -scw -scw -scw -scw -iDt -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -uPk -xBv -uAE -swc -uPk -scw -iDt -iDt -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(122,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -scw -iDt -iDt -scw -iDt -scw -scw -iDt -scw -scw -scw -iDt -iDt -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -uPk -gHF -uAE -jlX -xad -scw -cfS -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(123,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -iDt -iDt -iDt -scw -iDt -scw -iDt -scw -scw -xVJ -iDt -iDt -scw -scw -scw -scw -scw -iDt -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -uPk -fsp -icS -efx -xad -scw -iDt -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(124,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -scw -scw -scw -iDt -iDt -scw -scw -scw -scw -scw -iDt -scw -iDt -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -uPk -lmf -fnW -lTa -xad -scw -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(125,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -iDt -iDt -iDt -scw -iDt -scw -scw -scw -scw -iDt -scw -scw -scw -scw -iDt -scw -iDt -iDt -ghx -ghx -ghx -ghx -ghx -ghx -ghx -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -uPk -eqS -pFZ -lFL -xad -scw -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(126,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -iDt -iDt -iDt -scw -scw -iDt -iDt -scw -iDt -scw -scw -scw -scw -scw -scw -iDt -scw -scw -ghx -ghx -ghx -ghx -ghx -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -uPk -oXd -bJp -qdl -uPk -scw -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(127,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -iDt -iDt -iDt -iDt -scw -iDt -scw -iDt -iDt -iDt -scw -scw -scw -scw -scw -iDt -iDt -iDt -ghx -ghx -ghx -ghx -ghx -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -uPk -uPk -uPk -uPk -uPk -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(128,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -iDt -iDt -iDt -vjh -dLN -dLN -dLN -dLN -vjh -aRm -vjh -vjh -vjh -uPl -vjh -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(129,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -iDt -iDt -iDt -vjh -dqx -oDg -oDg -dqx -njJ -lDD -njJ -wAQ -njJ -kcf -vjh -ghx -ghx -ghx -ghx -ghx -ghx -ghx -iDt -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(130,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -iDt -iDt -iDt -vjh -szu -hdV -jLo -bJx -njJ -ciN -njJ -rTV -njJ -blk -vjh -ghx -ghx -ghx -ghx -ghx -ghx -iDt -iDt -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(131,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -dLN -dLN -dLN -vjh -cJb -cpG -han -dqx -njJ -cVD -njJ -hTH -oFp -dqx -vjh -nTO -nTO -nTO -eQT -nTO -eQT -eQT -eQT -nTO -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(132,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -iDt -dLN -wxg -ipd -njJ -dqx -dqx -pfO -dqx -vDy -hDK -dqx -hDK -wzn -bxW -vjh -teQ -xSP -ufe -bsc -nTO -kAG -pdc -xzp -iSf -dBw -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(133,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -iDt -qzG -vjh -pRZ -uYj -dUG -rQx -rQx -rVX -rVX -rVX -rVX -rVX -kfz -kfz -rVX -aGW -rAr -xcx -jvM -hML -nTO -qpy -tmB -jvM -nTO -nTO -nTO -nJm -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(134,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -iDt -iDt -iDt -uEA -vjh -aYQ -bLL -njJ -qbl -dqx -rVX -dqx -kbx -dLR -xXQ -usx -qUw -qUw -vjh -aCj -cqz -tmB -lZL -nTO -tMG -tmB -jvM -sJR -tmB -kCH -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(135,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -iDt -iDt -dLN -dLN -dLN -vjh -njJ -njJ -njJ -njJ -bEi -rVX -dqx -fYL -rQO -lFZ -wgE -vjh -vjh -vjh -xVB -cqz -ccx -wHH -fcY -pdc -lMC -aWV -nTO -nTO -nTO -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(136,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -iDt -iDt -dLN -qOV -itM -njJ -pDI -bxX -nzF -njJ -mZJ -rVX -dqx -aoF -hVB -npH -fkZ -vjh -pDW -fLT -ivq -bAM -bAM -bAM -mcr -bAM -bAM -bAM -bAM -cRE -eQT -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(137,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -iDt -iDt -dLN -nnE -xSs -njJ -jUe -jlG -rQx -duS -lmK -rVX -fez -sCc -lGL -jjS -eBv -vjh -drP -czD -kwU -tmB -pXB -eSr -fcY -tmB -rZn -tmB -bAM -rmv -eQT -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(138,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -iDt -iDt -dLN -whn -nGT -njJ -kRd -mXl -njJ -njJ -njJ -klX -njJ -njJ -njJ -njJ -njJ -vjh -nTO -nTO -ylD -cdd -tmB -gyG -nTO -nTO -nTO -nTO -aeu -nTO -nTO -nTO -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(139,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -iDt -iDt -vjh -whn -njJ -njJ -njJ -njJ -njJ -eST -njJ -pnG -cWH -njJ -inZ -kBP -dLN -ghx -ghx -eQT -tKa -bvj -pJY -nWs -nTO -ghx -iDt -nTO -ody -hMJ -vbg -nTO -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(140,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -iDt -aVq -vjh -whn -njJ -sPA -sPA -sPA -njJ -mTI -sTO -rVX -rQx -jXY -rQx -vux -dLN -ghx -ghx -eQT -eQT -eQT -eQT -eQT -nTO -ghx -iDt -nTO -kJw -mQq -xxc -nTO -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(141,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -iDt -aVq -vjh -iwo -njJ -bDI -dqx -dqx -njJ -njJ -njJ -kfz -dqx -njJ -njJ -njJ -vjh -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -iDt -nTO -auw -eYC -xjO -nTO -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(142,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -kJY -vjh -vjh -vjh -fXP -tMu -hDK -dqx -dqx -dqx -rXg -njJ -dFQ -dqx -njJ -pUN -glz -dLN -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -iDt -nTO -cpe -cpe -nTO -nTO -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(143,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -aqa -oDB -nhT -kYw -avP -gUx -gUx -wWY -mZk -dqx -njJ -ukD -rQx -gXy -lmK -vux -dLN -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -iDt -nTO -krC -krC -nTO -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(144,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -kJY -vjh -vjh -vjh -eFu -dRk -dRk -rvy -oie -rQx -rQx -jZi -rVX -dqx -njJ -njJ -njJ -vjh -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -iDt -nTO -nTO -nTO -nTO -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(145,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -uEA -dLN -bRJ -dqx -kSU -dqx -dqx -dqx -kpH -dqx -njJ -isc -dqx -njJ -tpU -qZL -dLN -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -iDt -iDt -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(146,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -iDt -dLN -dqx -dqx -aGr -dqx -jEs -eUD -hDK -kaO -njJ -rVX -rQx -oSa -rQx -vux -dLN -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -iDt -iDt -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(147,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -iDt -dLN -rbT -mts -njJ -njJ -gHg -njJ -njJ -wRK -vjh -aFX -nQL -vjh -vjh -vjh -vjh -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -iDt -iDt -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(148,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -iDt -dLN -rbT -lLN -vRO -tGP -eYz -tGP -tGP -iRp -vjh -wbn -xNs -dLN -iDt -iDt -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -iDt -iDt -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(149,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -iDt -dLN -dLN -dLN -vjh -vjh -vjh -vjh -vjh -vjh -vjh -dLN -dLN -dLN -iDt -iDt -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -iDt -iDt -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(150,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -jZa -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(151,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(152,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -dhq -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -szG -szG -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(153,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -szG -szG -szG -szG -szG -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(154,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -szG -szG -iDt -daZ -iDt -szG -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(155,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -szG -eCR -iDt -iDt -iDt -szG -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(156,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -szG -szG -iDt -iDt -cCb -szG -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(157,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -szG -szG -iDt -iDt -szG -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(158,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -szG -szG -szG -szG -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(159,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(160,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iZz -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(161,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iZz -iZz -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(162,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iZz -iZz -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(163,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iZz -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(164,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(165,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(166,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(167,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(168,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(169,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(170,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(171,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(172,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(173,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iZz -iZz -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(174,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iZz -iZz -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(175,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iZz -iZz -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(176,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(177,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(178,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(179,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(180,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(181,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(182,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(183,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -xMq -xMq -xMq -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(184,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -xMq -iDt -iDt -iDt -xMq -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(185,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -xMq -xMq -iDt -iDt -iDt -iDt -iDt -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(186,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -xMq -iDt -iDt -ghx -ghx -iDt -iDt -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(187,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -iDt -iDt -iDt -ghx -ghx -ghx -iDt -iDt -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(188,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -iDt -iDt -iDt -ghx -ghx -ghx -ghx -ghx -iDt -xMq -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(189,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iZz -iZz -iZz -iZz -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -iDt -iDt -iDt -ghx -ghx -ghx -ghx -ghx -iDt -xMq -xMq -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(190,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iZz -iZz -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -iDt -iDt -iDt -ghx -ghx -ghx -ghx -ghx -iDt -iDt -xMq -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(191,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iZz -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -iDt -iDt -ghx -ghx -ghx -ghx -ghx -ghx -ghx -iDt -xMq -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(192,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -xMq -iDt -ghx -ghx -ghx -ghx -ghx -ghx -ghx -iDt -xMq -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(193,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -xMq -iDt -iDt -ghx -ghx -ghx -ghx -ghx -iDt -iDt -iDt -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(194,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -xMq -xMq -iDt -iDt -ghx -ghx -ghx -iDt -iDt -iDt -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(195,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -xMq -xMq -iDt -iDt -iDt -iDt -iDt -xMq -xMq -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(196,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -xMq -xMq -iDt -iDt -iDt -xMq -xMq -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(197,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(198,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(199,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(200,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(201,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iZz -iZz -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(202,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iZz -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(203,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iZz -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(204,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iZz -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(205,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(206,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(207,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(208,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(209,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(210,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(211,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(212,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(213,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iZz -iZz -iZz -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(214,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iZz -iZz -iZz -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(215,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iZz -iZz -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(216,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iZz -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(217,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(218,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(219,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(220,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(221,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(222,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(223,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(224,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(225,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(226,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iZz -iZz -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(227,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iZz -iZz -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(228,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -iZz -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(229,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(230,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(231,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(232,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(233,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(234,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(235,1,1) = {" -dhq -dhq -dhq -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(236,1,1) = {" -dhq -dhq -dhq -dhq -dhq -iZz -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(237,1,1) = {" -dhq -dhq -dhq -dhq -iZz -iZz -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(238,1,1) = {" -dhq -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(239,1,1) = {" -dhq -dhq -dhq -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(240,1,1) = {" -dhq -dhq -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(241,1,1) = {" -dhq -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(242,1,1) = {" -ghx -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(243,1,1) = {" -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(244,1,1) = {" -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(245,1,1) = {" -ghx -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(246,1,1) = {" -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(247,1,1) = {" -ghx -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(248,1,1) = {" -ghx -ghx -ghx -ghx -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(249,1,1) = {" -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(250,1,1) = {" -ghx -ghx -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(251,1,1) = {" -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(252,1,1) = {" -ghx -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(253,1,1) = {" -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(254,1,1) = {" -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} -(255,1,1) = {" -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -oSU -"} - -(1,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(2,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(3,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(4,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(5,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(6,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(7,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(8,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(9,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(10,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(11,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(12,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(13,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(14,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(15,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(16,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(17,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(18,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(19,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(20,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(21,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(22,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(23,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(24,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(25,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(26,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(27,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(28,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(29,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(30,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(31,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(32,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(33,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(34,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -gjq -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(35,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -gjq -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(36,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -gjq -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(37,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -gjq -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(38,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -gjq -gjq -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(39,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -iDt -iDt -pfw -iDt -iDt -iDt -cCb -pfw -iDt -ebd -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -gjq -gjq -gjq -gjq -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(40,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -gjq -gjq -udC -udC -udC -udC -udC -udC -iDt -ebd -iDt -iDt -iDt -iDt -ijY -iDt -iDt -iDt -iDt -iDt -ijY -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(41,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -gjq -udC -udC -iDt -pfw -iDt -iDt -iDt -ijY -iDt -iDt -cCb -iDt -iDt -iDt -iDt -pfw -iDt -iDt -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(42,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -iDt -pfw -iDt -iDt -iDt -iDt -iDt -ebd -iDt -iDt -ebd -iDt -iDt -ulj -iDt -iDt -iDt -cCb -iDt -ijY -iDt -iDt -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(43,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -gjq -gjq -gjq -gjq -iDt -iDt -cCb -iDt -iDt -iDt -iDt -iDt -cCb -pfw -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -ebd -pfw -iDt -iDt -iDt -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(44,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -gjq -gjq -gjq -iDt -iDt -iDt -ijY -iDt -scw -iDt -scw -scw -scw -iDt -iDt -scw -scw -iDt -iDt -iDt -scw -scw -scw -iDt -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(45,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -iDt -iDt -iDt -iDt -scw -iDt -scw -scw -iDt -lwR -tUK -tUK -lwR -scw -scw -scw -scw -scw -gjq -gjq -gjq -gjq -gjq -gjq -gjq -iDt -iDt -gjq -gjq -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(46,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -scw -iDt -scw -scw -iDt -scw -lwR -lwR -sJH -ngj -orS -igm -lwR -lwR -lwR -scw -gjq -gjq -gjq -gjq -gjq -iDt -ebd -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(47,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -iDt -scw -pfw -iDt -bOz -dJr -oaG -nSs -myM -jRh -kYA -hYA -lwR -gjq -gjq -gjq -gjq -iDt -iDt -ijY -iDt -iDt -iDt -cCb -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(48,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -scw -scw -bOz -wks -tuv -vXH -moa -sJH -riL -riL -sJH -lwR -lwR -scw -scw -scw -iDt -iDt -pfw -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(49,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -bOz -gEF -gxM -hiF -rex -wHB -cyX -rOB -cfj -ksi -sJH -lwR -lwR -lwR -rZC -iDt -iDt -iDt -iDt -ebd -iDt -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(50,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -oif -eJf -eJf -eJf -keu -eJf -eJf -eJf -lwR -sJH -vqx -veK -veK -fjQ -vXC -tFC -jkn -jkn -iyE -bRW -vAj -lwR -iDt -scw -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(51,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -lwR -riL -gwJ -tHQ -bwT -veK -xhD -tFC -jKA -jkn -vFq -xCD -xCD -bdu -scw -scw -scw -scw -iDt -iDt -iDt -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(52,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -gjq -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -riL -riL -rYw -ncX -tND -vxd -gQs -jkn -jkn -sEq -vZS -aez -sEq -scw -iDt -scw -scw -iDt -iDt -pfw -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(53,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -gjq -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -riL -riL -sJH -rlp -xaV -viW -ctB -uzs -sJH -tUK -tUK -lwR -rZC -scw -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(54,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -gjq -udC -udC -udC -gjq -gjq -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -lwR -sJH -oaP -gYi -cbd -sJH -lwR -lwR -gjq -gjq -pfw -iDt -iDt -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(55,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -eJf -bOz -hAZ -wYw -aFx -bOz -eJf -gjq -gjq -gjq -gjq -gjq -iDt -iDt -ulj -ijY -iDt -iDt -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(56,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -lwR -sJH -gxM -vxd -myM -lwR -eJf -eJf -eJf -eJf -eJf -eJf -eJf -oif -ebd -iDt -iDt -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(57,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -bOz -umo -eKn -bTl -vnz -sJH -lwR -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -iDt -iDt -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(58,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -gjq -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -bOz -wkR -gxM -vxd -myM -wWL -lwR -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -pfw -pfw -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(59,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -szG -szG -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -bOz -vNp -pbw -sGE -rEr -pqv -lwR -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(60,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -gjq -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -tKI -tKI -tKI -tKI -udC -udC -szG -szG -oif -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -lwR -lwR -lwR -pHQ -lwR -tUK -lwR -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(61,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -rzg -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -tKI -ipa -uDP -tKI -udC -udC -szG -gFX -eJf -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -eJf -gjq -gOU -iMQ -gOU -gjq -eJf -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(62,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -tKI -ibB -qAz -tKI -udC -udC -gjq -gjq -eJf -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -eJf -gjq -gOU -yep -gOU -gjq -eJf -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(63,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -tKI -lSC -kcE -tKI -szG -udC -gjq -gjq -eJf -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -eJf -gjq -gOU -yep -gOU -gjq -eJf -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(64,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -tKI -jft -pQs -tKI -szG -szG -myZ -eJf -keu -eJf -eJf -eJf -eJf -oif -szG -gjq -gjq -gjq -woP -gjq -woP -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -eJf -gjq -gOU -yep -gOU -gjq -eJf -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -ebd -gjq -gjq -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(65,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -tKI -lFr -cwK -tKI -szG -szG -nzG -myZ -myZ -gjq -gjq -gjq -gFX -szG -szG -gjq -gjq -gjq -mTW -gjq -mTW -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -eJf -gjq -gOU -yep -gOU -gjq -eJf -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -iDt -iDt -gjq -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(66,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -gjq -gjq -udC -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -tKI -gyc -afz -tKI -szG -szG -eId -gQe -gQe -szG -szG -szG -szG -szG -szG -gjq -gjq -gjq -fKv -gjq -fKv -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -keu -eJf -cMk -eKB -cMk -eJf -keu -eJf -eJf -eJf -eJf -keu -eJf -eJf -eJf -eJf -oif -iDt -pfw -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(67,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -gjq -gjq -udC -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -tKI -mGl -tKI -tKI -iwS -iwS -sbf -scw -iDt -scw -szG -szG -szG -szG -gjq -gjq -gjq -gjq -gYa -odW -odW -jCw -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -eJf -gjq -gOU -yep -gOU -gjq -eJf -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -iDt -ijY -iDt -iDt -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(68,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -iwS -viN -qRh -iah -enU -iwS -iDt -iDt -iDt -iDt -szG -szG -szG -gjq -gjq -gjq -gjq -pzk -aFG -hZe -xuo -iBD -odW -bCJ -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -eJf -gjq -gOU -yep -gOU -gjq -eJf -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -pfw -pfw -iDt -ebd -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(69,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -iwS -llQ -ueN -kRg -lIv -iwS -iDt -iDt -iDt -iDt -iDt -szG -gjq -gjq -gjq -gjq -gjq -sjb -nia -fBc -nia -sjb -hpM -sjb -eJf -eJf -eJf -uBy -gQe -gQe -gQe -nzG -eJf -gjq -gOU -yep -gOU -gjq -eJf -gjq -gjq -gjq -gjq -gjq -gjq -gjq -ulj -iDt -ebd -ijY -iDt -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(70,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -iwS -iwS -kSG -sfg -kRg -oPC -qMo -iDt -cCb -iDt -iDt -scw -oif -eJf -eJf -keu -eJf -pfg -sjb -oeq -oFZ -dkI -wQr -kvf -sjb -gjq -gjq -gjq -mrI -scw -jAv -scw -gem -eJf -gjq -gOU -yep -gOU -gjq -eJf -gjq -gjq -gjq -gjq -gjq -gjq -gjq -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(71,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -iwS -iJM -bti -kRg -nwo -cGB -qMo -iDt -iDt -ijY -iDt -iDt -scw -gjq -gjq -gjq -gjq -gjq -sjb -umD -xgO -grz -wQr -vEU -vSi -qjV -qjV -qjV -rsY -atW -scw -scw -dvi -eJf -gjq -gOU -fPS -gOU -gjq -eJf -gjq -gjq -gjq -gjq -gjq -gjq -iDt -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(72,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -iwS -iJM -bti -kRg -hBC -whg -qMo -iDt -iDt -iDt -iDt -iDt -iDt -gjq -gjq -gjq -gjq -gjq -sjb -qEu -jIX -sgV -sce -ibc -vSi -qLm -qLm -qLm -vSi -bie -bie -vzI -bie -bie -cMk -cMk -wmR -cMk -cMk -eJf -eJf -eJf -keu -eJf -eJf -oif -pfw -ebd -iDt -iDt -pfw -iDt -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(73,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -iwS -iwS -qLU -aUh -ueN -dWB -qMo -iDt -iDt -iDt -iDt -ebd -iDt -gjq -gjq -gjq -gjq -gjq -cum -mzr -bgU -quY -nbU -vSi -vSi -nUx -fUZ -cbG -vSi -tKf -lkY -kZu -qmT -vpc -kZu -aYM -tDa -gzv -cMk -cMk -gjq -gjq -eJf -gjq -gjq -iDt -iDt -iDt -iDt -ulj -iDt -iDt -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(74,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -iwS -eqc -kRg -kRg -bLU -iwS -tKI -wkj -tKI -iDt -iDt -jZN -gjq -gjq -gjq -gjq -gjq -cum -fLY -hvU -mJy -jzy -pve -xjZ -eiU -mIT -gLH -vSi -kZu -uOf -kZu -bDC -kZu -kZu -vNT -pql -jLb -oqy -cMk -gjq -gjq -eJf -gjq -gjq -iDt -iDt -iDt -iDt -iDt -ebd -iDt -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(75,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -iwS -kXV -nwo -aDB -kRg -jGr -pdf -pdf -aFr -iDt -iDt -iDt -gjq -gjq -gjq -gjq -gjq -sjb -dTu -uig -hPK -uza -pve -hEm -vGg -bgt -hSN -tQW -uQx -uQl -xpQ -uQl -ajr -uQx -vQy -pql -fFI -wFD -cMk -gjq -gjq -eJf -gjq -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(76,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -iwS -iwS -iwS -iwS -iwS -iwS -kZQ -vHE -aFr -iDt -scw -scw -gjq -gjq -gjq -gjq -sjb -wQr -wQr -pcj -wVe -wQr -vSi -vSi -jQw -pZD -jKz -aOf -qFn -pql -tDa -tDa -tDa -sWB -tDa -pql -gzv -aYr -uvM -gjq -gjq -gnh -iDt -iDt -iDt -iDt -ijY -iDt -iDt -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(77,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tKI -aqy -tKI -iDt -iDt -iDt -gjq -gjq -gjq -gjq -iYt -dbi -unM -lNH -bit -iQK -kXr -hVI -aKK -pZD -uMA -pve -vSi -kZu -pAT -hDx -dBx -kZu -aNg -kzH -xOM -aYr -nWH -hFL -hFL -nWH -gnh -iDt -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(78,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tKI -pdf -aFr -iDt -scw -gjq -gjq -gjq -gjq -gjq -dLf -vfg -bQA -hKT -cHZ -gaq -kXr -oGF -vGg -pZD -hUp -kUD -kUD -nWH -dQd -nWH -nWH -nWH -iUd -kIw -sFv -dTF -nWH -qeP -fde -hgc -gnh -iDt -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(79,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -kSw -xMq -xMq -xMq -xMq -xMq -kSw -cek -cek -uCN -cek -cek -cek -kSw -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tKI -czV -tKI -iDt -scw -gjq -gjq -gjq -gjq -gjq -dLf -vfg -ajw -jue -lNH -eMa -hrJ -wmT -aKK -lvT -ekk -kUD -kUD -nWH -myR -cZO -vMa -nWH -nWH -nWH -nWH -nWH -nWH -xjC -vZq -cZO -gnh -iDt -cCb -iDt -iDt -iDt -iDt -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(80,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -xMq -ijY -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -gjq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -udC -scw -scw -xUw -iDt -gjq -gjq -gjq -gjq -gjq -gjq -dLf -vfg -ajw -vjM -bff -lNH -kix -aOf -xpw -wmb -bMJ -eMO -nWH -nWH -oha -xVf -snt -rUz -uTr -bAX -rUz -rUz -aVe -rUz -bRo -rPL -gnh -iDt -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(81,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -xMq -iDt -hPs -gBX -gBX -gBX -ktt -hPs -nDE -nDE -nDE -nDE -nDE -bUp -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -gqG -udC -udC -gqG -myZ -myZ -myZ -gqG -gjq -gjq -gjq -gjq -gjq -gjq -iYt -tDU -mod -bQA -eIU -wUP -hrJ -siI -vGg -lvT -urk -eJV -nWH -ruD -cZO -nWH -yca -nWH -nWH -nWH -eZp -hIU -nWH -whb -xjC -nWH -gnh -iDt -iDt -ulj -iDt -iDt -iDt -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(82,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -xMq -iDt -oqL -odz -yhU -jHF -xPV -jlF -jNf -dpC -cGQ -whr -nmr -hVY -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -fKv -gjq -gjq -fKv -myZ -myZ -myZ -fKv -gjq -gjq -gjq -gjq -gjq -gjq -jpS -kNW -kNW -wxp -wxp -kNW -kNW -kNW -vXL -pZD -mOr -vSi -nWH -nWH -nWH -nWH -tCO -udE -sbU -nWH -nWH -nWH -nWH -nWH -ezN -gnh -tVj -iDt -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(83,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -xMq -iDt -oqL -ldc -bRi -jsp -wSz -nFU -jNf -xnk -tau -cPE -cPE -hVY -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -fKv -gjq -gjq -fKv -myZ -myZ -myZ -fKv -gjq -gjq -gjq -gjq -gjq -gjq -gjq -jpS -bzN -oXo -piV -fPB -qUa -kNW -siF -pZD -cQw -ndu -ffi -tOJ -clL -kyD -kCQ -fUZ -ndu -tOJ -axo -kWx -tzE -mCo -cKl -rsY -urG -iDt -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(84,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -xMq -iDt -oqL -iFe -iFe -cQf -mdo -exN -jNf -qIo -tau -dWK -ozX -hVY -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -skl -cSO -cSO -cSO -skl -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -fKv -gjq -gjq -fKv -myZ -myZ -myZ -fKv -gjq -gjq -gjq -gjq -gjq -gjq -gjq -jpS -rCO -baV -baV -svy -cLq -wUL -xpw -wJU -lvT -lvT -lvT -lvT -pZD -pZD -lvT -lvT -niG -jZr -noi -iOw -mMS -dTs -dTs -xYT -urG -iDt -ijY -iDt -iDt -iDt -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(85,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -kSw -iDt -ktt -njf -isQ -fAV -kTj -obv -jNf -dID -tau -cPE -cPE -hVY -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -rTI -khU -vAZ -lHW -eqR -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -jXc -eJf -eJf -psb -myZ -myZ -myZ -psb -eJf -eJf -eJf -eJf -eJf -eJf -eJf -jpS -yef -bWV -fPB -ced -tlA -kNW -vGg -mGJ -jum -xmD -cNf -uyA -vGx -ujr -xmD -jGw -xmD -vSi -rsY -rsY -vSi -pja -ouc -wcN -urG -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(86,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -xMq -iDt -hPs -qMn -hEM -ifQ -qPd -tWO -jNf -tXd -tau -cPE -cPE -hVY -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -ucN -jvL -jvL -ucN -gjq -gjq -iDt -rTI -sIh -jqf -pEf -skl -cSO -cSO -cSO -skl -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -fKv -gjq -gjq -fio -myZ -myZ -myZ -ajz -gjq -gjq -gjq -gjq -gjq -gjq -gjq -jpS -kuC -kII -nOK -clz -mml -kNW -ahb -bgt -iUg -vSi -vSi -pCM -rOF -vSi -vSi -duZ -vSi -rsY -lQw -fWX -rsY -qjV -qjV -rsY -uuX -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(87,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -xMq -xMq -xMq -xMq -iDt -hPs -bkg -hFD -bCp -fYi -tCL -jNf -wcz -hKI -fWe -ozX -hVY -gjq -gjq -gjq -gjq -gjq -wUj -dKC -dKC -wUj -wUj -gjq -ucN -ucN -jHN -ovQ -ucN -ucN -iDt -iDt -skl -flR -bPH -deY -mbj -deY -deY -fhz -skl -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -eFw -eJf -eJf -psb -myZ -myZ -myZ -psb -eJf -eJf -eJf -eJf -eJf -eJf -eJf -jpS -kNW -sxb -kNW -aOE -kqV -kNW -bEG -stZ -kTD -cYL -uUT -mpg -gIu -uUT -euw -ouk -bJc -auz -seY -wrV -qau -pGt -aIB -aIB -dNN -psb -iDt -sVN -iDt -psb -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(88,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -xMq -xMq -ebd -iDt -iDt -iDt -hPs -xLV -xLV -mxA -vwo -tCL -jNf -kRm -ijC -cXy -cXy -hVY -gjq -gjq -iDt -gjq -wUj -wUj -qLB -jpy -ssY -wUj -gjq -ucN -cXZ -cVk -gFj -vZH -kgz -iDt -iDt -skl -skl -skl -bxQ -jOQ -deY -skl -gdf -skl -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -fKv -gjq -gjq -fKv -myZ -myZ -myZ -fKv -gjq -gjq -gjq -iDt -iDt -iDt -iDt -iDt -jpS -jlK -jpS -szJ -iKp -kNW -rrV -xGt -lVk -uUT -uUT -uPh -qZT -uUT -vgD -lvQ -sUE -sdc -kGu -scw -qau -iDt -iDt -iDt -iDt -iDt -wOR -xuo -itY -iDt -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(89,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -xMq -iDt -iDt -iDt -hPs -gBX -hPs -cIc -cIc -cIc -cIc -eCD -jNf -pbB -tzf -ozX -ozX -hVY -gjq -pfw -iDt -iDt -qLG -crS -niZ -xSA -hNh -wUj -gjq -ucN -wzc -wPf -fYO -aKf -ucN -iDt -iDt -skl -wWn -skl -wCd -gxv -duo -rTI -deY -rTI -iDt -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -fKv -gjq -gjq -fKv -myZ -myZ -myZ -fKv -iDt -iDt -iDt -iDt -iDt -iDt -ijY -iDt -iDt -iDt -aEM -gKd -gKd -rsY -hpi -avh -qGg -uUT -dDQ -lQh -diI -uUT -rsY -rsY -rsY -rsY -scw -scw -qau -iDt -iDt -cCb -scw -iDt -xuo -tZp -iDt -iDt -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(90,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -xMq -xMq -xMq -iDt -iDt -iDt -oqL -unm -cvG -ldz -fvK -cIc -uzM -npL -jNf -qtw -jNf -jNf -jNf -jNf -xZg -iDt -iDt -iDt -wUj -jKC -kJQ -eLs -mOZ -wUj -gjq -ucN -scV -jIv -plN -mgb -ucN -iDt -ijY -skl -skl -skl -mlT -vkU -hXL -skl -avg -skl -pfw -udC -iDt -iDt -iDt -ebd -iDt -iDt -iDt -iDt -iDt -iDt -nfG -iDt -iDt -iDt -iDt -gjq -gjq -fKv -gjq -gjq -fKv -myZ -myZ -myZ -fKv -iDt -iDt -scw -iDt -iDt -iDt -iDt -iDt -iDt -iDt -rcY -iDt -iDt -rsY -mqs -dTs -oeP -uUT -iJv -rtR -lLY -nUi -iDt -cCb -ppu -scw -scw -iDt -nqv -iDt -iDt -iDt -iDt -jSQ -cmZ -xuo -iDt -jZN -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(91,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -xMq -ebd -iDt -iDt -iDt -iDt -oqL -bFU -sZp -axX -auJ -oVy -iRV -npL -wuH -npL -bol -omP -fYQ -uso -xhK -iDt -iDt -iDt -wUj -mJE -xSA -iMD -hdW -wUj -gjq -ucN -ryl -nfj -hzJ -gpt -ucN -iDt -iDt -iDt -iDt -skl -veD -cDX -dCL -skl -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -gqG -scw -iDt -gqG -aIB -aIB -aIB -gqG -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -cCb -qau -scw -tZS -sdc -rsY -czq -rsY -uUT -efa -pXE -lqA -nUi -iDt -scw -scw -scw -iDt -scw -qau -ijY -iDt -iDt -iDt -psb -iDt -iDt -iDt -psb -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(92,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -xMq -iDt -iDt -ijY -hPs -gBX -oPa -jrf -tHt -aYv -aUE -cIc -lBT -oVY -eCs -vVH -vVH -vVH -nYZ -uoi -xhK -iDt -ijY -pfw -wUj -mUC -jeJ -aFg -vwl -wUj -wMt -ucN -ucN -xyd -irp -ucN -ucN -wMt -wMt -qzV -qzV -skl -skl -dcS -lAt -skl -iDt -iDt -ebd -iDt -nfG -pfw -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -nfG -iDt -iDt -iDt -iDt -scw -iDt -iDt -iDt -iDt -iDt -iDt -udC -iDt -scw -iDt -iDt -iDt -iDt -mJZ -iDt -scw -ppu -scw -scw -scw -iwf -uUT -afs -qCY -iwf -tej -tej -tej -tej -tej -tej -kso -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(93,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -iDt -iDt -kSw -iDt -iDt -iDt -oqL -eaq -hXk -tei -fTF -fTF -fTF -cIc -lNn -oVY -pez -vwI -qLg -vVH -vVH -vVH -xhK -dAZ -kcM -kcM -ntl -hwu -hwu -wUj -wwL -wUj -vOw -eGW -dZN -eGW -uRk -dDt -dDt -wYh -dDt -dDt -dDt -psm -ghE -hGF -aWD -wMt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -xMq -ebd -iDt -iDt -iDt -scw -iDt -nfG -udC -udC -udC -iDt -iDt -iDt -scw -iDt -rcY -scw -iDt -iDt -scw -scw -scw -nUi -nNy -cbk -lNa -nUi -iDt -iDt -iDt -jZN -iDt -iDt -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(94,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -iDt -iDt -iDt -rcY -iDt -iDt -iDt -oqL -scl -dck -scl -htB -scl -dsj -cIc -kqn -oVY -pez -wha -aQQ -fdm -grU -nKL -ukN -nCs -bZk -dBJ -kmg -vOw -eGW -eGW -uRk -dDt -dDt -stG -ykM -ykM -ykM -ykM -waL -oWP -fzD -waL -waL -waL -qsk -xbR -nEZ -wMt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -xMq -xMq -iDt -iDt -ijY -xMq -udC -udC -udC -udC -udC -nfG -iDt -iDt -iDt -iDt -rcY -iDt -scw -iDt -iDt -scw -obM -qzq -iwf -qlk -qlk -iwf -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -jZN -iDt -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(95,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -iDt -iDt -iDt -isl -iDt -iDt -iDt -hPs -bRD -dck -scl -aoh -scl -ilZ -sws -bpX -oVY -oCU -vVH -vVH -vVH -lDE -nKL -hpF -pXZ -bZk -gAu -sUb -eCE -eCE -eCE -eYe -eCE -uzB -eCE -bnl -pue -qQN -qQN -jtx -gKQ -gKQ -kkN -lYZ -gKQ -gKQ -gdC -ppS -wMt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -xMq -xMq -scw -xMq -xMq -udC -udC -udC -udC -udC -xMq -iDt -scw -iDt -iDt -rcY -iDt -iDt -iDt -iDt -iDt -iDt -eqN -tvu -aIB -aIB -wiQ -ijY -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(96,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -iDt -iDt -iDt -rcY -iDt -ebd -iDt -oqL -scl -dck -scl -htB -jSc -jty -cIc -nUL -oVY -bLc -diN -diN -lgK -xnr -lWb -eDq -tDY -wJG -izY -eND -qpB -qpB -jGq -qpB -qpB -pMj -qpB -qpB -iwC -qzV -qzV -qzV -gKQ -gVS -bqF -bbQ -otw -pvz -oKJ -qQN -wMt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -iDt -iDt -iDt -rcY -iDt -iDt -iDt -iDt -iDt -iDt -mJZ -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(97,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -iDt -iDt -kSw -iDt -iDt -iDt -oqL -kEj -hke -jwN -iHV -iHV -qTI -cIc -kqn -oVY -ruC -wws -wws -nXV -icQ -nKL -ukN -pXZ -bZk -kEn -dAZ -dKy -dKy -lyg -dKy -dKy -lyg -dKy -dKy -lyg -gjq -gjq -gjq -gKQ -jbt -cBT -dyf -iOs -gKQ -eGW -qQN -wMt -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -xMq -xMq -ijY -iDt -iDt -syw -kNC -kNC -kNC -tej -fSm -kNC -gIl -iDt -iDt -cCb -iDt -xMq -xMq -xMq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(98,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -xMq -ijY -iDt -iDt -hPs -gBX -hPs -vnQ -vxM -vnT -una -cIc -mlX -oVY -nyP -tVf -gAR -lgK -dSJ -nKL -hpF -uHv -nup -sww -dAZ -nek -qKS -dUO -rhP -kkB -dUO -nGQ -sSO -lyg -gjq -gjq -gjq -cwr -bqF -bqF -dyf -bqF -gKQ -eGW -qQN -wMt -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -xMq -xMq -xMq -iDt -cCb -iDt -scw -iDt -iDt -iDt -iDt -scw -iDt -iDt -iDt -iDt -iDt -jZN -xMq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(99,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -xMq -xMq -iDt -iDt -iDt -iDt -oqL -jnM -gBc -erY -clR -cIc -xtz -oVY -pez -tVf -izn -lgK -pfn -xMy -eDq -iXh -lWb -hRp -dAZ -wqI -xSn -dUO -wqI -xSn -dUO -wqI -xSn -lyg -gjq -gjq -gjq -ncR -seA -seA -ybN -seA -gKQ -jSL -jSL -wMt -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -psb -scw -psb -udC -udC -udC -udC -xMq -udC -udC -xMq -ijY -jZN -scw -iDt -iDt -xMq -xMq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(100,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -xMq -iDt -iDt -iDt -iDt -oqL -ulm -hDg -pdT -klv -cIc -kqn -oVY -pez -yiL -yiL -yiL -yiL -yiL -yiL -yiL -eDq -eGz -dAZ -emM -wob -dUO -piL -wob -dUO -aIN -wob -lyg -gjq -gjq -gjq -ncR -jvm -aiX -oPl -oYi -gKQ -gKQ -wMt -wMt -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -scw -iDt -scw -udC -udC -udC -xMq -xMq -udC -udC -udC -xMq -xMq -aRt -aRt -xMq -xMq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(101,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -xMq -xMq -xMq -iDt -ebd -ktt -gBX -hPs -cIc -cIc -cIc -dHw -qhS -jaW -yiL -sjv -oqb -uBs -uBs -uBs -xaH -fCd -nDp -ubo -lgD -nDp -gqZ -vms -nDp -dwS -vms -iYU -nZd -nXc -nXc -nXc -xGX -aiX -aiX -lQq -aiX -bPe -gKQ -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -psb -scw -psb -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -iDt -scw -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(102,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -xMq -xMq -iDt -iDt -iDt -xby -olV -mcF -xEI -oZR -oVY -pez -yiL -nxy -cxO -wVE -tuc -pPK -yiL -dOF -nSk -bSk -uQC -nSk -bcm -uQC -nSk -wQR -wpg -tYm -lyg -gjq -gjq -gjq -ncR -eBU -ile -dyf -ile -neC -gKQ -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(103,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -xMq -xMq -iDt -iDt -xhK -eTb -mDo -vVH -nUL -oVY -pez -yiL -hvR -cxO -auQ -tuc -tuc -yiL -pRB -cGl -hgM -pJu -rWU -hgM -frS -wPD -frS -lyg -hQt -lyg -gjq -gjq -gjq -wYP -tDN -tpK -dyf -xCb -gDe -gKQ -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -xMq -scw -scw -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(104,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -xMq -kSw -iDt -xhK -vVH -vVH -vVH -mlX -oVY -pez -yiL -iCa -cxO -xuA -tvS -evj -yiL -qLD -bbY -hgM -pgG -hBg -hgM -vIH -gXh -rEe -lyg -gjq -gjq -gjq -gjq -gjq -dsR -ntT -xUR -jbI -oQN -xtn -gKQ -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -xMq -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(105,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -cek -iDt -xhK -taV -qfs -vVH -sFu -oVY -vHU -yiL -btI -tgP -pgL -cxO -gIk -yiL -aym -iti -hgM -svw -hBg -hgM -tvK -qMA -fzG -bWe -gjq -gjq -gjq -gjq -gjq -onJ -mvv -ile -oTe -cAz -dEv -gKQ -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -iDt -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -xMq -xMq -iDt -scw -iDt -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(106,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -cek -iDt -xhK -nCQ -swf -vVH -xtz -oVY -pez -yiL -yiL -jcT -eOJ -rUl -jyM -yiL -szz -rnb -hgM -fvO -nrF -hgM -cEP -glC -vvG -bWe -gjq -gjq -gjq -gjq -gjq -cwr -mvv -mqR -dTr -gjS -dUW -gKQ -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -iDt -xPu -iDt -xPu -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -xMq -nfG -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(107,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -kSw -iDt -xhK -oAP -oua -vVH -kqn -oVY -tjC -yiL -yiL -yiL -yiL -yiL -yiL -yiL -xHE -xHE -hgM -svw -eHK -hgM -mKq -xEd -pQK -bWe -gjq -gjq -gjq -gjq -gjq -ncR -gKQ -gKQ -gKQ -gKQ -gKQ -gKQ -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -iDt -iDt -aaD -wqT -aaD -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -xMq -udC -iDt -iDt -scw -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(108,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -xhK -oyH -swf -vVH -uVC -oVY -rwu -tVf -wRa -gAn -hgH -nmI -kZi -uME -uME -uME -uME -bYB -mBa -hgM -xhK -xhK -xhK -xhK -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -iDt -iDt -iDt -alW -wVz -alW -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(109,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -xhK -vVH -fkV -vVH -kqn -oVY -sMs -tVf -wJi -rME -bol -rkT -uME -uME -doq -trA -uME -aDM -hBg -ihD -kvu -aaK -oCT -xby -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -iDt -iDt -iDt -vcj -vcj -tLc -vcj -vcj -aVq -iDt -xMq -xMq -udC -udC -udC -udC -udC -udC -iDt -scw -iDt -xMq -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(110,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -upw -uzM -iRV -eia -xgL -oVY -bWh -gIx -hUz -hUz -bjp -bjp -bBn -ryu -kZt -ryu -dha -svF -hBg -ufF -iSE -bRb -aaK -xby -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -iDt -iDt -iDt -vcj -pIz -mXC -rPX -vcj -aVq -iDt -iDt -iDt -nfG -iDt -iDt -ebd -iDt -iDt -iDt -scw -iDt -xMq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(111,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -upw -msg -jDG -iRV -fiD -ate -ate -ate -ate -ate -ate -ate -fgJ -cpw -ihB -ihB -ddp -hBg -hBg -dhT -pOk -par -rsM -xby -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -iDt -vcj -vcj -vcj -pDP -xMI -eZW -vcj -aVq -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -scw -iDt -iDt -xMq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(112,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -upw -ugP -uRu -uRu -uRu -syB -syB -syB -syB -syB -syB -syB -fTz -pdz -eic -kBh -dha -rRA -vpi -uME -xhK -xhK -xhK -xhK -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -iDt -vcj -odf -vWz -vWz -beo -vWz -vcj -aaD -qtS -iDt -iDt -iDt -scw -iDt -iDt -iDt -scw -iDt -ijY -iDt -xMq -xMq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(113,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -mMM -ohS -gTw -gTw -gTw -gTw -gTw -gTw -gTw -gTw -gTw -gTw -mMM -xhK -qJY -xhK -pNm -tpH -uIC -pNm -rzg -rzg -rzg -rzg -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -iDt -vcj -sIO -wDG -vyg -dOq -kOS -uMq -nul -scw -scw -iDt -iDt -iDt -scw -iDt -iDt -iDt -iDt -scw -iDt -ebd -xMq -xMq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(114,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -mMM -wRa -wRa -wRa -wRa -wRa -wRa -wRa -wRa -wRa -wRa -wRa -wRa -vVH -ulz -ulz -pNm -oPn -wnv -pNm -rzg -rzg -rzg -rzg -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -iDt -vcj -igL -vWz -vWz -dOq -vWz -vcj -aaD -xQu -iDt -xMq -udC -xMq -xMq -xMq -udC -xMq -nfG -iDt -iDt -iDt -iDt -xMq -udC -udC -xMq -xMq -xMq -udC -udC -xMq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(115,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -mMM -wRa -wRa -wRa -wRa -wRa -wRa -wRa -wRa -wRa -wRa -wRa -wRa -vVH -dbL -ulz -pNm -bdF -bQS -pNm -rzg -rzg -rzg -rzg -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -iDt -vcj -vcj -vcj -iyd -vlZ -gCh -alW -nfG -iDt -xMq -xMq -udC -udC -udC -udC -udC -xMq -xMq -iDt -iDt -scw -iDt -iDt -iDt -iDt -nfG -iDt -iDt -iDt -nfG -xMq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(116,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -mMM -wRa -wRa -wRa -wRa -wRa -wRa -wRa -wRa -wRa -wRa -vVH -vVH -vVH -hBB -ulz -pNm -uKW -bBx -pNm -pNm -pNm -pNm -pNm -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -iDt -iDt -scw -vcj -xrI -jQh -bst -alW -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(117,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -mMM -wRa -wRa -wRa -wRa -wRa -wRa -wRa -wRa -wRa -wRa -vVH -nRO -ulz -ulz -ulz -pNm -eOz -fdG -uCU -dvI -dvI -szV -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -iDt -udC -iDt -iDt -vcj -lTs -lTs -lTs -vcj -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -iDt -iDt -scw -xMq -xMq -xMq -xMq -xMq -xMq -iDt -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(118,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -mMM -wRa -wRa -ilH -wRa -wRa -wSZ -wRa -ilH -wRa -wRa -vVH -nCQ -pKR -ejX -fjG -pNm -wQu -fdG -lPb -sJt -jKr -jKr -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -iDt -udC -iDt -iDt -jLO -tEC -tEC -tEC -jLO -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -scw -hpE -xuo -hpE -iDt -xMq -udC -udC -udC -xMq -iDt -iDt -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(119,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -mMM -mMM -mMM -mMM -mMM -mMM -mMM -mMM -mMM -mMM -mMM -xhK -xhK -xhK -phK -qoY -pNm -iEN -paL -xrf -dvI -sgZ -arg -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -udC -udC -scw -iDt -iDt -scw -scw -scw -scw -nfG -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -nxM -vmP -maQ -oAe -aUD -xMq -udC -udC -udC -xMq -iDt -scw -xMq -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(120,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -xhK -xhK -xhK -pNm -fsK -pNm -fsK -pNm -pNm -pNm -pNm -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -scw -scw -scw -iDt -iDt -iDt -iDt -iDt -iDt -iDt -scw -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -mep -upa -qck -lkz -mep -iDt -udC -udC -udC -udC -iDt -iDt -xMq -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(121,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -xMq -iDt -iDt -iDt -iDt -iDt -gjq -gjq -gjq -gjq -gjq -gjq -iDt -scw -scw -scw -iDt -udC -gqG -udC -udC -udC -gqG -scw -gqG -iDt -udC -gjq -gjq -gjq -gjq -gjq -udC -udC -nxM -nxM -qKH -eVO -aUR -nxM -nxM -nxM -udC -udC -udC -udC -iDt -iDt -xMq -udC -udC -iDt -gjq -gjq -gjq -gjq -gjq -iDt -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(122,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -rcY -iDt -iDt -xMq -iDt -iDt -iDt -iDt -gjq -gjq -gjq -gjq -gjq -nfG -scw -udC -udC -udC -bDO -udC -udC -udC -vmA -myZ -fKv -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -mep -qck -owG -owG -nFN -nJd -iio -nxM -xMq -udC -udC -udC -iDt -scw -iDt -iDt -iDt -iDt -bID -swU -swU -swU -bID -iDt -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(123,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -mJZ -iDt -iDt -scw -scw -iDt -scw -scw -iDt -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -gjq -bDO -udC -udC -iDt -fKv -myZ -fKv -gjq -gjq -udC -udC -udC -udC -gjq -gjq -gjq -mep -qck -nJd -nJd -cFJ -nJd -xUe -nxM -xMq -udC -udC -udC -udC -nfG -iDt -iDt -scw -iDt -bID -mWo -dVJ -ujB -bID -iDt -iDt -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(124,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -gFX -udC -udC -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -chg -iDt -scw -scw -hmb -hmb -hmb -hmb -hmb -hmb -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -bDO -udC -gjq -gjq -fKv -myZ -fKv -iDt -udC -udC -udC -udC -udC -udC -udC -gjq -mep -nFN -sSF -nBj -qck -nxM -nxM -nxM -xMq -udC -udC -udC -udC -udC -iDt -cCb -scw -iDt -hyC -gkK -geV -ens -hyC -iDt -iDt -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(125,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -udC -udC -iDt -scw -gbz -udC -udC -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -iDt -rcY -scw -scw -hmb -hmb -hlP -ahI -ahI -boV -hmb -hmb -gjq -gjq -gjq -gjq -gjq -gjq -gjq -bDO -gjq -gjq -gjq -fKv -myZ -vmA -udC -udC -udC -udC -udC -udC -udC -udC -udC -nxM -imi -nJd -hvy -qck -eJI -nxM -xMq -xMq -xMq -udC -udC -iDt -iDt -iDt -iDt -iDt -iDt -bID -vxf -noX -eNQ -bID -iDt -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(126,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -rzg -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -iDt -rcY -scw -xMq -hmb -gbF -eYX -sCZ -sCZ -lmm -sRc -hmb -gjq -gjq -gjq -gjq -gjq -gjq -gjq -bDO -xMq -xMq -iDt -gqG -scw -gqG -udC -udC -udC -udC -iDt -iDt -iDt -rxW -rxW -nxM -qck -owG -owG -qoM -xXm -nxM -xMq -xMq -xMq -xMq -iDt -iDt -iDt -nfG -iDt -iDt -nfG -bID -bID -dmR -bID -bID -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(127,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -iDt -iDt -xMq -xMq -exw -exw -ksO -syE -jwm -pqx -hml -vkg -hmb -hmb -gjq -gjq -ebX -kNC -jTf -jTf -gqG -szG -xMq -xMq -iDt -scw -iDt -iDt -iDt -iDt -iDt -iDt -cCb -iDt -iDt -rxW -nxM -eix -bvS -bbv -qck -kxe -nxM -nxM -nxM -nxM -nxM -lAA -nxM -iDt -iDt -iDt -iDt -scw -gCY -fLe -mWz -bID -iDt -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(128,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -iDt -iDt -iDt -xMq -exw -exw -kQW -fKy -bdr -ylr -irF -rdd -lmm -boV -hmb -hmb -iDt -qau -iDt -jZN -neM -qau -xMq -xMq -xMq -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -nxM -ion -vAq -ngZ -pnf -rQG -pNZ -rQG -xHk -kgl -rQG -jJV -mep -iDt -cCb -iDt -iDt -nfG -bID -anZ -anZ -bID -iDt -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(129,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -iDt -iDt -xMq -xMq -exw -gAN -qXz -gAy -rhR -qbI -svX -lgA -gAy -bqH -xVD -exw -hmb -exw -fQZ -gUF -neM -qau -xMq -xMq -iDt -iDt -iDt -iDt -eXH -eXH -aur -aur -aur -aur -aur -aur -eXH -hjM -hjM -hjM -hjM -tai -hjM -hjM -dpq -ekq -njO -nxM -pBW -mep -scw -iDt -udC -udC -iDt -iDt -iDt -scw -scw -iDt -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(130,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -xMq -xMq -xMq -xMq -exw -gAN -sCZ -sCZ -eGM -jOc -bTI -fKy -kWR -sCZ -bdr -rCh -reh -rCh -xuo -kDU -iDt -qau -iDt -iDt -nfG -iDt -scw -iDt -eXH -gvd -rUJ -wUQ -cjJ -cjJ -cjJ -cjJ -wsT -gKn -hTa -txj -nyX -jjx -vSM -hjM -lAA -lAA -lAA -nxM -tPM -mep -iDt -iDt -udC -udC -udC -udC -cCb -scw -iDt -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(131,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -xMq -xMq -xMq -xMq -sBy -sBy -sBy -sBy -exw -rvi -gyw -jZc -exw -xlL -gXe -ieq -mzB -niK -exw -hmb -exw -job -jSM -iDt -nqv -scw -fna -iDt -iDt -iDt -iDt -eXH -hUo -bjU -aJr -vHZ -pHD -pHD -pHD -pHD -pHD -pHD -pHD -uXV -pHD -biN -hjM -oex -oex -oex -nxM -pBW -mep -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(132,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -xMq -sBy -sBy -sBy -sBy -cnr -aga -lvO -exw -iUO -uhk -ivr -hmb -gmB -nHO -fDi -wxL -pRx -hmb -neM -iDt -scw -iDt -neM -qau -iZm -fdP -iDt -iDt -scw -iDt -eXH -rwk -izJ -gVO -vjS -pHD -pHD -pHD -pHD -pHD -pHD -pHD -pHD -pHD -rEf -hjM -oex -oex -oex -nxM -pBW -nxM -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(133,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -xMq -sBy -kDJ -cwd -uHa -gLo -oYc -lvc -exw -ivr -jlq -cSc -hmb -eoq -vAu -tja -aQj -mKv -hmb -neM -iDt -iDt -scw -neM -qau -iDt -kRF -iDt -scw -iDt -iDt -wRR -oic -psv -udK -cZS -apa -apa -apa -apa -apa -apa -apa -bCt -pHD -mOw -hjM -oex -oex -oex -nxM -aRn -nxM -iDt -xMq -xMq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(134,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -xMq -xMq -sBy -lUy -teR -tiX -kZc -mYG -qfu -dMS -dMS -dMS -dMS -dMS -dMS -dMS -eWI -dMS -dMS -dMS -xMq -iDt -scw -scw -oZd -kso -scw -iDt -iDt -iDt -iDt -iDt -eXH -oMN -kjx -yco -dZM -wPT -wPT -wPT -wPT -wPT -wPT -wPT -mld -pHD -qYZ -hjM -oex -oex -oex -nxM -gRm -nxM -xMq -xMq -xMq -xMq -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(135,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -xMq -xMq -xMq -xMq -xMq -sBy -eSF -sWC -rrX -ibi -kzW -iMg -tnB -xpp -kSo -cjK -cjK -cjK -cjK -wnO -jTV -hEl -dMS -xMq -jTf -jTf -ork -gIl -iDt -iDt -cCb -iDt -scw -iDt -iDt -eXH -nlN -nlS -yco -rVd -pHD -pHD -pHD -pHD -pHD -pHD -pHD -pHD -pHD -jKG -hjM -lAA -lAA -lAA -nxM -jhD -nxM -nxM -nxM -nxM -xMq -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(136,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -xMq -mdZ -mdZ -mdZ -mdZ -sBy -sBy -rzA -sBy -sBy -qMe -sBy -dMS -dMS -hyt -dMS -dMS -dMS -dMS -kSo -kmW -gEz -dMS -xMq -xMq -scw -iDt -scw -iDt -iDt -iDt -iDt -scw -iDt -scw -wRR -lAc -ozZ -yco -bVe -pHD -pHD -pHD -pHD -pHD -pHD -pHD -vHR -pHD -qMz -hjM -xmx -wEU -rwD -nxM -dXF -pNZ -rQG -jJV -nxM -xMq -xMq -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(137,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -xMq -mdZ -kPt -ykr -mdZ -oGR -pIQ -let -sBy -jjG -vlP -bJy -qMT -dQF -ocf -rZT -jCF -acr -dMS -nCJ -dMS -dMS -dMS -dMS -xMq -iDt -iDt -scw -scw -btU -xUf -syW -dKt -hVX -xUf -eXH -irO -wiv -cRo -mLt -mLt -eKW -wsu -wsu -wsu -wsu -wsu -wsu -pHD -sGk -hjM -aJw -sBJ -qpD -nxM -wXW -nxM -nxM -pBW -nxM -xMq -xMq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(138,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -xMq -mdZ -kgs -tGZ -tza -tGZ -tGZ -let -sBy -jWO -xUm -mRa -rMB -ydZ -jBU -mqr -mqr -nUo -dMS -rZN -cjK -cjK -sAc -dMS -xMq -xMq -iDt -iDt -iDt -ioK -jvw -bja -jvw -jvw -bja -eXH -sXz -oDQ -xvn -msp -qcL -plS -pHD -pHD -eUe -bCq -bCq -fPh -pHD -qMz -hjM -xDU -oAd -sBJ -vLY -qck -bHF -eos -jol -nxM -xMq -xMq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(139,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -gjq -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -xMq -xMq -mdZ -nIL -uWv -let -let -qkG -let -sBy -ygu -ycz -hJm -vmL -lrN -jBU -eDi -doJ -wMu -dMS -dre -dMS -vUj -nCJ -dMS -xMq -xMq -iDt -iDt -iDt -ioK -rZX -bja -bja -jvw -bja -kRH -xqY -nzK -sLD -klo -fmr -plS -pHD -pHD -qMz -imV -fuS -plS -pHD -jKG -hjM -gHP -uBP -rig -nxM -nxM -nxM -nxM -mPO -hjM -rgE -rgE -rgE -rgE -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(140,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -gjq -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -xMq -xMq -mdZ -gxZ -hNi -mdZ -mdZ -sBy -sBy -sBy -hSb -ruO -aoU -eXw -cjj -nAI -eDP -oko -dMS -dMS -dMS -dMS -dMS -nCJ -dMS -xMq -xMq -nfG -xMq -xMq -btU -btU -btU -whl -ako -hjM -hjM -hjM -hjM -hjM -hjM -hjM -hCC -iXP -pHD -pqG -eXH -eXH -ijN -pHD -qMz -hjM -gmO -sBJ -kzv -nxM -bYY -cDh -iyQ -bLY -fwI -sCQ -lNy -mPH -rgE -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(141,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -xMq -mdZ -fjm -mCX -pwB -mdZ -epX -hRV -oXk -tiF -cSu -ebq -phU -fjC -nmq -shD -jfN -dMS -bwL -dYO -bwL -dMS -otj -dMS -xMq -xMq -xMq -xMq -xMq -btU -kCR -btU -yey -dYr -nxM -dTm -ofJ -hjM -djC -eNm -hjM -ugs -ttb -bjU -bOO -axm -wZr -kwe -gkT -jRM -hjM -nxM -nxM -nxM -nxM -biU -nxM -nxM -nJd -hjM -qII -tVA -oiO -rgE -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(142,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -xMq -mdZ -xdf -mCX -lPN -mdZ -nNC -jUr -jUr -ouH -pqA -ouH -miG -doJ -nAI -uRz -aak -dMS -vJL -aAE -qqC -oYx -nCJ -dMS -fuH -fuH -fuH -fuH -btU -btU -sGf -lca -kme -slf -nxM -nxM -nxM -hjM -hjM -hjM -hjM -dsT -vaZ -ubI -hOk -hjM -hjM -hjM -hjM -hjM -hjM -ycY -rQG -rQG -rQG -qJh -nxM -mco -upa -hjM -fjg -bif -nCD -rgE -rgE -rgE -rgE -rgE -rgE -rgE -rgE -rgE -rgE -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(143,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -xMq -mdZ -jXD -mCX -pmg -etV -doJ -lGY -rPf -csg -oXS -gUB -xqv -doJ -dlT -qMT -qMT -dMS -fkJ -hHU -hHU -dMS -nCJ -dMS -fuH -fuH -fuH -fuH -btU -idr -qSe -aIU -umC -kJm -lzD -bYT -oEX -rQG -rQG -jJV -hjM -hjM -hjM -hjM -hjM -hjM -ycY -rQG -rQG -cEx -rQG -qmK -nxM -lAA -nxM -vOI -nxM -vzY -xzO -hjM -hjM -hjM -kWW -rkN -ijp -phS -kpG -uAi -qST -iRP -wrE -lKt -rgE -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(144,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -xMq -xMq -mdZ -cId -ksL -mdZ -mdZ -yfp -gUB -csg -lXo -dkO -qis -wIF -qis -uNG -xoZ -cBL -dMS -dMS -dMS -dMS -dMS -nCJ -dMS -fuH -fuH -fuH -fuH -btU -oYm -kht -wqi -qhy -dYX -sAI -hjM -hjM -hjM -hjM -dXF -rQG -rQG -sHC -rQG -rQG -rQG -qmK -nxM -nxM -nxM -lAA -lAA -nxM -scw -ilN -jdP -nxM -bgd -kmM -sYU -iio -hjM -pbk -ioO -cfl -bGa -bGa -bGa -bGa -bGa -bGa -bRE -rgE -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(145,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -xMq -xMq -mdZ -shh -ewO -ryO -mdZ -iyb -doJ -qis -qis -qis -qis -doJ -vps -iPY -doJ -lrL -dMS -kDx -sEp -sEp -sEp -jWp -dMS -dMS -fwB -fwB -btU -btU -btU -btU -gPj -btU -btU -ako -xDb -jms -cFT -xDb -hjM -hjM -hjM -hjM -hjM -hjM -hjM -nxM -nxM -xMq -xMq -iDt -scw -deN -iDt -nxM -jdP -jdP -jdP -cFJ -oiT -xUe -hjM -bIV -rWO -irG -cEs -xgi -bOo -xgi -pzs -ljL -hPO -rgE -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(146,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -xMq -mdZ -mdZ -fpW -agt -wJf -mdZ -rKd -nuo -dVN -uEE -nvt -yjP -hzQ -hzQ -nro -hzQ -pck -dMS -dEB -dMS -dMS -dMS -dMS -dMS -fwB -fwB -fwB -btU -nTA -lMa -fPt -meL -mgg -hJC -ako -hWV -iiR -aZd -rqI -xDb -eII -eYR -pGS -iuq -nKK -xDb -xMq -xMq -iDt -iDt -pXe -iDt -iDt -scw -nxM -myP -nxM -nxM -mXf -nxM -nxM -hjM -hjM -rkN -hoT -mYJ -kyp -sTi -xuJ -foW -ljL -iQF -rgE -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(147,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -xMq -mdZ -exY -shh -agt -ihG -mdZ -vNk -vps -mui -doJ -yjP -eIa -wun -dOQ -lZG -fDt -mSU -dMS -dEB -dMS -jBB -pKe -jZg -qPE -fwB -fwB -fwB -btU -wvL -jnY -cWJ -dYX -kgE -gpT -ako -rjr -xQT -xQT -qmU -xDb -qZs -qnt -pGS -dIZ -pyf -xDb -xMq -iDt -iDt -iDt -iDt -iDt -iDt -xMq -nxM -wEU -jtD -rBv -owG -yjK -oiT -mco -hjM -gzd -nVc -uVj -sZa -wUR -jVE -vbd -ljL -eTL -kHr -kHr -kHr -kHr -kHr -kHr -kHr -kHr -kHr -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(148,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -xMq -mdZ -xDr -esn -agt -auN -mdZ -xvc -doJ -csg -doJ -skV -tCT -pOJ -bIW -vLx -hkl -jyh -dMS -dEB -dMS -jBB -mQk -ocF -oLP -fwB -fwB -fwB -btU -eEN -tHe -aCl -tHe -tHe -tHe -ako -hSF -dsA -jUB -tMk -xDb -pGS -xEh -pGS -ceE -pGS -xDb -xMq -iDt -pXe -pgN -deN -xMq -xMq -xMq -nxM -rmh -ieF -qHl -rwG -syG -skJ -owG -hjM -fBA -ljL -mYJ -oIN -mEO -gax -foW -ljL -ljL -agY -bnG -lub -wbk -ccg -iZO -taN -seX -kHr -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(149,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -xMq -mdZ -mdZ -shh -agt -mYr -mdZ -hLw -vps -uZP -vps -wZK -wNQ -lPm -men -eLx -iDg -jHE -dMS -ylk -dMS -tWD -klY -mQk -fwB -fwB -fwB -btU -btU -hyM -ofm -nHc -nHc -ofm -okf -ako -xDb -xDb -xDb -ygs -fDZ -rQw -xEb -eVZ -jTg -fpp -xDb -xDb -iDt -frt -xMq -xMq -xMq -xMq -xMq -nxM -nxM -nxM -lyX -iTB -imH -nxM -mTX -hjM -qUe -ljL -fFn -vmu -kQY -vmu -ueV -ljL -ljL -wHg -lub -dIl -azB -bbs -bWK -bWK -xJw -kHr -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(150,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -xMq -xMq -mdZ -veL -agt -ryO -mdZ -sxW -doJ -hzk -doJ -nPU -aTm -fYh -oXe -miR -gGJ -vUi -dMS -xpd -gsW -czm -fpb -fLa -fwB -fwB -fwB -fwB -btU -jgV -qnv -iyF -xyG -jnY -eQU -ako -xuQ -qXO -pGS -bhw -iLU -osO -bmM -pKu -xVZ -lhQ -ffQ -xDb -clI -iDt -pDR -iDt -xMq -xMq -xMq -xMq -xMq -nxM -lAA -lAA -lAA -nxM -chC -hjM -eJx -dXP -ljL -ljL -ljL -xJH -kMv -ljL -ljL -wHg -lub -pkY -fiA -ncl -bWK -bWK -lub -mSL -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(151,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -xMq -xMq -mdZ -bmw -oRw -mdZ -mdZ -fzK -fzK -fzK -vKC -fzK -fzK -bjZ -tAe -mgR -qYo -hxg -dMS -eHW -dMS -fUn -mQk -fwB -fwB -fwB -fwB -fwB -btU -bAU -olO -dYr -kPC -rFl -sMD -uHV -orP -gZb -xwu -cAr -pqX -jWd -htg -oQY -oQY -oQY -cTt -xDb -xMq -iDt -mJZ -frt -iDt -iDt -xMq -xMq -xMq -xMq -gjq -eJf -gjq -ilN -qck -hjM -rgE -rgE -amg -amg -amg -rkN -sPV -amg -amg -uBA -fKr -vjk -one -bWK -bWK -bWK -jKy -mSL -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(152,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -xMq -xMq -mdZ -jXD -mCX -let -let -kWs -uFW -nNQ -nNQ -pNp -xTX -nGq -qCz -gQj -mKd -dMS -dMS -kbU -dMS -fvs -mQk -dbb -fwB -fwB -fwB -fwB -btU -qvt -vae -dYr -meX -bFk -dOZ -ako -fDH -jeI -pGS -cDb -dYn -jWd -oQY -oQY -soA -pNy -nid -xDb -xMq -xMq -xMq -iDt -scw -pDR -iDt -xMq -gjq -gjq -gjq -sqW -gjq -nxM -ueD -aUD -eJf -upH -fTG -hkp -tnI -qNx -fmA -ndH -qWK -oDn -aiJ -jPo -byH -bos -bWK -bWK -neu -hjR -vNM -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(153,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -xMq -xMq -mdZ -bEp -tGZ -tGZ -gVn -pFm -idE -uzc -iHy -rVO -xGZ -ukw -scH -vVh -qEC -jre -tjs -vbz -jre -cwa -pAM -hun -fwB -fwB -fwB -fwB -btU -pKf -vSH -dlc -fPN -uVz -kDw -ako -wlF -lYR -pGS -cDb -ydU -wGX -oQY -hrZ -wsF -jUB -jUB -xDb -xDb -xMq -udC -iDt -iDt -scw -iDt -gqG -eJf -eJf -eJf -eJf -eJf -eJf -myZ -eJf -ccZ -vNI -tOy -uRV -wCK -iOZ -jgl -nmL -rIF -uBA -rFI -rZE -bWK -rZE -bWK -bWK -lub -kHr -lbs -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(154,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -xMq -mdZ -vVk -tGZ -tGZ -gVn -fzK -dmD -wng -xEx -jjW -jre -tRA -jre -dLk -jre -jre -nNe -jre -jre -lOt -nep -ksK -fwB -fwB -fwB -fwB -btU -bWB -ksM -tHe -jUB -jUB -jUB -xDb -xDb -xDb -xDb -jLK -svk -nQd -oeT -hzz -lGj -jUB -gyY -tCM -xDb -udC -udC -udC -iDt -iDt -scw -scw -myZ -myZ -myZ -eJf -myZ -myZ -myZ -myZ -gdg -kpC -eMU -vgM -syn -fDe -fHQ -nmL -qpr -wHg -pYM -eDj -rEx -eDj -bWK -bWK -lub -kHr -iDt -hpx -scw -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(155,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -xMq -mdZ -mdZ -kgs -tGZ -gVn -jre -jre -jre -jre -jre -jre -xjj -jre -jre -jre -lcG -lqs -jre -xhz -kAD -wYs -ksK -ksK -fwB -fwB -btU -btU -btU -btU -btU -jUB -oXs -iSs -vMf -tdL -xDb -qxv -osr -wiD -dRz -pwn -pwn -pwn -jUB -jse -rpU -xDb -udC -udC -udC -udC -iDt -iDt -iDt -eJf -myZ -myZ -myZ -myZ -myZ -myZ -eJf -eJf -upH -uuw -jDi -nzT -sIA -lVw -dDy -nOS -wHg -pYM -slD -tNi -asM -knX -mFv -rbY -ffe -alM -alM -sbZ -alM -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(156,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -xMq -xMq -mdZ -mdZ -vxx -eaB -fwf -tlr -tlr -cND -fRG -fRG -tlF -cND -fRG -fRG -fRG -tlF -jre -mrX -lYY -boK -ksK -fuH -fuH -fuH -fuH -btU -fuH -fuH -fuH -jUB -srM -skU -rHI -non -nMc -sfy -uCe -xKe -dRz -pwn -oCs -aru -rqY -tAg -ukV -xDb -udC -udC -udC -udC -udC -udC -gqG -eJf -eJf -eJf -eJf -eJf -myZ -eJf -eJf -buW -kpC -kDb -nqX -qoZ -sIA -lVw -jPu -ffe -ffe -ffe -ffe -bnL -ffe -ffe -ffe -ffe -heH -gNh -alM -noQ -alM -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(157,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -xMq -xMq -mdZ -iQf -xqA -jre -jre -jre -diH -jre -jre -jre -eXU -jre -jre -jre -wSs -jre -jre -jre -jre -jre -fuH -fuH -fuH -fuH -fuH -xMq -xMq -xMq -jUB -ksH -yaJ -uOq -vXD -xDb -qSN -atl -oQY -jfz -jUB -cAM -nNB -qkB -vqH -xDb -xDb -udC -udC -udC -udC -udC -udC -udC -udC -nfG -gjq -gjq -alM -gbL -wJD -eJf -eJf -kpC -wlZ -jes -qdx -sIA -klI -dgZ -ffe -bPn -pOV -alM -tRd -oxO -alM -fWO -alM -jrk -oxO -alM -iCD -alM -alM -alM -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(158,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -xMq -xMq -mdZ -mru -iAa -mdZ -xMq -jre -diH -jre -rYT -lmB -cbS -jre -gtj -dQN -wSs -wSs -wSs -wSs -wSs -jre -fuH -fuH -fuH -fuH -xMq -xMq -udC -xMq -xDb -jUB -aVU -jUB -xDb -xDb -huH -qWD -oQY -nvX -jUB -rOH -lPC -vpX -xDb -xDb -xMq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -wCo -oxO -wCo -eJf -nfG -upH -cYi -qqh -naX -sIA -rtt -rgB -ffe -nsp -fWO -tRd -tRd -jOp -oxO -oxO -alM -alM -oxO -oxO -oxO -oxO -fWO -alM -alM -pVH -pVH -pVH -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(159,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -xMq -mdZ -qNc -lvu -mdZ -xMq -jre -uOS -gAM -oTx -wDB -vyj -jre -vFg -vFg -vFg -xwx -vTp -jre -irz -jre -fuH -fuH -fuH -xMq -xMq -udC -udC -xMq -iYH -qsG -aqp -wbe -jUB -jGN -gHN -qWD -uDF -pTJ -goF -fRz -wwK -tcJ -xDb -xMq -xMq -xMq -udC -udC -udC -udC -udC -udC -udC -udC -udC -xMq -alM -jqc -alM -iDt -ffe -kpC -awL -sIA -sIA -sIA -lVw -eAs -ffe -oxO -alM -tRd -alM -alM -iry -oxO -lms -alM -oxO -iry -dSX -oxO -oxO -nsp -oyC -oNP -aee -pVH -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(160,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -xMq -tiY -aIB -aIB -tiY -xMq -jre -lvF -jre -sDs -sib -cHR -jre -kWa -djH -jre -jre -jre -jre -uiv -jre -xMq -xMq -xMq -udC -udC -udC -udC -udC -xDb -xtR -ukz -gPR -bwe -cxQ -taL -wgI -ueE -wDk -jUB -vjJ -bPE -ffe -ffe -ffe -ffe -xMq -xMq -udC -udC -udC -udC -udC -udC -xMq -xMq -xMq -alM -xFU -alM -apB -ffe -sXb -soF -aSS -isb -dcE -sXQ -ckN -ffe -dcd -alM -tRd -alM -alM -fuD -oxO -eEY -oxO -fWO -jQi -alM -alM -alM -alM -pVH -pVH -pVH -pVH -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(161,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -rcY -scw -scw -scw -iDt -xMq -jre -jre -jre -jre -jre -jre -jre -jew -aCo -hMw -jre -xMq -jre -nmg -jre -iDt -udC -udC -udC -udC -udC -udC -udC -xDb -pPD -tIu -toG -jUB -xmB -anK -nrC -xDb -bCx -ffe -ffe -ffe -ffe -dOC -dFD -alM -alM -alM -alM -alM -alM -udC -udC -xMq -xMq -xMq -alM -alM -oxO -dSX -paF -ffe -ioz -iMf -hSZ -rkt -tCF -jMY -rUT -ffe -alM -alM -tRd -alM -alM -alM -dSX -bXf -alM -nsp -wsh -alM -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(162,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -rcY -iDt -scw -scw -iDt -iDt -iDt -xMq -lvt -lvt -xMq -xMq -jre -jre -jre -jre -jre -xMq -tkG -aIB -tkG -iDt -iDt -udC -udC -udC -udC -udC -udC -xDb -xDb -xDb -xDb -xDb -xDb -hjV -ezu -xDb -slx -ffe -oxO -dcd -oxO -oxO -oxO -jXl -ipw -dSX -oxO -wbf -alM -alM -alM -alM -alM -alM -alM -mLo -eEY -oxO -dcd -ffe -wRO -ffe -ffe -ffe -ffe -ffe -ffe -ffe -oxO -oxO -tRd -alM -udC -alM -alM -alM -alM -alM -alM -alM -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(163,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -mJZ -scw -iDt -scw -iDt -iDt -iDt -rcY -lvt -lvt -xMq -udC -udC -udC -udC -udC -udC -udC -iDt -iDt -scw -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -xMq -xMq -xMq -xMq -ozM -nKl -cgR -tBW -vRY -ffe -oxO -oxO -oxO -oxO -oxO -nsp -oxO -oxO -oxO -oxO -oxO -iry -jQi -oxO -oxO -oxO -oxO -oxO -oxO -oxO -oxO -oxO -nPI -wjy -nPI -nPI -nPI -nPI -alM -alM -alM -alM -cYT -alM -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(164,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -gjq -gjq -gjq -gjq -gjq -gjq -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -rcY -tSs -iDt -scw -scw -iDt -cCb -syw -kNC -kNC -gIl -iDt -udC -udC -udC -udC -udC -udC -xMq -hpx -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -xMq -xMq -fWw -nKl -ghx -ghx -ghx -wFe -ffe -ffe -ffe -oxO -oxO -oxO -oxO -oxO -oxO -bPn -oxO -nsp -oxO -oxO -oxO -kOO -oxO -oxO -oxO -iry -bPn -oxO -oxO -oxO -oxO -fLh -iry -jXl -bgs -rlf -nPI -nPI -nPI -tRd -alM -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(165,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -gjq -gjq -gjq -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -xMq -iDt -scw -iDt -iDt -scw -iDt -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -xMq -xMq -scw -scw -scw -xMq -udC -udC -udC -udC -udC -udC -udC -udC -xMq -iwV -ghx -ghx -ghx -ghx -wFe -xMq -xMq -alM -oxO -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -nPI -dSX -alM -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(166,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -gjq -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -iDt -iDt -rcY -iDt -iDt -scw -iDt -iDt -iDt -iDt -iDt -cCb -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -xMq -keA -keA -keA -xMq -udC -udC -udC -udC -udC -udC -udC -udC -scw -nDw -lFp -ghx -ghx -xVT -blf -xMq -xMq -alM -oxO -ffe -lVs -abe -abe -biI -abe -eOS -qLY -eGN -lZX -dPy -qLY -hOU -wva -abe -aRf -abe -abe -aRf -rsC -abe -aRf -abe -abe -aRf -wyU -abe -rnQ -nPI -wzg -alM -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(167,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -xMq -iDt -iDt -iDt -qpH -iDt -scw -iDt -scw -scw -iDt -scw -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -xMq -xuo -xuo -xuo -xMq -udC -udC -udC -udC -udC -udC -udC -udC -xMq -xMq -nDw -tUV -tUV -blf -iDt -scw -xMq -alM -oxO -ffe -qGe -abe -cku -uUn -xNa -eOS -qLY -vIk -tsa -wHb -qLY -abe -jSW -abe -aRf -jSW -abe -aRf -abe -abe -aRf -abe -abe -aRf -abe -abe -rnQ -nPI -alM -alM -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(168,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -xMq -xMq -xMq -iDt -iDt -rcY -iDt -scw -iDt -scw -scw -scw -iDt -iDt -scw -iDt -iDt -scw -iDt -cCb -iDt -udC -udC -udC -psb -sRp -gUQ -sRp -psb -udC -udC -udC -udC -udC -udC -udC -udC -udC -xMq -xMq -xMq -xMq -xMq -psb -iDt -xMq -alM -oxO -ffe -viR -abe -abe -bOT -abe -eLb -qLY -tkP -fPv -jKI -qLY -giP -abe -abe -bhj -abe -abe -bhj -abe -abe -bhj -abe -abe -bhj -abe -dAu -rnQ -nPI -alM -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(169,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -xMq -xMq -xMq -xMq -xMq -xMq -iDt -iDt -iDt -tBs -baj -tBs -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -scw -iDt -hpx -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -iDt -iDt -iDt -alM -nsp -ffe -qLY -ctF -uHS -ujp -abe -ctF -qLY -qLY -oXr -wpv -qLY -lMu -bUK -oQo -nmj -ucl -aHz -dIS -gBb -dJx -htp -eWh -yjA -tOf -vPD -lqU -mDg -nPI -alM -alM -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(170,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -xMq -xMq -tBs -tBs -tBs -tBs -tBs -iDt -iDt -vRz -wMj -vRz -iDt -wkV -tej -kNC -tej -tej -tej -kNC -tej -cNh -iDt -iDt -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -iDt -iDt -alM -oxO -ffe -pXj -cZT -qSE -qLN -cZT -cZT -pXj -qLY -wZv -axD -qLY -hez -jAF -fma -fTk -roA -fma -fTk -iDG -fma -vlI -xhv -fma -vlI -rJe -fma -ffe -nPI -ipw -alM -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(171,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -xMq -tBs -uan -eLl -xrS -tBs -tBs -tBs -tBs -tNA -tBs -tBs -tBs -iDt -kOi -rbZ -rbZ -rbZ -pgo -iDt -hNF -iDt -iDt -iDt -iDt -iDt -iDt -cCb -iDt -udC -udC -udC -xMq -udC -udC -udC -udC -udC -udC -udC -udC -udC -xMq -xMq -iDt -alM -jCr -ffe -nAf -pMF -iMV -hRC -liY -pMF -sfv -xyn -dmj -pMF -fwC -asb -ega -xCh -kaW -pMF -ihN -doK -pMF -rjT -rXD -pMF -tiQ -lNo -pMF -clW -rkl -nPI -oxO -alM -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(172,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -xMq -tBs -pwv -sAu -nEX -tBs -nHQ -oik -wMj -vGJ -uDl -feQ -tBs -kOi -efM -ebB -tuk -ebB -efM -pgo -rcY -iDt -scw -iDt -iDt -scw -iDt -iDt -iDt -iDt -udC -scw -xMq -xMq -xMq -udC -udC -udC -udC -udC -udC -xMq -xMq -iDt -iDt -alM -oxO -ffe -rKZ -lQN -tUN -dtU -niy -gtF -ouP -gLS -cyh -cXX -bsV -cyh -wXX -bsV -cyh -dQZ -bsV -cyh -izA -bsV -cyh -lBZ -bsV -cyh -odd -xns -ffe -nPI -aaq -alM -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(173,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -xMq -tBs -dHJ -glk -qDF -tBs -iXC -nOw -iig -baR -kAn -kMN -tBs -mFR -ebB -ebB -uXk -uXk -ebB -cSj -cnj -scw -iDt -iDt -scw -iDt -iDt -scw -iDt -iDt -iDt -iDt -iDt -iDt -xMq -xMq -xMq -udC -xMq -xMq -xMq -xMq -iDt -iDt -iDt -alM -oxO -ffe -hSp -llw -wPd -nWK -wPd -wPd -ygE -qLY -prH -bjn -qbq -iar -xqu -oir -slp -fjt -wgr -xur -reT -rxM -aLA -bnh -cNI -tWd -hJi -wGN -mDg -pQG -tRd -alM -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(174,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -xMq -tBs -tBs -wDc -tBs -tBs -tJE -tBs -tBs -rtp -tBs -tBs -tBs -ebB -efM -ebB -efM -uXk -efM -awy -rcY -iDt -iDt -acN -scw -acN -iDt -iDt -iDt -scw -iDt -iDt -iDt -iDt -scw -iDt -psb -xMq -xMq -ijY -iDt -iDt -iDt -iDt -iDt -alM -oxO -ffe -wCn -vHq -aZk -pMF -pMF -rdl -iQM -qLY -abe -abe -srE -abe -abe -srE -abe -abe -srE -abe -abe -srE -abe -abe -srE -abe -abe -lfs -pjr -nPI -nPI -alM -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(175,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -tBs -bxJ -bNx -tBs -eTa -lns -tBs -bpT -vMl -kTk -hhz -qEJ -tJD -yav -ebB -yav -ebB -awy -iDt -qau -iDt -xMq -wrX -xak -xCj -xMq -udC -udC -iDt -scw -iDt -vYN -xMq -iDt -iDt -iDt -xMq -xMq -xMq -iDt -iDt -iDt -iDt -iDt -alM -jOp -ffe -hfL -vHq -obZ -dIA -rSu -qLY -qLY -qLY -abe -abe -pqM -abe -jSW -pqM -abe -abe -pqM -abe -abe -pqM -abe -abe -pqM -abe -abe -abe -pjr -tRd -iWM -alM -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(176,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -tBs -tix -wxw -moB -moB -wta -tBs -nXH -acM -kTk -gSV -qEJ -wrX -ibM -ibM -wrX -ibM -ibM -wrX -wrX -xMq -xMq -wrX -qCJ -wrX -xMq -xMq -udC -udC -udC -udC -alz -xMq -xMq -xMq -iDt -scw -iDt -xMq -iDt -iDt -iDt -iDt -alM -alM -oxO -ffe -ffe -iwx -ffe -ffe -xwd -qLY -vgf -qLY -abe -abe -pqM -aey -hWu -pqM -abe -abe -pqM -abe -hWu -vSq -abe -abe -pqM -abe -hWu -wnB -pjr -tRd -iWM -alM -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(177,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -tBs -tix -tBs -tBs -tBs -tBs -tBs -ceO -uII -kTk -hhz -qEJ -wte -dzy -bWZ -foS -bWZ -oTA -biX -wrX -wrX -wrX -wrX -dTv -wrX -wrX -xMq -udC -udC -udC -udC -udC -udC -udC -xMq -xMq -iDt -iDt -iDt -iDt -iDt -iDt -iDt -alM -wOH -oxO -oxO -ggS -nyJ -nSK -ffe -ffe -ffe -rbf -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -ffe -tRd -iWM -alM -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(178,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -tBs -tix -tBs -wgu -dlB -jCL -qEJ -qEJ -djD -qEJ -qEJ -qEJ -tpz -huy -oTA -rpK -oTA -epB -oTA -wrX -wrX -tHN -nBe -tiV -mjQ -wrX -xMq -xMq -udC -udC -udC -udC -udC -udC -udC -xMq -hpx -iDt -iDt -scw -iDt -iDt -iDt -alM -dSX -oxO -oxO -oxO -nyJ -iWM -wEL -oxO -oxO -oxO -oxO -oxO -oxO -oxO -oxO -lms -iry -cGu -oxO -jQi -iry -rpa -oxO -nsp -kce -upK -oxO -oxO -dcd -oxO -tRd -dmU -alM -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(179,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -tBs -tBs -tBs -hgY -tBs -pIj -gAD -quB -jmR -vrC -hbR -oxa -qEJ -cuL -sAY -dtC -bAF -qeR -bAF -nJy -oTA -cMj -xNE -gCS -pwC -wGv -huJ -wrX -xMq -xMq -udC -udC -udC -udC -udC -udC -udC -xMq -xMq -xMq -iDt -iDt -iDt -iDt -nfG -alM -alM -alM -oxO -oxO -tNJ -tNJ -nyJ -nyJ -nyJ -nyJ -nyJ -nyJ -nyJ -nyJ -nyJ -nyJ -nyJ -nyJ -nyJ -nyJ -nyJ -nyJ -nyJ -nyJ -nyJ -nPI -nPI -nPI -nPI -nPI -nPI -geW -alM -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(180,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -tBs -dXb -lzf -czt -tBs -deP -peA -pQw -cBP -wAv -fjH -dNB -gQO -oCm -jHk -bWZ -amt -xXE -sab -pcB -tSy -uJt -uJt -hxI -nqB -bkq -cMt -wrX -xMq -xMq -udC -udC -udC -udC -udC -udC -udC -udC -xMq -xMq -xMq -xMq -iDt -scw -iDt -lRI -eNh -bEh -oxO -vAx -oLa -pvh -oxO -oxO -oxO -oxO -iKG -oxO -oxO -oxO -oxO -oxO -oxO -oxO -oxO -ipw -oxO -oxO -nsp -oxO -iCq -iry -dSX -alM -alM -alM -alM -alM -alM -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(181,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -xMq -tBs -xgH -kBf -cSR -tBs -jxu -bDH -rYt -rrf -ejq -jvs -qEJ -qEJ -rdO -mHJ -oTA -oTA -syh -oTA -lqj -oTA -uJt -uJt -rcD -smC -oHG -wrX -wrX -xMq -xMq -udC -udC -udC -udC -udC -udC -udC -udC -udC -xMq -xMq -iDt -iDt -iDt -nfG -alM -alM -alM -alM -alM -alM -alM -alM -iry -oxO -oxO -iKG -cma -qUL -oxO -iry -alM -alM -alM -alM -alM -alM -alM -alM -alM -alM -alM -alM -alM -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(182,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -xMq -tBs -iUm -tKm -wMj -tBs -vcO -jsC -hwW -qEJ -qEJ -qEJ -qEJ -cBB -dtC -smC -iLt -uJt -uJt -uJt -sHh -uJt -uJt -uJt -uJt -smC -gyf -wrX -xMq -xMq -xMq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -xMq -psb -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -ffe -ffe -ffe -ffe -meH -uWn -ffe -ffe -ffe -ffe -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(183,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -xMq -xMq -tBs -rRc -rRc -mku -tBs -tBs -tBs -fCw -wrX -hzd -aWw -aIe -rbD -uJq -smC -ygp -hMr -aUO -aUO -sQv -aUO -aUO -aUO -aUO -oHV -gQd -wrX -xMq -xMq -xMq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -xMq -xMq -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -iDt -kAH -mHu -juE -sdl -qRO -fgx -cAB -wQi -wQi -uIf -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(184,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -xMq -xMq -tBs -ccV -wMj -fsO -tBs -tWc -tBs -jFF -wrX -umF -cUk -aIe -eqH -dzy -ewC -iLt -uJt -uJt -uJt -wvl -uJt -uJt -uJt -uJt -oTA -kfl -wrX -xMq -xMq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -xMq -xMq -iDt -xMq -iDt -iDt -xnC -iDt -iDt -iDt -iDt -kAH -mHu -jlj -tUo -aQn -hFb -vqv -wQi -wQi -uIf -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(185,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -xMq -xMq -xMq -tBs -nTv -mBE -iUm -bEN -pmn -tBs -tBs -tBs -iIN -giv -wrX -wrX -qDv -jcP -oTA -oTA -epB -oTA -uko -oTA -uJt -uJt -rcD -oTA -mHX -wrX -xMq -xMq -udC -udC -udC -udC -udC -tjo -tjo -tjo -udC -udC -udC -udC -udC -xMq -xMq -xMq -ebX -kNC -uIf -uIf -uIf -uIf -uIf -uIf -jxJ -qKt -tUo -aQn -hFb -vqv -qiN -pkP -uIf -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(186,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -xMq -xMq -xMq -tBs -tUx -nou -nou -tBs -wMj -hPc -wMj -tBs -lry -oTA -hlS -wrX -lAF -rbD -oTA -bAF -irQ -bAF -bYm -bMe -uJt -uJt -oTA -oTA -weK -wrX -xMq -xMq -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -rcY -iDt -uIf -nIt -nIt -nIt -nIt -inh -mWj -aNu -tPG -xEQ -qaL -vqv -brt -brt -uIf -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(187,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -xMq -xMq -tBs -tBs -goB -goB -tBs -tBs -aVi -vGJ -tBs -etH -etH -eyU -wrX -dvh -bsu -iih -sab -nMP -sab -qYh -oTA -avo -tTw -hKj -gHE -wrX -wrX -xMq -xMq -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -rcY -iDt -uIf -stb -pOL -pOL -pOL -opD -mxc -hFb -hFb -fcj -mEL -vqv -fkN -fkN -uIf -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(188,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -xMq -xMq -iDt -gFX -xuo -xuo -xuo -tBs -jOe -qTJ -tBs -cPq -etH -etH -wrX -wrX -fhJ -rbD -oTA -syh -oTA -syh -oTA -wrX -wrX -vaO -slU -wrX -xMq -xMq -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -rcY -iDt -uIf -tKn -pOL -pOL -pOL -opD -jGR -hFb -mzb -rEj -rRl -vqv -mpS -vIZ -uIf -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(189,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -scw -iDt -gFX -xuo -lvt -lvt -tBs -goB -goB -tBs -wrX -wrX -wrX -wrX -wrX -pye -dtC -pOC -oTA -uXr -xBO -aZL -wrX -wrX -wrX -wrX -wrX -xMq -xMq -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -rcY -iDt -uIf -jcC -pOL -pOL -pOL -opD -jGR -hFb -hFb -fcj -rRl -vfI -vUY -wsp -uIf -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(190,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -iDt -xuo -xuo -lvt -lvt -gFX -lvt -lvt -lvt -lvt -lvt -lvt -wrX -wrX -wrX -daj -wrX -crg -wrX -wrX -wrX -wrX -xMq -xMq -xMq -xMq -xMq -xMq -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -rcY -iDt -uIf -odm -odm -odm -odm -nqy -jGR -fcj -fcj -fcj -rRl -uXx -bnZ -hDf -uIf -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(191,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -iDt -iDt -iDt -lvt -lvt -gFX -lvt -lvt -lvt -lvt -lvt -lvt -lvt -xMq -wrX -wQx -bWp -jja -wrX -xMq -xMq -xMq -xMq -xMq -xMq -xMq -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -rcY -iDt -egf -egf -egf -egf -tdY -tdY -vvy -gcy -jJG -jJG -sWx -qZN -akk -qZN -qZN -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(192,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -scw -iDt -lvt -lvt -lvt -lvt -lvt -lvt -lvt -lvt -lvt -lvt -xMq -wrX -wrX -wrX -wrX -wrX -xMq -xMq -xMq -xMq -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -rcY -iDt -inb -fLZ -gWZ -wHd -mLK -wHd -vcH -gxn -kvN -qSk -oFd -pjc -rzD -nbM -qZN -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(193,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -iDt -iDt -iDt -iDt -lvt -lvt -lvt -lvt -lvt -lvt -lvt -lvt -xMq -xMq -xMq -xMq -xMq -xMq -xMq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -rcY -iDt -inb -sDA -mYd -mIC -aWs -vTB -qSk -qSk -rEh -qSk -jwj -qZN -dJy -pNB -qZN -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(194,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -iDt -iDt -iDt -lvt -lvt -lvt -lvt -lvt -lvt -iDt -iDt -iDt -xMq -xMq -xMq -xMq -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -rcY -iDt -inb -wRv -nBV -iao -iPD -iao -eDX -qSk -xtS -rhY -mwK -pjc -gmb -hac -qZN -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(195,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -iDt -iDt -iDt -lvt -lvt -iDt -iDt -iDt -iDt -scw -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -rcY -iDt -bgx -bgx -bgx -bgx -txk -bgx -bgx -tmb -bgx -uIf -uIf -qZN -qZN -qZN -qZN -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(196,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -scw -iDt -iDt -iDt -iDt -iDt -iDt -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -vzD -vzD -vzD -jdd -jCl -jCl -jCl -jCl -qXY -coH -vzD -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(197,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -scw -scw -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -vzD -yap -qXY -jCl -jCl -jCl -jCl -jCl -jCl -iVY -vzD -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(198,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -vzD -yap -jCl -bFq -axu -dVq -jCl -jCl -jCl -iVY -vzD -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(199,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -vzD -vzD -vzD -vzD -vzD -vzD -vzD -vzD -vzD -vzD -vzD -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(200,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(201,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(202,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(203,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(204,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(205,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -udC -udC -udC -udC -udC -udC -udC -udC -udC -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(206,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(207,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(208,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(209,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(210,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(211,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(212,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(213,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(214,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(215,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(216,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(217,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(218,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(219,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(220,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(221,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(222,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(223,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(224,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(225,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(226,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(227,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(228,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(229,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(230,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(231,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(232,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(233,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(234,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(235,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(236,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(237,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(238,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(239,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(240,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(241,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(242,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(243,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(244,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(245,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(246,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(247,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(248,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(249,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(250,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(251,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(252,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(253,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(254,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} -(255,1,2) = {" -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -tjo -"} - -(1,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(2,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(3,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(4,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(5,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(6,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(7,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(8,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(9,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(10,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(11,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -fQe -piy -piy -eNO -eNO -eNO -eNO -eNO -eNO -eNO -eNO -eNO -kED -eNO -eNO -kED -eNO -eNO -eNO -eNO -eNO -eNO -eNO -eNO -eNO -iLq -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(12,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -aaQ -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -gHM -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(13,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -aaQ -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -gHM -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(14,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -aaQ -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -iwJ -sEB -sEB -iwJ -sEB -sEB -sEB -sEB -sEB -bCQ -lab -sEB -sEB -gHM -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(15,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -ciH -sEB -sEB -sEB -sEB -iwJ -bCQ -sEB -sEB -lab -iwJ -sEB -sEB -sEB -sEB -sEB -sEB -sEB -iwJ -sEB -bCQ -sEB -sEB -sEB -iwJ -gHM -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(16,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -ili -sEB -sEB -sEB -bCQ -sEB -sEB -sEB -sEB -sEB -sEB -lab -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -gHM -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(17,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -ciH -sEB -uVf -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -loW -loW -sEB -lab -sEB -sEB -bCQ -sEB -sEB -uDN -sEB -sEB -gHM -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(18,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -ciH -sEB -sEB -bCQ -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -hnn -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(19,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -ciH -sEB -sEB -oWg -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -shs -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(20,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -ciH -sEB -sEB -eHc -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -hnn -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(21,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -ciH -sEB -uVf -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -wFJ -oPW -sEB -uDN -sEB -sEB -eHc -sEB -sEB -lab -sEB -sEB -hnn -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(22,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -aaQ -sEB -sEB -sEB -eHc -sEB -sEB -sEB -sEB -sEB -sEB -uDN -ydI -rNU -rNU -ydI -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -gHM -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(23,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -aaQ -sEB -sEB -sEB -sEB -iwJ -eHc -sEB -sEB -uDN -iwJ -sEB -uhx -jeB -jeB -uhx -sEB -sEB -iwJ -sEB -eHc -sEB -sEB -sEB -uVf -gHM -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(24,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -aaQ -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -uhx -cJt -cJt -uhx -sEB -sEB -sEB -sEB -sEB -eHc -uDN -sEB -sEB -gHM -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(25,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -sxy -npX -npX -npX -rOj -rOj -rOj -rOj -rOj -rOj -npX -npX -ydI -tKZ -bOI -ydI -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -gHM -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(26,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -ydI -aXi -aXi -ydI -bio -bio -sEB -sEB -sEB -sEB -sEB -sEB -sEB -gHM -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(27,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -uhx -mBg -bPP -ydI -ydI -ydI -sEB -brm -ttE -rOj -rOj -rOj -rOj -hpv -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(28,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -uhx -qjj -fsv -kfe -bXU -ydI -rOj -jwa -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(29,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bUb -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -jhM -bln -bln -bln -bln -bln -bln -bln -uhx -kLK -wxA -gQb -xiU -uhx -bln -bln -bln -cUa -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(30,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -sEB -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -uhx -kLK -fsv -gQb -ucx -uhx -bln -bln -bln -vKa -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(31,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -sEB -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -uhx -mpO -fsv -gQb -qtz -uhx -bln -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(32,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -sEB -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -sEB -vpI -sEB -bln -bln -bln -bln -bln -bln -ydI -hVe -fsv -gQb -rjB -uhx -bln -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(33,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -sEB -bln -bln -bln -bln -sEB -bln -sEB -vpI -sEB -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -ydI -fUR -uHi -fUR -ydI -bln -bln -bln -bln -bln -uhx -kLK -fsv -gQb -kMM -uhx -bln -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(34,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -sEB -sEB -sEB -sEB -sEB -bln -sEB -ydI -fUR -rhE -fUR -ydI -bln -bln -bln -bln -bln -bln -bln -bln -bln -rvE -ack -cJt -iMu -ydI -bln -bln -bln -bln -bln -uhx -kLK -fsv -gQb -nFf -uhx -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(35,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -hsI -hsI -hsI -hsI -hsI -hsI -hsI -hsI -hsI -hsI -hsI -ack -cJt -eWF -rvE -bln -bln -bln -bln -bln -bln -bln -bln -bln -ydI -fUR -rTD -ppN -ydI -bln -bln -bln -bln -bln -uhx -lJj -piQ -gQb -fof -ydI -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(36,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -hsI -qNk -qNk -qNk -qNk -qNk -qNk -qNk -qNk -qNk -hsI -ppN -bRt -fUR -ydI -bln -bln -bln -bln -bln -bln -bln -sEB -uhx -uhx -rwW -fdO -uiK -ydI -bln -bln -bln -bln -bln -uhx -lJj -fsv -yev -fNj -rvE -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(37,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -sEB -hsI -qNk -qNk -qNk -qNk -qNk -qNk -qNk -qNk -qNk -hsI -lWU -tEG -rwW -uhx -uhx -sEB -bln -bln -bln -bln -bln -sEB -skc -cJt -qYz -gFD -wOy -uhx -bln -bln -bln -bln -bln -uhx -lJj -fsv -tEG -rwW -uhx -uhx -sEB -bln -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(38,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -sEB -hsI -qNk -qNk -qNk -qNk -qNk -qNk -qNk -qNk -qNk -hsI -qjj -abu -dDp -cJt -jMw -sEB -bln -bln -bln -bln -bln -sEB -uhx -uhx -fHb -fdO -wOy -uhx -bln -bln -bln -bln -bln -ydI -aST -fsv -tEG -uQS -cJt -dBj -wWs -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(39,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -sEB -hsI -qNk -qNk -qNk -qNk -qNk -qNk -qNk -qNk -qNk -hsI -qjj -tEG -fHb -uhx -uhx -sEB -bln -bln -bln -bln -bln -bln -uhx -dgk -bPP -xuz -tvw -uhx -bln -bln -bln -bln -bln -uhx -lJj -fsv -tEG -fHb -uhx -uhx -sEB -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(40,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -hsI -qNk -qNk -qNk -qNk -gkE -qNk -qNk -qNk -qNk -hsI -qjj -ohs -bPP -cSb -uhx -bln -bln -bln -bln -bln -bln -bln -uhx -eiu -fsv -fsv -tvw -uhx -bln -bln -bln -bln -bln -uhx -lJj -fsv -oAk -bPP -cSb -uhx -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(41,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -hsI -qNk -qNk -qNk -qNk -qNk -qNk -qNk -qNk -qNk -hsI -qjj -wfs -fsv -jDY -uhx -bln -bln -bln -bln -bln -bln -bln -uhx -joB -fsv -fsv -tvw -uhx -bln -bln -bln -bln -bln -uhx -lJj -fsv -fsv -fsv -jDY -uhx -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(42,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -hsI -qNk -qNk -qNk -qNk -qNk -qNk -qNk -qNk -qNk -hsI -dtY -wfs -fsv -tEG -uhx -bln -bln -bln -bln -bln -bln -bln -uhx -eVn -fsv -fsv -tvw -uhx -bln -bln -bln -bln -bln -uhx -lJj -fsv -fsv -fsv -ncp -uhx -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(43,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -sEB -hsI -qNk -qNk -qNk -qNk -qNk -qNk -qNk -qNk -qNk -hsI -qjj -uDR -dhJ -gaa -uhx -bln -bln -bln -bln -bln -bln -bln -uhx -yfb -dhJ -iQr -kYQ -uhx -bln -bln -bln -bln -bln -uhx -lJj -fsv -kyO -dhJ -vEu -uhx -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(44,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -hsI -qNk -qNk -qNk -qNk -rCb -qNk -qNk -qNk -qNk -hsI -qjj -jPK -rwW -uhx -uhx -sEB -bln -bln -bln -bln -bln -sEB -uhx -uhx -fHb -fdO -kYQ -uhx -bln -bln -bln -bln -bln -uhx -lJj -fsv -tEG -fHb -uhx -uhx -sEB -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(45,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -hsI -hsI -hsI -vLl -fxe -nsi -hJL -vLl -vLl -vLl -hsI -wAU -mmo -dDp -cJt -jMw -sEB -bln -bln -bln -bln -bln -sEB -lAC -cJt -sde -mXm -kYQ -uhx -bln -sEB -sEB -sEB -bln -uhx -lJj -fsv -tEG -jcw -cJt -sQm -sEB -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(46,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -sEB -hsI -ssG -wQM -wQM -cBr -wQM -wQM -vGu -wUw -wZL -jPK -fHb -uhx -uhx -sEB -bln -bln -bln -bln -bln -sEB -uhx -uhx -rwW -fdO -gdx -ydI -bln -uhx -wet -uhx -bln -ydI -cKD -fsv -tEG -rwW -uhx -uhx -sEB -bln -bln -bln -bln -ozo -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(47,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -vLl -caw -sjc -sjc -vzW -vzW -nNY -ndi -bGn -xYF -ygX -exl -uhx -bln -bln -bln -bln -scJ -bln -wvh -bln -bln -uhx -jJa -nXR -bFP -ydI -uhx -uhx -cJt -uhx -uhx -ydI -lJj -fsv -oAk -exl -uhx -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(48,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -hsI -wAb -eUK -oPX -uqC -fvn -rJz -mCr -hsI -ssB -wfs -efP -ydI -ydI -ydI -uhx -uhx -uhx -uhx -uhx -ydI -ydI -ydI -std -fsv -aDN -fUR -cSb -fHb -fnL -rwW -vIm -fUR -dnD -fsv -fsv -bGL -ydI -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(49,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -hsI -hsI -hsI -hsI -lJO -lJO -lJO -lJO -lJO -uXY -gDO -nWP -qCE -hlJ -rDR -rDR -rDR -rDR -rDR -rDR -sAV -hlJ -rDR -ogM -gDO -gDO -nIf -bxy -jlf -tJa -rDR -wda -rbV -rbV -wxA -fsv -fMJ -rvE -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(50,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -sEB -sEB -sEB -mGf -lJO -sbD -qhO -eUf -aHL -bFL -oUr -uQL -emL -uQL -rwX -aLK -rJi -pLO -gDO -fsv -fsv -rZs -fsv -fsv -wfs -fsv -viP -wlx -fsv -nfR -qyU -bZu -uee -fOQ -fsv -fsv -fMJ -fUR -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(51,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -ozo -bln -bln -bln -bln -sEB -lJO -lJO -lJO -fjF -hjI -eUf -lJO -lJO -lJO -lJO -lJO -lJO -iRo -iRo -iRo -iRo -xEP -uJZ -uGG -uGG -uGG -uGG -eMF -cSM -nwT -nwT -nwT -nwT -fxJ -nwT -tKI -uha -tKI -ivF -ivF -ivF -ivF -ivF -ivF -ivF -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(52,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -sEB -cyH -hjI -nbj -anl -anl -eUf -eUf -hpN -anl -anl -anl -lJO -hgx -eBM -rcd -iRo -aUr -hNL -rLb -oLI -apz -dHG -cVd -fsv -nwT -bPw -wjj -hle -pIX -esj -tKI -iyr -tKI -dRm -kSh -nUw -ilQ -sbc -ftg -waa -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(53,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -lJO -lJO -lJO -lJO -anl -lJO -lJO -cya -lJO -lJO -lJO -anl -lJO -fpj -szY -hoC -qqz -aUr -hNL -jbh -tPg -pqa -ejW -cVd -fsv -nwT -ohV -jdj -eye -lvv -gBs -tKI -iyr -tKI -lOg -pzQ -ivF -oQv -ivF -oQv -oQv -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -ozo -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(54,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -lJO -cTK -ezX -lJO -anl -lJO -sEx -mcX -awh -aaI -lJO -anl -lJO -jcf -jyd -bnW -gbt -aUr -hNL -kMM -hUj -hUj -kMM -hfN -ijA -nwT -bPw -oCj -dAO -liQ -iJl -tKI -iyr -tKI -lim -aqT -msl -osv -lZm -jtc -oQv -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -bln -bln -bln -bln -bln -bln -bln -tCr -tCr -tCr -tCr -tCr -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(55,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -sEB -lJO -lJO -cCV -krH -lJO -anl -lJO -dqd -wLJ -xiW -qkP -lJO -anl -lJO -oYZ -jyd -vHM -mQB -aUr -hNL -jbh -hUj -hUj -dHG -qaA -fsv -nwT -oCR -wRM -pFW -iNH -hZR -tKI -iyr -tKI -wBZ -pzQ -vQL -osv -tov -qpw -oQv -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -bln -bln -bln -bln -bln -bln -bln -bln -tCr -bln -bln -bln -tCr -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(56,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -ozo -bln -bln -bln -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -mVm -tCr -tCr -bln -bln -bln -bln -bln -bln -lJO -lIH -hjI -wYm -cnz -anl -lJO -atn -fZk -qrr -vtD -lJO -anl -lJO -ljQ -jyd -hbI -gbt -gDO -bWu -rNR -aWX -aWX -rNR -qaA -egK -nwT -ccD -aCJ -tkc -nsr -xSl -tKI -iyr -tKI -rRd -tXw -eZJ -osv -qpw -bsO -ivF -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -bln -bln -bln -bln -bln -bln -bln -bln -bln -tCr -bln -cnx -bln -tCr -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(57,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -tCr -bln -bln -bln -bln -bln -bln -bln -muK -bln -bln -bln -hty -bln -tCr -bln -bln -bln -bln -bln -bln -lJO -xsq -eZw -cLM -lJO -anl -lJO -hSi -fhL -uPS -gZF -lJO -anl -fDB -pwL -nUl -jFd -iRo -cyW -hNL -fUR -fUR -fUR -fUR -elA -fsv -nwT -qku -bPw -bPw -bPw -bPw -tKI -iyr -tKI -yhp -yhp -sJW -bDc -kCA -wsx -ivF -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -bln -bln -bln -tCr -tCr -tCr -tCr -tCr -bln -bln -bln -tmR -bln -bln -bln -tCr -tCr -mVm -tCr -tCr -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(58,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -tCr -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -tCr -bln -bln -bln -bln -bln -bln -lJO -cLy -hjI -xKG -lJO -anl -lJO -jvj -exo -lnY -waM -lJO -lJO -lJO -oCO -oCO -oCO -oCO -emO -hNL -xji -bOL -qNL -bIB -qaA -fsv -nwT -hkb -aaT -fFT -aoI -bPw -tKI -qJu -wnL -wBL -dxV -tKI -xQg -tKI -ivF -ivF -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -bln -bln -bln -tCr -bln -bln -bln -bln -bln -bln -bln -tmR -bln -bln -bln -bln -bln -bln -bln -tCr -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(59,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -tCr -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -bln -bln -bln -bln -bln -bln -bln -lJO -lJO -lJO -mde -lJO -erk -lJO -lJO -lJO -lJO -lJO -lJO -mCT -uvm -mCT -gJm -sql -oCO -hed -lYJ -cyB -cyB -jJH -jJH -bcn -adW -nwT -xxI -bam -rZg -bam -bPw -tKI -hsQ -tKI -hjB -uiZ -sbt -sIM -teN -bln -bln -bln -bln -bln -bln -bln -sEB -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -bln -bln -bln -tCr -bln -xxB -xxB -xxB -xxB -xxB -bln -sEB -bln -xxB -xxB -xxB -xxB -xxB -bln -tCr -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(60,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -tCr -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -bln -bln -bln -bln -bln -bln -bln -sEB -sEB -hEI -jxK -anl -anl -anl -anl -anl -anl -anl -lJO -gzT -hYC -prz -hYC -hYC -oCO -xJv -hnV -fsv -nDk -fsv -fsv -fsv -ikp -tKI -tKI -tKI -tKI -tKI -tKI -tKI -tKI -tKI -vGM -ohI -wBb -pdf -teN -bln -bln -bln -sEB -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -bln -bln -bln -tCr -bln -tmR -tmR -tmR -tmR -tmR -tmR -sEB -tmR -tmR -tmR -tmR -tmR -tmR -bln -tCr -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(61,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -bln -bln -bln -bln -bln -bln -bln -sEB -sEB -hEI -krH -anl -lJO -lJO -lJO -lJO -lJO -apX -dcb -ljI -qWX -ljI -ljI -rEN -oCO -oCO -oCO -aPI -iKR -aPI -tKI -tKI -tKI -tKI -kEs -hTd -fzu -ofS -uDP -tKI -xYv -tKI -vGM -whF -aBT -tKI -tKI -bln -bln -bln -fBN -bln -bln -bln -vsI -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -bln -bln -bln -tCr -bln -xxB -xxB -xxB -xxB -xxB -bln -sEB -bln -xxB -xxB -xxB -xxB -xxB -bln -tCr -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(62,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -tCr -tCr -tCr -bln -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -bln -bln -eGr -wxN -wxN -wxN -biY -lJO -lJO -lJO -lri -anl -lJO -sQx -kXI -sQx -lJO -apX -lJO -jNc -dSs -gSE -wOS -pOB -mOu -diX -hjv -gpp -tSN -eVy -tKI -dat -gJM -fPM -pdf -pbK -vHT -vnK -yaR -fVq -pdf -elu -pXH -cUy -mNE -duW -tKI -bln -bln -bln -sEB -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -bln -bln -bln -tCr -bln -bln -bln -bln -bln -bln -bln -sEB -bln -bln -bln -bln -bln -bln -bln -mVm -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(63,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -tCr -bln -bln -bln -bln -bln -tmR -bln -bln -bln -tmR -bln -bln -bln -tmR -bln -vsI -eGr -eGr -oLO -nhb -sxF -kjw -biY -yjn -hjI -qDI -krH -cKM -lJO -kXI -bDp -bln -lJO -apX -lJO -nxE -kkZ -wYl -wOS -wOS -wOS -wOS -aLj -tSN -utl -kTU -cDx -hIi -hIi -hIi -fYd -fYd -fYd -gyk -jJS -gyk -aLv -sIw -doa -vzE -vzE -aka -mhK -bln -bln -bln -bln -bln -bln -bln -sEB -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -bln -bln -bln -bln -bln -bln -tCr -bln -xxB -xxB -xxB -xxB -xxB -bln -sEB -bln -xxB -xxB -xxB -xxB -xxB -bln -tCr -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(64,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -tCr -bln -fbh -tZf -tmR -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -tmR -izw -pVN -kJe -pVN -eSg -pVN -inw -anl -anl -anl -rcq -anl -lJO -hoO -sQx -sQx -lJO -apX -lJO -gzT -kuw -hYC -hYC -hYC -lzL -hYC -hjv -gpp -qRT -oel -tKI -tKI -tKI -tKI -tKI -tKI -tKI -tKI -tKI -tKI -tKI -tKI -tKI -tKI -tKI -byC -tKI -bln -bln -bln -vsI -bln -bln -bln -fBN -bln -bln -bln -bln -bln -bln -bln -bln -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -wXw -bln -bln -bln -ozo -bln -bln -tCr -bln -tmR -tmR -tmR -tmR -tmR -tmR -sEB -tmR -tmR -tmR -tmR -tmR -tmR -bln -tCr -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(65,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -tCr -bln -bln -bln -bln -bln -tmR -bln -bln -bln -tmR -bln -bln -bln -tmR -bln -sEB -eGr -eGr -gWy -pVN -bvd -eAh -aiT -krH -krH -krH -cdp -nst -lJO -lJO -hEI -lJO -lJO -apX -lJO -mCT -urt -mCT -hYC -nOs -fpv -jtX -oCO -wpO -qRT -oel -qnj -eQx -iIx -dlr -whm -jLx -tOw -xan -tOw -iZW -tOw -pLw -tOw -orq -tKI -byC -tKI -bln -bln -bln -bln -bln -bln -bln -sEB -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -tCr -muK -xxB -xxB -xxB -xxB -xxB -bln -sEB -bln -xxB -xxB -xxB -xxB -xxB -bln -tCr -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(66,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -tCr -mVm -tCr -bln -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -bln -bln -eGr -biY -biY -biY -biY -wYm -hjI -qDI -hjI -hjI -hjI -hjI -hjI -hjI -hjI -apX -lJO -lJO -lJO -oCO -aRI -oCO -oCO -oCO -oCO -gpp -qRT -oel -qnj -tTT -jBJ -jBJ -jBJ -cBh -tOw -iKX -tOw -nZY -tOw -hce -tOw -wbY -tKI -byC -tKI -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -mVm -bln -bln -bln -bln -bln -bln -bln -sEB -bln -bln -bln -bln -bln -bln -bln -tCr -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(67,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -bln -bln -bln -lJO -kQg -krH -krH -krH -jnV -lJO -iPR -kEq -lJO -rEB -hdh -qOa -lJO -apX -apX -isx -lJO -ljS -iMT -oxs -hPQ -oRo -vQt -gpp -hFn -lty -qnj -iOU -jBJ -jBJ -xcj -oYv -tOw -sVn -kEM -kEM -uMH -ybs -kEM -kEM -tKI -byC -mhK -bln -bln -bln -vsI -bln -bln -bln -fBN -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -tCr -bln -xxB -xxB -xxB -xxB -xxB -bln -sEB -bln -xxB -xxB -xxB -xxB -xxB -bln -tCr -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(68,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -tCr -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -bln -bln -bln -lJO -kQg -hjI -hjI -lJO -lJO -lJO -fzJ -lJO -lJO -qDI -lJO -lJO -lJO -lJO -lJO -tKl -xwD -fVe -fVe -fVe -fVe -fVe -wxy -aJA -aJA -kHu -qnj -xZQ -jBJ -ftf -qpe -sAL -sWG -jvn -hAh -nRW -pST -cRW -kSf -hlv -tKI -byC -tKI -bln -bln -bln -sEB -bln -bln -cTc -sEB -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -uGo -bln -bln -bln -bln -tCr -bln -tmR -tmR -tmR -tmR -tmR -tmR -sEB -tmR -tmR -tmR -tmR -tmR -tmR -bln -tCr -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(69,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -tCr -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -bln -lJO -hEI -lJO -lJO -lJO -vcx -lJO -bln -lJO -aHJ -imk -rYW -kby -iQl -pFH -etL -krj -lJO -apX -lJO -iAs -iMT -kHz -iMT -frV -vQt -gpp -djr -svP -qnj -oOh -jBJ -xcj -awx -xmd -tOw -tOw -tOw -tOw -tKI -tKI -tKI -tKI -tKI -byC -tKI -bln -bln -maT -wSM -oMd -maT -oMd -bNo -maT -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -cWX -bln -bln -bln -bln -tCr -bln -xxB -xxB -xxB -xxB -xxB -bln -sEB -bln -xxB -xxB -xxB -xxB -xxB -bln -tCr -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(70,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -tCr -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -tCr -lJO -khW -iSn -ghN -lJO -hjI -hEI -bln -hEI -imk -iQl -uBM -edc -eIe -imk -lJO -lJO -lJO -apX -lJO -sBv -uhC -xzL -iMT -wvx -fYS -gpp -djr -tAR -qnj -qEX -ttL -oGX -awx -hsP -jMM -jMM -oBZ -ehp -tKI -plg -mKj -qjO -tKI -byC -tKI -maT -maT -maT -sym -bde -jIE -bde -ksf -maT -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -cWX -bln -bln -bln -bln -tCr -bln -bln -bln -bln -bln -bln -bln -sEB -bln -bln -bln -bln -bln -bln -bln -tCr -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(71,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -tCr -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -tCr -lJO -gDZ -gDZ -uPS -cnz -hjI -hEI -bln -hEI -igr -imk -mEp -edc -uSU -imk -etL -cyI -lJO -apX -lJO -cYZ -iMT -wgn -iMT -vqY -fYS -gpp -djr -xeX -dYR -aqm -aqm -aqm -aqm -fYg -muy -muy -uPL -xVL -tKI -plg -llJ -dep -ggn -byC -tKI -cYo -tEL -maT -wSM -hFU -kXr -hFU -bNo -maT -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -cWX -bln -bln -bln -bln -tCr -tCr -tCr -bln -bln -bln -bln -sEB -tmR -sEB -bln -bln -bln -bln -tCr -tCr -tCr -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(72,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -tCr -tCr -tCr -tCr -tCj -mVm -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -lJO -gLZ -cXp -xiW -lJO -hjI -lJO -bln -hEI -mbL -imk -uBM -edc -aAo -col -lJO -lJO -lJO -apX -lJO -nko -iMT -wgn -vAV -uNZ -fYS -gpp -djr -sfq -bCl -awx -jsB -awx -wON -csW -muy -muy -uPL -xVL -tKI -kMF -vbj -pXR -tKI -byC -tKI -grr -kLZ -jPc -xKj -hyY -pdR -huI -gbv -maT -kXr -maT -maT -kXr -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -cWX -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -jlJ -jWl -jlJ -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(73,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -vbG -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -lJO -hEI -lJO -lJO -lJO -uPS -lJO -bln -lJO -ukg -imk -col -pZs -sga -mKe -edc -lJO -jnV -apX -lJO -rhZ -iMT -wgn -iMT -hUW -fYS -gpp -djr -oel -qnj -erE -awx -arO -uKU -iXb -bax -hzE -hYI -wWO -tKI -tKI -tKI -tKI -tKI -byC -tKI -kMh -ajw -ajw -wbW -ajw -ajw -czv -cCW -wyB -vlt -jxG -tEj -maT -bln -bln -bln -bln -xfi -ulK -xfi -bln -bln -bln -bln -bln -bln -bln -riT -uqG -bln -bln -bln -bln -pRj -pRj -pRj -pRj -pRj -pRj -bln -jlJ -smj -jlJ -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(74,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -vbG -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -lJO -cIq -lJO -hjI -lJO -bln -lJO -lJO -rro -dkg -aZp -tVr -lJO -ifK -lJO -lJO -apX -lJO -oIb -iMT -pVQ -iMT -vWk -vQt -gpp -djr -oel -qnj -xzI -awx -hMu -hNt -vsF -dxj -qxW -vdE -xVL -tKI -dzl -jJX -xiR -gyk -szq -iSW -ian -bXu -otd -otd -otd -ldO -otd -huI -huI -huI -uqg -ndK -kXr -bln -bln -bln -bln -qjQ -cyK -qjQ -bln -bln -pRj -pRj -pRj -ptf -pRj -pRj -uqG -sEB -sEB -sEB -bln -pRj -dMO -uVa -dcQ -wAW -ktS -nxm -ifA -rbb -gFx -jlJ -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(75,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -ozo -bln -bln -bln -bln -bln -vbG -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -lJO -lJO -lJO -hjI -lJO -bln -sEB -lJO -jlp -uHm -eYF -tbl -lJO -lgO -lgO -lgO -apX -lJO -fpz -iMT -iMT -iMT -tyc -fYa -gpp -djr -oel -qnj -hTL -awx -aoK -erJ -vjW -agh -cVq -vdE -xVL -tKI -cWn -gJM -byC -tKI -tKI -tKI -jKt -vlN -ajw -ajw -ajw -ajw -otd -otd -otd -otd -jCS -huI -maT -bln -bln -bln -bln -qjQ -rLo -qjQ -bln -bln -pRj -kBV -pRj -dkn -vmr -pRj -uqG -ptf -kzZ -ptf -bln -pRj -jIW -iaT -daS -swS -cRX -mNY -smj -smj -iCX -glh -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(76,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -vbG -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -hEI -dGe -hEI -sEB -bln -lJO -lJO -bnQ -dUh -dgp -lJO -lgO -hjI -iPR -qhO -lJO -hXC -iMT -aYR -cOm -phZ -xKR -fGO -uvp -pum -qnj -qcZ -qpe -hub -awx -vsF -iEr -iEr -rSn -xVL -tKI -uNt -pdf -byC -tKI -veh -gzN -ycT -vlN -mmi -geG -mmi -ajw -ycT -ajw -ajw -ajw -otd -ajw -maT -bln -qjQ -qjQ -qjQ -qjQ -rLo -qjQ -bln -bln -pRj -qOl -qPw -csE -hRw -pRj -vZW -ptf -daS -ptf -bln -pRj -eNR -sOl -vkC -qAI -snw -mNY -kkp -ipE -ipE -glh -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(77,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -vbG -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -lJO -xbr -lJO -sEB -bln -bln -lJO -lJO -hEI -hEI -lJO -pMe -biY -biY -biY -biY -rid -rid -rid -rid -rid -rid -tag -gJy -wTh -qnj -rOV -dHx -kku -bkK -uPO -aJW -ivW -jZQ -ldw -dWO -iyr -iyr -byC -tKI -waE -xdz -kXs -vlN -mmi -icW -mmi -oJk -jjk -jjk -jjk -sOm -xMA -ajw -maT -maT -qjQ -pYl -nFk -qjQ -fZb -qjQ -qjQ -bln -ptf -hZQ -cZN -ybu -jYL -pRj -ycS -vGi -lDr -sup -ptf -pRj -sVr -nYe -swS -nZj -bvs -mNY -qIf -smj -czR -glh -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(78,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -vbG -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -hEI -ndz -hEI -bln -bln -sEB -bln -bln -bln -bln -xhx -fbC -fii -bln -bln -bln -bln -bln -bln -bln -bln -jOt -wRU -dax -rWZ -sAS -sAS -sAS -sAS -tKI -tKI -tKI -tKI -tKI -tKI -tKI -kcE -pdf -eXn -tKI -ooR -ajw -ajw -vlN -mmi -icW -miO -vmn -wam -wam -wam -wam -sHp -ajw -pYT -ajw -tAS -hoD -hoD -gAY -wjZ -ndN -qjQ -bln -ptf -qOl -sUS -ybu -vUW -pRj -nkI -daS -daS -daS -vYd -pRj -pRj -kuR -wYb -lDh -pRj -mNY -bCc -kRr -mNY -glh -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(79,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tGr -tGr -mSQ -atc -atc -atc -atc -pLe -tGr -tCj -sDl -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -hEI -hjI -hEI -bln -sEB -bln -bln -bln -bln -sEB -xhx -nZy -fii -bln -ybQ -ybQ -ybQ -ybQ -ybQ -ybQ -bln -jOt -oMk -rTo -gpp -gJz -whi -tjS -kma -tKI -fVo -vcE -fYd -fYd -fYd -fYd -fYd -fYd -dAU -tKI -svL -ajw -ajw -vlN -mmi -icW -mmi -vmn -wam -wam -wam -wam -bwY -ajw -kXr -maT -qjQ -wxI -gAe -naL -hoD -vVD -qjQ -bln -ptf -csE -vPi -ybu -xmQ -pRj -cnd -hth -wEW -hth -hjH -pRj -gbq -rlj -iFm -aPV -gFH -apj -cqL -eAj -ptf -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(80,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tGr -tGr -tGr -tGr -miY -lSu -lSu -sEB -tGr -tGr -tGr -sDl -sDl -sDl -sDl -bln -bln -bln -bln -bln -bln -bln -hEI -hEI -lJO -lJO -hjI -lJO -lJO -lJO -sEB -bln -bln -bln -sEB -xhx -nZy -fii -bln -ybQ -gGZ -bZA -exO -edn -ybQ -bln -jOt -ozw -udX -qRT -htX -bKd -bKd -nhr -tKI -eXn -tKI -tKI -tKI -tKI -tKI -tKI -tKI -tKI -tKI -tkk -vlN -fya -vlN -ajw -icW -ajw -vmn -wam -wam -wam -wam -kRk -ajw -maT -bln -qjQ -tWT -qcE -bue -hoD -hsl -qjQ -bln -ptf -qOl -ace -ybu -thW -pRj -uhP -dnM -aBQ -wEW -hjH -eMT -iaT -bFY -aZq -ukA -sOl -apj -daS -eAj -ptf -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(81,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tGr -tGr -tGr -tGr -tGr -bln -gZt -nMR -tGr -tGr -tGr -jNZ -bln -sDl -sDl -sDl -sDl -sDl -sDl -sDl -sDl -sDl -sDl -hEI -qNE -eAb -prE -hjI -tTL -ezq -lJO -xhx -xhx -xhx -xhx -xhx -rSA -nZy -fii -bln -ybQ -okV -khR -khR -szp -uiM -jOt -jOt -ozw -udX -gpp -gJz -fqn -sOX -pba -tKI -eXn -tKI -kLx -nNs -dXR -hCu -vAT -rEz -wHl -ikO -bji -ajw -ajw -vlN -icW -icW -ajw -qUS -irD -irD -irD -pzX -dSl -ajw -maT -bln -qjQ -iXE -xZL -vnc -hoD -eaR -qjQ -bln -pRj -vSE -eGX -qOl -ujj -pRj -xoB -hjH -qTS -dNC -xBX -pRj -wls -nnk -tKV -cjL -hEr -pRj -eAj -pFD -pRj -pRj -pRj -vsI -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(82,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tGr -tGr -tGr -tGr -tGr -bln -bln -bln -bln -tGr -tGr -fsm -sEB -bln -bln -sDl -sDl -sDl -sDl -sDl -sDl -sDl -sDl -sDl -hEI -ndz -hjI -apd -hjI -hjI -hjI -cnz -dOR -dOR -dfF -dOR -dOR -dOR -nZy -fii -bln -ybQ -hcF -bnz -gMx -pkF -vGI -ptk -lEE -idO -mGA -jei -tKI -tKI -tKI -tKI -tKI -opr -tKI -jPB -alT -taf -nWk -bAa -xal -wLO -lfG -oSS -xwp -xwp -lgY -icW -iYI -iaF -iaF -iaF -iaF -ajw -ajw -kXe -kXr -kXr -bln -qjQ -qjQ -ojk -bVJ -dSO -qjQ -qjQ -bln -pRj -jzk -kYF -csE -qzM -pRj -dOH -uIx -osI -osI -hjH -pRj -nMf -sOl -eVR -nVR -iWZ -bse -xHe -wXc -lPE -daS -nNr -sEB -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(83,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tGr -tGr -tGr -tGr -tGr -tGr -bln -bln -bln -gnZ -bln -tGr -tGr -bln -lSu -ntK -bln -bln -bln -fsm -bln -sDl -sDl -sDl -sDl -sDl -hEI -eeF -nWf -prE -gDS -aXY -iPR -lJO -xhx -xhx -xhx -xhx -xhx -rSA -nZy -fii -bln -ybQ -tXE -xWN -xWN -pYx -uiM -jOt -jOt -ozw -mGA -hFn -bwS -ieI -ieI -ieI -ieI -byC -tKI -ogC -alT -aZO -kin -dsU -alT -myb -ikO -gMg -jhy -tYR -eyW -eWV -kXr -gxe -idU -chW -qrB -gjP -ajw -otd -maT -bln -bln -bln -qjQ -tFP -hxE -xtr -qjQ -bln -bln -pRj -csE -kSD -csE -nOk -pRj -xOl -hjH -daS -pXv -kNZ -pRj -bxV -uKP -iaT -sOl -lLm -mLa -qSY -pRj -pRj -pRj -pRj -vsI -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(84,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tGr -tGr -tGr -tGr -bln -pZY -bln -bln -fsm -mZf -bln -tGr -tGr -bln -miY -bln -bln -bln -bln -bln -sDl -sDl -sDl -sDl -sDl -sDl -hEI -hEI -lJO -lJO -hEI -lJO -lJO -lJO -bln -bln -bln -bln -bln -xhx -nZy -fii -bln -ybQ -egF -iJY -cLc -hPf -ybQ -bln -jOt -ozw -mEV -eVy -tKI -tKI -tKI -tKI -tKI -qtY -psD -lzb -kbI -xKa -fFV -ePs -gOJ -nQH -rbC -kXr -hrJ -ttT -sQa -hrJ -kXr -kXr -kXr -kXr -kXr -kXr -ajw -otd -kXr -bln -bln -qjQ -qjQ -qjQ -rVe -qjQ -qjQ -bln -bln -pRj -rKQ -drs -pRj -pRj -pRj -pRj -pRj -pRj -wpY -pRj -pRj -ptf -pRj -pRj -pRj -pRj -pRj -wFg -pRj -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(85,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tGr -tGr -tGr -tGr -bln -ntK -bln -bln -bln -bln -bln -tGr -tGr -bln -lSu -fsm -bln -bln -sDl -sDl -sDl -sDl -sDl -sDl -sDl -sDl -sDl -sDl -sDl -sDl -bln -bln -bln -bln -bln -bln -bln -rSA -ecF -rSA -nZy -fii -bln -ybQ -ybQ -ybQ -ybQ -ybQ -ybQ -bln -jOt -ozw -mEV -gpp -lGz -pMv -fkC -lyt -tKI -wBb -tKI -tKI -tKI -tKI -tKI -nWy -tKI -tKI -tKI -kaw -vkF -eHq -cdu -gpH -bvr -xNu -mWe -lZQ -jsH -qjQ -aOd -evA -aOd -qjQ -qjQ -qjQ -dFT -dUN -kGR -eeK -qjQ -sEB -sEB -pRj -daS -tut -fnf -xgB -pXv -exy -pXv -pXv -pXv -ptf -bln -bln -bln -bln -bln -bln -ptf -xHe -ptf -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(86,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tGr -tGr -tGr -tGr -bln -bln -bln -bln -bln -bln -jNZ -bln -tGr -tGr -bln -xiO -sDl -sDl -sDl -sDl -sDl -sDl -sDl -sDl -sDl -sDl -sDl -sDl -lSu -qVo -lSu -lSu -bln -bln -fsm -bln -bln -bln -qUF -oZV -ldj -fbC -fii -bln -bln -bln -bln -bln -bln -bln -bln -jOt -ozw -mEV -qRT -qRT -lXa -wPK -pms -tKI -mNE -nAr -nAr -nAr -axz -dzl -tKI -dMv -pdf -tKI -drG -ssc -cXl -wRx -sdW -kXA -kXA -eRS -kRU -nac -qjQ -kQL -uhD -hoD -flq -wMq -dUK -hoD -hoD -hxE -dPn -aOd -bln -bln -ptf -daS -jSe -vlD -qFU -tFs -pRj -ptf -ptf -ptf -pRj -bln -bln -bln -bln -bln -bln -ptf -xHe -ptf -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(87,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tGr -tGr -tGr -tGr -miY -bln -bln -gnZ -mZf -bln -lSu -bln -tGr -tGr -bln -bln -sDl -sDl -sDl -sDl -sDl -tGr -tGr -tGr -tGr -lSu -bln -rzO -bln -bln -bln -mZf -lSu -bln -bln -ntK -bln -rSA -rSA -wIE -rSA -qBT -tZc -tZc -tZc -tZc -tZc -tZc -tZc -tZc -tZc -tZc -slI -mEV -gpp -tmw -pMv -tjW -cXB -tKI -tKI -tKI -tKI -tKI -tgu -jJX -tKI -tKI -tKI -tKI -qQo -ibm -myo -vib -aYm -xqy -cXl -jzf -cDy -tRG -qjQ -ewq -eNx -hoD -hoD -vWV -fNx -hoD -iVA -hxE -aCh -aOd -bln -bln -ptf -wSU -jSe -pRj -pRj -tFs -ptf -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -ptf -xHe -ptf -bln -bln -bln -bln -bln -ozo -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(88,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tGr -tGr -tGr -tGr -lSu -nMR -bln -rzO -bln -pby -rwt -bln -tGr -tGr -tGr -lSu -sDl -sDl -sDl -bln -tGr -tGr -tGr -tGr -tGr -jNZ -bln -lSu -bln -bln -bln -bln -mZf -bln -xfZ -bln -bln -rSA -bHr -sKN -pdC -hYd -cgI -cgI -cgI -cgI -cgI -cgI -cgI -cgI -cgI -vOB -iRM -kVk -gpp -fUr -pMv -mqt -eJy -lpj -aQF -xKD -lyd -lpj -jGC -lpj -lpj -gLN -rCC -gLN -rCC -eVl -wBF -uDr -cHb -cHb -mOA -cHb -psW -psW -nMB -hxE -hxE -hxE -hxE -hxE -hxE -hxE -hxE -hxE -wBV -aOd -bln -bln -ptf -jYS -jSe -jSe -oxB -jQC -ptf -bln -bln -bln -bln -bln -sEB -nME -bln -bln -bln -ptf -xHe -ptf -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(89,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tGr -tGr -tGr -tGr -miY -bln -bln -bln -bln -bln -bln -tGr -tGr -tGr -tGr -mZf -bln -bln -bln -bln -tGr -tGr -tGr -tGr -bln -mZf -bln -qVo -bln -xfZ -bln -bln -lSu -bln -uer -bln -bln -rSA -sdN -iru -rSA -nSS -tZc -tZc -tZc -tZc -tZc -tZc -tZc -tZc -tZc -tZc -qMg -ons -gpp -bXm -bXm -bXm -bXm -lpj -gVP -gwy -hdf -fcC -oKd -nXQ -bLW -jJe -rCC -aMd -rCC -jIg -wEh -unO -hkU -hwF -ljl -kXA -rLu -nRq -aOd -mir -bsx -hoD -qJJ -hxE -hoD -hoD -mir -vdo -qjQ -qjQ -sEB -sEB -pRj -uWW -daS -kNZ -pRj -jQC -ptf -bln -bln -bln -bln -sEB -xbV -sEB -bln -bln -bln -ptf -xHe -ptf -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(90,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tGr -tGr -tGr -tGr -fsm -eUO -bln -bln -bln -fsm -bln -tGr -tGr -tGr -tGr -tGr -tGr -tGr -tGr -tGr -tGr -tGr -tGr -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -rSA -eUP -dOR -tlc -syZ -tZc -bRh -aGP -aGP -qMI -knu -leX -dxP -lhF -bMK -idO -aJA -gpp -bXm -pOT -tIX -jNk -lpj -auh -sTQ -mwg -pLF -uip -jTk -lpj -xKA -teB -jak -cnM -jIg -wEh -uuP -aGF -uuP -gam -qQo -lmv -uuP -tue -nZh -lNG -nZh -tue -hxE -feB -lis -lis -lis -qjQ -bln -bln -bln -pRj -ldQ -pRj -pRj -pRj -jQC -ptf -bln -bln -bln -bln -fkF -cPp -sEB -bln -bln -bln -ptf -xHe -ptf -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(91,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tGr -tGr -tGr -tGr -bln -mZf -lSu -sEB -bln -bln -gHA -tGr -tGr -tGr -tGr -tGr -tGr -tGr -tGr -tGr -tGr -tGr -bln -ntK -bln -rwt -bln -rwt -bln -bln -bln -bln -mZf -bln -bln -bln -bln -rSA -ikM -qEE -tlc -hmy -tZc -rcP -jXN -vVj -hXS -uEj -pPd -lIe -lCk -hDU -ozw -ons -gpp -lnc -kRA -kSs -wlm -lpj -vkm -lwh -uOM -uke -qqY -dQB -lpj -byl -uYu -wVF -iBF -guS -wEh -vlL -qxQ -eBe -hnC -qmi -aSh -ycQ -nZh -sso -jFv -rxG -pRj -mAc -pRj -pRj -pRj -pRj -pRj -pRj -ptf -ptf -pRj -daS -ptf -bln -ptf -jQC -ptf -bln -bln -bln -bln -bln -sEB -bln -bln -bln -bln -ptf -xHe -ptf -bln -bln -bln -sEB -bln -bln -bln -pRj -pRj -ptf -ptf -ptf -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -tCr -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(92,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tGr -tGr -tGr -tGr -rzO -nMR -bln -bln -bln -bln -bln -nMR -mSQ -tGr -tGr -lSu -bln -ntK -bln -bln -xAs -bln -bln -bln -bln -bln -jNZ -lSu -jNZ -lSu -bln -rzO -lSu -bln -bln -bln -rSA -rSA -rSA -rSA -rSA -nSS -tZc -jXN -ymg -ocu -bmI -lhF -ygv -tnX -sEt -xkt -ozw -ons -ons -lxc -dmx -sAy -xta -lpj -gma -mXn -pfZ -uke -czL -khx -lpj -qLw -eZB -dBZ -dBZ -dOw -cMI -qmi -kUx -umR -hnC -nKr -qmi -cex -nZh -wYK -thK -wmu -pRj -kCn -daS -pRj -ipJ -tXb -pRj -kNZ -daS -daS -swS -daS -ptf -bln -ptf -wMU -ptf -bln -bln -bln -bln -bln -sEB -bln -bln -bln -bln -pRj -xHe -pRj -pRj -ptf -ptf -pRj -ptf -ptf -pRj -pRj -enR -yju -eoL -ptf -bln -bln -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -bln -bln -bln -tCr -tCr -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(93,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tGr -tGr -tGr -tGr -lSu -bln -bln -lSu -bln -bln -bln -bln -jSf -sEB -lSu -sEB -bln -mZf -lSu -mZf -xAs -bln -fsm -bln -uer -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -rSA -fhZ -tVH -rSA -jZw -nSS -tZc -vVj -jXN -rcP -pXA -vTL -uOj -pej -uOj -xkt -ozw -ons -gpp -lnc -xcE -mqF -onr -lpj -brf -rwF -qsR -mMa -fyJ -sdh -lpj -tZR -tKA -dBZ -dBZ -wcV -rCC -vPh -vQQ -vQQ -sve -qmi -cXc -fhw -nZh -nWo -cQh -bqn -pRj -kCn -daS -bKp -bPz -daS -pRj -pRj -ptf -ptf -dWf -kNZ -pRj -ptf -pRj -wMU -ptf -bln -bln -bln -bln -bln -bln -bln -pRj -pRj -pRj -pRj -poc -oef -wWm -fSj -daS -bnY -daS -rlj -daS -fIL -daS -rOX -nkO -ptf -bln -bln -tCr -bln -bln -bln -bln -bln -bln -bln -tCr -bln -bln -bln -bln -tCr -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(94,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tGr -tGr -tGr -tGr -bln -jNZ -gnZ -jNZ -bln -ntK -bln -bln -xPF -bln -bln -bln -lSu -bln -bln -lBD -xAs -bln -bln -bln -xfZ -bln -bln -bln -bln -bln -fsm -bln -bln -bln -dvY -bln -rSA -wXr -tVH -hjj -dOR -nSS -tZc -fjX -aGP -dqi -qJP -jDw -hqy -vmS -xLR -nzC -jeb -ons -gpp -bXm -iIz -aSm -wde -lpj -lpj -sto -lpj -gst -jWU -oiK -bLW -xjP -diW -gxO -dKK -xmN -rCC -iiy -grN -qmi -kGx -rqJ -rMr -pFi -nZh -ozq -rgh -bXM -pRj -kCn -daS -pRj -iaT -glX -pRj -bln -bln -ptf -daS -pRj -pRj -eQz -blO -wMU -pRj -pRj -pRj -pRj -ptf -ptf -ptf -ptf -pRj -bLA -eQz -blO -xHe -pRj -glX -daS -kNZ -pRj -lDF -wSU -ovy -pRj -bHZ -qvk -tXb -ptf -bln -bln -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(95,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tGr -tGr -tGr -tGr -mZf -vwC -pby -bln -bln -tGr -tGr -bln -jSf -lBD -bln -bln -rzO -bln -bln -fsm -xAs -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -rSA -ejs -rSA -rSA -shU -nSS -tZc -tZc -tZc -tZc -tZc -tZc -tZc -tZc -tZc -tZc -wkC -lnE -wkC -bXm -lnc -lnc -lnc -lpj -sAC -cRe -eBd -wJR -tDF -tDF -lpj -rCC -rCC -wEh -kgX -wEh -rCC -sOn -aBh -tNY -dqX -aBh -sOn -rzm -tue -tue -tue -tue -pRj -kCn -daS -pRj -pRj -pRj -pRj -ptf -ptf -pRj -ldQ -pRj -dms -rlj -fSj -dWZ -obj -obj -obj -obj -obj -obj -obj -obj -obj -obj -obj -iOM -suR -pRj -pRj -ick -pRj -pRj -pRj -mNY -mNY -mNY -mNY -mNY -mNY -mNY -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(96,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tGr -tGr -tGr -tGr -bln -bln -lSu -tGr -tGr -tGr -tGr -mSQ -bln -bln -bln -rwt -lBD -ntK -bln -tCj -xAs -xAs -xAs -xAs -xAs -xAs -xAs -xAs -tCj -wPN -wPN -wPN -tCj -ntK -bln -rSA -rSA -rSA -nSi -dOR -bYc -fSb -fSb -fSb -oJo -oJo -oJo -tzp -oJo -fnh -rSA -oFb -iuv -xgm -eit -dnq -dnq -dnq -dnq -dnq -dnq -dnq -bep -dnq -gOy -gvo -pKV -rjR -rjR -pUX -pTB -yaF -pTB -pTB -dnq -dyN -rGl -rGl -kzC -wLU -rGl -rXc -oMO -mye -ptd -ptd -obj -obj -obj -iAt -obj -obj -obj -obj -obj -obj -obj -obj -uoB -mNY -mNY -mNY -mNY -mNY -mNY -mNY -mNY -mNY -mNY -mNY -pRj -sCw -eQz -rAO -daS -wOB -beO -kbs -kOE -gBv -tjH -aUK -gGs -aIK -aUj -aUj -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -tCr -tCr -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(97,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tGr -tGr -tGr -tGr -bDu -bDu -bDu -bDu -bDu -bDu -bDu -xAs -xAs -bln -bln -lSu -bln -bln -bln -lSu -cuq -itE -lSu -cuq -itE -lSu -cuq -itE -rzG -sDl -sDl -sDl -xAs -bln -bln -bln -bln -rSA -rSA -rSA -rSA -fAS -fbC -pvL -dOR -qFr -uzL -vFr -ghH -gNm -hMv -lee -bzQ -sQZ -tms -bmv -bmv -bmv -pwM -bmv -bmv -bmv -bmv -bmv -xXR -bmv -xWR -fDP -ucB -jwt -gOy -iwz -iwz -iwz -iwz -rQn -iwz -iwz -iwz -eYP -iwz -nQO -bmv -pRj -pRj -pRj -ptf -ptf -ptf -pRj -ptf -ptf -ptf -ptf -ptf -ptf -pRj -pRj -fhW -mNY -csT -csT -xaI -xaI -fiY -wkl -xaI -csT -csT -mNY -gob -hwn -cAe -mXa -fzA -mXa -mXa -qCl -mNY -aUj -uNu -kLc -oFY -sIN -xmK -uaG -cSx -uOE -cSx -vyU -pXY -pXY -pXY -vyU -uOE -bln -bln -tCr -bln -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(98,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tGr -tGr -tGr -bDu -grh -hwR -igB -wRs -lTN -bDu -dvl -cuq -jRS -jRS -dlt -jRS -jRS -itE -llT -sgW -akQ -lSu -sgW -akQ -lSu -sgW -akQ -rzG -sDl -sDl -sDl -xAs -bln -bln -bln -bln -pfe -bZx -bZx -bWn -bWn -jxT -bWn -bWn -bWn -bWn -dJf -dJf -dJf -dJf -mwc -fMW -dnq -xzh -xzh -xzh -xzh -xzh -dnq -mgj -mgj -mgj -mgj -mgj -mgj -mZS -mgV -crc -gHe -mVb -bep -qcu -hxh -qUx -dnq -dnq -mgj -inB -ugW -bep -ylU -dnq -jII -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -pRj -rAO -fhW -mNY -vjx -mDf -nLb -kNp -vbn -vFs -mMk -qAV -fyw -mNY -kCn -kCn -kCn -kCn -kCn -kCn -kCn -xtX -azC -pZG -toq -uDE -xFB -rkc -gxR -uaG -kAK -iLY -iLY -bxa -pXY -pXY -pXY -pXY -fcP -bln -bln -tCr -bln -tCr -bln -bln -ozo -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(99,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tGr -tGr -bDu -jgG -mAe -jJM -mAe -dfz -dnX -bln -abb -tDg -tDg -ooL -tDg -tDg -oFI -gnZ -sgW -akQ -lSu -sgW -akQ -lSu -sgW -akQ -rzG -sDl -sDl -sDl -wqx -wqx -wqx -wqx -wqx -wqx -wrN -bZx -bWn -oFw -xFW -thv -qrY -jir -bWn -sBh -muC -pRU -dJf -lkL -eJe -kKX -pAZ -pAZ -pAZ -pAZ -iYV -dnq -xRg -dxK -dxK -iOF -opm -opm -dxK -gfb -gfb -gfb -pYB -gfb -gfb -hVc -rcE -rcE -rcE -rcE -rHp -jII -dnq -ylU -pua -jII -bln -hcL -hcL -jqT -hcL -hcL -bln -bln -bln -bln -bln -bln -pRj -kkD -fhW -mNY -krU -hOi -cEM -aQR -csT -aQR -eTi -jfq -aGB -mNY -kCn -mNY -mNY -mNY -mNY -mNY -mNY -mNY -mNY -xAf -gfo -shb -rDO -rkc -qWM -lha -kAK -iLY -iLY -lqE -pXY -pXY -vyU -vyU -uOE -bln -bln -tCr -bln -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(100,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tGr -bDu -nGU -mAe -jJM -mAe -dfz -feJ -feJ -awd -awd -awd -feJ -feJ -kyy -kyy -cJi -abb -oFI -gnZ -abb -oFI -gnZ -abb -oFI -rzG -sDl -sDl -sDl -wqx -bZx -bZx -bZx -bZx -mPb -kQi -oWk -bWn -dbt -xFW -kip -iNj -uWi -xfr -qEf -vhl -vhl -dJf -xzh -eJe -utR -pAZ -bln -bln -pAZ -iYV -dnq -wTV -dxK -hbp -oyp -doT -sEl -qRs -jST -eOv -odN -iZq -dpH -gfb -gDJ -iIA -hGL -iIA -tBK -iIA -jII -dnq -ylU -dnq -jII -bln -hcL -bXF -kcm -mGm -hcL -bln -bln -bln -bln -ptf -ptf -pRj -pRj -fhW -mNY -rHN -aQR -aQR -aQR -fxR -aQR -csT -csT -anY -mNY -kCn -mNY -dUn -ptx -cpH -kbJ -kbJ -kbJ -yaL -nsy -mRQ -vWe -kIt -kMY -qde -lha -kAK -iLY -iLY -bxa -pXY -pXY -vyU -vyU -xLS -bln -bln -tCr -bln -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(101,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -lbc -bDu -jgG -mAe -jJM -mAe -stt -qum -diC -yfs -lyG -jqB -hYu -feJ -cRg -pBN -brx -kyy -kyy -kyy -kyy -iDq -bln -bln -bln -rzG -tlE -tlE -tlE -wqx -bZx -bZx -bZx -bZx -mPb -rdo -iVi -bWn -tPR -xFW -vhl -dxW -vhl -tgn -dnf -mMV -dnf -xCP -iYV -eJe -utR -pAZ -bln -bln -jII -bQV -hIS -bfl -dxK -wvw -wzk -wzk -wzk -yeA -iYb -iYb -msb -hll -iYb -gfb -uOU -gtq -cLT -cpm -cpm -cpm -cpm -okb -cRF -jwl -jII -bln -hcL -baA -gCd -fzU -hcL -bln -bln -bln -bln -ptf -cun -obj -obj -vvX -mNY -ctI -pRp -qNv -csT -csT -aQR -eso -hAY -wTA -mNY -kCn -mNY -dUn -hpd -ahK -kbJ -kbJ -wkw -yaL -wrc -eVV -rat -dNG -sYg -aUj -aUj -stI -iLY -iLY -lqE -pXY -pXY -pXY -vyU -uOE -bln -bln -tCr -bln -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(102,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -lbc -bDu -cFb -mAe -jJM -mAe -uVP -aWk -diC -cqb -lyG -hqS -bXy -feJ -xVx -qsn -brx -rai -twP -sPK -oal -iDq -bln -bln -bln -rzG -sDl -sDl -sDl -wqx -bZx -bZx -bZx -bZx -mPb -krQ -sYF -bWn -hJJ -xFW -eov -xFW -xFW -dcZ -skB -skB -dnf -xPB -iYV -eJe -sJl -pAZ -bln -bln -cLt -oVR -jOi -oVR -dxK -kFk -lnk -pNs -pNs -oyb -mqD -iYb -dkb -kmi -iYb -bWA -soc -mBq -aDG -ttm -prk -caA -cpm -pzb -ylU -dnq -paM -paM -hcL -fUI -hdj -ssr -hcL -paM -paM -vym -vym -pRj -txc -pRj -pRj -daS -mNY -prF -bdR -xaI -xaI -csT -kNp -xaI -dBh -xYI -mNY -oXX -mNY -hpd -hpd -hpd -wkw -wkw -wkw -yaL -cTs -nJp -ycB -ycB -qtj -qtj -aUj -kAK -iLY -iLY -bxa -pXY -pXY -pXY -pXY -fcP -bln -bln -tCr -bln -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(103,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -lbc -bDu -isE -cno -oSC -ovV -hEC -feJ -fjW -pdK -lyG -apS -buS -gbJ -pTN -svO -hEG -eRO -eRO -fDc -tGm -iDq -jSt -kvh -wPN -tCj -sDl -sDl -sDl -bHI -bZx -bZx -bZx -bZx -mPb -krQ -qUb -bWn -ltt -xFW -vhl -pUI -vhl -tgn -dnf -fhI -dnf -xCP -tmN -eJe -kKX -pAZ -bln -bln -qWZ -aDZ -mpP -uLp -dxK -qiu -hue -lVZ -eYT -vdi -oMP -iYb -txI -xvZ -iYb -mlY -cqQ -cqQ -jRC -shc -sFy -moA -cpm -gQZ -ylU -dnq -paM -sra -eWb -nBk -gdP -nBk -fWl -gmL -paM -clm -iZJ -xwt -smg -dlR -pRj -oKv -mNY -csT -csT -xaI -pnn -jek -kYq -xaI -csT -csT -mNY -kCn -mNY -yaL -rqF -rqF -yaL -yaL -yaL -yaL -sSJ -bTF -nHe -hgz -wTg -jWJ -gyR -clG -kAK -iLY -lqE -pXY -pXY -pXY -pXY -uOE -bln -bln -tCr -bln -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(104,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -lbc -bDu -hGH -qkL -cLD -qkL -hGH -feJ -iuS -lyG -lyG -lyG -lyG -ihx -wZj -jAk -cMA -wkr -eRO -ven -iFg -kyy -kTz -lbk -sDl -sDl -sDl -sDl -sDl -bHI -bZx -bZx -bZx -bZx -mPb -krQ -iVi -bWn -aAC -xFW -oPG -xUi -kbQ -mkU -qEf -vhl -ihQ -dJf -mny -eJe -utR -pAZ -bln -qWZ -qWZ -qWZ -ldT -qWZ -dxK -wzk -hue -xit -wfK -fHK -qpS -iYb -iYb -iYb -iYb -rpu -jWP -viC -pcP -vEA -hTb -epW -cpm -mpy -sYu -ckc -paM -swQ -nBk -nBk -iKk -nBk -nBk -dxq -paM -fgS -cFl -uFh -hwx -dvf -pRj -daS -mNY -kYq -kYq -kYq -kYq -aVI -kYq -kYq -kYq -kYq -mNY -kCn -mNY -akL -tvF -tvF -izF -gTK -nBD -rtP -rGu -aQW -pVK -wRd -gGt -yhC -rIX -kAK -nRV -fcP -cSx -vyU -vyU -vyU -vyU -fcP -bln -bln -tCr -tCr -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(105,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -lbc -nbp -uXW -vDS -ijj -ijj -weT -feJ -auT -tDL -lyG -lok -pUK -feJ -pLT -cJO -iDq -jUn -eRO -gIF -dUd -kyy -vvc -lbk -sDl -sDl -sDl -sDl -sDl -bHI -bZx -bZx -bZx -bZx -mPb -krQ -vvn -bWn -mJI -xFW -gLF -mGd -rIl -bWn -pKO -kIj -jBQ -dJf -faD -eJe -utR -pAZ -bln -qWZ -qHD -bMZ -paK -aVH -xKJ -fRx -kiL -tOF -tOF -ktU -wzk -wzk -sKz -jle -jfc -pUQ -qBt -cqQ -jRC -nvs -edW -shc -cpm -bHy -ylU -bep -paM -cpO -keX -kzO -gdP -ykL -nZA -toV -paM -cFl -bbo -xza -xGF -fdJ -pRj -daS -mNY -dJX -xUS -dwv -rBV -kJV -cOa -iWQ -tBD -xSp -mNY -kCn -mNY -gmR -tMD -rMG -lui -twt -jPL -sPG -wRd -fDn -hcg -fDn -gka -gka -gka -aZH -gka -fDn -aZH -fDn -fDn -gka -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(106,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -nbp -nbp -cPf -omk -omk -jeF -ctE -feJ -feJ -xsQ -wHe -vrS -kJO -feJ -uGr -uGr -iDq -qlw -cFZ -uaP -iDq -iDq -ciG -mfH -sDl -sDl -sDl -sDl -sDl -bHI -bZx -bZx -bZx -bZx -mPb -lwO -nBb -bWn -kJa -ief -tgn -tgn -xfr -bWn -dJf -dJf -dJf -dJf -dnq -eJe -utR -pAZ -bln -qWZ -xCv -vWL -nci -tPC -fTc -gnM -clP -clP -clP -clP -clP -clP -clP -clP -shP -rYA -nDA -vvi -nDA -vYs -nDA -nDA -pJN -mjY -aNs -dnq -paM -cuT -nBk -nBk -gdP -nBk -nBk -nBk -paM -fhF -hFi -tyg -emi -igo -pRj -swS -mNY -giQ -ppD -vmU -pnn -pVv -pPR -kWw -qca -arY -mNY -kCn -mNY -lEA -uJn -ijZ -bXo -twt -ctM -wRd -fDn -fDn -aMb -yjV -yjV -yjV -nOG -haf -rnt -vWr -bgZ -yjV -xHf -gka -gka -gka -gka -gka -gka -gka -gka -bln -tCr -tCr -tCr -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(107,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -nbp -mhx -jeF -egm -rzr -wGW -tJN -cBJ -feJ -feJ -gPn -fLs -feJ -feJ -uGr -uGr -iDq -mNj -lAL -gPp -iDq -nrG -hTw -lbk -sDl -sDl -sDl -sDl -sDl -psN -psN -psN -psN -psN -wqx -gEb -lBt -dJf -fRb -mvH -nEb -vhl -uXd -vhl -ajo -xCP -bln -pAZ -mpy -ycw -enE -qWZ -qWZ -qWZ -bpf -xRw -nYv -jSk -xKJ -rmM -pZh -oYI -wzk -uPY -knU -kPv -dxK -dxK -cpm -cpm -cpm -cpm -cpm -cpm -cpm -cpm -cpm -iYV -iuv -dnq -paM -uQV -gdP -cCt -gdP -cEi -nBk -mZV -paM -bbo -oKY -bPx -iXk -hHD -pRj -daS -mNY -hfI -vfS -jGh -jNg -vHa -alv -vHa -vHa -xUW -mNY -kCn -mNY -bpd -uJn -paW -gLu -dth -bTF -wRd -gka -swe -lAu -vWr -vWr -vWr -vWr -vrI -vWr -vWr -neR -vWr -uLH -mvX -gka -miS -gPB -oNX -lhC -maY -gka -bln -tCr -bln -tCr -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(108,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -nbp -xKY -omk -sMY -wMV -qqM -pmV -kvI -arA -jwx -kfy -aZo -jwx -wfp -cZm -hLf -okx -mLu -lAL -npn -iUo -cOp -hTw -gIL -xIR -xIR -xIR -xIR -xIR -tPW -iPT -ppl -mqG -hzY -jpd -lwO -iVi -dJf -pym -dxW -vhl -vhl -xCP -vhl -tXc -xCP -bln -pAZ -dnq -kgD -utR -uEQ -pkf -grA -cEv -nOH -gxU -gZq -ybv -ybv -ybv -ybv -ybv -ybv -dxK -dxK -dxK -bln -bln -bln -bln -bln -bln -bln -bln -bln -pAZ -dnq -iuv -gLk -paM -iaQ -nBk -cMS -ecJ -pya -nBk -tXY -paM -bbo -xwt -dst -bbo -opl -pRj -daS -mNY -aWG -wlz -tnp -pnn -aZx -jen -dKh -fse -qea -mNY -roQ -mNY -lEA -uJn -cSE -tCe -twt -eCt -wRd -fDn -rOA -eEO -nMx -azg -azg -wCZ -azg -azg -pJy -qQs -ban -wdL -dso -nnl -raT -raT -brY -lhC -lhC -gka -bln -tCr -bln -tCr -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(109,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -nbp -mhx -jeF -lkb -arb -mwh -xlx -oSm -jQB -eqI -eqI -eqI -eqI -eqI -piv -bkC -kyy -daq -lAL -vAt -kyy -dOY -psP -lbk -sDl -sDl -sDl -sDl -sDl -psN -eUR -nTp -nTp -kxp -kQc -cxz -nnx -dJf -vhl -dOo -vhl -oZg -dJf -dJf -dJf -dJf -pAZ -pAZ -dnq -eJe -utR -tmQ -wUJ -ppK -wna -lCg -nQM -ybv -ybv -tAh -wjr -qCP -njt -ybv -ybv -bln -kta -kta -kta -kta -kta -kta -kta -kta -kta -bln -pAZ -dnq -vrX -pua -paM -iIW -vJI -uud -gdP -pjl -uOn -msU -paM -eWK -bbo -tyg -xwt -iRc -pRj -daS -mNY -voK -voK -voK -voK -voK -voK -voK -lII -voK -mNY -kCn -mNY -pKs -aPf -dzJ -bAO -twt -mEw -sSJ -fDn -rOA -eEO -hTm -cks -sGJ -cGf -qMN -iUJ -hHp -cGf -atN -fpD -jFV -szo -vBm -vBm -rQf -rQf -mUs -gka -bln -tCr -bln -tCr -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(110,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -nbp -nbp -mUM -jeF -omk -jeF -nQf -bfB -arA -rYB -rgC -she -sYG -rgC -sGp -kNQ -iDq -kyy -bKN -kyy -iDq -gLl -ygM -mfH -sDl -sDl -sDl -sDl -sDl -psN -lYz -dkY -oLW -hzY -jHm -fng -gYp -dJf -wfE -efY -vhl -vhl -efn -qVZ -dnf -pQH -lUL -vVg -tzR -nxW -utR -tmQ -nPf -dMX -gER -nOH -bQd -ybv -xzT -cHO -cHO -wfc -dpi -ybv -ybv -bln -kta -qPP -ghl -nRu -clE -jQI -nFR -jQI -kta -bln -pAZ -dnq -iuv -atv -paM -nBk -nQh -nQh -jSl -cxg -rBI -nnB -paM -eWK -loq -tyg -veT -qll -pRj -dPT -pRj -aXF -ciP -rnh -ajF -oZu -aRk -uFI -nYd -qeA -pRj -kCn -mNY -gTK -fNr -nzI -gTK -gTK -iWY -sSJ -gka -eEh -fab -eDC -uIV -nXl -wuo -agm -fNN -esE -wuo -cSH -oyz -mLV -fDn -rQf -vBm -viH -viH -rQf -gka -bln -tCr -bln -tCr -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(111,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -lbc -nbp -xIp -pVX -dlK -pbI -jIm -mgU -mgU -nea -mgU -mgU -mgU -mgU -vAm -hAO -jwx -kOk -nlp -dNt -mfH -uJX -eKk -mfH -sDl -sDl -sDl -sDl -sDl -psN -pTd -jLZ -jQU -psN -pfe -cow -gYp -dJf -dJf -dJf -xCP -xCP -dJf -dJf -dJf -dJf -kcJ -bep -qvI -pkW -kKX -tmQ -bvE -aRz -paK -nOH -mOL -ybv -cHO -cHO -cHO -cHO -dzi -ybv -ybv -clE -kta -fhk -bed -vEH -clE -qQC -qQC -qQC -kta -kta -kta -ieG -iuv -dnq -paM -paM -paM -paM -xsv -paM -paM -paM -paM -vym -vym -bCs -vym -vym -vym -nyd -wou -bbr -cLN -xoY -fmc -dGd -cLN -cLN -qbO -pAj -hIH -kCn -mNY -wiM -tMD -ehJ -rpF -twt -tXB -ldg -gka -uXC -fab -oOk -iEd -wuo -nnw -cjD -spF -cjD -wuo -pry -kUz -mLV -gka -ogc -lhC -lhC -lhC -lhC -gka -bln -tCr -bln -tCr -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(112,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -lbc -nbp -nbp -lQc -lQc -lQc -nbp -mgU -nlz -oxJ -nBx -azx -tDw -rhf -cAC -cEL -hwZ -vdf -xFm -tbL -xHq -ccr -txU -jzC -lpv -lpv -lpv -lpv -lpv -iiH -teP -teP -teP -fEC -gMK -fng -rHc -kWK -oCe -uog -uog -uog -uog -uog -uog -cNd -mny -dnq -wmK -rcj -utR -tmQ -eOw -rns -mkA -nOH -aAv -ybv -hMc -hMc -hMc -rOC -dhL -ybv -ybv -vgu -kta -kta -iIh -kta -wal -wDi -qQC -jtN -aYq -oUE -kta -qQG -nlT -krv -ylF -fdy -fdy -fdy -dxU -fdy -nbi -sBS -nQW -fdy -baO -fdy -fdy -nbi -qzu -cLN -cLN -cLN -cLN -fdy -cwA -nzq -cLN -cLN -qbO -lAy -pRj -eAj -sro -aLS -qkT -kzA -whW -twt -mEw -sSJ -oSR -glc -fab -ktw -bny -oZA -xBp -bYw -bYw -bYw -ucO -kcD -ugq -njT -fDn -cYq -lhC -lhC -phL -lhC -gka -bln -tCr -bln -tCr -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(113,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -lbc -bln -bln -bln -npb -bln -lSu -rhf -rPP -eNl -vbF -mcH -xyx -eDM -xFm -tGB -nCh -fwh -xFm -vSo -lbk -fqH -sbN -lbk -oAh -oAh -oAh -oAh -oAh -vDb -lgz -hBr -mzP -vDb -vvh -vPC -pvm -kAd -cvC -kQc -iYG -kQc -iYG -kQc -kQc -rki -gOy -gOy -fKF -sSD -utR -tmQ -lkI -smI -gER -ktl -dEI -uab -bzC -jKK -mVp -mNJ -lVc -ybv -ybv -wMz -sDp -tAi -aWY -xGJ -tsQ -lSP -wqj -vGY -vGY -vGY -xXt -gET -gMM -jba -iot -oQp -oQp -oQp -oQp -oQp -oQp -oQp -oQp -oQp -oQp -oQp -oQp -tdb -oQp -oQp -oQp -oQp -oQp -oQp -lEK -oQp -oQp -wFr -nyn -adr -pRj -fFy -mNY -bTq -xUP -ouE -rpF -hMo -fcg -eTx -fDn -jQz -fab -tfR -iNa -tLW -seR -esE -uey -esE -uLe -lGp -nzf -iaV -fDn -efE -lhC -efE -kJU -lhC -gka -bln -tCr -bln -tCr -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(114,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -lbc -bln -bln -bln -npb -bln -bln -rhf -vyd -ePr -fBC -kWh -qVJ -mgU -kqc -kqc -kqc -wAq -jaw -xwf -aPd -hQP -lWg -ncB -tfA -tfA -tfA -tfA -tfA -uwB -lvS -xLO -qeO -eEZ -nUJ -wQj -csB -kOF -vkT -xUU -spM -xUU -xUU -xUU -xUU -oQA -qJV -vBh -fiE -oBs -utR -tmQ -cGY -kzD -kJP -lhv -heS -ybv -xwm -xwm -xwm -oqz -rSN -ybv -ybv -qam -kta -kta -eoJ -kta -wal -tEK -qQC -hNg -rFD -gRa -kta -vtz -fuM -vXh -jZB -rWn -mJa -gDV -fxl -vmk -rUY -rWn -rWn -cLN -mFU -cLN -rWn -rWn -rWn -eQX -rWn -rWn -rWn -jEJ -jqs -wsN -uOL -gQq -bwt -rFj -mNY -mNY -mNY -qnC -qnC -qnC -qnC -gyR -euq -wfn -ras -fkj -fab -nsK -dfq -dSI -xBp -imd -imd -imd -vuK -utA -qYQ -xUb -fDn -lhC -lhC -lhC -gsk -lhC -gka -bln -tCr -bln -tCr -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(115,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -lbc -bln -bln -bln -miY -oot -oot -rhf -jDt -wtg -loI -ehy -sBt -mgU -fLX -kcc -kZG -oIC -jjt -tpj -jNp -jNp -jNp -jNp -sDl -sDl -sDl -sDl -sDl -qQf -qQf -qQf -qQf -qQf -qQf -qQf -wio -qQf -qQf -qQf -qQf -qQf -qQf -qQf -qQf -qQf -tmN -dnq -gAJ -eJz -utR -tmQ -dqR -rUo -gER -lhv -hwC -ybv -vOD -cHO -cHO -cHO -oYu -ybv -ybv -clE -kta -iPx -dIy -vQG -clE -qQC -qQC -qQC -kta -kta -kta -tqQ -iuv -vyb -xVK -xVK -xVK -xVK -cvS -vWh -cvS -xXf -xXf -ohw -lHE -sVJ -obK -npB -gwK -jyR -jyR -gwK -bID -bID -hOc -cLw -hOc -djO -hOc -bID -qnC -vkz -uoF -pcg -uGz -dsk -qnC -isX -eBI -oEt -gka -gFR -fab -kFZ -wuo -vuK -nnw -mcG -oXM -mcG -wuo -pry -kUz -mLV -gka -ogc -lhC -lhC -lhC -lhC -gka -bln -tCr -bln -tCr -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(116,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -lbc -bln -bln -bln -npb -bln -bln -rhf -rhf -rhf -mgU -mgU -mgU -mgU -mBK -eGj -gTs -cAC -jjt -bRG -poR -idv -ahA -cHY -sDl -sDl -sDl -sDl -sDl -rpB -ykj -ykj -ykj -ykj -ykj -ykj -ykj -jTF -iUG -loS -iUG -ckK -iUG -iUG -iUG -eEi -aYP -inB -nxf -fwm -utR -tmQ -poE -cOP -scx -lhv -uyF -ybv -pPN -cHO -cHO -bdK -qDy -ybv -ybv -bln -kta -dEQ -sGv -rFf -clE -jQI -uLo -jQI -kta -bln -pAZ -bep -iuv -pbu -xVK -flI -evb -tqk -cvS -gDp -kRP -oWl -vRS -stD -xGp -eFd -qeh -eBV -gwK -vvv -tTV -jtA -bID -wUE -miw -tSA -cMd -ony -vzU -ahm -qnC -xBh -qGQ -sOE -wcx -mGV -qnC -efU -uif -wRd -gka -gSr -fab -iag -loc -hNI -wuo -esE -fNN -esE -wuo -cSH -iam -mLV -fDn -rQf -vBm -lVu -vBm -lfp -gka -bln -tCr -bln -tCr -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(117,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -mZf -oot -oot -oot -rwt -bln -bln -bln -bln -lSu -ykw -sSy -eZo -kzw -ipP -mZD -aKt -tDk -jjt -lUw -iWS -vwt -gII -cHY -sDl -sDl -sDl -sDl -sDl -rpB -ykj -qQf -qQf -qQf -qQf -qQf -qQf -qQf -qQf -qQf -qQf -qQf -qQf -wiA -wiA -wiA -vWB -vWB -dnq -gOy -utR -tmQ -dtr -gKG -iBe -lhv -dyQ -ybv -ybv -pTh -ngx -twK -jcJ -ybv -ybv -bln -kta -kta -kta -kta -kta -kta -kta -kta -kta -bln -pAZ -dnq -iuv -sWQ -xVK -hJY -eUW -lKN -cvS -gDp -kRP -ruo -ruo -mzE -aZV -qvW -gwK -gne -hvS -tvX -iRr -omi -tKi -kna -ydg -dAm -nYY -dcC -jGB -akz -sCA -pIF -ojv -htc -eri -pvE -qKQ -hqA -uif -wRd -fDn -rOA -fab -iag -pQo -hNI -wuo -kSM -rCB -ctk -wuo -cSH -kql -liI -szo -vBm -vBm -rQf -rQf -mUs -gka -bln -tCr -bln -tCr -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(118,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -ykw -xWr -qMY -kzw -iLe -aOS -mQE -cAC -mWM -scu -wpF -qPp -ryG -cHY -sDl -sDl -sDl -sDl -sDl -rpB -ykj -qQf -lcB -rmn -ygB -svH -nCP -ygB -lcB -rmn -ygB -wIz -eFt -wiA -omE -vez -drE -vWB -dnq -nfk -utR -tmQ -jOo -gKk -kBr -lhv -iGH -bGm -ybv -ybv -ybv -ybv -ybv -ybv -lpM -lpM -lpM -bln -bln -bln -bln -bln -bln -bln -bln -bln -pAZ -dnq -iuv -vXh -xVK -xjm -fiO -iwA -cvS -gDp -kRP -sBK -qKx -aRR -tRZ -oyj -gwK -kYh -bry -cte -fLq -hro -tKi -knc -dxA -oht -rSC -ami -oPU -wHj -mBB -bup -ojv -bAT -wox -vTi -qKQ -aTj -uif -wRd -fDn -rOA -fab -bjl -shB -shB -gVr -cll -shB -yeD -anI -iCg -kql -oNO -bBJ -dCy -dCy -fyR -lhC -lhC -gka -bln -tCr -bln -tCr -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(119,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -ykw -xWr -mBW -kzw -kdT -hQd -eCH -cAC -mWM -bRG -rPa -fGq -eig -jNp -sDl -sDl -sDl -sDl -sDl -qQf -ykj -qQf -nYn -nfb -ygB -qbF -oqg -ygB -vZz -bnt -ygB -vZz -rVV -wiA -nSX -nJN -nJN -vWB -mpy -wtb -byE -qWZ -qWZ -qWZ -dWX -wKI -iFs -jSk -lpM -mjs -hsx -hpR -pIk -gYz -mZe -iLu -lpM -lpM -lpM -lpM -lpM -mhQ -mhQ -mhQ -mhQ -mhQ -mhQ -dnq -iuv -vXh -xVK -xPN -cNm -oaB -cvS -gDp -kRP -kpz -xBN -bfU -aSu -dBK -gwK -jyR -myC -gwK -jyR -bID -bID -trG -vCK -rSC -rSC -rSC -tGH -kVM -sCA -rSP -uKM -uaz -mCZ -dfa -ixZ -rGu -ctL -wRd -gka -xNn -snO -pIm -vWr -vWr -vWr -xfn -vWr -vWr -kQt -vWr -nsv -kAT -gka -oWQ -lhC -alx -pMC -qWJ -gka -bln -tCr -bln -tCr -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(120,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -ykw -qQK -xWr -kzw -kzw -kzw -kzw -cAC -xAQ -mEI -jNp -jNp -jNp -jNp -sDl -sDl -sDl -sDl -sDl -qQf -ykj -qQf -nOl -oCF -ygB -dcq -peb -ygB -mJO -oCF -ygB -mJO -oCF -wiA -lYN -uOK -kzj -vWB -gSH -xwC -utR -pAZ -bln -qWZ -oxe -vmj -aqB -pVq -nVZ -oRk -mvc -mvc -rAW -ykW -ghJ -uEm -sqU -lpM -rLe -euf -jzn -mhQ -uoT -erZ -wVu -fZg -mhQ -pzb -iuv -cmB -qFX -lke -laM -lIQ -cvS -gDp -kRP -pcs -pcs -bfU -ecs -jLl -dfQ -vbO -fKI -vEw -bAR -gnj -uwj -axY -tvg -bDz -rSC -inE -oPU -wuV -qnC -qnC -sCA -sCA -qnC -qnC -qnC -aPr -uif -wRd -fDn -fDn -bfL -dXn -joW -ner -ead -xwE -ner -ner -xwE -ner -asy -sEU -gka -gka -gka -gka -gka -gka -gka -bln -tCr -tCr -tCr -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(121,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -xAs -nXb -nXb -nXb -ykw -eyb -gck -ykw -fXi -vhL -law -eqI -rAN -wAT -lbk -bln -bln -bln -sDl -sDl -sDl -sDl -sDl -qQf -ykj -qQf -ygB -xkp -ygB -ygB -qBd -ygB -ygB -lOz -ygB -ygB -oTh -wiA -fEZ -wiA -vWB -vWB -kyL -sNI -utR -pAZ -bln -qWZ -eWP -tGF -iUT -aVH -lpM -rCD -uEm -uEm -mvc -hCV -nkb -ptB -mvc -olH -anu -jly -fXb -mhQ -nKe -jUD -nZb -lRf -mhQ -dnq -iuv -vXh -xVK -fDJ -owv -pYF -uwO -rSx -kRP -kRP -dAi -edv -kNk -tmA -bNE -jfD -gMN -xnE -tvd -egV -ozn -wCx -vYJ -fGn -gWd -vzU -pZn -cOZ -xSv -aIg -rjh -xZl -qaF -pna -aIg -oUA -uif -ixL -wRd -fDn -oSR -bDX -gka -gka -gka -kvj -lhC -lhC -hte -gYg -kQQ -hRE -haC -haC -haC -haC -haC -haC -qCB -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(122,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -sEB -ykw -rVy -wOc -lEj -cKv -nsL -eyb -hAQ -ksC -loy -lbk -bln -bln -bln -sDl -sDl -sDl -sDl -sDl -qQf -ykj -gEh -dRy -fbr -mPF -fvW -fbr -gnD -mPF -fbr -fvW -mPF -qVc -iLB -kKT -jpR -kRe -kRe -mJD -xwC -kKX -pAZ -bln -qWZ -qWZ -qWZ -tUO -qWZ -lpM -xxx -xbo -xbo -anu -fue -dmG -cyF -xLF -lpM -oGQ -wKw -kpp -mhQ -hUV -tgA -nLH -xex -mhQ -ufw -rpG -jtY -xVK -tfx -tyK -fVS -cvS -gDp -iMA -iiW -fkO -tjY -aMr -woQ -keP -cRO -guU -ayq -hpI -bID -sSS -rOU -rcN -qxy -siz -iUx -kTQ -lCD -pNO -nFc -uSo -uSo -uSo -ndC -etO -gZO -oqC -eZP -eZP -gKl -tlh -tCW -vEI -fDn -lhC -hte -hte -hte -hte -dCy -qzR -gka -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(123,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -uqa -bln -bln -bln -lmR -pDC -clq -qgO -qgO -qgO -xQG -ykw -mfH -cIY -mfH -mfH -ntK -bln -sDl -sDl -sDl -sDl -sDl -sDl -qQf -ykj -qQf -pGn -cgW -cgW -jKN -qxp -jqr -drt -eGy -cgW -cgW -cgW -cgW -cgW -ftx -fQy -mWX -dct -iuv -utR -pAZ -bln -bln -qWZ -kjY -bCW -uLp -lpM -byx -aJN -aJN -wzm -ond -mvc -mvc -mvc -lpM -dbm -vey -vey -mhQ -raN -rJv -hPT -tJR -mhQ -dnq -iuv -opu -xVK -gov -cvS -cvS -cvS -gDp -qEm -kRP -atT -kQf -hDh -vnt -keP -kRw -eJn -avk -gxP -bID -tZO -oPx -pwD -fwW -uxp -afK -unc -jMp -pdV -hqV -pie -uGT -qWy -pna -hqV -nQw -vsY -iJh -aPD -aPD -vlb -fKf -pst -bWQ -dCy -jer -wLI -eCp -eCp -uYO -rOe -gka -bln -bln -bln -bln -bln -bln -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(124,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -sEB -ykw -rVy -lEj -fCW -nUg -dKP -ykw -ybD -kfc -dcX -lbk -bln -bln -sDl -sDl -sDl -sDl -sDl -qQf -qQf -hmf -qQf -ygB -ygB -ygB -kMz -qIU -qIU -lDq -qbs -uja -uja -uja -kMD -uja -uja -uja -uja -hcv -vrX -utR -pAZ -bln -bln -cLt -oVR -sNQ -oVR -lpM -dbs -rXi -rXi -wma -heX -qjx -heX -viQ -lpM -lIp -axB -lrD -mhQ -ixu -hGh -tbI -tbI -mhQ -dnq -iuv -vXh -cvS -iWx -cvS -eUI -kwX -gDp -egp -kRP -keP -pJQ -pJQ -pJQ -keP -tJv -bTx -onU -xxs -bID -bID -bID -bID -cfT -qXW -uIz -bID -bID -bID -gyR -gyR -gyR -gyR -gyR -gyR -gyR -gyR -gyR -aPD -wqc -umz -sbK -wij -gka -gka -gka -gka -gka -fDn -fDn -fDn -gka -bln -bln -bln -bln -bln -bln -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(125,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -mvl -mvl -mvl -mvl -mvl -kkl -ezO -qOP -ykw -nOQ -cqx -sQB -mfH -bln -sDl -sDl -sDl -sDl -rpB -rpB -qQf -uim -ykj -qQf -eFW -rlV -ygB -fCE -gJC -akD -qIU -rXO -uja -jHG -dFP -vVw -dFP -qSh -rKS -uja -fpP -iuv -utR -pAZ -bln -bln -jII -aBy -prB -qYI -lpM -vPF -uEm -uEm -uEm -uEm -uEm -uEm -eqU -log -sIt -sIt -sIt -log -aTG -hGh -raf -raf -mhQ -dnq -iuv -pDi -cvS -cGA -rgi -pNq -lBS -aTp -lvB -kRP -pqk -rzj -mRG -bIU -hOX -xXz -rAF -nvW -nSc -qvQ -fpJ -qvQ -bID -ejQ -bID -ejQ -bID -pqc -djU -iRA -kfQ -pus -xaU -qwF -qwF -qwF -qwF -qwF -aPD -eYA -eiI -fMU -wWM -whV -boP -ehP -uDi -uLr -jZk -sEB -sEB -bln -bln -bln -bln -bln -bln -bln -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(126,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -tCR -lGK -sNb -bLd -dAa -kkl -dhU -xQG -olY -hQi -hZq -mFQ -lbk -bln -sDl -sDl -sDl -sDl -rpB -dsI -dsI -dsI -ykj -qQf -dxh -xri -vAo -jsX -lLf -asa -kCu -iXK -uja -ewd -ehm -yba -bwr -qKX -hsB -uja -gQZ -iuv -utR -pAZ -bln -bln -pAZ -biL -sUi -oqf -lpM -uEm -aTw -lmo -hpe -wwB -mBX -uEm -viQ -dGU -wdg -bVv -wdg -sTV -pwf -oUL -qKz -qKz -mhQ -okb -iuv -kgc -bOj -cHl -ipA -fsF -mQG -caZ -tvJ -kRP -pzC -jAO -pYg -qyV -eoD -lQE -aPk -vxV -jkS -pzi -pou -sNu -uAK -wSo -wSo -vZt -iHm -rXe -xHs -bJD -pfa -rsW -tQb -xKd -fJL -mDX -mDX -qwF -aPD -eiJ -pyM -pQv -bnp -ggG -bll -gEr -mzz -lzy -sEB -sEB -sEB -bln -bln -bln -bln -tCr -tCr -tCr -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(127,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -tCR -gWX -gWX -bEf -iME -tsH -bLb -xQG -ykw -pDB -wNt -pXk -lbk -sDl -sDl -qQf -qQf -qQf -qQf -rBU -tIM -kaB -ykj -qQf -ddr -ccp -ygB -lXD -gya -tfO -urd -jtz -uja -aty -ehm -uja -uja -uja -hsB -uja -wJk -iuv -utR -pAZ -pAZ -pAZ -pAZ -iYV -jIO -vXi -lpM -lpM -lpM -lpM -lpM -lpM -lpM -lpM -lpM -log -sIt -sIt -sIt -log -mhQ -rXN -mhQ -mhQ -mhQ -dnq -jtE -vXh -cvS -cvS -bRH -caZ -pAs -caZ -gDp -btg -pGo -uoE -uoE -vRW -cvN -sVL -jlV -hHN -hHN -axM -mYZ -rPd -uop -caS -hHN -wAB -jkW -laV -vVO -eBT -qKK -hpI -eVC -bea -afp -eWQ -bEX -qwF -aPD -daM -pyM -kxY -ccz -okk -lVm -qrm -mzz -aPD -jZk -sEB -sEB -bln -bln -bln -bln -bln -bln -bln -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(128,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -tCR -nKR -aaw -nsO -eWB -kkl -rEP -xQG -ykw -jpE -gnL -lbk -lbk -sDl -sDl -qQf -jkr -iUG -qQf -vlv -gOT -aun -ykj -qQf -ygB -ygB -ygB -fda -pcJ -pjw -maB -kGD -uja -oiz -ehm -uja -nCm -chB -twU -uja -dnq -iuv -dnq -mny -mny -mny -mny -mny -wVR -mfW -irZ -mfW -mfW -gBk -xQO -mfW -mfW -ccs -amN -hHu -vBh -vBh -tZZ -dqs -jGv -qrc -qsd -vBh -vBh -vBh -uuq -vlf -uIj -cvS -iGa -caZ -vpR -caZ -oDk -kRP -fwO -fwO -njb -ugR -tTY -hHN -jlV -hHN -rET -cEw -cEw -cEw -cEw -cEw -jaN -fwq -hHN -lRR -bpR -gMm -mzd -mIk -wMe -gqB -hHV -mDX -mDX -qwF -aPD -alD -tjk -ydc -nyA -evo -iaY -duh -duh -duh -bln -bln -sEB -bln -bln -bln -bln -bln -bln -bln -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(129,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -tCR -dcx -ihb -bnM -mWq -kkl -viO -gUs -ykw -lbk -lbk -lbk -bln -sDl -bln -iug -nmP -loS -qQf -qeu -tIM -oes -ykj -qQf -dnk -olf -ygB -mjG -eKJ -ulk -cde -uja -uja -uja -eQN -uja -uja -uja -xWG -uja -ise -lyh -iuv -vrX -iuv -iuv -iuv -iuv -iuv -vrX -rpG -iuv -xNF -ylU -wUi -iuv -iuv -iuv -iuv -iuv -iuv -iuv -iuv -rpG -iuv -iuv -iuv -iuv -iuv -iuv -flx -dnq -cDQ -cvS -sDU -fgs -hnd -pNq -gDp -kRP -bBW -bBW -bBW -bBW -tug -bBW -jlV -aap -dUv -cEw -rLs -rLs -xmL -cEw -cmJ -rwC -tyb -nrA -bYO -eoH -dAg -qxo -eVC -qwF -qwF -qwF -qwF -qwF -aPD -aPD -mcc -aPD -nyA -xie -dFo -kKy -duh -bln -bln -bln -sEB -bln -bln -bln -bln -bln -bln -bln -mVm -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(130,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -ykw -mvl -kkl -kkl -kkl -kkl -kkl -eyb -rTX -ykw -bln -bln -bln -bln -bln -bln -iug -rpB -sCY -qQf -qQf -qQf -qQf -hmf -qQf -lQr -pJm -ipx -fNE -lvY -mmA -iXK -uja -vmp -vmp -kxN -uja -rCo -oUG -hsB -uja -fbt -aPo -qnf -xzh -bWL -dnq -dnq -dby -otQ -dnq -mpy -dnq -dKW -ylU -lDo -dnq -iuu -dnq -dnq -dnq -apb -dnq -bep -mpy -dnq -dnq -ivo -dnq -xdW -ikC -dnq -dnq -sAC -cvS -sxu -kwX -pNq -pNq -gDp -rxa -jtl -kdc -mFt -saJ -vBv -kjy -grI -ruI -ubF -fFv -wwu -kwm -wwu -wWt -eVI -gmJ -npJ -xGI -mNF -baQ -hsf -rsW -tQb -xKd -jeh -kcG -kcG -qwF -wYJ -xfc -mzz -oHp -nyA -ybq -lhO -bRZ -duh -bln -bln -bln -sEB -bln -bln -bln -bln -bln -bln -bln -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(131,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -ykw -ftA -mpR -cLB -arT -eyb -iKS -xIk -bYF -ykw -iug -iug -iug -bln -bln -fsm -iug -wLZ -ykj -hmf -hmf -qQf -lVy -ykj -qQf -pOo -piC -ygB -nOD -aos -rBn -uYV -nkM -nkQ -uDT -aMX -uja -uja -uja -hsB -uja -hmb -eJq -mWp -exw -exw -exw -hmb -exw -exw -hmb -hmb -exw -ocj -hWP -ocj -azw -azw -neo -azw -azw -gIY -gIY -gIY -gIY -gIY -cvS -cvS -cvS -cvS -cvS -cvS -cvS -cvS -cvS -abU -kRP -uiI -qzF -gDp -kRP -csZ -gcV -jug -lwi -jco -sTe -jvS -iSl -gdv -hHN -tbh -bIs -tbh -yiv -vtv -hHN -hHN -nrA -hQu -eBT -eqm -hpI -eVC -bea -frD -tln -lMh -qwF -wYJ -wYJ -qMU -wYJ -nyA -aJX -alb -nTL -cHf -qHg -tmR -bln -sEB -bln -bln -bln -bln -bln -bln -bln -mVm -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(132,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -ykw -wBc -kYI -vyh -ufm -eyb -wug -uLF -nSH -hqi -sCe -iUG -iug -iug -iug -iug -iug -lyO -rgS -pCK -hmf -qQf -fLx -hmf -qQf -gmW -gmW -gmW -ltV -mAz -oSk -ltV -uja -mqy -mqy -tUn -uja -jlP -mfz -twU -uja -idw -eZj -iuE -bPg -cKp -kDP -kmQ -xgy -xgy -kAY -jBq -hmb -lso -dEV -bai -azw -jqE -fjK -sAT -azw -fMg -fqW -pHS -nCb -kWL -cvS -pjF -nhw -cvS -bEB -kNA -mOo -jPh -tYJ -azf -kRP -kRP -kRP -gDp -boQ -lgW -drh -nGG -fER -nSD -uID -vBC -goE -ubF -mxj -fcN -lxU -fcN -fcN -nBG -uub -kYi -rBQ -ssh -skx -xMe -mIk -wMe -gqB -yaT -kcG -kcG -qwF -wYJ -sEB -shl -sEB -nyA -njm -njm -njm -duh -sEB -ipM -bln -sEB -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -ozo -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(133,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -ykw -fhV -kYI -kYI -bOg -qnd -xyS -fhu -bLI -ykw -qQf -iUG -tXX -qQf -pcE -eKR -qQf -qQf -qQf -qQf -xAc -qQf -oCd -tVR -bsC -faZ -soe -wHv -gLx -rza -oBP -hwg -uja -uja -uja -uja -uja -uja -uja -uja -uja -emg -wmy -njn -pix -reh -eqL -jVq -xgy -xgy -ilP -xJF -hmb -lso -dEV -bai -azw -tPI -fTC -xkg -azw -qvZ -hhT -vnN -pQp -ovX -cvS -ril -eHe -uhH -mnC -cvS -caZ -caZ -uIM -cGA -yby -vnY -kRP -sqN -kRP -spq -tyS -whf -sjk -uht -ehR -gnw -hHN -pGf -igx -dFC -dFC -jBR -fnA -hHN -lRR -uYH -shj -qnO -lxu -fQc -qxo -eVC -qwF -qwF -qwF -qwF -qwF -wYJ -bln -bln -bln -kUu -bln -bln -bln -bln -bln -oxR -bln -sEB -bln -bln -bln -bln -bln -bln -bln -mVm -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(134,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -ykw -lHu -tIf -tIf -blT -ntq -cWG -cWG -vRN -fEA -xwk -qkw -qkw -hIq -qkw -qkw -qkw -qkw -qkw -qkw -qkw -qkw -hio -xUM -qQf -lyU -ffZ -vfW -vfW -mZK -dZB -uBt -xbh -gmW -hnB -esu -hMk -jLn -oYH -eBi -duV -fKw -wmy -vRE -bxi -mpU -qdo -quZ -toH -toH -bEq -kHV -hmb -lso -dEV -ieZ -azw -ekn -vPV -fHk -azw -tJV -orE -tyf -hMH -yiK -cvS -dDC -gXm -cvS -cvS -cvS -ohp -ohp -ohp -ohp -gGf -pNq -kRP -udL -kRP -bIa -jug -aSe -kFH -aen -hIA -rBQ -fQc -fQc -noY -ruw -fQc -fQc -fQc -mvG -shj -uGy -hHN -cqO -cfC -fsQ -cnq -nqb -aUS -mTm -sMg -sMg -qwF -aPD -bln -bln -bln -nyA -bln -bln -bln -bln -bln -nFO -bln -sEB -bln -bln -bln -bln -bln -bln -bln -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(135,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -ykw -kON -rax -wWU -xjL -vMe -aML -iLv -hSJ -ykw -iUG -iUG -iUG -iUG -qDo -iUG -loS -iUG -loS -xPZ -oCd -eOc -loS -sXg -qQf -lYv -eOl -nRi -fjM -fjM -mlv -qwP -iUs -gmW -ofT -ePl -hGI -tFW -ykZ -vqD -keq -uKg -qYD -oUK -gEL -mpU -qFC -nKn -kTO -kTO -jAZ -sIm -hmb -lso -dEV -lts -azw -iWd -fTC -ijl -azw -azw -azw -azw -kLS -gIY -cvS -kSn -vEN -cvS -ltE -pkN -ohp -ohp -ohp -ohp -pNq -uQK -kRP -gDp -kRP -qjb -tbb -kyr -dFp -nJI -hoV -ijK -xfB -khe -oSX -oyX -xfB -cHm -xfB -hBi -xfB -jHQ -xfB -gBx -rkm -sEX -hpI -eVC -bea -kfa -qCn -tCB -qwF -bln -bln -bln -bln -czY -bln -bln -bln -bln -bln -nFO -bln -sEB -bln -bln -bln -bln -bln -bln -bln -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(136,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -ykw -uFf -pwo -uFf -ykw -uFf -nOb -uFf -ykw -ykw -uwf -uwf -uwf -qQf -uwf -uwf -uwf -qQf -tzO -iUG -qQf -mrw -euF -mrw -qQf -tjm -vfW -wsW -nUj -mpH -giF -nXn -qdd -gmW -uiw -hWh -hGI -tCs -exw -exw -exw -fjw -oiq -eLT -exw -exw -exw -exw -exw -exw -exw -exw -exw -lso -dEV -bai -azw -opz -eyc -dCo -kuX -biR -dmI -hbC -veU -tIt -kRP -kRP -oiB -kRP -cGA -wba -ohp -ohp -ohp -ohp -nva -ktB -kRP -gDp -kRP -jKh -uEJ -qVM -gPX -mur -hIA -iXq -hLS -ifY -sgJ -rJa -uiq -wAo -hHN -hCY -uLU -wSC -flH -bOY -rPn -dIb -cnq -nqb -qQq -uxx -sMg -sMg -qwF -bln -bln -bJq -bln -czY -bln -bln -bln -bln -bln -oxR -bln -sEB -bln -bln -bln -bln -bln -bln -bln -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(137,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -uFf -bJE -uFf -bln -uFf -bJE -uFf -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -qQf -qQf -uQW -qQf -qKi -uwb -oXz -qQf -ncO -vfW -qno -iay -dCF -giF -nxY -gZJ -gmW -exw -exw -hvr -exw -exw -jPa -enG -mdZ -nLZ -nLZ -izC -rXd -aAc -igi -bOu -nNG -izC -khA -lso -lso -kjK -bai -neo -hxz -hVt -aMP -aLp -iyV -hHI -hbC -niu -fKi -tHr -euR -soK -kRP -nMN -kRP -kRP -kwX -lBS -kRP -kRP -kRP -kRP -gDp -kRP -wvV -qyI -buo -tEZ -oFW -qIC -isd -cnq -nVe -xMh -isd -cnq -kBv -cnq -eMr -cnq -rBo -jYH -kfs -kfs -oAl -kfs -eVC -qwF -qwF -qwF -qwF -qwF -bln -bln -bln -bln -czY -bln -bln -bln -bln -bln -nFO -bln -sEB -bln -bln -bln -bln -bln -bln -bln -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(138,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -uFf -pMg -uFf -bln -uFf -rXX -uFf -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -qQf -bKv -qQf -nWA -rDg -jNP -qQf -oqx -vfW -nCO -ssf -ssf -aMy -vfW -ndF -dIe -sUO -pNj -xFA -aTV -rQt -tGZ -tGZ -tqZ -mrF -iFc -wJd -mIB -uUV -fmD -fmD -fmD -iMh -lso -lso -lCi -dEV -bai -neo -jIM -dip -mZv -azw -bMT -chi -azw -eiY -tZm -pBA -rEk -uNq -ujI -vND -exe -kRP -esC -eUI -kRP -qyR -bve -kRP -gDp -cvS -sEB -sEB -pPy -sEB -vUr -sEB -ygd -sEB -vUr -fLP -mkG -swu -rwB -swu -mkG -swu -wfm -nST -lOI -pGQ -wgG -uQy -iyx -swu -swu -swu -swu -swu -swu -swu -swu -swu -bmT -bln -bln -bln -bln -bln -nFO -bln -sEB -bln -bln -bln -bln -bln -bln -bln -mVm -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(139,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -bln -bln -bln -bln -qQf -wct -qQf -qQf -qQf -qQf -qQf -oCJ -vfW -eOl -vfW -vfW -lvk -lvk -tXy -gmW -whu -rtc -rtc -jJf -dlV -etA -jFA -mnj -uVn -wxR -wvb -meB -meB -qIa -meB -meB -hSq -mVh -mVh -vwO -hHg -mar -azw -uze -uTk -xPk -sHc -oGs -sEz -jFZ -uoV -gnb -gTi -whh -pQL -nCV -qfy -txo -kRP -kRP -kRP -kRP -qyR -qyR -kRP -gDp -cvS -sEB -qwF -koO -bea -xDG -qwF -jgn -bea -xDG -qwF -jgn -bea -xDG -qwF -jgn -bea -xDG -qwF -gtg -cEw -bCT -kfs -kQu -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -cwn -bln -sEB -bln -bln -bln -bln -bln -bln -bln -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(140,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -bln -bln -bln -bln -sEB -sEB -sEB -bln -bln -bln -gmW -tBB -tBB -tBB -tBB -loe -ukb -ukb -nrk -gmW -jOY -tux -dsO -kQX -tGZ -oBp -mdZ -mdZ -snE -jtu -izC -nOB -rRy -rRy -mdy -cwh -izC -tLF -aJh -lso -dEV -bai -azw -tKR -vYH -qZm -azw -cXu -frP -cdv -nRd -pOU -tHr -tHr -bxU -art -tHr -tHr -tHr -kDa -gZz -pBA -xfb -dpB -kRP -gDp -cvS -sEB -qwF -cOi -oLK -kgg -qwF -pcr -bXl -fcQ -qwF -rWp -kXq -qab -qwF -xeM -vtj -rQN -qwF -gtg -hpI -qAT -kfs -kfs -kfs -sEB -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -shH -vsI -sEB -bln -bln -bln -bln -bln -bln -bln -mVm -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(141,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -gmW -gmW -dGO -dGO -vEi -dGO -dGO -vEi -dGO -dGO -gmW -mdZ -gzw -kiB -kQX -xLn -jHT -mdZ -rth -hid -mrF -ptO -jRA -jRA -jRA -ixH -fmD -lEO -ibI -lso -lso -dEV -bai -azw -dmI -qMv -vDh -azw -fNA -eqp -cTV -fHz -lwQ -lwQ -sEK -eHg -ahL -vQh -jYg -bCr -bYK -srn -pBA -drH -maU -kRP -gDp -cvS -sEB -qwF -kdY -qAQ -qAQ -qwF -uIg -eZc -uIg -qwF -bzW -eWj -bzW -qwF -aOX -aRj -aOX -qwF -uUH -vuu -xvj -rCW -lfF -fJe -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -tmR -jrI -oaQ -oaQ -oaQ -oaQ -qHg -tmR -tmR -tmR -mVm -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(142,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -gmW -knl -knl -knl -knl -knl -knl -knl -knl -knl -knl -mdZ -gzw -kiB -kQX -tGZ -nYQ -mdZ -hvl -hid -iFc -izC -jRA -jRA -dGP -fZo -nGz -eEz -yjX -mqq -mqq -kjK -bai -azw -oAp -tci -chi -azw -gIY -iBj -mcW -sFG -lwQ -fIu -cyo -kpO -lup -aCA -gJo -nbC -wZC -rDJ -pBA -qfE -vuR -kRP -gDp -cvS -sEB -qwF -qAQ -uxK -qAQ -qwF -uIg -mjg -uIg -qwF -bzW -iTY -bzW -qwF -aOX -tsl -aOX -qwF -sEB -hpI -loV -kfs -kfs -kfs -sEB -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -vsI -mHR -sEB -tmR -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(143,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -dld -bln -bln -bln -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -gmW -knl -knl -aBf -knl -knl -knl -knl -knl -knl -knl -mdZ -mdZ -nsf -dCk -wwo -mdZ -iWr -iWr -jgh -aoP -izC -eEz -izC -izC -eEz -izC -izC -tLF -lso -qGV -dEV -bai -hgh -vZB -pjp -qbd -rzS -hgh -pLt -mcW -fPb -bEL -efK -evp -juw -tkf -ikz -lbC -tHr -pBA -pBA -tHr -jbC -jbC -kRP -gDp -cvS -sEB -qwF -qwF -qwF -qwF -qwF -qwF -qwF -qwF -qwF -qwF -qwF -qwF -qwF -qwF -qwF -qwF -qwF -sEB -hpI -loV -kfs -bln -sEB -sEB -sEB -sEB -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -sdr -sEB -tmR -sEB -sEB -sEB -sEB -sEB -sEB -sEB -mfD -mfD -mfD -mfD -mfD -bln -bln -bln -rbm -bln -wNO -wNO -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -gEd -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(144,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -gmW -knl -knl -knl -knl -knl -knl -aBf -knl -knl -knl -mdZ -qqx -shh -fgE -rDE -mdZ -vMi -pyj -lnq -hnf -bdP -rga -fAc -pxs -iAJ -eCA -ihf -uMu -lso -lso -dEV -bai -hgh -vwB -xxg -nDl -uau -hgh -kBL -xPT -cxA -lka -vkD -cey -lux -eHZ -lux -fUL -evp -evp -evp -ucp -eWT -hpp -kRP -gDp -cvS -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -hpI -hZm -wvI -wvI -puf -puf -puf -vSl -puf -puf -wvI -pwF -wvI -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -bln -bln -bln -bln -bln -jqx -vsI -tmR -vsI -bln -bln -bln -bln -sEB -mfD -mfD -xow -syY -aFi -mfD -ptY -ptY -ptY -ptY -bln -bln -bln -bln -ptY -ptY -ptY -ptY -ptY -ptY -ptY -ptY -iHp -iHp -iHp -iHp -iHp -iHp -iHp -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(145,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -gmW -knl -knl -knl -knl -knl -knl -knl -knl -knl -knl -mdZ -jBw -shh -fgE -kPb -mdZ -kfY -fqc -rDF -sHB -rDF -sHB -chj -iqL -rDF -sHB -eBa -laP -lso -rvZ -dEV -kLI -xjg -kxB -mnF -lKZ -vha -fCM -qQx -mcW -cxA -lyl -nMu -wDe -hxs -uEr -nzs -iuD -qAf -gHq -ygF -wGE -rpM -vRo -cvS -oaX -cvS -cvS -cvS -lvG -lvG -lvG -cvS -cvS -lvG -bVZ -tYZ -kRP -wOn -wOn -wOn -wOn -wOn -wOn -wOn -wOn -wOn -pzn -wvI -bBM -mIE -mdQ -xTu -kJK -qOk -arZ -liW -aLJ -puf -haC -haC -haC -haC -qCB -bln -bln -bln -bln -bln -bln -bln -bln -sdr -dZX -xcZ -dZX -swF -bln -bln -bln -bln -mfD -bRO -xpP -ghY -ccw -cQL -pbs -xHY -bPc -ptY -ptY -ptY -ptY -ptY -ptY -vyt -vyt -vyt -vyt -ctl -ctl -ptY -iHp -iHp -iHp -iHp -iHp -iHp -iHp -iHp -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(146,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -gmW -xPW -knl -knl -knl -knl -knl -knl -knl -knl -hNx -mdZ -eCq -shh -fgE -shh -mdZ -gsD -sHB -trl -nGb -rDF -sHB -rDF -cQv -rxK -cQv -qjK -ehA -avb -avb -vSa -fuY -clK -qlB -eTM -vkG -aDI -lUb -lMB -pbW -sco -amJ -lzM -wbw -ddu -dgl -evp -rEG -iEA -olI -oyB -mcp -rpM -uyO -cvS -gDp -gDp -gDp -gDp -gDp -gDp -gDp -gDp -gDp -gDp -cvS -cGA -kRP -uyU -gGC -heQ -nll -ign -ebr -iJK -ebr -bzE -dYI -vep -nDi -xke -ldr -vhT -iLf -icF -gRI -lwd -mka -wvI -msd -wvI -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -sdr -dZX -nto -ote -swF -swF -swF -swF -swF -mfD -flW -xpP -ghY -jMc -ghY -diu -vyt -vyt -vyt -yfT -vyt -vyt -vyt -vyt -vyt -ptY -ptY -ptY -ptY -ptY -ptY -iHp -iHp -bgE -iHp -iHp -iHp -iHp -iHp -iHp -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(147,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -gmW -knl -knl -knl -knl -aBf -knl -knl -aBf -knl -knl -mdZ -qqx -shh -fgE -shh -mdZ -uOH -rDF -rSK -rBt -gyr -xdA -gyr -xdA -gyr -xdA -wvN -uMu -lso -lso -qEM -lso -dCs -gPZ -cnT -dEg -nLn -hgh -qPu -niu -pZm -bEL -vqX -lgk -qoi -mzL -nji -ikz -evp -hRH -dXi -mmh -ikz -piI -cvS -nkX -kRP -kRP -kRP -kRP -kRP -kRP -vpR -qTe -uep -cvS -lUU -kRP -oWj -pOy -pOy -njA -sKW -hGs -vXv -hGs -gOY -ylM -vep -trf -cXV -nDq -etB -swx -ldr -ldr -rSW -xgr -mVe -fVE -wvI -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -dZX -tis -qci -tWy -dqg -swF -swF -qFu -gzz -uCg -mfD -mfD -skX -ojW -ife -sUv -pbs -pbs -pbs -pbs -pbs -diu -pbs -pbs -pbs -pbs -ptY -iHp -iHp -iHp -iJO -nrB -oVz -iJO -mYh -oVz -nrB -iJO -iHp -iHp -iHp -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(148,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -ozo -bln -bln -bln -bln -bln -gmW -knl -knl -knl -knl -knl -knl -knl -knl -knl -knl -mdZ -mdZ -tDv -lqB -fRI -mdZ -fWr -ggD -pNV -cpY -pxF -iYi -iYi -iYi -iYi -ifw -cpY -cpY -rjP -lso -vwO -lso -dCs -gPZ -obG -dEf -jkY -iIE -iAO -niu -pZm -lwQ -qsQ -kQM -rVq -nji -cey -lux -lux -lux -lux -lux -lgk -tHv -mPv -cIU -mlR -rWW -jjQ -tCE -uOg -kRP -auq -mRu -uep -vsZ -hnd -kRP -lop -aJL -gJs -gJs -vZD -ebr -iJK -ebr -bzE -pMq -vep -bHu -cAu -xwc -raA -wrP -nSw -qUu -qUu -fvR -kiE -fTB -pwF -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -dZX -ijT -fgU -cAL -czi -swF -xws -eRH -sMp -orK -nSF -pnR -pnR -pnR -kQz -pnR -hHb -oyW -oyW -act -hzH -oyW -bqt -act -oyW -oyW -iHp -pfs -ejO -ujs -iJO -ogF -ogF -tFd -lRy -fyc -mYh -mYh -iHp -iHp -iHp -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(149,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -gmW -knl -knl -knl -knl -knl -knl -knl -knl -knl -knl -mdZ -wEa -gOR -kQX -vLn -mdZ -wbB -lxf -eBa -qZB -ftM -gtw -gtw -gtw -gtw -gtw -uqB -cpY -cGZ -lCi -vwO -qZl -xjg -sQW -vCT -bqJ -sqB -fCM -qPu -niu -xoy -lwQ -cck -oeW -aTZ -fle -pyu -qLo -tWL -rsR -svq -vtk -kQM -upO -tQc -vSY -ubq -lfL -cYR -isP -eYg -kRP -kRP -kRP -owe -hlp -cGA -kRP -npD -wfu -npD -npD -gGj -mue -sGH -bPt -fij -oDh -jaO -jLQ -wkW -txE -rfS -drJ -drJ -mRr -wvI -fiu -wvI -msn -wvI -wvI -bln -bln -bln -bln -bln -bln -bln -bln -bln -dZX -kJI -fgU -hPe -vMA -oLJ -rYq -yhw -pzY -fQu -aiY -pnR -mXP -dab -iAk -aRD -hHb -aqU -aqU -aqU -aqU -aqU -jXw -jXw -jXw -aqU -iHp -qGj -euc -ujs -mYh -ogF -cZM -uBi -uBi -lqz -dBQ -eAx -iHp -iHp -iHp -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(150,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -gmW -knl -knl -knl -knl -knl -knl -knl -knl -knl -knl -mdZ -aWS -tGZ -taK -djT -mdZ -acx -xlv -oDm -qZB -gtw -xHi -aHZ -jwv -pYI -mVY -bmf -cpY -tLF -cwO -vwO -qnU -nKa -dSC -tCf -pwb -dSC -nKa -tWZ -niu -agK -lwQ -lwQ -bEL -sjX -moE -bEL -lwQ -lwQ -bEL -lwQ -lwQ -bEL -lwQ -qQp -bXT -isP -ePi -rdG -iQb -rdG -jzY -kzt -geP -uep -uep -uep -eRx -gNT -vng -lme -tiZ -uuI -noR -wDg -rqD -wDg -uin -vep -skh -xyT -jvR -fFC -nnn -iIs -iDQ -msN -gVC -lyH -uxF -huZ -wvI -bln -bln -bln -bln -bln -bln -bln -bln -bln -dZX -lIW -fgU -lIW -glS -iDp -doG -orK -bro -voY -rlS -frq -rlS -cfe -mXi -nDz -mRI -bLz -bLz -rfh -bLz -mEg -lXB -jUW -bLz -bLz -mCw -ryf -ryf -fyr -lNC -mlp -lEg -cvh -uBi -eYH -jIZ -oFx -iHp -iHp -iHp -gNg -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(151,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -gmW -gmW -gmW -gmW -vEi -dGO -dGO -vEi -gmW -gmW -gmW -mdZ -mdZ -syL -kQX -tGZ -mdZ -ptp -ggD -ifg -qZB -gtw -jQo -vMq -eUw -jZt -fkk -bPL -cpY -lkr -lso -vwO -eop -nKa -kyW -wKe -vHf -cZd -nKa -mPG -ted -krS -qkc -mbB -rDa -mrB -jQD -slc -dNh -hsV -qjF -pPO -wbN -iyK -ewm -qQp -qQp -mMl -rZm -sOO -lRD -gbP -jxv -cHs -cvS -cvS -cvS -cvS -cvS -sZF -wIS -wRr -npD -xfM -uFM -gCe -oqc -oAD -xKX -vep -pBI -vJE -gGo -uqH -qXk -qSC -ldr -fIv -mgD -pmb -hPD -haQ -pKY -tZa -bln -bln -bln -bln -bln -bln -bln -bln -dZX -dZX -dZX -dZX -oOO -iDp -swF -osm -iqu -fcu -uOk -pnR -usQ -oPv -iAk -aeg -hHb -aqU -aXM -aXM -aXM -aqU -aqU -aqU -aqU -aqU -rcO -mYh -mEx -ujs -mYh -ruZ -pmC -uBi -uBi -uBi -deg -mYh -iHp -iHp -iHp -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(152,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -dGO -qnE -ecW -lgg -qgN -gmW -hGf -bln -bln -mdZ -byk -rrx -nIr -mdZ -fRJ -lxf -son -qZB -gtw -bDe -xbn -ioo -eke -fkk -bpG -onv -uXm -lso -qEM -pJC -nKa -dhk -qND -atC -cAI -cMN -uYm -uoV -krS -bna -xtc -wxH -vzm -sDT -fzv -laD -xPv -mGO -tAx -wbN -grT -lEo -woF -qQp -bVp -jnS -fog -lkH -upd -xdl -eDc -hRA -cKF -sIJ -jIi -rEH -sZF -sZF -wDK -npD -tZG -nZH -xbC -dPj -npD -npD -npD -npD -npD -npD -fvX -fvX -cnh -cnh -oSw -ybF -wvI -wvI -wvI -wvI -vep -wvI -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -mwo -swF -eDh -vAF -swF -vAn -pnR -pnR -pnR -tWp -pnR -hHb -oyW -oyW -qMQ -oyW -rsL -uvX -qMQ -oyW -oyW -iHp -iKr -iST -ujs -iJO -ruZ -ruZ -jag -oEl -qEa -qEa -mYh -iHp -iHp -iHp -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(153,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tCr -mVm -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -dGO -yfW -kIV -lgg -uDq -gmW -bln -kKL -kKL -kKL -kKL -mKh -kKL -kKL -sIC -xlv -iXH -qZB -oEh -lLO -kvs -qfe -ecZ -fkk -lmG -onv -kYE -lso -cbs -nGA -nKa -seE -rNF -bjm -kXM -nKa -xXV -eYn -wjL -wbN -iWP -xIW -dtE -uYB -lCC -lCC -iKl -iKl -xyc -dVw -bkV -ree -jbX -qQp -tQc -jbx -tQc -tQc -tQc -tQc -qQp -hRA -loN -rkL -cga -rTv -sZF -sKf -wRr -npD -cmw -nZH -msT -npD -npD -sPx -sPx -alq -gKq -sZF -uNw -sZF -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -uer -bln -bln -bln -bln -bln -bln -bln -swF -jsq -ben -iol -oiy -oiy -eMK -lsU -apn -qhd -pbs -pbs -pbs -pbs -pbs -ilJ -pbs -pbs -pbs -pbs -ptY -iHp -iHp -iHp -iJO -avr -oVz -iJO -mYh -oVz -avr -iJO -iHp -iHp -iHp -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(154,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tCr -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -tCr -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -dGO -caj -aFP -lgg -vSX -gmW -bln -kKL -bgG -kum -kKL -hfh -bQr -vSr -gtc -usI -son -tCl -eDx -fkk -aEU -fMP -fMP -oyV -fFu -onv -uXm -lso -qEM -xwz -nKa -nKa -nKa -nKa -nKa -nKa -sWl -gOb -gOb -aSo -aSo -cCD -sZD -lnC -klc -lDM -kNa -ica -lDM -klc -hdT -nry -cSy -mJj -laD -npE -xLK -iML -iML -iML -nHX -hRA -kIu -rkL -uFz -kJC -sZF -edT -wRr -npD -bPY -rwe -wGO -npD -oUi -sPx -fjp -gKq -iye -sZF -eZu -sZF -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -swF -hWi -xkZ -ggR -oiy -wRJ -hsh -cZv -lPc -bkr -ilJ -itl -itl -tQM -koX -itl -qCU -vyt -vyt -vyt -ptY -ptY -ptY -ptY -ptY -ptY -iHp -iHp -nBo -iHp -iHp -iHp -iHp -iHp -iHp -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(155,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tCr -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -tCr -bln -bln -bln -bln -bln -bln -sEB -mMb -rMa -mMb -kKL -kKL -kKL -kKL -qoz -kKL -kKL -kKL -kKL -mTk -bZG -kKL -lli -iCC -kKL -fbm -gjh -laQ -bzn -fyh -qjX -wKm -wqZ -haN -kqA -ksl -cpY -ivB -lso -vwO -uqF -vBG -eWn -tLp -eLn -hKr -pRI -oxU -pxX -bCf -kmf -qOW -hDC -sZD -vgx -lDM -pjZ -vzN -oXq -xWT -klc -uIt -pJX -rqq -lPr -vcY -mmR -fMy -dMp -dMp -dMp -lqG -grD -hKk -lGs -niJ -aue -sZF -wUb -mlo -npD -ebr -iJK -iBz -npD -coK -kvn -sPx -tbQ -iye -sZF -sOo -vjZ -bln -bln -bln -bln -uer -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -swF -swF -swF -swF -oiy -wRJ -hsh -kCV -bkr -qOy -pbs -rAL -qMH -ptY -ptY -ptY -ptY -ptY -ptY -vyt -vyt -vyt -vyt -ctl -ctl -ptY -iHp -iHp -iHp -iHp -iHp -iHp -iHp -iHp -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(156,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tCr -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -bln -bln -bln -bln -bln -bln -bln -sEB -qSB -lli -oop -lli -lli -lli -lli -lRZ -lli -lli -lli -bMF -ojV -gbB -kKL -lli -lAG -kKL -kKL -kKL -kKL -kKL -kKL -kKL -mgN -kKL -kKL -kKL -kKL -kKL -kKL -rqT -pfB -gBq -vBG -caG -pKw -xcu -jQd -jQd -wmN -rZR -bCf -wor -wor -kqN -rsp -noW -uvi -bNH -bNH -rIc -ujq -klc -sHd -jih -rkM -eHU -iYs -eHU -rkM -eHU -pko -gsT -fFJ -hRA -sHD -dnc -sfM -tsZ -sZF -sKf -mlo -npD -ebr -iJK -cpl -npD -fWL -qUM -fZT -gKq -xVU -sZF -eZu -vjZ -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -oiy -oiy -kHU -jiZ -alK -oiy -ptY -ptY -ptY -ptY -bln -bln -bln -bln -ptY -ptY -ptY -ptY -ptY -ptY -ptY -ptY -iHp -iHp -iHp -iHp -iHp -iHp -iHp -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(157,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tCr -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -bln -bln -bln -bln -bln -bln -bln -sEB -mMb -vLk -kKL -lli -xAb -cvF -gGF -ssM -kKL -gAt -lli -kKL -kKL -kKL -kKL -lli -kmN -oDJ -pCi -kKL -uZL -tBN -aKG -kKL -cSQ -kKL -kKl -beT -nwI -giD -kKL -bws -vwO -pxn -vBG -mQr -mvU -rZZ -opc -qPI -txC -cgs -bCf -wor -wor -apt -amE -vgx -lDM -kAZ -gUg -amv -cTJ -klc -aSo -aSo -mmB -aSo -aSo -aSo -mmB -aSo -aSo -tMO -aLs -tMO -tMO -tMO -tMO -tMO -sZF -hil -mlo -npD -kpM -iJK -pyY -npD -vBa -vCv -aVg -tbQ -iye -sZF -cBn -vjZ -bln -bln -bln -bln -bln -bln -bln -iAf -iAf -iAf -iAf -iAf -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -oiy -oiy -oiy -oiy -oiy -bln -bln -bln -oxi -bln -wNO -wNO -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -pGW -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(158,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -kKL -qzN -gGF -kKL -kKL -tml -lRZ -tml -prf -lli -lli -pQa -mJr -lTJ -lBb -gZl -kKL -orf -kKL -nqn -lHA -hao -kKL -cSQ -kKL -eie -lli -lli -wwG -kKL -rjP -qEM -pxn -vBG -vBG -vBG -eNH -vBG -oiX -myn -cgs -bCf -aWc -nbW -oyy -amE -wyj -klc -krx -ufN -vCz -ufN -lTG -dDw -rky -hYc -gpK -gCg -dWL -hoe -cwM -mFE -diU -vRy -tMO -pbZ -tAM -tMO -gSa -sZF -qwO -wRr -npD -ebr -hcG -bEH -npD -vtr -wkZ -dEi -gKq -oMs -sZF -eZu -vjZ -bln -bln -bln -bln -bln -bln -bln -iAf -lTC -qpR -kLr -iAf -iAf -iAf -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(159,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tCr -tCr -tCr -bln -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -bln -bln -bln -bln -bln -acE -bxe -bxe -bxe -mHB -lli -lli -lIC -kKL -aIE -lRZ -lIC -kKL -tml -lli -iIa -bcC -iIa -vYv -kKL -kKL -iOc -eAS -nNv -wPZ -fRP -kKL -cSQ -cDw -lli -lli -lli -iZy -kKL -cwO -vwO -lso -siu -vBG -rkK -oeM -vBG -nLd -wLY -hXI -vBG -oEF -bZb -ubk -amE -rHz -fdY -xuM -ixd -xCQ -ufN -sVm -dDw -oRq -aOD -kjG -vds -cqj -qyf -mia -mFE -fLj -dmO -rYL -nAN -sGV -ezf -asL -sZF -sKf -wRr -npD -npD -czO -npD -npD -sZF -iqr -sZF -sZF -sZF -sZF -eZu -sZF -bln -bln -bln -bln -bln -bln -bln -iAf -dTq -qRk -weR -lQO -hJD -iAf -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(160,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tCr -bln -bln -bln -bln -bln -tmR -bln -bln -bln -tmR -bln -bln -bln -tmR -bln -bln -bln -bln -vsI -acE -acE -wtX -eqJ -bHS -oBQ -mHB -gUY -lli -lli -kKL -kKL -lRZ -yej -gHm -uDW -uDW -cHy -xFC -pub -xWM -kKL -knW -xFj -kKL -wbZ -oTB -aOV -kKL -cSQ -kKL -vMR -lZv -hrt -fpA -kKL -iko -qEM -lso -bGT -vBG -wvW -lmM -vBG -gOz -oMR -hsC -vBG -sJL -xrb -qhN -amE -lei -klc -slK -hXU -bba -hIe -uKj -dDw -wCl -iRK -vos -vds -nNq -dPh -vRp -mFE -dpr -klk -vxE -hyd -xjD -tMO -jYy -sZF -vwr -wRr -eZu -lcz -eZu -rHo -sZF -bFS -eZu -xpT -hEZ -sZF -kCh -eZu -sZF -sZF -vjZ -sZF -gar -bln -fBN -vYq -iAf -tUh -iNQ -cmX -iAf -iAf -iAf -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(161,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tCr -bln -cnx -tmR -tmR -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -tmR -tmR -tmR -tmR -rUR -kxv -fIs -kxv -gHv -kxv -pHd -tvZ -tvZ -tvZ -tvZ -kKL -gAt -orf -gAt -lli -wQI -kKL -kKL -mMb -mMb -kKL -cSQ -kKL -kKL -kKL -kKL -kKL -kKL -cSQ -kKL -kKL -kKL -kKL -kKL -kKL -lso -vwO -mqq -ivB -vBG -loG -iOu -sZF -sZF -dcz -sZF -sZF -fUb -jCY -ktD -mSM -ozN -sZF -sZF -sZF -sZF -sZF -sZF -sZF -uGK -vgP -fwZ -obr -xuj -sUR -eMh -mFE -aFR -lVR -rbK -tsY -uaW -tMO -cAA -sZF -mEK -wRr -lXm -sKf -tfG -eZu -iaz -eZu -sZF -nGk -eGK -sZF -eZu -eZu -xpT -bdx -sKf -cmq -gar -bln -bln -vYq -fWS -weR -jdJ -xVO -jAQ -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(162,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tCr -bln -bln -bln -bln -bln -tmR -bln -bln -bln -tmR -bln -bln -bln -tmR -bln -bln -bln -bln -sEB -acE -acE -het -lQf -swt -xTp -pDQ -nJs -wJM -wJM -tvZ -kKL -dnL -orf -kKL -pVl -kKL -kKL -kbp -tlH -tlH -kKL -cSQ -kKL -tlH -tlH -bln -kKL -lqh -sEE -uKr -uKr -gxY -asg -kKL -kdF -qGV -hUx -ikH -sZF -sZF -sZF -sZF -sZF -eZi -wEV -sKf -sZF -sZF -sZF -sZF -ikw -uWp -sZF -pwV -pwV -sKf -hEZ -sKf -sZF -sZF -sZF -sZF -sZF -sZF -sZF -sZF -sZF -sZF -sZF -sZF -wNp -sZF -sZF -sZF -sZF -hEZ -mlo -sKf -sKf -sZF -sZF -sZF -sZF -sZF -sZF -sZF -sZF -eZu -sZF -sZF -sZF -vjZ -sZF -gar -bln -fBN -vYq -iAf -qPY -tUh -xVO -jAQ -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(163,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tCr -mVm -tCr -muK -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -bln -bln -bln -bln -bln -acE -bxe -bxe -mHB -mHB -pVl -kKL -bqe -tvZ -kKL -hOu -orf -hJx -lli -fAF -kKL -kKL -mMb -mMb -kKL -cSQ -kKL -mMb -mMb -mMb -kKL -dMq -lli -lli -kKL -dMq -hFg -kKL -xcy -rvZ -hUx -mqq -aLX -vng -gNT -gNT -gNT -gNT -gNT -gNT -gNT -kYc -edd -xwM -daR -iyI -lRW -hkt -hkt -hkt -hkt -hkt -pvo -ptR -hkt -sWs -sWs -sWs -sWs -sWs -sWs -sWs -sWs -cMr -xTQ -sWs -sWs -sWs -sWs -sWs -xTQ -vwN -sWs -sWs -sWs -sWs -leE -sWs -sWs -sWs -osn -osn -cmv -ktf -sZF -bln -bln -bln -bln -bln -bln -iAf -iAf -jAQ -iAf -iAf -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(164,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -bln -bln -bln -bln -bln -bln -bln -bln -kKL -cvF -lli -kKL -mwu -tvZ -kKL -kKL -lAG -kKL -jhS -tOX -kKL -wZZ -lli -iin -kKL -cSQ -lqh -uKr -uKr -uKr -uKr -mRs -igX -igX -kKL -cUt -kKL -kKL -kKL -fyZ -hUx -mqq -sZF -eFS -sZF -sZF -sZF -sZF -npD -npD -npD -npD -npD -bEo -sou -mZH -sZF -kAC -hil -sKf -sKf -wUA -wUA -wUA -wUA -sKf -sKf -sKf -ktf -dPP -sKf -sKf -sKf -oLn -pqK -gCu -jGY -wrU -sKf -sKf -sKf -yfS -mFj -xpT -jPi -hil -ktf -sKf -sKf -sKf -sKf -sKf -wRr -wEV -sZF -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(165,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tCr -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -bln -ozo -bln -bln -bln -bln -bln -bln -kKL -oCv -gGF -kKL -qqB -tvZ -kKL -weF -orf -kKL -moF -cjI -kKL -dCA -atM -atM -uKr -sEE -xWM -kKL -kKL -kKL -kKL -kKL -kKL -kKL -kKL -oaa -aJG -sQE -hwE -hwE -cMe -mqq -uvt -tlP -wIg -vzX -bJJ -gzB -uvt -vPE -unw -xwN -npD -npD -mSv -npD -npD -npD -npD -npD -npD -npD -npD -npD -npD -npD -npD -npD -npD -npD -npD -npD -tvx -qNX -npD -npD -npD -npD -npD -npD -npD -npD -npD -npD -npD -npD -npD -npD -npD -npD -sZF -sZF -pHR -wEV -vjZ -bln -bln -uer -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(166,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tCr -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -bln -bln -bln -bln -bln -bln -bln -bln -kKL -sRI -lli -kKL -hJx -iRd -kKL -hOu -orf -hJx -mzM -hUi -kKL -uar -tvZ -kKL -kKL -kKL -kKL -kKL -cIP -dtb -dgm -dtb -pgi -dtb -hUD -iko -rvZ -lso -lso -rCu -cYE -wYf -idi -cZU -kBl -kBl -hOY -dbx -uvt -awK -pra -wVJ -mtI -axc -wgR -owC -tsr -moL -mGu -wHc -aEA -dng -dAB -ily -ily -ily -rSz -ily -ily -qLY -pnA -qFp -fvk -bfN -ily -gOM -ily -ily -ily -ily -ily -rSz -ily -ily -ily -hnN -ily -ily -ily -lqU -bln -vjZ -pHR -wEV -vjZ -bln -bln -bln -bln -bln -bln -bln -bln -bln -uer -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(167,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tCr -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -uei -tmR -uei -bln -tCr -bln -bln -bln -bln -bln -bln -bln -kKL -rSq -raH -kKL -lli -tvZ -kKL -kKL -orf -kKL -kKL -kKL -kKL -eqk -omt -kKL -eIk -xry -xeH -yeF -prg -bwK -prg -xtp -prg -qMm -hUD -sOH -hUx -rek -rek -cvr -rNQ -wYf -idi -aID -gky -vvP -mxD -cgZ -uvt -iII -pra -rdb -mtI -lAM -bnJ -owC -jIP -qOH -veX -wHc -eEb -pTU -itt -ily -ily -ily -ily -ily -ily -qLY -kRi -fvk -fvk -bfN -ily -ily -ily -ily -ily -ily -ily -ily -ily -ily -ily -ily -ily -ily -ily -lqU -tmR -vjZ -pHR -wEV -vjZ -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(168,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tCr -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -hty -bln -tCr -bln -bln -bln -bln -bln -bln -kKL -kKL -kKL -kKL -kKL -xcp -tvZ -sin -niB -iOc -uDW -xlN -fMM -dUL -gMZ -iOc -cqh -tsh -gEq -aDo -caY -prg -bwK -prg -cDH -prg -qMm -hUD -pyJ -lPh -hUD -hUD -ebb -cYE -wYf -idi -aID -ddk -ddk -dry -apM -uvt -kBT -pra -tSc -mtI -uxj -eNK -owC -wAx -jTZ -ftt -wHc -onW -pTU -jao -ily -ily -ily -ily -ily -ily -qLY -jKY -fvk -fvk -rMY -tgx -tgx -tgx -tgx -tgx -tgx -tgx -tgx -tgx -tgx -tgx -tgx -tgx -tgx -tgx -ctF -tmR -sZF -rzL -gea -sZF -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(169,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -mVm -tCr -tCr -bln -bln -bln -bln -bln -bln -kKL -hTB -qRH -jwF -kKL -lli -sRI -paT -lli -lli -vbZ -jpo -izp -nae -pCi -kKL -kKL -ikm -gXp -qCA -vvL -blV -sEi -sEi -fQz -sEi -sEi -kpU -nVr -wFO -nRx -hUD -lso -vqa -kYz -bRd -fqQ -wIg -qfh -kRE -cLo -uvt -mdC -oed -nsU -mtI -naW -xmf -owC -tVn -tYe -xIF -wHc -aiH -pTU -faJ -eeO -trH -nmD -nmD -nmD -ehO -kcA -cpg -cpg -cpg -huN -hfc -hfc -hfc -ocD -diL -qVz -erD -umK -gWQ -iKL -yki -tCo -tiN -hfc -giH -qLY -tmR -sZF -oHS -wEV -sZF -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(170,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -kKL -eTY -qeJ -lRs -osq -lli -gGF -kKL -kKL -kKL -kKL -kKL -kKL -kKL -gkP -kKL -bjE -eSn -bJQ -qCA -vvL -prg -sEi -sEi -sEi -fQz -lBo -sEi -pDS -sEi -vfo -hUD -lso -cYE -lso -ult -bsG -wGF -wGF -wGF -mtI -mtI -lKk -wFK -tMe -mtI -nqP -vzo -rzz -gEn -pBV -dsl -wHc -ccW -nhf -mfV -jSm -ltj -qGi -cpg -cpg -cdl -pMF -pMF -pMF -pMF -kZa -mQW -mQW -mQW -eqV -dbr -aFJ -xJj -xJj -umi -iVT -ogl -ffz -pem -diL -vTJ -tIv -tmR -vjZ -laf -wEV -vjZ -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(171,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -kKL -xpE -gGF -wMT -kKL -lli -iin -kKL -xCF -kKL -ptQ -rSl -nqn -kKL -gkP -kKL -sqs -huB -ogd -hff -blV -prg -qok -caY -qok -prg -qpP -nmN -pDS -sEi -cLJ -iQQ -lso -cYE -mpZ -ult -sJq -tXh -shG -shG -uzK -iIe -pKJ -rIU -tLM -mtI -vtA -sfY -owC -bYS -qyn -nZf -wHc -aNP -vJY -aOA -jbU -jbU -jbU -jbU -bFr -drr -qhL -qhL -qhL -qhL -tCx -wPd -wPd -wPd -wPd -wPd -fTq -wab -wOO -wPd -wPd -wPd -wPd -wPd -ega -qUv -apT -sEB -vjZ -dAP -wEV -vjZ -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(172,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -kKL -rqH -lRs -hBv -kKL -lli -wJM -kKL -tml -kKL -kLb -qpd -ydD -kKL -gkP -kKL -tRE -ivH -lVF -pup -iZn -prg -prg -prg -prg -prg -prg -bwl -pDS -sEi -bwl -hUD -lso -cYE -acw -ult -hiq -rIU -rIU -tJI -irA -uzi -pdy -fiS -uTL -mtI -nRX -dQO -owC -owC -owC -owC -wHc -rgx -nyH -lFW -rEd -eum -gSN -jbU -ejZ -drr -hvm -pvB -ehd -ehd -ehd -uZC -ooo -rtn -kYJ -vDu -lva -lva -iXu -drr -pvB -ehd -orv -rUP -rUP -vfq -tIv -tmR -vjZ -pHR -wEV -vjZ -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(173,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -kKL -kKL -kKL -kKL -kKL -lli -cvF -kKL -bMs -kKL -kVx -lNI -eTP -fVD -gMZ -kKL -hUD -bla -sil -hUD -hUD -fgm -qok -iZn -xzd -prg -prg -qwB -pDS -wVl -wND -iQQ -rvZ -cYE -lso -ult -tQJ -tfM -rIU -jFR -qYw -fPA -cOC -pVV -vaw -mtI -nRX -eNK -aHT -tuU -bEb -wJe -jbU -ozA -gqT -iJC -wfR -oMT -vpW -jbU -lec -fmU -qhL -wve -hfc -hfc -hfc -tJe -tDX -feZ -eJv -lrw -owS -jkt -ccQ -aCb -wAY -hfc -hfc -hfc -hfc -yew -qLY -eAw -sZF -pHR -wEV -sZF -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(174,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -mMb -lIC -aQe -tml -xFC -lli -lli -vwJ -lli -kKL -kKL -kKL -kKL -kKL -vXb -kKL -gUo -gjc -bLQ -rzc -tSt -hUD -hUD -hUD -hUD -srk -kgm -ssq -sEi -sEi -naP -hUD -rqT -cjl -rqT -ult -ult -wBk -rIU -jrZ -gqm -xCl -rRk -jwn -agJ -mtI -kzG -jdQ -aHT -uZA -idj -nRU -jbU -gEw -bHa -uMK -gaT -bZc -iOO -jbU -kZd -hdH -qhL -dkK -vVP -vVP -vVP -vVP -vVP -vVP -vVP -vVP -vVP -vVP -vVP -vVP -vVP -vVP -vVP -vVP -vVP -vVP -ctF -tmR -sZF -pHR -wEV -sZF -bln -bln -bln -bln -bln -vzD -vzD -vzD -gQw -gQw -vsI -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(175,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -kKL -qaR -lli -lli -sRI -laY -kKL -kKL -lli -tMY -hVo -hJx -lIC -lli -unu -kKL -hno -poy -poy -vvJ -hUD -ybr -bpL -vQY -hUD -ktz -prg -six -lQz -sEi -kgm -iQQ -lso -rNQ -lso -twz -yar -hXZ -rIU -rCX -lWc -xCl -utr -lCz -agJ -jDm -nRX -vzo -vTN -wEy -cxi -kEH -jbU -mcl -dUe -nbq -bmO -wjl -cbf -jbU -iZc -hdH -qhL -ppp -ily -ily -ily -ily -ily -ily -ily -ily -ily -ily -ily -ily -ily -ily -ily -ily -ily -ily -jBh -tmR -vjZ -wRr -wEV -vjZ -bln -bln -bln -bln -bln -vzD -oIR -uJC -jCl -kir -sEB -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(176,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -kKL -kKL -kKL -kKL -cTz -kKL -kKL -kKL -faf -lli -wsO -bcC -bcC -bcC -bcC -unu -kKL -hno -poy -poy -vvJ -hUD -fAo -xUH -dYt -nyl -prg -tyv -oGS -cHh -cHh -nuw -hUD -lso -cYE -lso -kKF -agH -wew -rIU -abM -xCl -dqw -xCl -dkr -agJ -asZ -mrh -sfY -nJX -mpp -htO -kKQ -jbU -iyP -dUe -ank -dez -fUM -vaQ -jbU -kHN -kra -qhL -ppp -xJG -ily -ily -oqM -xJG -ily -ily -ily -ily -ily -xJG -ily -ily -ily -vGy -ily -ily -ily -jBh -bln -vjZ -wRr -sKf -vjZ -bln -bln -bln -bln -bln -vzD -vzD -vzD -kir -vzD -sEB -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(177,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -kKL -nap -fDl -jwF -pLv -tjN -oTK -vah -tDy -oXm -bcC -lli -hJx -weF -lli -aME -kKL -qLf -poy -poy -lNk -hUD -jEr -rGd -hrd -hUD -sBY -btQ -hUD -uum -vqF -hUD -hUD -lso -cYE -lso -kKF -yar -wFU -qHt -gjg -dxg -veH -mgu -dkr -cHQ -jDm -via -eNK -nJX -raE -pJv -iMF -jbU -xKO -cRK -uMK -udQ -uMK -qwJ -jbU -whc -iZQ -llw -aus -lKq -lKq -lKq -lKq -lKq -qLY -qLY -jhQ -qLY -jhQ -qLY -qLY -bgx -bgx -bgx -bgx -bgx -bgx -bgx -vzD -vzD -bBw -vzD -gQw -bln -bln -bln -bln -bln -vzD -jRB -dFG -uZc -gQw -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(178,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -iyY -kbn -rCf -ylY -qxa -sxO -fYj -kKL -iin -iin -bcC -wJM -hJx -nLY -lli -aME -kKL -ttv -poy -poy -hUe -hUD -hUD -hUD -hUD -hUD -hUD -hUD -hUD -sYJ -eYI -gEE -jbG -lso -cYE -lso -kKF -ult -ult -ult -ult -ult -mtI -lsa -vnG -mtI -mtI -kaX -eNK -nJX -nJX -nJX -nJX -jbU -pbQ -tvv -pbQ -pbQ -pbQ -pbQ -eQQ -lKq -pMY -kLy -bGA -lKq -dWu -lio -bKm -xMT -hjE -egT -msi -pJc -iBO -iji -gEo -bgx -buv -jhC -mWB -tKz -dmt -jCl -jCl -vzD -mVD -cEu -vzD -vzD -vzD -vzD -vzD -vzD -vzD -uZc -uZc -sGZ -gQw -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(179,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -iyY -fOz -fOz -rCf -pwH -xII -uYR -kKL -kKL -tfu -aMa -tfu -kKL -kKL -xUT -uZn -kKL -ttv -prg -prg -caY -iQQ -gEE -oNC -gEE -gEE -gEE -gEE -oNC -gEE -gEE -gEE -wrX -hpm -cYE -lso -eKC -wLl -sxZ -oOo -xvy -wLl -axc -oLg -eLr -eLr -mbK -jQS -eNK -aYJ -aYJ -aYJ -aYJ -bXL -eLr -eaa -via -aYJ -lAw -aYJ -aYJ -aYJ -eLr -hAm -via -via -tPz -iRN -via -ojP -qFt -pTY -lcu -lcu -npT -lcu -xBa -bgx -wSd -jOj -jOj -iCE -eBz -eBz -eBz -eBz -fxV -jCl -jCl -jCl -pKW -jCl -nuj -jCl -mUt -uZc -uZc -fNa -gQw -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(180,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -iyY -nXu -nTf -gzY -rEX -rCf -rCf -kKL -lOU -glI -buY -xrm -uXu -kKL -pzV -uZn -kKL -nRa -spW -oAw -goi -iQQ -gEE -gEE -gEE -gEE -gEE -gEE -gEE -gEE -gEE -gEE -kxy -emp -dEV -gIo -qRU -xfd -pJV -mZG -mZG -qEZ -axc -dFW -aYJ -aYJ -aYJ -aYJ -wUt -urK -urK -nJT -urK -xjs -urK -iRx -pJV -pJV -nMA -nMA -nMA -nMA -pJV -pJV -pJV -pJV -pJV -aYJ -aYJ -sSE -wOX -efk -jTr -kex -aIr -elk -mdE -xfK -qig -lpW -lpW -vOr -vzD -bFq -jCl -dGK -vzD -vzD -vzD -vzD -vzD -vzD -vzD -vzD -vzD -vzD -gQw -gQw -vzD -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(181,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -kKL -pFN -fOz -oXm -kKL -kKL -wkF -kKL -rGw -fUc -jaX -glI -rPu -kKL -kKL -mbG -kKL -hUD -hUD -hUD -hUD -hUD -gEE -gEE -gEE -gEE -gEE -gEE -gEE -gEE -chK -leM -gqj -emp -cYE -lso -iBv -wLl -qXp -uxA -pUn -wLl -dzg -fXr -dFj -gYm -uZB -oni -nxa -qwN -tkS -dFj -dFj -gwm -dFj -niC -xnM -xnM -fLl -wMm -wqb -niC -xnM -xnM -xnM -xnM -lYg -xYj -pIt -kfZ -qFt -bYu -qkH -wCV -rqa -bgx -bgx -bgx -kBi -vzD -vzD -lXi -vzD -vzD -fxT -jOj -pGM -mvf -oNp -ebw -cAK -szD -xYw -sNs -vzD -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(182,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -iyY -kHb -pDe -fYj -meQ -vve -hYO -kKL -mqO -fUc -sBi -xYA -ldi -lUC -vhm -oLG -jbu -oxV -oxV -jbG -gEE -gEE -gEE -gEE -gEE -gEE -gEE -gEE -gEE -gEE -fTX -tru -bMY -emp -cYE -lso -kKF -bZQ -bZQ -bZQ -bZQ -bZQ -bZQ -wnT -wnT -oHK -oHK -cbF -dEC -oHK -oHK -vjj -fLU -vjj -vjj -wLl -dyV -hnP -gPE -bpD -wLl -wLl -wLl -wLl -wLl -wLl -wLl -wLl -wLl -wLl -hjE -vWo -fOl -cyL -cSo -bgx -hWI -xxv -dOK -vzD -puh -lXi -tgq -vzD -dFZ -jOj -axu -vzD -pPB -loQ -fwD -too -mHw -bRz -vzD -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(183,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -iyY -nPt -fOz -gsH -kKL -qNu -fKP -kKL -lUC -lUC -dmZ -nlR -lch -lUC -aQJ -tdR -ikW -gEE -gEE -jbG -gEE -gEE -gEE -gEE -gEE -gEE -gEE -gEE -gEE -gEE -fTX -wjS -bMY -yaG -cYE -lso -pHX -lkT -vev -vzc -rRS -xHx -bZQ -elf -ojF -tYl -ftN -bxP -vvE -tJG -oHK -goq -hyW -kdJ -usP -wLl -nsZ -uoC -rhi -uoC -nsZ -iqx -awa -awa -awa -awa -xUk -cQs -nOi -nsZ -bkF -cSw -cmx -yeC -mXq -bgx -nBN -clY -fdH -vzD -tKz -lXi -jPY -vzD -tgq -jOj -jOj -vzD -cef -iTP -uCo -lkO -kPw -dAx -gQw -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(184,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -iyY -tjV -dxs -pVi -kKL -fLb -fXf -kKL -nwd -epd -oih -dmL -lUC -lUC -dMH -ait -pYz -gEE -gEE -jbG -gEE -gEE -gEE -gEE -gEE -gEE -gEE -gEE -gEE -gEE -fTX -dyE -bMY -cxd -cYE -avb -avb -cin -eKl -pxL -lso -jYQ -qWn -xZA -dVt -gHY -xZA -vaA -gXJ -bPb -oHK -pnq -xsD -lkP -pvU -wLl -jUX -wbR -uXh -tur -tYs -iqx -awa -awa -awa -awa -xUk -aWg -xgK -nsZ -uXs -cSw -ihu -yeC -lqL -bgx -nBN -xPI -jZY -vzD -vzD -lXi -vzD -vzD -vzD -hto -jOj -vzD -daT -ftS -too -lbf -esF -bRz -gQw -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(185,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -kKL -kKL -kKL -kKL -eOm -kKL -kKL -kKL -ihz -pwd -glI -tsR -rPu -lUC -tXV -kvX -brL -cYY -cYY -wrX -wrX -wrX -gEE -gEE -gEE -gEE -gEE -gEE -gEE -gEE -nlJ -rrp -urw -emp -bvI -lso -xEc -cas -nzR -yeB -uuC -kKF -qWn -gav -ljF -ljF -ljF -sDg -gXJ -egZ -oHK -iZl -iZl -iZl -iZl -wLl -tur -tur -eqj -eqj -oro -iSk -awa -awa -awa -awa -xUk -wvz -srW -nsZ -qlG -cSw -ihu -hjp -hjE -bgx -bgx -bgx -bgx -bgx -uAJ -lXi -vzD -bln -vzD -vHm -jOj -vzD -vzD -kqm -tZd -bRz -bRz -bVL -vzD -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(186,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -nXb -bln -lUC -pfP -apD -cxc -tao -xFI -lUC -ccT -nyC -opw -oTA -oTA -sfi -gvK -jbG -gEE -gEE -gEE -gEE -gEE -gEE -gEE -gEE -gEE -gEE -frL -emp -cYE -lso -gxm -udA -udA -lso -lZi -qaE -mBQ -xdU -ttw -wET -evk -vKp -vqN -pDk -aju -gPY -qWu -fbl -foy -krY -awa -awa -awa -awa -jvc -awa -awa -awa -awa -awa -xUk -sqt -uiN -nsZ -geg -eVY -ihu -epH -rDZ -rDZ -tBP -rDZ -rDZ -bgx -tgq -lXi -gQw -bln -gQw -jOj -kWi -qzT -vzD -vzD -gQw -gQw -gQw -vzD -vzD -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -ozo -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(187,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -nXb -bln -lUC -lUC -lUC -lUC -lUC -lUC -lUC -daX -pxi -wrX -tLQ -fBM -tLQ -fBM -jbG -gEE -cpq -gEE -gEE -iKQ -gEE -cpq -gEE -gEE -gEE -wrX -bQh -dEV -cvr -cvr -equ -lso -uuC -ePR -kwK -qWn -jTm -moJ -oKy -moJ -moJ -qBj -qsu -wgO -fTT -bUa -wgL -phB -krY -awa -awa -awa -awa -jvc -awa -awa -awa -awa -awa -xUk -aSB -tHT -nsZ -mko -oZn -sFj -rck -rDZ -rDZ -rDZ -rDZ -jkH -bgx -bFq -lXi -gQw -bln -gQw -vrO -vzD -vzD -vzD -bln -bln -bln -bln -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -mVm -tCr -tCr -tCr -tCr -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(188,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -sEB -bln -bln -bln -nXb -tlH -tlH -tlH -nXb -ngY -iQt -oHH -tAA -efH -mJu -rqR -qPL -qPL -qPL -qPL -qPL -dFt -dFt -dFt -iTr -jFn -gEE -jbG -nzV -cYE -dfB -dHK -bvY -utz -gMe -kuV -cAi -qWn -oPq -aWH -sut -tia -qNn -pOf -gNi -krY -clo -bUa -fbl -nHf -krY -awa -awa -awa -awa -jvc -awa -awa -awa -awa -awa -xUk -sqt -duE -nsZ -ukf -cMy -trb -sXC -rDZ -rDZ -rnu -rDZ -rDZ -bgx -rPe -lXi -vzD -bln -vzD -vrO -vzD -bln -bln -bln -bln -bln -bln -bln -bln -bln -muK -bln -bln -bln -bln -bln -bln -bln -bln -bln -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(189,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -ozo -bln -bln -sEB -bln -bln -bln -nXb -tlH -tlH -tlH -nXb -wrX -xun -wrX -oHH -oHH -oHH -oHH -qPL -nCa -xWu -gGE -qPL -pRG -mtN -dFt -vHI -vHI -dFt -dFt -jub -hQO -cMv -qPL -elw -elw -elw -pqo -ueQ -mEJ -jTG -mEJ -ecw -mEJ -jTG -mEJ -mEJ -krY -srP -pGp -lIk -srP -krY -awa -awa -awa -awa -jvc -awa -awa -awa -awa -awa -xUk -sqt -iOv -nsZ -pee -hjE -wGc -wGc -wGc -wGc -bgx -bgx -bgx -bgx -vzD -lXi -vzD -vzD -vzD -vrO -vzD -bln -bln -bln -bln -bln -bln -bln -sUN -tmR -sUN -bln -sUN -tmR -sUN -bln -sUN -tmR -sUN -bln -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(190,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -nXb -bln -bln -bln -sEB -tlH -tlH -tlH -nXb -tlH -tlH -tlH -vsI -sEB -sEB -sEB -tpd -oOD -lDH -gVx -tpd -qWO -pCI -gVt -pCI -pCI -vsM -vns -nfB -cMJ -eBg -kCs -omh -peV -elw -tZe -pbT -qia -oPP -gXl -pND -aFt -oPP -tta -mEJ -kCz -vJS -bUa -ubY -qHn -krY -awa -awa -awa -awa -jvc -wQY -nmz -nmz -fJm -fJm -fkX -vQp -opB -nsZ -mHd -hjE -rDZ -rDZ -rDZ -rDZ -bgx -cJC -gqv -dty -vzD -lXi -iQT -jCl -jCl -vpg -gQw -bln -bln -bln -bln -bln -bln -bln -sUN -tmR -sUN -bln -sUN -tmR -sUN -bln -sUN -tmR -sUN -bln -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(191,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -nXb -bln -bln -bln -sEB -tlH -tlH -tlH -nXb -tlH -tlH -tlH -tlH -tlH -tlH -sEB -tpd -jtG -mFP -myJ -jbT -wLS -myJ -eUL -hdw -vpd -bSH -xBU -iVU -iFX -qRr -kqw -omh -wDr -elw -vGp -fRt -wnK -fzQ -pUy -eSJ -pUy -mzG -spg -sca -xiC -ciS -bUa -jPx -jxb -luJ -bEJ -bEJ -mXe -bEJ -qbb -piM -hLO -hLO -hLO -hLO -uAx -pFl -cyG -nsZ -uCJ -hjE -rDZ -rDZ -rDZ -rDZ -bgx -qUY -jCl -juQ -vzD -geJ -vrO -vrO -vrO -vrO -gQw -bln -bln -bln -bln -bln -bln -bln -sUN -tmR -sUN -bln -sUN -tmR -sUN -bln -sUN -tmR -sUN -bln -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(192,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -nXb -tlH -tlH -tlH -nXb -tlH -tlH -tlH -tlH -tlH -tlH -sEB -qPL -qPL -qPL -qPL -qPL -liM -myJ -nMw -gjW -bAY -dMF -jdK -gEV -iRz -ePm -sBV -omh -wuC -elw -vav -kTs -cCu -crn -tgB -dvW -fhb -fXu -bsN -sca -gpj -oQn -iBl -wgL -hRF -krY -xLq -xLq -aoo -uWx -ykE -qEV -wpi -gZx -tIq -tIq -vaa -xLq -xLq -nsZ -pdO -sFA -rDZ -vJU -rDZ -uie -bgx -jCl -jCl -jCl -vzD -geJ -iQT -bIt -jPY -pxQ -vzD -bln -bln -bln -bln -bln -bln -bln -sUN -tmR -sUN -bln -sUN -tmR -sUN -bln -sUN -tmR -sUN -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(193,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -nXb -tlH -tlH -tlH -tlH -tlH -tlH -tlH -tlH -tlH -tlH -sEB -qPL -xgX -qKF -qwf -qPL -lbm -myJ -gEV -rAC -bAY -jUL -jdK -gEV -tcD -ePm -jXL -omh -dbw -elw -elw -elw -elw -elw -ouX -ero -itj -fXu -lTL -mEJ -oXJ -fbl -eIC -trK -qEz -krY -xLq -xLq -aoo -rYZ -kgo -sCx -gWr -iHc -gXv -gXv -vaa -xLq -grs -nsZ -pdO -dDm -rDZ -rDZ -rDZ -rDZ -bgx -vzb -jCl -nuj -tgw -pTW -vzD -bgx -bgx -bgx -bgx -mJq -bln -bln -bln -bln -bln -bln -sUN -tmR -sUN -bln -sUN -tmR -sUN -bln -sUN -tmR -sUN -bln -bln -tCr -tCr -tCr -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(194,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -nXb -bln -tlH -tlH -tlH -tlH -tlH -tlH -tlH -tlH -tlH -sEB -qPL -qgn -vXy -lHL -qPL -gHD -myJ -wKv -mry -ocY -jUL -jdK -eFh -aVn -oLz -fwS -snj -lix -cRy -cRy -cRy -qCF -elw -nhU -iNn -bCD -caC -hic -mEJ -nSC -gVe -whP -mOc -mkx -krY -snQ -xLq -iba -gas -rjK -nlP -gaz -imy -auK -auK -vaa -xLq -ezJ -nsZ -rDZ -pxu -rDZ -rDZ -pxu -rDZ -bgx -vzD -vzD -vzD -vzD -geJ -sMo -bgx -tfm -qbh -oGm -axy -mJq -mJq -sEB -bln -bln -bln -bln -tmR -bln -bln -bln -tmR -bln -bln -bln -tmR -bln -bln -bln -bln -bln -tCr -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(195,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -nXb -bln -bln -bln -tlH -tlH -tlH -tlH -tlH -tlH -tlH -sEB -tpd -wwI -vXy -oGG -tpd -vXy -myJ -gEV -rAC -bAY -jUL -jdK -gEV -gjW -vXy -cpT -omh -kJc -ozE -fTW -dxm -sHM -elw -aFt -hAT -kCr -hDp -bkR -elw -omh -omh -omh -omh -dmC -elw -nsZ -nsZ -vdM -nsZ -nsZ -bgx -bgx -bgx -bgx -bgx -rVA -bgx -bgx -bgx -bgx -bgx -bgx -bgx -bgx -bgx -bgx -fxT -jCl -axu -jCl -geJ -oiH -vTl -xCz -luK -xCz -qYP -xCz -hzB -tmR -tmR -tmR -tmR -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -tmR -tmR -cnx -bln -tCr -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(196,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -tlH -tlH -tlH -tlH -tlH -tlH -sEB -tpd -mbn -qLF -vCD -wyo -myJ -myJ -gEV -gjW -bAY -cXi -jdK -nMw -gjW -vXy -pnj -omh -omh -omh -dbw -omh -sHM -elw -bGv -cHJ -mos -nhI -hDp -elw -uKx -rpV -fTW -bwM -hds -lEv -clV -wmG -keH -nkh -tLT -wvv -fHC -lEP -oEj -xmR -oEj -oEj -oEj -myO -oEj -oEj -oEj -oEj -xmR -oEj -oEj -myO -oEj -xmR -oEj -dww -dFZ -mbT -nBB -xQh -xCz -mjt -mJq -mJq -vsI -bln -bln -bln -bln -tmR -bln -bln -bln -tmR -bln -bln -bln -tmR -bln -bln -bln -bln -bln -tCr -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(197,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -sEB -tpd -wwI -tPY -ljo -tpd -vXy -vXy -urx -cuP -eFn -oAH -uFH -hPV -vXy -vXy -orV -jZM -sEB -omh -icV -omh -sHM -elw -bCd -elw -elw -elw -elw -elw -rft -dbw -idt -fMq -pSz -elw -pbH -dNd -dNd -kdo -hyV -bgx -gti -bhk -jCl -jCl -jCl -jCl -jCl -vzD -vzD -vzD -vzD -vzD -vzD -vzD -vzD -vzD -bcQ -vzD -vzD -vzD -vzD -bgx -nIx -nIx -nIx -mJq -bln -bln -bln -bln -bln -bln -sUN -tmR -sUN -bln -sUN -tmR -sUN -bln -sUN -tmR -sUN -bln -bln -tCr -tCr -tCr -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(198,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -sEB -tpd -hOt -ejn -bFs -tpd -uvv -ejn -ejn -jOD -tGx -ejn -uvv -ejn -uvv -ejn -udw -jZM -sEB -omh -amK -omh -sED -xSw -xIo -gjM -gjM -gjM -gjM -tIW -gjM -aUl -xnt -egR -pSz -elw -hCx -mEU -enq -kuy -qQa -bgx -gti -tsJ -jCl -xWo -axu -bFq -jCl -jCl -jCl -jtn -jCl -iqC -ibw -iQT -qob -rZa -jCl -vzD -qcr -twZ -vzD -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -sUN -tmR -sUN -bln -sUN -tmR -sUN -bln -sUN -tmR -sUN -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(199,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -pPz -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -lSu -lSu -bln -sEB -tpd -tpd -ljj -qKq -qmV -fPX -xdM -jZM -dFt -jZM -xdM -nJo -hdz -quK -xdM -jZM -jZM -sEB -omh -xKo -omh -omh -omh -omh -omh -omh -fTW -rpV -jYc -fTW -cJs -fTW -oBi -omh -elw -mWf -mWf -mWf -hyV -trm -bgx -vzD -vzD -vzD -vzD -vzD -vzD -vzD -vzD -vzD -vzD -jCl -tKN -qZh -vzD -twZ -jCl -jCl -vXd -qta -mwQ -vzD -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -sUN -tmR -sUN -bln -sUN -tmR -sUN -bln -sUN -tmR -sUN -bln -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(200,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -vsI -sEB -sEB -jZM -xVG -jZM -xVG -jZM -sEB -gZa -sEB -jZM -xVG -jZM -xVG -jZM -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -sEB -omh -skW -omh -omh -omh -omh -skW -omh -omh -bln -bln -bln -bln -hyV -trm -bgx -bln -bln -bln -bln -bln -bln -bln -bln -vzD -bFq -jCl -nuj -jCl -gUT -jCl -jCl -mKS -vzD -jCl -ibj -vzD -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -sUN -tmR -sUN -bln -sUN -tmR -sUN -bln -sUN -tmR -sUN -bln -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(201,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -lSu -bln -bln -bln -bln -jZM -xVG -jZM -xVG -jZM -bln -bln -bln -jZM -xVG -jZM -xVG -jZM -bln -bln -lSu -bln -bln -bln -bln -lSu -lSu -bln -omh -fTW -xTy -qNV -rCT -xTy -qNV -mhq -omh -bln -bln -bln -bln -cKW -fiU -bgx -bln -bln -bln -bln -bln -bln -bln -bln -vzD -vzD -gQw -gQw -gQw -vzD -vzD -vzD -jIk -vzD -vzD -vzD -vzD -bln -bln -bln -bln -bln -bln -bln -bln -bln -mVm -bln -sUN -tmR -sUN -bln -sUN -tmR -sUN -bln -sUN -tmR -sUN -bln -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(202,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -lSu -bln -dFt -kAm -jZM -gBI -dFt -bln -bln -bln -dFt -kAm -jZM -gBI -dFt -bln -bln -bln -bln -lSu -bln -lSu -lSu -bln -bln -mLJ -opn -vJk -vJk -afU -vJk -vJk -qbW -omh -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -vzD -caU -vzD -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -tCr -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -mVm -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(203,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -jZM -xVG -jZM -xVG -jZM -bln -bln -bln -jZM -xVG -jZM -xVG -jZM -bln -bln -bln -bln -bln -bln -bln -bln -bln -lSu -mLJ -bqY -qXf -tQX -wLk -nXg -tRX -drm -omh -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -vzD -ltk -vzD -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -tCr -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(204,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -jZM -oeh -kLs -vmR -jZM -bln -bln -bln -jZM -vmR -kLs -woU -jZM -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -omh -omh -omh -omh -dos -omh -omh -omh -omh -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -vsI -sEB -sEB -bln -bln -bln -bln -bln -bln -bln -ozo -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -ozo -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(205,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -fBN -bln -bln -bln -bln -bln -bln -bln -bln -bln -vsI -sEB -sEB -aDK -vsI -bln -bln -bln -vsI -sEB -sEB -sEB -vsI -bln -bln -bln -bln -bln -bln -bln -bln -fBN -bln -bln -cSx -vyU -vyU -xuR -vyU -vyU -uOE -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -ozo -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(206,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -nRV -vyU -vyU -vyU -vyU -vyU -fcP -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(207,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(208,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(209,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -ozo -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(210,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -fBN -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -fBN -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(211,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(212,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(213,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(214,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(215,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -fBN -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -fBN -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(216,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(217,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(218,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(219,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(220,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -fBN -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -fBN -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(221,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(222,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(223,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(224,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(225,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -fBN -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -fBN -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -fBN -bln -fBN -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(226,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -mvE -oDd -mvE -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(227,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -xgI -mvE -anO -mvE -xgI -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(228,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -mvE -mvE -cJB -oDd -aWb -mvE -mvE -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(229,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -pRa -pRa -lRd -evT -evT -evT -iJI -pRa -pRa -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(230,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -fBN -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -fBN -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -mvE -aFj -mps -evT -byB -evT -hDA -qPR -mvE -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(231,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -pRa -pRa -qKB -evT -evT -evT -oLt -pRa -pRa -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(232,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -mvE -mvE -mMU -uyV -lhf -mvE -mvE -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(233,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -xgI -mvE -beZ -mvE -xgI -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(234,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -mvE -pRa -mvE -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(235,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(236,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -bln -bln -bln -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(237,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(238,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(239,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(240,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(241,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(242,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(243,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(244,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(245,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(246,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(247,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(248,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(249,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(250,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(251,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(252,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(253,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(254,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} -(255,1,3) = {" -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -wNO -"} diff --git a/_maps/map_files/KiloStation/KiloStation_skyrat.dmm b/_maps/map_files/KiloStation/KiloStation_skyrat.dmm deleted file mode 100644 index 144ed4155f2..00000000000 --- a/_maps/map_files/KiloStation/KiloStation_skyrat.dmm +++ /dev/null @@ -1,151412 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/turf/open/space/basic, -/area/space) -"aac" = ( -/obj/machinery/power/smes{ - charge = 5e+006; - name = "ai power storage unit" - }, -/obj/structure/cable, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) -"aak" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/airalarm/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"aal" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos) -"aap" = ( -/turf/closed/mineral/random/low_chance, -/area/space/nearstation) -"aat" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/poddoor/preopen{ - id = "prisonblast"; - name = "Prison Blast Door" - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable, -/obj/machinery/button/door/directional/south{ - id = "prisonblast"; - name = "Prison Lockdown"; - req_access = list("brig") - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"aaw" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"aay" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"aaA" = ( -/obj/machinery/door/window/right/directional/north{ - name = "Ordnance Freezer Chamber Access"; - req_access = list("ordnance") - }, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible/layer2{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"aaB" = ( -/obj/effect/landmark/carpspawn, -/turf/open/space/basic, -/area/space) -"aaI" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"aaO" = ( -/obj/structure/flora/grass/jungle/a/style_random, -/turf/open/misc/asteroid, -/area/space/nearstation) -"aaQ" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/turf/open/space/basic, -/area/space/nearstation) -"aaT" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"aba" = ( -/obj/structure/transit_tube/diagonal/crossing/topleft, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"abg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/ai_monitored/turret_protected/ai) -"abj" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/storage/medkit/regular, -/turf/open/floor/iron/showroomfloor, -/area/station/security/office) -"abq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/meter, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"abB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/turf/open/floor/iron/dark, -/area/station/security/warden) -"abC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/ai_monitored/turret_protected/ai) -"abD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"abF" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/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/engine, -/area/station/ai_monitored/turret_protected/ai) -"abJ" = ( -/obj/structure/flora/bush/pale/style_random, -/turf/open/misc/asteroid, -/area/space/nearstation) -"abM" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/holopad/secure, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"aca" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"ach" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/camera/directional/south{ - c_tag = "Autopsy Room"; - name = "detective camera" - }, -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/start/detective, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"acj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/hydroponics/constructable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/blue/line, -/obj/effect/turf_decal/trimline/blue/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"acm" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"acn" = ( -/obj/structure/transit_tube/diagonal/topleft, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"acs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"acu" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"acx" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/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/engine, -/area/station/ai_monitored/turret_protected/aisat_interior) -"acy" = ( -/obj/structure/lattice/catwalk, -/obj/structure/marker_beacon/burgundy{ - name = "landing marker" - }, -/turf/open/space/basic, -/area/space) -"acD" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/machinery/airalarm/directional/west, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"acF" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/rust, -/area/station/engineering/atmos) -"acG" = ( -/obj/structure/cable, -/turf/closed/wall, -/area/station/ai_monitored/turret_protected/aisat_interior) -"acK" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"acM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"acT" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 5 - }, -/turf/open/space/basic, -/area/space/nearstation) -"acW" = ( -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/structure/flora/bush/grassy/style_random, -/obj/structure/flora/bush/pale/style_random, -/turf/open/misc/asteroid, -/area/space/nearstation) -"acZ" = ( -/obj/structure/flora/grass/jungle/a/style_random, -/obj/structure/flora/bush/ferny/style_random, -/turf/open/misc/asteroid, -/area/space/nearstation) -"add" = ( -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/bush/ferny/style_random, -/turf/open/misc/asteroid, -/area/space/nearstation) -"adf" = ( -/obj/structure/flora/grass/jungle/b/style_random, -/turf/open/misc/asteroid, -/area/space/nearstation) -"adg" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) -"adi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/central) -"adp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"adI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"adR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"aed" = ( -/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/cable, -/obj/machinery/holopad/secure, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"aek" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/kirbyplants{ - icon_state = "plant-03" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"aeo" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space/basic, -/area/space/nearstation) -"aeq" = ( -/obj/structure/transit_tube/station{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line, -/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/ai_monitored/turret_protected/aisat/foyer) -"aes" = ( -/obj/machinery/door/airlock/grunge{ - name = "Cell 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/security/prison/safe) -"aeu" = ( -/turf/closed/mineral/random/labormineral, -/area/space/nearstation) -"aew" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light_switch/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Xenobiology Closet"; - name = "xenobiology camera"; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"aex" = ( -/obj/structure/lattice/catwalk, -/obj/structure/window/reinforced{ - 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/space/basic, -/area/space/nearstation) -"aeG" = ( -/turf/closed/wall/rust, -/area/station/service/lawoffice) -"aeJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/computer/rdconsole{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"aeL" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/turf/closed/wall/rust, -/area/station/engineering/atmos) -"aeS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aeU" = ( -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"aeX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/grille/broken, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"aeZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"afw" = ( -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"afB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics/garden) -"afH" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/engineering/main) -"afI" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) -"afL" = ( -/turf/closed/wall, -/area/station/command/heads_quarters/hos) -"afQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"afU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"agc" = ( -/obj/structure/table/wood, -/obj/structure/cable, -/obj/item/pen/fountain, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"ago" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/landmark/start/security_medic, -/turf/open/floor/iron/showroomfloor, -/area/station/security/medical) -"agt" = ( -/turf/closed/wall/rust, -/area/space/nearstation) -"agx" = ( -/obj/effect/turf_decal/trimline/green/filled/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/machinery/camera/directional/north{ - c_tag = "Prison Botany"; - network = list("ss13","prison") - }, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"agz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xeno6"; - name = "Creature Cell 6" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"ahz" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"ahH" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/xeno_spawn, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"ahJ" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"ahK" = ( -/obj/machinery/door/poddoor/shutters{ - id = "aux_base_shutters"; - name = "Auxillary Base Shutters"; - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/station/construction/mining/aux_base) -"aia" = ( -/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/effect/turf_decal/siding/wood/corner, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"aig" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"aiB" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "engi-maint-passthrough" - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/obj/effect/mapping_helpers/airlock/access/any/service/janitor, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/aft) -"aiI" = ( -/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/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"aiN" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"aji" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"ajo" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"ajs" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"ajv" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/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/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ajw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"ajH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"aka" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory) -"ake" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"akC" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/clothing/head/helmet/sec{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/sec, -/obj/item/clothing/head/helmet/sec{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/suit/armor/vest/security{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/vest/security, -/obj/item/clothing/suit/armor/vest/security{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"akD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/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/machinery/light_switch/directional/north{ - pixel_x = 12 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/cargo/drone_bay) -"akH" = ( -/obj/effect/turf_decal/tile/dark/half/contrasted, -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/storage) -"akV" = ( -/obj/structure/sign/departments/security, -/turf/closed/wall/rust, -/area/station/security/execution/transfer) -"ala" = ( -/obj/effect/turf_decal/box, -/obj/machinery/power/solar{ - id = "foreport"; - name = "Fore-Port Solar Array" - }, -/obj/structure/cable, -/turf/open/floor/iron/solarpanel/airless, -/area/space/nearstation) -"alr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"als" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"alv" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/suit/armor/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/head/helmet/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/riot, -/obj/item/clothing/head/helmet/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/shield/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/shield/riot, -/obj/item/shield/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"alx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/rack/gunrack, -/obj/effect/spawner/armory_spawn/cmg, -/turf/open/floor/iron/showroomfloor, -/area/station/ai_monitored/security/armory) -"aly" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/rack/gunrack, -/obj/effect/spawner/armory_spawn/microfusion, -/turf/open/floor/iron/showroomfloor, -/area/station/ai_monitored/security/armory) -"alz" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"alL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"alP" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"alQ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/ai_monitored/security/armory) -"alS" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/rack/gunrack, -/obj/effect/spawner/armory_spawn/shotguns, -/turf/open/floor/iron/showroomfloor, -/area/station/ai_monitored/security/armory) -"alV" = ( -/turf/closed/wall/r_wall/rust, -/area/station/ai_monitored/turret_protected/aisat_interior) -"ami" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"amn" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/newscaster/directional/east, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/wood, -/area/station/commons/locker) -"amq" = ( -/mob/living/simple_animal/hostile/asteroid/basilisk{ - environment_smash = 0 - }, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"amr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/ai_monitored/security/armory) -"ams" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/showroomfloor, -/area/station/ai_monitored/security/armory) -"amv" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/folder{ - pixel_x = 6 - }, -/obj/item/pen{ - pixel_x = 6 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics_shutters"; - name = "Robotics Privacy Shutters" - }, -/obj/machinery/door/window/left/directional/north{ - name = "Robotics Desk"; - req_access = list("robotics") - }, -/obj/structure/desk_bell{ - pixel_x = -7; - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/station/science/robotics/lab) -"amG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/girder, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"amU" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"amX" = ( -/turf/closed/wall/r_wall/rust, -/area/station/ai_monitored/security/armory) -"and" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"anr" = ( -/obj/machinery/power/tracker, -/obj/effect/turf_decal/box, -/obj/structure/cable, -/turf/open/floor/iron/solarpanel/airless, -/area/space/nearstation) -"anz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"anF" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - 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, -/area/station/engineering/atmos) -"anG" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall/rust, -/area/station/ai_monitored/security/armory) -"anH" = ( -/turf/closed/wall, -/area/space/nearstation) -"anI" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"anN" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"anZ" = ( -/obj/docking_port/stationary/random{ - id = "pod_3_lavaland"; - name = "lavaland" - }, -/turf/open/space, -/area/space/nearstation) -"aoe" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aof" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/space/nearstation) -"aoi" = ( -/obj/structure/table/wood/fancy, -/obj/machinery/light/directional/west, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/food/grown/harebell{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"aor" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/directional/south{ - c_tag = "Prison Wing Lockers"; - name = "prison camera"; - network = list("ss13","prison") - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/transfer) -"aot" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/starboard) -"aov" = ( -/obj/effect/turf_decal/bot, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"aoz" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/misc/asteroid/lowpressure, -/area/space/nearstation) -"aoE" = ( -/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) -"aoL" = ( -/turf/closed/wall/r_wall/rust, -/area/station/service/chapel/monastery) -"aoM" = ( -/obj/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/carpet/royalblue, -/area/station/service/chapel/office) -"aoX" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"apl" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"apm" = ( -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/misc/asteroid/lowpressure, -/area/space/nearstation) -"app" = ( -/turf/closed/wall/rust, -/area/station/science/robotics/lab) -"apu" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/research/glass/incinerator/ordmix_exterior{ - name = "Burn Chamber Exterior Airlock" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/engine, -/area/station/science/ordnance/burnchamber) -"apv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"apw" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"apx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/teleport/hub, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"apC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random/directional/north, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"apM" = ( -/turf/open/floor/carpet/orange, -/area/station/cargo/qm) -"aqe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"aqq" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/office) -"aqr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"aqt" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Connector" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"aqv" = ( -/obj/structure/transit_tube/junction, -/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) -"aqQ" = ( -/obj/effect/turf_decal/sand/plating, -/obj/item/stack/sheet/glass, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aqY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Freight Power Control" - }, -/obj/structure/cable, -/obj/structure/barricade/wooden/crude, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/iron/dark, -/area/station/cargo/warehouse) -"ari" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"arl" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload) -"arz" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/item/tank/internals/emergency_oxygen/empty, -/turf/open/misc/asteroid/lowpressure, -/area/space/nearstation) -"arU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"arX" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"asj" = ( -/turf/closed/wall/rust, -/area/station/maintenance/department/electrical) -"asu" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"asU" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/plaque/static_plaque/golden/commission/kilo, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"asY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"asZ" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) -"atc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"ate" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"ath" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/crate/engineering, -/obj/item/hand_tele, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"atB" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/effect/turf_decal/box/red, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/ai_monitored/turret_protected/ai) -"atT" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/meter/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"auf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"auN" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/airalarm/directional/west, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/engine, -/area/station/engineering/storage/tech) -"auR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"auS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"ave" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 11; - height = 22; - id = "whiteship_home"; - name = "SS13: Auxiliary Dock, Station-Port"; - width = 35 - }, -/turf/open/space/basic, -/area/space) -"avo" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall/rust, -/area/station/maintenance/starboard) -"avs" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/spawner/random/contraband/prison, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/turf/open/floor/plating, -/area/station/security/prison) -"avT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"awb" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/horizontal{ - 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/space/basic, -/area/space/nearstation) -"awi" = ( -/obj/machinery/computer/security/labor, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light_switch/directional/north{ - pixel_x = -7 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/processing) -"awn" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/station/solars/port/aft) -"awq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/closet/crate/bin, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"awt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Holding Area" - }, -/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/security/general, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"awv" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"awG" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall/rust, -/area/station/engineering/atmos) -"awR" = ( -/obj/structure/table/wood, -/obj/machinery/firealarm/directional/north, -/obj/structure/statue/bronze/marx, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"awT" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/red, -/turf/open/floor/iron/showroomfloor, -/area/station/security/checkpoint/science/research) -"awW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/camera/directional/south{ - c_tag = "Restrooms"; - name = "recreation camera" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/toilet/restrooms) -"axd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"axk" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/crossing, -/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) -"axp" = ( -/obj/structure/table, -/obj/machinery/computer/med_data/laptop, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"axt" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hop"; - name = "Privacy Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/command/heads_quarters/hop) -"axE" = ( -/obj/structure/cable, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"axT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/landmark/blobstart, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"ayc" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/cable, -/obj/effect/turf_decal/siding/blue{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/storage) -"ayh" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"ayo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/space_heater, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/crew_quarters/bar) -"ayY" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - 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, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"azg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/port) -"azo" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001; - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"azv" = ( -/turf/closed/wall, -/area/station/ai_monitored/turret_protected/aisat_interior) -"azw" = ( -/obj/machinery/telecomms/broadcaster/preset_right, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"aAg" = ( -/turf/closed/wall/r_wall/rust, -/area/station/ai_monitored/turret_protected/ai) -"aAq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai_upload) -"aAu" = ( -/turf/open/floor/plating, -/area/station/security/prison/mess) -"aAy" = ( -/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/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/genetics) -"aAP" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"aAQ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"aAR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/spawner/random/vending/colavend, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/sign/warning/no_smoking{ - pixel_y = 30 - }, -/obj/structure/spider/stickyweb, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"aAT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/pods/directional/north, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"aAU" = ( -/obj/structure/grille, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"aBi" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"aBA" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "ceprivate"; - name = "Chief Engineer's Privacy Shutters"; - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) -"aBB" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/robot_debris, -/obj/effect/decal/cleanable/oil/streak, -/turf/open/floor/iron/dark, -/area/station/service/chapel/storage) -"aBF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Locker Room" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/effect/landmark/navigate_destination, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"aBN" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/storage/box/bodybags{ - pixel_y = 5 - }, -/obj/item/pen, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/lobby) -"aCi" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"aCp" = ( -/obj/effect/turf_decal/box, -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/mirror/directional/west, -/obj/machinery/newscaster/directional/south{ - pixel_x = -28 - }, -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/start/hangover, -/obj/machinery/button/door/directional/east{ - id = "Unit_3Privacy"; - name = "Unit 3 Privacy Toggle"; - pixel_y = -8 - }, -/obj/machinery/button/door/directional/east{ - id = "Unit_3"; - name = "Unit 3 Privacy Lock"; - normaldoorcontrol = 1; - pixel_y = 8; - specialfunctions = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/toilet/restrooms) -"aCz" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/ammunitionlocker/useful, -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot, -/turf/open/floor/iron/showroomfloor, -/area/station/ai_monitored/security/armory) -"aDo" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/firealarm/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Recovery Room"; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"aDD" = ( -/turf/open/floor/plating, -/area/station/security/prison) -"aDF" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/auxbase{ - dir = 4; - pixel_x = -28 - }, -/obj/item/radio{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/assault_pod/mining, -/turf/open/floor/iron/dark, -/area/station/construction/mining/aux_base) -"aDO" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"aDQ" = ( -/turf/open/misc/asteroid, -/area/space/nearstation) -"aDS" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aDT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aDU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aDV" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aDY" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"aDZ" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"aEa" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"aEd" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aEe" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aEf" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aEg" = ( -/obj/structure/girder, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aEi" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"aEj" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space, -/area/space/nearstation) -"aEk" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"aEl" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aEm" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aEn" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aEo" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aEp" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/turf/open/space, -/area/space/nearstation) -"aEq" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/turf/open/space, -/area/space/nearstation) -"aEr" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"aEs" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aEt" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aEu" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aEv" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aEC" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - 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, -/area/station/cargo/office) -"aEF" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall, -/area/station/maintenance/aft) -"aEK" = ( -/obj/machinery/computer/cargo, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/east, -/obj/machinery/requests_console/directional/north{ - announcementConsole = 1; - department = "Quartermaster's Desk"; - departmentType = 2; - name = "Quartermaster's Requests Console" - }, -/obj/structure/extinguisher_cabinet/directional/north{ - pixel_x = 32 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/qm) -"aEO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security/glass{ - name = "Brig" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/office) -"aEU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"aFn" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/tcommsat/computer) -"aGd" = ( -/obj/structure/table, -/obj/machinery/camera/directional/west{ - c_tag = "Incinerator Construction Area"; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"aGn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"aGs" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/machinery/meter, -/turf/closed/wall/r_wall/rust, -/area/station/engineering/atmos) -"aGu" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Connector" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) -"aGC" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"aGK" = ( -/obj/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/catwalk_floor/iron_dark, -/area/station/service/chapel/dock) -"aGM" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/chair/stool/directional/south, -/obj/effect/landmark/start/atmospheric_technician, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"aGQ" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "External Gas to Loop" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"aGR" = ( -/obj/effect/turf_decal/stripes/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/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"aGZ" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/primary/central) -"aHq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"aHz" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"aHB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"aHC" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/camera/directional/east{ - c_tag = "Cryogenics"; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/structure/table, -/obj/item/book/manual/wiki/medicine, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/exam_room) -"aHD" = ( -/obj/effect/spawner/random/vending/snackvend, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/security/office) -"aHQ" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/secure_closet/chief_medical, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/firealarm/directional/south, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/item/gun/energy/e_gun/mini, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"aHW" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/tcommsat/computer) -"aIl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"aIq" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/tcommsat/computer) -"aIv" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"aIw" = ( -/obj/effect/landmark/secequipment, -/obj/effect/turf_decal/bot, -/obj/machinery/camera/directional/north{ - c_tag = "Security Office Lockers" - }, -/obj/structure/noticeboard/directional/north, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/office) -"aIH" = ( -/obj/structure/transit_tube/crossing, -/obj/effect/turf_decal/sand/plating, -/obj/structure/window/reinforced/spawner, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aII" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/wardrobe/cargo_wardrobe, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/storage) -"aJh" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage"; - name = "trash belt" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/janitor) -"aJm" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/table/wood/fancy/blue, -/obj/item/food/cracker{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/food/cracker{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/food/cracker, -/turf/open/floor/carpet/royalblue, -/area/station/service/chapel/office) -"aJF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/siding/red{ - dir = 5 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"aJM" = ( -/obj/machinery/hydroponics/soil, -/obj/item/shovel/spade, -/obj/item/cultivator{ - pixel_x = 9 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/grass, -/area/station/security/prison/garden) -"aKe" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"aKr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aKA" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/box/corners, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron, -/area/station/security/courtroom) -"aKI" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat_interior) -"aKY" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/security/prison/mess) -"aLg" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/security/execution/education) -"aLi" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"aLC" = ( -/obj/machinery/computer/pandemic, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"aLI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"aLK" = ( -/obj/structure/closet/crate, -/obj/item/hand_labeler, -/obj/item/storage/crayons, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"aLP" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"aLS" = ( -/obj/machinery/chem_master, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light_switch/directional/south, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"aMa" = ( -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"aMb" = ( -/turf/closed/wall, -/area/station/science/ordnance/freezerchamber) -"aMe" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/service/hydroponics) -"aMp" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Cargo Maintenance" - }, -/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/cyclelink_helper_multi{ - cycle_id = "cargo-maint-passthrough" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) -"aMy" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"aMK" = ( -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"aMU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science/research) -"aNa" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/red, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science/research) -"aNg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/electric_shock/directional/north, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"aNp" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"aNw" = ( -/obj/structure/table/optable, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/surgical_drapes, -/obj/item/clothing/mask/surgical, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"aND" = ( -/turf/closed/wall/r_wall, -/area/station/science/lab) -"aNH" = ( -/obj/structure/chair/pew{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"aOc" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L1" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/sign/directions/security{ - dir = 8; - pixel_y = 32 - }, -/obj/structure/sign/directions/medical{ - dir = 8; - pixel_y = 40 - }, -/obj/structure/sign/directions/command{ - dir = 8; - pixel_y = 24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"aOf" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor{ - id = "justiceblast"; - name = "Justice Blast Door" - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"aOg" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"aOG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/command/gateway) -"aPg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"aPj" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"aPq" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small/directional/north, -/obj/machinery/power/shieldwallgen, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"aPF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"aPJ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"aPR" = ( -/obj/structure/table/wood, -/obj/effect/landmark/event_spawn, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/wood/tile, -/area/station/service/library) -"aQl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"aQs" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"aQB" = ( -/obj/machinery/computer/message_monitor, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"aQQ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/exam_room) -"aRB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"aRH" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"aRS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"aSa" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"aSo" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"aSr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"aSu" = ( -/obj/structure/chair/pew{ - dir = 8 - }, -/turf/open/floor/iron/chapel{ - dir = 4 - }, -/area/station/service/chapel) -"aSv" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/atmospheric_technician, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"aSX" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/fore) -"aSZ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"aTb" = ( -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/flora/bush/lavendergrass/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"aTe" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/pharmacy) -"aTg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"aTm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/obj/effect/turf_decal/bot, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"aTx" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/iron, -/area/station/cargo/storage) -"aTR" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/recharge_floor, -/area/station/science/robotics/mechbay) -"aUh" = ( -/obj/effect/turf_decal/bot, -/obj/structure/safe{ - pixel_x = 3 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/stack/spacecash/c500{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/storage/belt/bandolier, -/obj/item/gun/ballistic/rifle/boltaction/pipegun, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"aUn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"aUw" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron/goonplaque, -/area/station/security/brig) -"aUz" = ( -/obj/structure/flora/rock/pile/style_random, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"aUU" = ( -/obj/structure/table, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/medical/gauze, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"aUW" = ( -/turf/open/floor/iron/stairs/medium{ - dir = 4 - }, -/area/station/hallway/primary/fore) -"aVl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"aVn" = ( -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/clothing/mask/gas{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/mask/gas, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"aVt" = ( -/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, -/area/station/security/prison/garden) -"aVx" = ( -/obj/effect/spawner/random/structure/tank_holder, -/turf/open/floor/plating, -/area/station/maintenance/central) -"aVC" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11; - pixel_y = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/loading_area, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/door/window/right/directional/south{ - name = "Trash Chute"; - req_access = list("janitor") - }, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/service/janitor) -"aVH" = ( -/obj/structure/bed{ - dir = 4 - }, -/obj/item/bedsheet/captain{ - dir = 4 - }, -/obj/effect/landmark/start/captain, -/obj/item/radio/intercom/directional/west{ - freerange = 1; - name = "Captain's Intercom" - }, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/carpet/royalblue, -/area/station/command/heads_quarters/captain/private) -"aVI" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"aWD" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/storage/gas) -"aWF" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"aWI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/fore) -"aXf" = ( -/obj/machinery/atmospherics/components/binary/valve, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel/monastery) -"aXA" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs) -"aXJ" = ( -/obj/structure/table/reinforced, -/obj/structure/desk_bell{ - pixel_x = -7; - pixel_y = 8 - }, -/obj/item/food/grown/watermelon, -/obj/item/food/grown/wheat, -/obj/item/food/grown/whitebeet, -/obj/item/food/grown/apple, -/obj/item/food/grown/tomato, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/right/directional/west{ - name = "Hydroponics Desk"; - req_access = list("hydroponics") - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"aYu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible, -/turf/closed/wall, -/area/station/engineering/atmos) -"aYv" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/carpet/royalblack, -/area/station/command/heads_quarters/captain) -"aYz" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/research) -"aYE" = ( -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel/monastery) -"aYI" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"aYN" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"aYU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/rnd/production/techfab/department/security, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/iron/dark, -/area/station/security/office) -"aYW" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) -"aZh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/food/pie_smudge, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"aZi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/door/morgue{ - name = "Private Study"; - req_access = list("library") - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured_large, -/area/station/service/library) -"aZw" = ( -/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/wood{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/duct, -/turf/open/floor/wood, -/area/station/service/bar/atrium) -"bax" = ( -/turf/closed/wall, -/area/station/commons/storage/primary) -"baz" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"baC" = ( -/obj/machinery/suit_storage_unit/atmos, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics Lockers"; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"baE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/central/fore) -"baF" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"baG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/station/security/prison) -"baK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"baS" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/storage) -"bbl" = ( -/obj/machinery/door/airlock/external{ - name = "Abandoned External Airlock" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"bbC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/book/manual/wiki/engineering_hacking, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"bbO" = ( -/turf/closed/wall/r_wall, -/area/station/service/chapel/storage) -"bcb" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "commissaryshutter"; - name = "Vacant Commissary Shutter"; - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/noticeboard/directional/east, -/turf/open/floor/plating, -/area/station/commons/vacant_room/commissary) -"bcs" = ( -/obj/structure/sign/warning/explosives, -/turf/closed/wall/r_wall, -/area/station/science/ordnance/bomb) -"bcE" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/turf_decal/box/red, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"bcQ" = ( -/obj/machinery/suit_storage_unit/atmos, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"bcY" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/item/stack/sheet/mineral/plasma, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"bdk" = ( -/obj/machinery/modular_computer/console/preset/curator{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/turf_decal/bot_white, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/library) -"bdo" = ( -/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/command/glass{ - name = "Bridge" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"bdF" = ( -/obj/machinery/door/airlock/engineering{ - name = "Emergency Storage" - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/crew_quarters/bar) -"bdH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/education) -"bdM" = ( -/obj/effect/turf_decal/bot, -/obj/structure/table, -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring medbay to ensure patient safety."; - dir = 1; - name = "Medbay Monitor"; - network = list("medical") - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/reagent_dispensers/wall/peppertank/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) -"bdU" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"bdX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"bed" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/biohazard/directional/east, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"beo" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/checkpoint/customs) -"beK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"beN" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "transittube_ai"; - name = "Transit Tube Lockdown Toggle"; - req_access = list("command") - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"bfA" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"bfI" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-03" - }, -/obj/machinery/light/directional/west, -/obj/item/radio/intercom/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/storage) -"bgl" = ( -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/hop) -"bgn" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "Bridge" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/preopen{ - id = "brige-maint"; - name = "Bridge Blast Door" - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"bhk" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - name = "Command Maintenance" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/command/teleporter, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"bhm" = ( -/obj/machinery/computer/monitor{ - dir = 1; - name = "backup power monitoring console" - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/noticeboard/directional/south, -/obj/structure/spider/stickyweb, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"bhr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Science Guard's Office" - }, -/obj/effect/turf_decal/siding/red/corner, -/obj/effect/mapping_helpers/airlock/access/all/science/sci_guard, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science/research) -"bhH" = ( -/obj/machinery/button/massdriver{ - id = "trash"; - pixel_x = -26; - pixel_y = -6 - }, -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/button/door/directional/west{ - id = "Disposal Exit"; - name = "Disposal Vent Control"; - pixel_y = 4; - req_access = list("maint_tunnels") - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"bhJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"bhR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Freight Mining Airlock" - }, -/obj/structure/barricade/wooden/crude, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/cargo/warehouse) -"bib" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2"; - name = "on ramp" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/storage) -"biq" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"bis" = ( -/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/hallway/primary/central) -"biP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"biR" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/turf/closed/wall/r_wall/rust, -/area/station/security/execution/transfer) -"bjb" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"bjd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"bji" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"bjk" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"bjz" = ( -/obj/structure/flora/grass/jungle/a/style_random, -/turf/open/misc/asteroid, -/area/station/maintenance/port/lesser) -"bjB" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"bjJ" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/plating/airless, -/area/station/maintenance/disposal/incinerator) -"bjN" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - 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, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/cmo) -"bjR" = ( -/obj/structure/flora/rock/style_random, -/turf/open/misc/asteroid, -/area/space/nearstation) -"bkn" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"bks" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos/pumproom) -"bkK" = ( -/obj/machinery/rnd/server/master, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/science/server) -"bkN" = ( -/obj/machinery/telecomms/bus/preset_two, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"bkS" = ( -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"bkT" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/directional/north{ - c_tag = "Locker Room"; - name = "recreation camera" - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron, -/area/station/commons/locker) -"bla" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/showroomfloor, -/area/station/science/robotics/lab) -"bld" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral, -/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 sorting disposal pipe"; - sortType = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"bls" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"blw" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"blA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"blU" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) -"blX" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/turf/closed/wall, -/area/station/engineering/atmos) -"blZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/office) -"bmn" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/potato, -/obj/structure/cable, -/turf/open/floor/grass, -/area/station/security/prison/garden) -"bmu" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/reagent_containers/glass/bucket, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/janitor) -"bmB" = ( -/obj/machinery/door/poddoor/incinerator_ordmix, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"bmX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"bnl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"bnn" = ( -/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/border_only, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/stairs{ - dir = 1 - }, -/area/station/service/chapel) -"bnB" = ( -/obj/structure/frame/computer, -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron, -/area/station/service/chapel/storage) -"bnU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Armoury" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/hos, -/obj/machinery/door/poddoor/shutters{ - id = "frontarmory"; - name = "Front Armoury Shutter" - }, -/obj/machinery/button/door/directional/north{ - id = "frontarmory"; - name = "Armoury Shutter Toggle"; - req_access = list("armory") - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"bnY" = ( -/obj/structure/sign/departments/security, -/turf/closed/wall, -/area/station/security/detectives_office) -"bod" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"boo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/door/window/left/directional/south{ - dir = 1; - name = "Maximum Security Test Chamber"; - req_access = list("xenobiology") - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"boq" = ( -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/line, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"bot" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall, -/area/station/maintenance/starboard/fore) -"boE" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"boG" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"boZ" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/storage/box/syringes{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/box/beakers{ - pixel_y = 2 - }, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/button/door/directional/south{ - id = "xeno2"; - name = "Creature Cell 2 Toggle"; - pixel_x = -24; - req_access = list("xenobiology") - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"bpg" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/item/wrench, -/obj/item/crowbar/red, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"bpj" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - 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, -/area/station/hallway/primary/central/fore) -"bpm" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 11; - id = "ferry_home"; - name = "port bay 2"; - width = 5 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bpn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Mailroom" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "cargo-mailroom" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/shipping, -/turf/open/floor/iron/dark, -/area/station/cargo/sorting) -"bpp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"bpz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"bpI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"bpR" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"bpV" = ( -/obj/structure/grille/broken, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"bqd" = ( -/obj/structure/chair/sofa/bench/left{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/central/fore) -"bqi" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/meter, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"bqy" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/camera/directional/east{ - c_tag = "Bridge Access"; - name = "command camera" - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"brg" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/engineering_all, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/camera/directional/south{ - c_tag = "tech_storage"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"brz" = ( -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"brA" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"brE" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 5 - }, -/obj/machinery/meter, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"brK" = ( -/obj/machinery/gulag_teleporter, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/dark, -/area/station/security/processing) -"bsa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden/crude, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"bsc" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/obj/item/multitool, -/obj/machinery/camera/directional/west{ - c_tag = "Telecomms Monitoring"; - name = "telecomms camera"; - network = list("ss13","tcomms") - }, -/obj/machinery/requests_console/directional/west{ - announcementConsole = 1; - department = "Telecomms Admin"; - departmentType = 5; - name = "Telecomms Requests Console" - }, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"bsB" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/storage/box/lights/mixed{ - pixel_y = 6 - }, -/obj/machinery/door/window/right/directional/west{ - dir = 4; - name = "Cargo Desk"; - req_access = list("shipping") - }, -/obj/item/flashlight, -/turf/open/floor/plating, -/area/station/cargo/office) -"bsJ" = ( -/obj/structure/destructible/cult/item_dispenser/archives/library, -/obj/item/book/codex_gigas{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/storage/fancy/candle_box{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/flashlight/lantern{ - pixel_x = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/computer/security/telescreen/entertainment/directional/south, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/newscaster/directional/east, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/iron/dark, -/area/station/service/library) -"bsR" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"bsT" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/suit/hooded/wintercoat/engineering, -/obj/effect/turf_decal/delivery, -/obj/machinery/newscaster/directional/north, -/obj/item/pickaxe/mini, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage_shared) -"bsZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"btb" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/machinery/firealarm/directional/west, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"btg" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/ai/directional/south, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"btt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"bty" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/plasma, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"btI" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/item/kirbyplants{ - icon_state = "plant-02"; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/central) -"btK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"btN" = ( -/obj/machinery/computer/cryopod{ - dir = 8; - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/common/cryopods) -"buk" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics Tank - O2"; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"bul" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_y = 4 - }, -/obj/machinery/status_display/evac/directional/north, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/carpet, -/area/station/medical/psychology) -"bum" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/processing) -"buq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/exam_room) -"buD" = ( -/obj/machinery/griddle, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"buJ" = ( -/obj/structure/bed/dogbed/runtime, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/mob/living/simple_animal/pet/cat/runtime, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"buS" = ( -/obj/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/chapel/dock) -"buU" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - name = "detective sorting disposal pipe"; - sortType = 30 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"bvk" = ( -/obj/effect/landmark/secequipment, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/office) -"bvA" = ( -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - color = "#c45c57"; - dir = 4 - }, -/turf/open/floor/carpet/royalblack, -/area/station/command/heads_quarters/captain) -"bvN" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/railing, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"bvR" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"bwk" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/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/structure/cable, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"bwA" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/ordnance) -"bwB" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/showroomfloor, -/area/station/security/brig) -"bwN" = ( -/obj/effect/turf_decal/box/white, -/obj/effect/turf_decal/arrows/white{ - color = "#0000FF"; - pixel_y = 15 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"bwW" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/medical/central) -"bxs" = ( -/obj/effect/turf_decal/box, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/bomb) -"bxx" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/engine/telecomms, -/area/station/tcommsat/server) -"bxE" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/box, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/hallway) -"bxG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/south, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"byb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/girder, -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"bys" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"byy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"byD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat_interior) -"byK" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"byS" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"bza" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"bzb" = ( -/obj/structure/grille, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"bzc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/table, -/obj/machinery/recharger, -/obj/machinery/computer/security/telescreen/prison{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/office) -"bzo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"bzp" = ( -/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 = 6 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"bzu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/service/chapel/dock) -"bzy" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"bzS" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/crossing, -/turf/open/space/basic, -/area/space/nearstation) -"bAc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"bAf" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bAi" = ( -/obj/structure/sign/departments/security, -/turf/closed/wall, -/area/station/maintenance/fore) -"bAs" = ( -/obj/structure/table/wood/fancy/black, -/obj/item/food/grown/poppy/geranium{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/food/grown/poppy/geranium{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/food/grown/poppy/geranium, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"bAQ" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/virology) -"bAS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/cargo/drone_bay) -"bAX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"bBe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/spawner/random/vending/colavend, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"bBr" = ( -/obj/machinery/door/airlock/engineering{ - name = "Emergency Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"bBE" = ( -/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, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"bBF" = ( -/turf/closed/wall/r_wall, -/area/station/science/robotics/lab) -"bBJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"bBR" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/west, -/obj/item/radio/intercom/directional/north, -/obj/item/storage/wallet, -/obj/effect/spawner/random/entertainment/coin, -/obj/item/gps{ - gpstag = "QM0"; - pixel_x = -8; - pixel_y = 4 - }, -/obj/effect/spawner/random/entertainment/coin, -/obj/item/pen/blue{ - pixel_x = -5; - pixel_y = -10 - }, -/obj/item/pen/red{ - pixel_x = 1; - pixel_y = -10 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/qm) -"bBS" = ( -/turf/closed/wall/r_wall, -/area/station/command/teleporter) -"bBV" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/station/cargo/storage) -"bBY" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/watermelon, -/turf/open/floor/grass, -/area/station/security/prison/garden) -"bCz" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/clipboard{ - pixel_x = 3 - }, -/obj/item/folder/yellow{ - pixel_x = 3 - }, -/obj/machinery/door/window/left/directional/west{ - dir = 4; - name = "Mailroom Desk"; - req_access = list("shipping") - }, -/obj/effect/landmark/start/hangover, -/obj/structure/desk_bell{ - pixel_x = -8; - pixel_y = 10 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"bCO" = ( -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/lipstick/random{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/lipstick/random{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/lipstick/random{ - pixel_x = 6 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/locker) -"bDj" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/spawner/random/vending/colavend, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/port) -"bDp" = ( -/obj/effect/turf_decal/bot, -/obj/structure/tank_dispenser/oxygen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"bDr" = ( -/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, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/duct, -/obj/machinery/door/airlock{ - name = "Kitchen" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"bDu" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"bDF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/table/wood/fancy/red, -/obj/machinery/door/window/right/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/library) -"bDP" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"bDQ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/fireaxecabinet/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics Scrubbers"; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"bDV" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/toilet/restrooms) -"bEa" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bEd" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Gas to Chamber" - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"bEe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/structure/barricade, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, -/turf/open/floor/plating/rust, -/area/station/maintenance/department/crew_quarters/bar) -"bEv" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"bFm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"bFv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/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, -/turf/open/floor/iron/dark, -/area/station/engineering/storage_shared) -"bFw" = ( -/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/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/duct, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"bFI" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"bFQ" = ( -/obj/docking_port/stationary{ - dwidth = 1; - height = 4; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/turf/open/space/basic, -/area/space) -"bGx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/education) -"bGE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/flasher/directional/west{ - id = "AI"; - name = "Meatbag Pacifier" - }, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"bGY" = ( -/obj/structure/sign/warning/engine_safety, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter/room) -"bHj" = ( -/obj/structure/table, -/obj/item/paper_bin/construction{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/hand_labeler{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/hand_labeler{ - pixel_x = 5 - }, -/obj/item/radio/intercom/directional/east, -/obj/machinery/light/small/directional/east, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/commons/storage/art) -"bHl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"bHv" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/north, -/obj/item/clothing/mask/russian_balaclava, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"bHB" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"bHK" = ( -/obj/effect/decal/cleanable/dirt, -/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, -/area/station/command/gateway) -"bHL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/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) -"bHM" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/item/reagent_containers/glass/watering_can, -/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/security/prison/garden) -"bHP" = ( -/obj/structure/flora/grass/jungle/a/style_random, -/obj/structure/chair, -/turf/open/misc/asteroid, -/area/station/maintenance/port/lesser) -"bHR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair/office, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"bId" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"bIm" = ( -/obj/structure/table, -/obj/item/transfer_valve{ - pixel_x = 5 - }, -/obj/item/transfer_valve, -/obj/item/transfer_valve{ - pixel_x = -5 - }, -/obj/item/transfer_valve{ - pixel_x = 5 - }, -/obj/item/transfer_valve, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"bIq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/transfer) -"bIR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"bJi" = ( -/obj/machinery/door/airlock/external{ - name = "Engineering External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"bJm" = ( -/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, -/area/station/security/brig) -"bJv" = ( -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/station/holodeck/rec_center) -"bJM" = ( -/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/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"bJR" = ( -/obj/structure/chair/comfy/brown{ - color = "#596479"; - dir = 1 - }, -/obj/effect/landmark/start/captain, -/turf/open/floor/carpet/royalblue, -/area/station/command/heads_quarters/captain) -"bJU" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall, -/area/station/commons/locker) -"bJV" = ( -/obj/effect/spawner/structure/window/bronze, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel) -"bKc" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/storage/backpack/duffelbag/med{ - pixel_y = 5 - }, -/obj/item/reagent_containers/blood/random{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/reagent_containers/blood/random, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"bKj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/mess) -"bKl" = ( -/obj/structure/flora/rock/pile/style_random, -/turf/open/misc/asteroid, -/area/space/nearstation) -"bKM" = ( -/obj/machinery/light/directional/west, -/obj/machinery/power/emitter/welded{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"bKU" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/structure/bedsheetbin, -/obj/structure/table/glass, -/obj/machinery/airalarm/directional/north, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron/dark, -/area/station/medical/paramedic) -"bLf" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/robotics/lab) -"bLN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/gibs/up, -/obj/structure/sign/poster/official/wtf_is_co2{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/small/directional/north, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/security/execution/education) -"bLR" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/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/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"bMw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/iron, -/area/station/security/prison) -"bMF" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/computer/piratepad_control/civilian{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark/textured, -/area/station/cargo/sorting) -"bMH" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/iron/dark, -/area/station/commons/vacant_room/commissary) -"bMN" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"bMY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"bNv" = ( -/obj/machinery/telecomms/server/presets/common, -/obj/machinery/light/directional/west, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"bNz" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/security/courtroom) -"bNM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai_upload) -"bNO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"bOD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"bOR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xeno5"; - name = "Creature Cell 5" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"bPK" = ( -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/bush/ferny/style_random, -/obj/effect/decal/cleanable/dirt, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"bPP" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/flora/grass/jungle/b/style_random, -/obj/effect/decal/cleanable/dirt, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"bPR" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/flora/bush/pale/style_random, -/obj/effect/decal/cleanable/dirt, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"bPX" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"bPY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Unit_2Privacy"; - name = "Unit 2 Privacy Shutter" - }, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"bPZ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/grass/jungle/b/style_random, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"bQb" = ( -/obj/structure/flora/bush/leavy/style_random, -/obj/structure/flora/bush/ferny/style_random, -/obj/structure/flora/bush/flowers_yw/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"bQn" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/rd) -"bQD" = ( -/obj/effect/decal/cleanable/blood/old, -/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/cable, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"bQN" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/obj/item/pickaxe, -/turf/open/misc/asteroid/lowpressure, -/area/space/nearstation) -"bQR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/table, -/obj/structure/sign/warning/electric_shock/directional/north, -/obj/item/storage/toolbox/electrical, -/obj/item/assembly/flash/handheld, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"bQX" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/light/small/directional/north, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/server) -"bRb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/window/left/directional/south{ - name = "Kitchen Access"; - req_access = list("kitchen") - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/department/bridge) -"bRh" = ( -/obj/structure/transit_tube/diagonal/topleft, -/turf/open/space/basic, -/area/space/nearstation) -"bRo" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"bRv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"bRx" = ( -/obj/machinery/computer/shuttle/mining{ - dir = 8; - req_access = null - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/miningoffice) -"bRy" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/misc/asteroid/lowpressure, -/area/space/nearstation) -"bRJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"bRO" = ( -/obj/machinery/chem_dispenser, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/chemistry) -"bRQ" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 11; - height = 18; - id = "emergency_home"; - name = "KiloStation emergency evac bay"; - width = 30 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bRV" = ( -/obj/structure/chair/sofa/left{ - color = "#c45c57"; - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/bar/atrium) -"bSg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/machinery/door/airlock/atmos/glass{ - name = "Distribution Loop" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/pumproom) -"bSi" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"bSt" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space/basic, -/area/station/solars/port/aft) -"bSA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"bSC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"bSM" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"bSX" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral{ - 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, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"bTe" = ( -/obj/machinery/computer/communications{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/plaque/static_plaque/golden/captain{ - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/captain) -"bTT" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/grass/jungle/a/style_random, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"bUd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/flora/grass/jungle/a/style_random, -/obj/effect/decal/cleanable/dirt, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"bUe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/flora/grass/jungle/b/style_random, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"bUk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"bUl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/education) -"bUp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/flora/bush/pale/style_random, -/obj/effect/decal/cleanable/dirt, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"bUx" = ( -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Genetics"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/machinery/computer/scan_consolenew{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"bUy" = ( -/obj/structure/flora/bush/pale/style_random, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"bUA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/flora/grass/jungle/b/style_random, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"bUC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"bUD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/grass/jungle/a/style_random, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"bUE" = ( -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/structure/flora/bush/grassy/style_random, -/obj/structure/flora/bush/pale/style_random, -/obj/effect/decal/cleanable/dirt, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"bUF" = ( -/obj/structure/flora/rock/pile/style_random, -/obj/effect/decal/cleanable/dirt, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"bUI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"bUJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/security{ - name = "Evidence" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"bUN" = ( -/turf/open/floor/plating/airless, -/area/space) -"bUO" = ( -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/space) -"bUV" = ( -/obj/structure/cable, -/obj/structure/chair, -/obj/effect/landmark/start/hangover, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/courtroom) -"bVp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/landmark/start/engineering_guard, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) -"bVv" = ( -/turf/closed/mineral/random/high_chance, -/area/space/nearstation) -"bVR" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"bWv" = ( -/obj/structure/rack, -/obj/item/integrated_circuit/loaded/speech_relay, -/obj/item/integrated_circuit/loaded/hello_world, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 1 - }, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/office) -"bWE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter/room) -"bWI" = ( -/obj/machinery/door/airlock/external{ - name = "Abandoned External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"bWP" = ( -/obj/structure/table, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = -8 - }, -/obj/item/clothing/under/rank/prisoner{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Prison Visitation"; - network = list("ss13","prison") - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/transfer) -"bWZ" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/science/research) -"bXa" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"bXb" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/obj/machinery/button/door{ - id = "bridge blast"; - name = "Bridge Lockdown Toggle"; - pixel_x = 6; - pixel_y = 8; - req_access = list("command") - }, -/obj/machinery/button/door{ - id = "bridge-maint"; - name = "Bridge Maintenance Lockdown Toggle"; - pixel_x = 6; - pixel_y = -2; - req_access = list("command") - }, -/obj/machinery/button/door{ - id = "teleshutter"; - name = "Teleporter Shutter Toggle"; - pixel_x = -6; - pixel_y = 8; - req_access = list("command") - }, -/obj/machinery/button/door{ - id = "evashutter"; - name = "E.V.A. Storage Shutter Toggle"; - pixel_x = -6; - pixel_y = -2; - req_access = list("command") - }, -/obj/machinery/camera/directional/north{ - c_tag = "Bridge Control"; - name = "command camera" - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"bXe" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/stasis{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/obj/machinery/defibrillator_mount/directional/west, -/turf/open/floor/iron/dark, -/area/station/medical/exam_room) -"bXf" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/blue, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/service/janitor) -"bXj" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"bXz" = ( -/turf/closed/wall, -/area/station/service/kitchen/coldroom) -"bXS" = ( -/obj/machinery/door/airlock/external{ - name = "Prison External Airlock" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) -"bXX" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/bridge) -"bYe" = ( -/obj/machinery/door/poddoor{ - id = "Arrival Shuttle Bay"; - name = "Arrival Shuttle Bay" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plating/airless, -/area/station/hallway/secondary/entry) -"bYK" = ( -/obj/machinery/button/flasher{ - id = "visitorflash"; - pixel_x = -6; - pixel_y = 24; - req_access = list("brig") - }, -/obj/machinery/holopad, -/obj/machinery/button/door/directional/north{ - id = "visitation"; - name = "Visitation Shutters"; - pixel_x = 8; - req_access = list("brig") - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/transfer) -"bZg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/newscaster/directional/east, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/port) -"bZE" = ( -/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/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"bZQ" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"bZY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"caj" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/security/courtroom) -"cau" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"caL" = ( -/obj/structure/closet/cardboard, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"caN" = ( -/obj/structure/sign/warning/fire/directional/west, -/obj/machinery/firealarm/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/item/crowbar/red, -/obj/item/radio{ - pixel_y = 5 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"caO" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/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/showroomfloor, -/area/station/ai_monitored/security/armory) -"caS" = ( -/obj/machinery/computer/security{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"cbf" = ( -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/brig) -"cbp" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/ai_monitored/security/armory) -"cbF" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/nuclearbomb/beer, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"cbJ" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/machinery/camera/autoname/directional/south, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/iron/stairs/left{ - dir = 4 - }, -/area/station/service/chapel) -"ccd" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wideplating/dark/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"ccf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"ccg" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 1; - height = 4; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/turf/open/space/basic, -/area/space) -"ccr" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat_interior) -"ccw" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Cryopods" - }, -/turf/open/floor/iron, -/area/station/common/cryopods) -"ccz" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/closed/mineral/random/labormineral, -/area/space/nearstation) -"ccP" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"ccQ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ccW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/coin/twoheaded{ - pixel_x = 8; - pixel_y = 6 - }, -/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/maintenance/port/fore) -"ccX" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"ccY" = ( -/obj/structure/transit_tube/curved, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"cdf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/requests_console/directional/west, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"cdi" = ( -/obj/structure/closet/crate/engineering, -/obj/item/stack/sheet/mineral/plasma/thirty{ - amount = 50 - }, -/obj/item/wrench, -/obj/item/crowbar, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron/smooth_large, -/area/station/maintenance/department/chapel/monastery) -"cdl" = ( -/obj/structure/transit_tube/curved/flipped, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"cdt" = ( -/obj/structure/transit_tube/curved/flipped{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"cdu" = ( -/obj/structure/transit_tube/curved{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"cdD" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/start/medical_doctor, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/surgery/aft) -"cdF" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/showroomfloor, -/area/station/ai_monitored/security/armory) -"cdH" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/science/robotics/lab) -"cdI" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/rack, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"cdV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/ai_monitored/turret_protected/ai) -"cdX" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"cdY" = ( -/turf/closed/wall, -/area/station/ai_monitored/turret_protected/ai) -"cdZ" = ( -/turf/closed/wall/rust, -/area/station/ai_monitored/turret_protected/ai) -"cec" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "East Ports to West Ports" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cee" = ( -/obj/structure/sign/poster/contraband/revolver, -/turf/closed/wall, -/area/station/commons/locker) -"ceg" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/holopad/secure, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"ceh" = ( -/obj/structure/table, -/obj/item/storage/box/prisoner{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/restraints/handcuffs/cable/zipties, -/obj/item/crowbar/red, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/noticeboard/directional/north, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"cel" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/lobby) -"ceq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "AI Core shutters"; - name = "AI Core Shutter" - }, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai) -"cev" = ( -/obj/structure/transit_tube/diagonal/topleft, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"cez" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"ceD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/ai_monitored/turret_protected/ai) -"ceE" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/ai_monitored/security/armory) -"ceF" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"ceG" = ( -/turf/closed/wall/r_wall/rust, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"ceM" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"ceT" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/storage) -"ceW" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage_shared) -"cfm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/girder/displaced, -/obj/structure/grille/broken, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"cfs" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Supermatter Waste Line"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/button/door/directional/east{ - id = "engineaccess"; - name = "Engine Access Lockdown"; - req_access = list("engineering") - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"cfu" = ( -/obj/structure/sign/warning/xeno_mining, -/turf/closed/wall, -/area/station/maintenance/fore) -"cfC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"cfK" = ( -/obj/structure/table, -/obj/structure/cable, -/obj/effect/spawner/random/aimodule/harmless, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/ai_monitored/turret_protected/ai_upload) -"cfL" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/aft) -"cfN" = ( -/obj/effect/turf_decal/bot, -/obj/structure/safe{ - pixel_x = 3 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/stack/spacecash/c500{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/lazarus_injector, -/obj/effect/decal/cleanable/dirt, -/obj/structure/spider/stickyweb, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"cfR" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/folder/blue, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hop"; - name = "Privacy Shutters" - }, -/obj/machinery/door/window/brigdoor{ - base_state = "rightsecure"; - dir = 1; - icon_state = "rightsecure"; - name = "Head of Personnel's Desk"; - req_access = list("hop") - }, -/obj/machinery/door/window/right/directional/south{ - name = "Reception Desk" - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"cgb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"cgj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"cgp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat_interior) -"cgJ" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat_interior) -"cgT" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/department/crew_quarters/bar) -"cgU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/recharge_floor, -/area/station/maintenance/port/aft) -"chc" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"chg" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"chj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"chD" = ( -/turf/closed/wall, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"chI" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"chM" = ( -/obj/structure/transit_tube/diagonal, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"chO" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"chS" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/checkpoint/engineering) -"chT" = ( -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"chV" = ( -/turf/closed/wall/rust, -/area/station/ai_monitored/turret_protected/aisat_interior) -"cic" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space) -"cij" = ( -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"cio" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"cit" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"civ" = ( -/obj/effect/spawner/random/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/central) -"ciw" = ( -/obj/structure/transit_tube/curved/flipped{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"ciy" = ( -/obj/structure/transit_tube/curved{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"ciA" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/paramedic) -"ciI" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"ciK" = ( -/obj/effect/turf_decal/tile/purple{ - 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 = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"ciM" = ( -/obj/structure/sign/departments/engineering, -/turf/closed/wall, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"ciR" = ( -/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/carpet/royalblue, -/area/station/service/chapel/office) -"ciT" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/item/wrench, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/north, -/obj/item/tank/internals/oxygen, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"ciW" = ( -/obj/effect/turf_decal/siding/wideplating_new/dark, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"ciY" = ( -/turf/closed/wall/rust, -/area/station/security/warden) -"cjl" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/hallway) -"cjp" = ( -/obj/effect/spawner/random/clothing/costume, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"cjq" = ( -/obj/structure/table/reinforced, -/obj/item/storage/secure/briefcase{ - pixel_y = 6 - }, -/obj/item/radio{ - pixel_y = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/office) -"cjv" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cjx" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"cjG" = ( -/obj/structure/window/reinforced/spawner{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner{ - dir = 8 - }, -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/flora/bush/flowers_br/style_random, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "emmd"; - name = "Emergency Medical Lockdown Shutters"; - dir = 4 - }, -/turf/open/floor/grass, -/area/station/medical/paramedic) -"cjI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"cjN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"cjR" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/station/service/chapel) -"cjS" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/item/soap/nanotrasen, -/obj/item/hand_labeler, -/obj/item/gun/syringe{ - pixel_y = 5 - }, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) -"cke" = ( -/obj/structure/sign/warning, -/turf/closed/wall, -/area/space/nearstation) -"ckf" = ( -/obj/structure/grille, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"ckk" = ( -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"ckn" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/space/nearstation) -"cko" = ( -/turf/open/floor/plating/airless, -/area/space/nearstation) -"ckp" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"ckr" = ( -/obj/structure/grille/broken, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"ckA" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"ckJ" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/maintenance/port/lesser) -"ckQ" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"cld" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"cll" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 3; - height = 14; - id = "arrivals_stationary"; - name = "kilo arrivals"; - roundstart_template = /datum/map_template/shuttle/arrival/kilo; - width = 7 - }, -/turf/open/floor/plating/airless, -/area/space) -"clm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "Satellite Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/command/minisat, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"cln" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"clt" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"clw" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 9 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"clz" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"clH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/table, -/obj/item/healthanalyzer, -/obj/item/crowbar/red, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/medical/exam_room) -"clL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/meter, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"clN" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/warden) -"clR" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Prison Recreation"; - network = list("ss13","prison") - }, -/turf/open/floor/iron, -/area/station/security/prison) -"clV" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/arrows, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/cargo/storage) -"clX" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"clY" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cmc" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/aft) -"cml" = ( -/turf/closed/wall/rust, -/area/station/service/library) -"cmJ" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"cmQ" = ( -/turf/open/floor/cult, -/area/station/service/chapel/office) -"cmU" = ( -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cnc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external/directional/south, -/turf/open/floor/plating, -/area/station/construction/mining/aux_base) -"cne" = ( -/obj/structure/railing, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/iron/stairs/left{ - dir = 4 - }, -/area/station/service/chapel) -"cnf" = ( -/obj/structure/grille, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"cnn" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"cnq" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"cnM" = ( -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/space/nearstation) -"cnQ" = ( -/obj/structure/flora/rock/pile/style_random, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/space/nearstation) -"cnR" = ( -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/space/nearstation) -"cnW" = ( -/obj/structure/grille/broken, -/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/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"cog" = ( -/obj/structure/flora/grass/jungle/b/style_random, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/space/nearstation) -"coj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"cok" = ( -/turf/closed/wall/r_wall, -/area/space/nearstation) -"cop" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/table/wood/fancy/black, -/obj/item/storage/book/bible{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/book/bible{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/storage/book/bible, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"cos" = ( -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space) -"cov" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/box, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cow" = ( -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/space/nearstation) -"cox" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/mob/living/simple_animal/sloth/citrus, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"coy" = ( -/obj/structure/flora/rock/style_random, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"coz" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - 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, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"cpC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"cpY" = ( -/obj/item/pickaxe, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cpZ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/box, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"cqc" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"cqm" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/clipboard, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -6 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 6 - }, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/item/experi_scanner{ - pixel_x = -4 - }, -/obj/item/experi_scanner, -/obj/item/experi_scanner{ - pixel_x = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/lab) -"cqr" = ( -/turf/closed/wall/r_wall/rust, -/area/station/science/ordnance/storage) -"cqA" = ( -/obj/machinery/atmospherics/components/tank/plasma{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"cqE" = ( -/obj/structure/flora/bush/fullgrass/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"cqO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"cqQ" = ( -/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/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"crc" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/left/directional/south{ - dir = 1 - }, -/obj/machinery/door/poddoor/shutters{ - id = "visitation"; - name = "Visitation Shutters"; - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/transfer) -"cre" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"crh" = ( -/obj/structure/cable, -/obj/machinery/holopad/secure, -/turf/open/floor/carpet/red, -/area/station/command/heads_quarters/hos) -"crk" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"cry" = ( -/turf/open/space/basic, -/area/space/nearstation) -"crz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"crG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"crI" = ( -/obj/machinery/door/window/left/directional/north{ - req_access = list("chapel_office") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/service/chapel/funeral) -"crK" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space) -"crR" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai_upload) -"csa" = ( -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"csj" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Command)"; - pixel_x = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"csk" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"cso" = ( -/obj/structure/table, -/obj/item/kitchen/fork/plastic, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"csL" = ( -/obj/structure/table/wood/fancy/black, -/obj/item/food/grown/poppy/lily{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/food/grown/poppy/lily{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/food/grown/poppy/lily, -/turf/open/floor/iron/dark, -/area/station/service/chapel/monastery) -"csM" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/warning/electric_shock/directional/south, -/obj/effect/turf_decal/siding/red/corner{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"csW" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/wall, -/area/station/maintenance/aft) -"ctf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"ctg" = ( -/obj/machinery/modular_computer/console/preset/engineering{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"ctt" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/ai_monitored/security/armory) -"ctu" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"ctv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"ctx" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"cua" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"cud" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"cui" = ( -/mob/living/simple_animal/hostile/asteroid/goliath, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"cuj" = ( -/mob/living/simple_animal/hostile/asteroid/hivelord, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"cup" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/ai_monitored/security/armory) -"cuD" = ( -/obj/structure/sign/departments/security/directional/south, -/obj/structure/flora/grass/jungle/b/style_random, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"cuR" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/port/aft) -"cuS" = ( -/obj/structure/bookcase/random, -/obj/machinery/light/small/directional/north, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/grimy, -/area/station/security/prison) -"cuU" = ( -/obj/machinery/door/firedoor, -/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/medical{ - name = "Operating Theater A" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/fore) -"cuV" = ( -/turf/closed/wall, -/area/station/maintenance/starboard/aft) -"cuW" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"cvi" = ( -/obj/effect/turf_decal/siding/thinplating/light{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/monastery) -"cvm" = ( -/obj/machinery/photocopier, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/requests_console/directional/south{ - department = "Law Office"; - name = "Law Office Requests Console" - }, -/obj/effect/turf_decal/box/white, -/turf/open/floor/iron/dark, -/area/station/service/lawoffice) -"cvr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"cvF" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"cvI" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/power/emitter, -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"cvL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/button/door/directional/south{ - id = "medbay_front_door"; - name = "Medbay Doors Toggle"; - normaldoorcontrol = 1; - req_access = list("medical") - }, -/obj/machinery/computer/crew{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/paramedic) -"cvM" = ( -/obj/structure/sign/warning/secure_area{ - name = "EMERGENCY STORAGE" - }, -/turf/closed/wall, -/area/station/hallway/secondary/entry) -"cvT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"cvV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall, -/area/station/maintenance/port/fore) -"cwj" = ( -/obj/machinery/modular_computer/console/preset/id, -/obj/effect/turf_decal/bot, -/obj/machinery/computer/security/telescreen/ce{ - pixel_y = 28 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"cwl" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/department/security) -"cwR" = ( -/obj/effect/turf_decal/bot, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/recharger, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"cxO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/command/teleporter) -"cxP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/ai_monitored/security/armory) -"cyc" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/box, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"cyp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/caution, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"cyv" = ( -/obj/structure/displaycase/trophy, -/turf/open/floor/wood, -/area/station/service/library) -"cyT" = ( -/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/security/execution/transfer) -"cyZ" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/ambrosia, -/turf/open/floor/grass, -/area/station/security/prison/garden) -"czj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "E.V.A. Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/eva, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"czv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/ai_monitored/security/armory) -"czy" = ( -/obj/machinery/door/airlock/external/glass{ - name = "Supply Door Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron/dark, -/area/station/cargo/storage) -"czz" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/airalarm/directional/east, -/obj/effect/landmark/start/assistant, -/obj/item/bedsheet/dorms, -/obj/effect/landmark/start/hangover, -/obj/machinery/button/door/directional/north{ - id = "Cabin_2"; - name = "Cabin 2 Privacy Lock"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/commons/locker) -"czH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"czT" = ( -/obj/structure/cable, -/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) -"czX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"cAl" = ( -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 8 - }, -/obj/effect/landmark/start/scientist, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/office) -"cAp" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/closet/emcloset/anchored, -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"cAq" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/rust, -/area/station/maintenance/starboard/aft) -"cAu" = ( -/obj/effect/landmark/start/botanist, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"cAz" = ( -/obj/machinery/firealarm/directional/west, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"cAJ" = ( -/obj/machinery/turretid{ - icon_state = "control_stun"; - name = "AI Chamber turret control"; - pixel_x = 3; - pixel_y = 28 - }, -/obj/machinery/door/window{ - atom_integrity = 300; - base_state = "leftsecure"; - dir = 8; - icon_state = "leftsecure"; - name = "Primary AI Core Access"; - req_access = list("ai_upload") - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "AI Core shutters"; - name = "AI Core Shutter"; - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"cAU" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/departments/chemistry/directional/west, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"cAY" = ( -/obj/docking_port/stationary{ - dheight = 1; - dir = 8; - dwidth = 12; - height = 17; - id = "syndicate_nw"; - name = "northwest of station"; - width = 23 - }, -/turf/open/space/basic, -/area/space) -"cBc" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/computer/security/labor, -/obj/machinery/requests_console/directional/north{ - department = "Security"; - departmentType = 3; - name = "Security Requests Console" - }, -/obj/machinery/light/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/supply) -"cBD" = ( -/obj/structure/flora/grass/jungle/a/style_random, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/space/nearstation) -"cBG" = ( -/obj/machinery/telecomms/processor/preset_two, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"cBJ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"cBN" = ( -/obj/structure/flora/bush/pale/style_random, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/space/nearstation) -"cBO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate, -/obj/item/stack/package_wrap, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"cBP" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/qm) -"cBW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"cCe" = ( -/obj/structure/sign/warning/fire, -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"cCJ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Port Mix to East Ports" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cCS" = ( -/obj/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/carpet/red, -/area/station/service/chapel) -"cCX" = ( -/obj/docking_port/stationary/random{ - dir = 2; - id = "pod_lavaland"; - name = "lavaland" - }, -/turf/open/space, -/area/space/nearstation) -"cDf" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/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/central/fore) -"cDH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/central/fore) -"cDJ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/smartfridge/organ, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/aft) -"cDZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "telelab"; - name = "Test Chamber Blast Door" - }, -/turf/open/floor/plating, -/area/station/science/robotics/lab) -"cEa" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/pdapainter/engineering, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"cEr" = ( -/turf/closed/wall, -/area/station/command/bridge) -"cEu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"cES" = ( -/obj/structure/bookcase/random/fiction, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"cFn" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - name = "cmo sorting disposal pipe"; - sortType = 10 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/storage) -"cFq" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "engi-maint-passthrough" - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/obj/effect/mapping_helpers/airlock/access/any/service/janitor, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/aft) -"cFO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/command/heads_quarters/hos) -"cGl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/north, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/research) -"cGm" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet, -/obj/structure/grille/broken, -/obj/item/analyzer, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"cGo" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/construction/plumbing, -/obj/item/construction/plumbing, -/obj/machinery/light_switch/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"cGr" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ - dir = 8 - }, -/obj/machinery/air_sensor/ordnance_freezer_chamber, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"cGA" = ( -/obj/docking_port/stationary/random{ - dir = 8; - id = "pod_2_lavaland"; - name = "lavaland" - }, -/turf/open/space, -/area/space/nearstation) -"cGF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/light_switch/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"cGP" = ( -/turf/closed/wall/r_wall, -/area/station/service/chapel/monastery) -"cGQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Central Hallway Courtroom"; - name = "central camera" - }, -/obj/structure/sign/departments/lawyer/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"cHg" = ( -/obj/structure/chair/pew{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/turf/open/floor/iron/chapel{ - dir = 1 - }, -/area/station/service/chapel) -"cHu" = ( -/obj/structure/lattice/catwalk, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cHz" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"cHG" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packagereturn"; - name = "crate return belt" - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Delivery Office"; - name = "cargo camera"; - network = list("ss13","qm") - }, -/turf/open/floor/iron/dark, -/area/station/cargo/sorting) -"cHI" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/pen/fourcolor, -/obj/item/stamp/hop{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hop) -"cHL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/ai_monitored/security/armory) -"cHN" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/grille/broken, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cHY" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chem_lockdown"; - name = "Chemistry Shutters"; - dir = 8 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"cHZ" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "xeno_blastdoor"; - name = "Xenobiology Containment Blast Door" - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"cIb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/flasher/directional/north{ - id = "AI"; - name = "Meatbag Pacifier" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"cIg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"cIk" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/firealarm/directional/north, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/showroomfloor, -/area/station/security/office) -"cIC" = ( -/obj/structure/cable, -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/hangover, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plastic, -/area/station/hallway/secondary/service) -"cIU" = ( -/turf/closed/wall/rust, -/area/station/construction/mining/aux_base) -"cIV" = ( -/turf/closed/wall, -/area/station/construction/mining/aux_base) -"cIW" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_x = -5 - }, -/obj/machinery/light_switch/directional/south{ - pixel_x = 10 - }, -/obj/structure/reagent_dispensers/wall/peppertank/directional/west, -/obj/item/screwdriver, -/obj/machinery/firealarm/directional/south{ - pixel_x = -3 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Cargo Checkpoint Post"; - name = "cargo camera"; - network = list("ss13","qm") - }, -/obj/item/radio{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/supply) -"cIX" = ( -/turf/open/floor/plating, -/area/station/construction/mining/aux_base) -"cIY" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/construction/mining/aux_base) -"cJe" = ( -/obj/structure/chair/office/light, -/obj/effect/landmark/start/roboticist, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/robotics/lab) -"cJf" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/obj/machinery/light/small/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/engine, -/area/station/engineering/gravity_generator) -"cJh" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"cJk" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/computer/camera_advanced/base_construction/aux{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/construction/mining/aux_base) -"cJo" = ( -/obj/docking_port/stationary{ - area_type = /area/station/construction/mining/aux_base; - dheight = 4; - dir = 8; - dwidth = 4; - height = 9; - id = "aux_base_zone"; - name = "Aux Base Zone"; - roundstart_template = /datum/map_template/shuttle/aux_base/default; - width = 9 - }, -/turf/open/floor/plating, -/area/station/construction/mining/aux_base) -"cJv" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"cJw" = ( -/obj/machinery/door/poddoor/shutters{ - id = "aux_base_shutters"; - name = "Auxillary Base Shutters"; - dir = 4 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/station/construction/mining/aux_base) -"cJx" = ( -/obj/structure/girder, -/obj/structure/grille/broken, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cJV" = ( -/obj/machinery/cryopod, -/obj/effect/turf_decal/siding/white, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/common/cryopods) -"cKd" = ( -/obj/effect/turf_decal/box/corners, -/obj/structure/sign/warning/electric_shock/directional/south, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"cKz" = ( -/turf/closed/wall/rust, -/area/station/engineering/gravity_generator) -"cKR" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/chair/stool/bar/directional/south, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"cKW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"cKY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/dna_scannernew, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"cLq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"cLu" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cLx" = ( -/obj/structure/chair/office/light, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/landmark/start/chief_engineer, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"cLG" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"cLL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/security/courtroom) -"cLV" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 - }, -/turf/open/floor/glass/reinforced, -/area/station/service/chapel) -"cMj" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"cMr" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/power/shieldwallgen, -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/west, -/obj/machinery/airalarm/directional/west, -/obj/machinery/power/shieldwallgen, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"cMD" = ( -/obj/machinery/computer/pod/old/mass_driver_controller/ordnancedriver{ - pixel_x = 24 - }, -/obj/machinery/door/window/left/directional/south{ - name = "Mass Driver Door"; - req_access = list("ordnance") - }, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"cMT" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"cMV" = ( -/obj/machinery/light/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 9 - }, -/obj/machinery/computer/turbine_computer{ - dir = 1; - mapping_id = "main_turbine" - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"cNP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/sign/warning/vacuum/external/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"cNZ" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/lowpressure, -/area/space/nearstation) -"cOd" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 1; - height = 4; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/turf/open/space/basic, -/area/space) -"cOf" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison) -"cOp" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall/rust, -/area/space/nearstation) -"cOt" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/machinery/door/window/left/directional/west{ - dir = 2; - name = "Cargo Desk"; - req_access = list("shipping") - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"cON" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"cOR" = ( -/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/chapel/dock) -"cOT" = ( -/obj/machinery/door/airlock/external{ - name = "Arrival Shuttle Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/landmark/navigate_destination, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"cPp" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold/green/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"cPu" = ( -/obj/machinery/light/directional/west, -/turf/open/floor/grass, -/area/station/science/genetics) -"cPw" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"cPM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"cPZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security/glass{ - name = "Security Customs Checkpoint" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/customs) -"cQb" = ( -/obj/machinery/recharge_station, -/obj/effect/turf_decal/trimline/yellow, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"cQc" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Cargo"; - location = "Arrivals"; - name = "arrivals navigation beacon" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"cQt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"cQx" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/microscope{ - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"cQJ" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"cQR" = ( -/turf/closed/wall, -/area/station/maintenance/department/cargo) -"cQV" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"cRm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters{ - id = "sparemech"; - name = "Abandoned Mech Bay"; - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"cRq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"cRv" = ( -/turf/closed/wall, -/area/station/service/chapel/monastery) -"cRG" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/east, -/obj/machinery/status_display/ai/directional/east, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/iron, -/area/station/security/processing) -"cSj" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/structure/flora/bush/reed/style_random, -/obj/structure/flora/bush/sparsegrass/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"cSl" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/north, -/obj/machinery/chem_mass_spec, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/pharmacy) -"cSq" = ( -/obj/structure/flora/rock/pile/style_random{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 8 - }, -/turf/open/misc/asteroid, -/area/space/nearstation) -"cSJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"cSX" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/warden) -"cTh" = ( -/obj/machinery/porta_turret/ai{ - dir = 1 - }, -/obj/machinery/flasher/directional/west{ - id = "AI"; - name = "Meatbag Pacifier" - }, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) -"cTi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/hallway/primary/aft) -"cTk" = ( -/obj/machinery/duct, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"cTz" = ( -/obj/machinery/computer/pod/old/mass_driver_controller/chapelgun{ - pixel_x = 30 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"cTI" = ( -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "medbay_front_door"; - name = "Medbay" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) -"cTN" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet{ - name = "supply locker" - }, -/obj/item/clothing/shoes/sneakers/brown, -/obj/effect/spawner/random/maintenance, -/obj/item/clothing/under/rank/cargo/tech, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"cTX" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/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/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/storage) -"cTY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/transfer) -"cUc" = ( -/obj/structure/transit_tube, -/turf/open/space/basic, -/area/space/nearstation) -"cUk" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/psychology) -"cUw" = ( -/obj/effect/spawner/random/trash/cigbutt, -/turf/open/floor/plating, -/area/station/security/prison) -"cUA" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cUD" = ( -/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/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) -"cUM" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cUT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"cUY" = ( -/obj/machinery/door/airlock/external{ - name = "Prison External Airlock" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "kilo-maint-1" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"cVb" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"cVg" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/tcommsat/computer) -"cVn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet{ - name = "chapel locker" - }, -/obj/item/clothing/shoes/sandal, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"cVq" = ( -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/common/cryopods) -"cVr" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall, -/area/station/hallway/secondary/entry) -"cVH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/closet/secure_closet/hop, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/obj/item/storage/lockbox/loyalty, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hop) -"cVI" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/closet/secure_closet/personal, -/obj/item/storage/backpack, -/obj/item/storage/backpack/satchel, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light/small/directional/north, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"cVS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"cWb" = ( -/obj/structure/table, -/obj/item/radio{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/radio{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"cWi" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - id = "NTMSLoad2"; - name = "on ramp" - }, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"cWl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/central/fore) -"cWu" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Aft Hallway tech_storage"; - name = "aft camera" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"cWy" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/siding/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics/garden) -"cWQ" = ( -/obj/effect/turf_decal/tile/red{ - 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/showroomfloor, -/area/station/commons/toilet/restrooms) -"cWS" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/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/structure/cable, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"cWV" = ( -/obj/effect/turf_decal/loading_area, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/science/robotics/lab) -"cXd" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/storage) -"cXg" = ( -/obj/structure/reagent_dispensers/watertank/high, -/obj/structure/railing, -/obj/item/reagent_containers/glass/watering_can, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"cXh" = ( -/turf/closed/wall, -/area/station/security/brig) -"cXv" = ( -/obj/structure/table, -/obj/item/food/energybar, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"cXM" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/item/folder/yellow{ - pixel_x = -4 - }, -/obj/item/pen{ - pixel_x = -4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters_2"; - name = "Chemistry Hall Shutters"; - dir = 4 - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/window/left/directional/north{ - dir = 8; - name = "Chemistry Desk"; - req_access = list("pharmacy") - }, -/obj/structure/desk_bell{ - pixel_x = 7; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/station/medical/pharmacy) -"cXQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"cXT" = ( -/turf/closed/wall/rust, -/area/station/maintenance/department/crew_quarters/bar) -"cXX" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/light/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"cXZ" = ( -/turf/closed/wall, -/area/station/hallway/primary/fore) -"cYc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"cYk" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/extinguisher/mini, -/obj/item/tank/internals/oxygen/yellow, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"cYt" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"cYv" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/commons/locker) -"cYy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"cYA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security/glass{ - name = "Research Security Post" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/sci_guard, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science/research) -"cYN" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"cYZ" = ( -/obj/effect/spawner/random/structure/furniture_parts, -/obj/effect/spawner/random/structure/crate_empty, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/crew_quarters/bar) -"cZh" = ( -/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/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) -"cZT" = ( -/obj/effect/turf_decal/bot, -/obj/structure/bed/roller, -/obj/machinery/light/small/directional/south, -/obj/machinery/iv_drip, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"cZW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/detective, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/security/detectives_office) -"daG" = ( -/obj/machinery/door/airlock/maintenance/external{ - name = "Mass Driver Intersection" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) -"daL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"dbi" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -5 - }, -/obj/item/pen{ - pixel_x = -5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/machinery/flasher/directional/east{ - id = "hopflash"; - name = "Crowd Pacifier" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/north, -/obj/structure/desk_bell{ - pixel_x = 7; - pixel_y = 10 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hop) -"dbp" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"dbu" = ( -/turf/closed/wall/rust, -/area/station/maintenance/department/security) -"dbD" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/hallway/primary/central/fore) -"dbK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"dbR" = ( -/obj/effect/turf_decal/stripes/line, -/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/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"dch" = ( -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/misc/asteroid, -/area/space/nearstation) -"dcl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/hallway/primary/fore) -"dcq" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/cargo_technician, -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"dcr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/vending/wardrobe/curator_wardrobe, -/obj/effect/turf_decal/delivery/white, -/turf/open/floor/iron/dark, -/area/station/service/library) -"dcF" = ( -/obj/machinery/hydroponics/constructable, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"dcJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille, -/obj/structure/sign/warning/electric_shock/directional/west, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"ddb" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics Tank - N2"; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"ddp" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/bar/atrium) -"ddI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/public/glass{ - name = "Engineering Foyer" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/engineering/hallway) -"ddS" = ( -/obj/effect/turf_decal/bot, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_x = -5 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/item/crowbar, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) -"ddW" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/bomb) -"dea" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"dez" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/external{ - name = "Mining Dock Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron/dark, -/area/station/cargo/miningoffice) -"deG" = ( -/obj/structure/table, -/obj/item/storage/toolbox/electrical{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/storage/toolbox/electrical, -/obj/machinery/light/directional/west, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/commons/storage/primary) -"deI" = ( -/obj/effect/turf_decal/bot, -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"deZ" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"dfi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"dfk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/ash/large, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"dfv" = ( -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/requests_console/directional/east{ - announcementConsole = 1; - department = "Research Lab"; - departmentType = 5; - name = "Research Requests Console"; - receive_ore_updates = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/lab) -"dfD" = ( -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"dfK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"dfS" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) -"dfU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"dfV" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"dfW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/chief_medical_officer, -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/cmo) -"dgg" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/pipedispenser/disposal, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"dgi" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"dgo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/firealarm/directional/north, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"dgu" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos) -"dgw" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall/rust, -/area/station/cargo/warehouse) -"dgD" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/conveyor_switch/oneway{ - id = "NTMSLoad2"; - name = "on ramp"; - pixel_x = 8; - pixel_y = -5 - }, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"dgE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/mixer/airmix, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"dgW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/effect/spawner/random/engineering/tank, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/crew_quarters/bar) -"dhe" = ( -/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/sign/directions/evac{ - dir = 1; - pixel_y = 24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"dhz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/poster/contraband/random/directional/west, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"dhD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"dhT" = ( -/obj/structure/cable, -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/bar/atrium) -"dhY" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"dif" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/storage) -"dij" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/stack/package_wrap, -/obj/item/storage/box, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"dix" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/bomb) -"diA" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/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, -/area/station/commons/vacant_room/commissary) -"diG" = ( -/obj/structure/cable, -/obj/structure/chair/sofa/right{ - color = "#c45c57"; - dir = 4 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/bar/atrium) -"diQ" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/north{ - c_tag = "Starboard Quarter Solar"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"diU" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2"; - name = "on ramp" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/red_rum{ - pixel_y = -32 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/storage) -"dja" = ( -/obj/structure/grille, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"djl" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - name = "lawyer sorting disposal pipe"; - sortType = 29 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"djo" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"djC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/security/courtroom) -"djQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"djW" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/airalarm/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Central Hallway Personnel Queue"; - name = "central camera" - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"djZ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/airalarm/directional/south, -/obj/machinery/recharge_station, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"dke" = ( -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/starboard) -"dkh" = ( -/turf/closed/wall, -/area/station/medical/morgue) -"dki" = ( -/obj/machinery/holopad, -/turf/open/floor/carpet/blue, -/area/station/command/heads_quarters/hop) -"dkA" = ( -/obj/structure/flora/bush/leavy/style_random, -/obj/machinery/light/small/directional/south, -/obj/structure/flora/bush/flowers_yw/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"dkD" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"dkH" = ( -/obj/structure/cable, -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plastic, -/area/station/hallway/secondary/service) -"dkI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"dkL" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/item/folder/red{ - pixel_x = -5 - }, -/obj/machinery/door/window/brigdoor/left/directional/south{ - dir = 8; - name = "Security Customs Desk"; - req_access = list("security") - }, -/obj/item/radio{ - pixel_x = 7; - pixel_y = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs) -"dkQ" = ( -/obj/machinery/conveyor{ - id = "NTMSLoad2"; - name = "on ramp" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/cargo/warehouse) -"dlc" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/mug/coco, -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/rd) -"dlI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/science/robotics/lab) -"dlS" = ( -/obj/machinery/light/floor, -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"dmf" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Cargo Requests" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engine_equipment, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"dmp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/commons/storage/primary) -"dmw" = ( -/obj/structure/dresser, -/obj/machinery/light/small/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"dmA" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"dmC" = ( -/obj/machinery/light/floor, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"dmD" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/keycard_auth/directional/west{ - pixel_y = -5 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/requests_console/directional/south{ - announcementConsole = 1; - department = "Captain's Desk"; - departmentType = 5; - name = "Captain's Requests Console" - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/captain) -"dmU" = ( -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/bush/pale/style_random, -/obj/effect/turf_decal/siding/wideplating_new/dark/corner, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"dng" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "emmd"; - name = "Emergency Medical Lockdown Shutters"; - dir = 4 - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/lobby) -"dnl" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/machinery/firealarm/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Arrivals Dock"; - name = "shuttle camera" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"dnt" = ( -/obj/effect/landmark/carpspawn, -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/station/solars/starboard/fore) -"dny" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/storage/backpack{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/backpack, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"dnz" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/structure/noticeboard/directional/east, -/obj/item/wallframe/apc, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"dnL" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/flasher/directional/west{ - id = "Cell 2"; - name = "Prisoner Pacifier" - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/brig) -"dnO" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"dod" = ( -/obj/effect/landmark/start/head_of_personnel, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/carpet/blue, -/area/station/command/heads_quarters/hop) -"dof" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/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, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"doj" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/plating, -/area/station/hallway/primary/aft) -"dok" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"dom" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/central/fore) -"don" = ( -/obj/structure/cable, -/obj/machinery/power/smes, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/smooth_large, -/area/station/maintenance/department/chapel/monastery) -"dor" = ( -/obj/effect/turf_decal/bot, -/obj/structure/frame/computer{ - anchored = 1; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"doy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xeno4"; - name = "Creature Cell 4" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"doB" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"doH" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"doU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"dpc" = ( -/obj/effect/turf_decal/siding/thinplating/dark/end{ - dir = 4 - }, -/turf/open/floor/glass/reinforced, -/area/station/service/chapel/monastery) -"dpe" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"dpw" = ( -/obj/structure/chair, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/office) -"dpx" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/warning/electric_shock/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"dpJ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/sign/departments/science/directional/north{ - name = "ROBOTICS" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"dpR" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"dpT" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - 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/structure/cable, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"dqa" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/central/fore) -"dqg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"dqw" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/landmark/start/roboticist, -/turf/open/floor/iron/showroomfloor, -/area/station/science/robotics/lab) -"dqF" = ( -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"dqL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"drk" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/book/manual/wiki/atmospherics, -/obj/item/stack/sheet/rglass{ - amount = 20; - pixel_x = 2; - pixel_y = -2 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"drl" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"drm" = ( -/obj/machinery/mass_driver/ordnance{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/science/ordnance) -"drp" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/mousetraps{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/flashlight, -/obj/structure/noticeboard/directional/north, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"drw" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/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/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"dry" = ( -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"drC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/effect/decal/cleanable/blood/old, -/obj/item/clothing/gloves/color/black, -/obj/item/wrench, -/obj/structure/sign/warning/no_smoking{ - pixel_x = 30 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"drG" = ( -/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 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"drM" = ( -/obj/structure/closet/crate, -/obj/item/reagent_containers/glass/bowl, -/obj/effect/spawner/random/contraband/prison, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/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/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"dsc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Control Room" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"dsh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"dsk" = ( -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"dsm" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/barricade/wooden/crude, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"dsn" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_x = 9; - pixel_y = 3 - }, -/obj/effect/spawner/random/food_or_drink/donkpockets, -/obj/item/radio/intercom/prison/directional/north, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"dsw" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/closet/secure_closet/courtroom, -/obj/item/gavelhammer, -/obj/machinery/airalarm/directional/west, -/obj/machinery/camera/directional/north{ - c_tag = "Courtroom Judge"; - name = "command camera" - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"dsC" = ( -/obj/machinery/light/cold/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai_upload) -"dsD" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall, -/area/station/cargo/warehouse) -"dsH" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stock_parts/cell/high, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"dsI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "Satellite Antechamber" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "ai-passthrough" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/minisat, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"dsJ" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/checker, -/area/station/service/hydroponics) -"dtb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"dtg" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/oxygen_input{ - dir = 4 - }, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"dtt" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/siding/red{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"dty" = ( -/turf/closed/wall/r_wall, -/area/station/science/ordnance/storage) -"dtA" = ( -/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/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"dtP" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/turf/open/floor/wood/large, -/area/station/service/bar/atrium) -"dtS" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/commons/storage/primary) -"dup" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"duA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/masks, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"duH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"duM" = ( -/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, -/area/station/security/detectives_office) -"duU" = ( -/obj/machinery/door/airlock/external{ - name = "Ferry Shuttle Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) -"duW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"dva" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"dvk" = ( -/turf/closed/wall/r_wall/rust, -/area/station/maintenance/department/bridge) -"dvs" = ( -/obj/machinery/firealarm/directional/north, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel/monastery) -"dvu" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"dvC" = ( -/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/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/showroomfloor, -/area/station/science/research) -"dvN" = ( -/turf/open/misc/asteroid/lowpressure, -/area/space/nearstation) -"dwh" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/stock_parts/micro_laser{ - pixel_x = -7; - pixel_y = -3 - }, -/obj/item/stock_parts/micro_laser{ - pixel_x = -1; - pixel_y = 3 - }, -/obj/item/stock_parts/micro_laser{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/item/stock_parts/micro_laser{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/stock_parts/scanning_module{ - pixel_x = 12; - pixel_y = -1 - }, -/obj/item/stock_parts/scanning_module{ - pixel_x = 10; - pixel_y = 1 - }, -/obj/item/stock_parts/scanning_module{ - pixel_x = 13; - pixel_y = 4 - }, -/obj/item/stock_parts/scanning_module{ - pixel_x = 8; - pixel_y = -1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/drone_bay) -"dwx" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/showroomfloor, -/area/station/security/brig) -"dwz" = ( -/turf/closed/wall/rust, -/area/station/maintenance/space_hut/plasmaman) -"dwB" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"dwL" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"dxf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/security/prison) -"dxk" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"dxm" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/rust, -/area/station/engineering/gravity_generator) -"dxq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"dxu" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Xenobiology Cell 1"; - name = "xenobiology camera"; - network = list("ss13","rd","xeno") - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"dxz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"dxB" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"dxU" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"dya" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"dyj" = ( -/turf/closed/wall/rust, -/area/station/security/checkpoint/supply) -"dyu" = ( -/obj/structure/flora/bush/jungle/b, -/turf/open/misc/asteroid, -/area/space/nearstation) -"dyw" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"dyC" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/sink{ - pixel_y = 20 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"dyD" = ( -/obj/machinery/air_sensor/nitrogen_tank, -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"dyK" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/command/bridge) -"dyX" = ( -/obj/structure/reagent_dispensers/cooking_oil, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"dzp" = ( -/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 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"dzt" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Gas to Cold Loop" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"dzy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/start/warden, -/obj/structure/chair/office, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"dzL" = ( -/obj/machinery/modular_computer/console/preset/engineering{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"dzQ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"dzS" = ( -/turf/closed/wall, -/area/station/security/lockers) -"dAu" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/turf/open/floor/plating, -/area/station/security/prison) -"dAB" = ( -/obj/structure/chair/office/light, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/virology) -"dAQ" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Ordnance Lab" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"dAS" = ( -/obj/effect/landmark/start/chaplain, -/turf/open/floor/carpet/royalblue, -/area/station/service/chapel/office) -"dAU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"dAZ" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L3" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"dBe" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/east, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stock_parts/cell/high, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"dBg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"dBs" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/item/cardboard_cutout{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/cardboard_cutout, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"dBw" = ( -/turf/closed/wall/rust, -/area/station/service/bar) -"dBy" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/showroomfloor, -/area/station/science/robotics/lab) -"dBV" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"dCd" = ( -/obj/effect/turf_decal/siding/wood, -/obj/structure/table/wood/fancy/blue, -/obj/item/food/cracker{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/food/cracker{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/food/cracker, -/turf/open/floor/carpet/royalblue, -/area/station/service/chapel/office) -"dCM" = ( -/turf/closed/wall/rust, -/area/station/service/bar/atrium) -"dCW" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/bot, -/obj/machinery/light/cold/directional/west, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"dCX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ - 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/atmos) -"dDp" = ( -/obj/structure/mirror/directional/north, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - 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, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/toilet/restrooms) -"dDO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"dEc" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"dEl" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/firealarm/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Aft Hallway Engineering Venders"; - name = "aft camera" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"dEw" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"dED" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"dEF" = ( -/turf/closed/wall/r_wall, -/area/station/medical/virology) -"dEM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"dES" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"dEX" = ( -/turf/open/floor/iron/dark, -/area/station/service/chapel/dock) -"dFA" = ( -/obj/machinery/pdapainter, -/obj/structure/sign/poster/official/ian{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"dFM" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) -"dGo" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"dGp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig) -"dGD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"dGG" = ( -/obj/machinery/power/supermatter_crystal/engine, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"dGP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"dGX" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"dHc" = ( -/turf/open/floor/iron/stairs/old{ - dir = 8 - }, -/area/station/maintenance/fore) -"dHe" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/security/prison) -"dHg" = ( -/obj/structure/flora/grass/jungle/a/style_random, -/obj/structure/flora/bush/lavendergrass/style_random, -/turf/open/floor/grass, -/area/station/medical/psychology) -"dHi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/toilet/restrooms) -"dHq" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/engineering/storage/tech) -"dHw" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"dHL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/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/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"dIg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"dIh" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/obj/machinery/newscaster/directional/north, -/obj/item/kirbyplants/random, -/turf/open/floor/carpet/royalblue, -/area/station/service/chapel/office) -"dIn" = ( -/obj/structure/table/wood, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/item/paper_bin, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"dIv" = ( -/obj/machinery/module_duplicator, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/office) -"dIy" = ( -/obj/machinery/door/airlock/grunge, -/obj/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/chapel/dock) -"dIN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/turf/closed/wall/r_wall, -/area/station/maintenance/aft) -"dIQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"dIR" = ( -/obj/machinery/mech_bay_recharge_port{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 6 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/chapel/storage) -"dIX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/firealarm/directional/south{ - pixel_x = -32 - }, -/obj/item/radio/intercom/directional/south, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/closet/secure_closet/security/engine, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) -"dJd" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/teleporter) -"dJg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"dJi" = ( -/turf/closed/wall, -/area/station/maintenance/department/chapel/monastery) -"dJk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"dJo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/space_heater, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"dJp" = ( -/obj/structure/sign/warning/secure_area{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/closed/wall/r_wall, -/area/station/science/ordnance/bomb) -"dJw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/station_engineer, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"dJS" = ( -/obj/effect/turf_decal/stripes/line{ - 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, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"dKa" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"dKo" = ( -/obj/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/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"dKx" = ( -/obj/effect/turf_decal/siding/thinplating/dark/end{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/station/service/chapel) -"dKy" = ( -/obj/structure/chair/pew/left{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/chapel{ - dir = 8 - }, -/area/station/service/chapel) -"dKz" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/item/storage/belt/utility{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/belt/utility, -/obj/item/clothing/head/welding, -/obj/item/clothing/head/welding, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage_shared) -"dKJ" = ( -/turf/closed/wall/r_wall/rust, -/area/station/command/heads_quarters/captain/private) -"dKK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/office) -"dKN" = ( -/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/turf_decal/siding/wood/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood/corner, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"dKT" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/machinery/computer/atmos_control/nitrogen_tank{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos) -"dKZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"dLh" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access" - }, -/obj/effect/landmark/navigate_destination, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"dLk" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/port) -"dLr" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"dLu" = ( -/obj/structure/chair/sofa/left{ - color = "#c45c57"; - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/service/bar/atrium) -"dLA" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/machinery/light_switch/directional/west{ - pixel_y = -8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/button/door/directional/west{ - id = "Biohazard"; - name = "Emergency Research Lockdown"; - pixel_y = 6; - req_access = list("research") - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/research) -"dLN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine" - }, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"dMd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"dMp" = ( -/obj/effect/decal/cleanable/food/flour, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"dMq" = ( -/obj/machinery/door/airlock/external/glass{ - name = "Supply Door Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron/dark, -/area/station/cargo/storage) -"dME" = ( -/turf/closed/wall, -/area/station/cargo/warehouse) -"dMH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/directional/north{ - c_tag = "Head of Security's Office" - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"dMR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table_frame, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"dMW" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/water_source/puddle, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light_switch/directional/south, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/station/science/genetics) -"dNx" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"dNL" = ( -/obj/machinery/computer/security/telescreen/interrogation{ - name = "isolation room monitor"; - network = list("isolation"); - pixel_y = 31 - }, -/obj/machinery/button/flasher{ - id = "IsolationFlash"; - pixel_x = -23; - pixel_y = 8; - req_access = list("brig") - }, -/obj/machinery/button/door/directional/west{ - id = "Isolation"; - name = "Isolation Shutter Button"; - pixel_y = -6; - req_access = list("brig") - }, -/turf/open/floor/iron, -/area/station/security/prison) -"dOg" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"dOk" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"dOz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"dOF" = ( -/obj/structure/sign/warning/no_smoking{ - pixel_x = -30 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"dOH" = ( -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter) -"dOL" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"dON" = ( -/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/hallway/primary/starboard) -"dOW" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"dPn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/photocopier, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hop) -"dPr" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"dPK" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) -"dPR" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/extinguisher{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/tank/internals/oxygen/red{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/clothing/mask/gas, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"dQx" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) -"dQC" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/assistant, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"dQG" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/lobby) -"dQK" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor{ - id = "Secure Storage"; - name = "Secure Storage" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"dQM" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet{ - name = "engineering locker" - }, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/shoes/workboots, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/under/rank/engineering/engineer, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"dQS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/obj/item/crowbar/red, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"dRc" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/blobstart, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"dRh" = ( -/obj/structure/flora/bush/flowers_yw/style_random, -/turf/open/floor/grass, -/area/station/service/chapel) -"dRm" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/cargo_technician, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/machinery/light_switch/directional/north{ - pixel_x = 9 - }, -/obj/machinery/firealarm/directional/north{ - pixel_x = -4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"dRr" = ( -/obj/structure/chair/pew/right{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"dRF" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/engine/telecomms, -/area/station/tcommsat/server) -"dRR" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/structure/bodycontainer/morgue, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"dRW" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/trunk, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/machinery/light_switch/directional/north{ - pixel_x = 14 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Quartermaster's Office"; - name = "cargo camera"; - network = list("ss13","qm") - }, -/turf/open/floor/iron/dark, -/area/station/cargo/qm) -"dSe" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/crowbar/red, -/obj/item/restraints/handcuffs, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/revolver{ - pixel_y = 32 - }, -/obj/structure/grille/broken, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"dSn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/spawner/random/maintenance, -/obj/effect/spawner/random/structure/crate, -/obj/structure/closet/cardboard, -/obj/structure/sign/poster/contraband/random/directional/north, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"dSt" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"dSv" = ( -/obj/machinery/door/firedoor, -/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, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"dSw" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/chair, -/obj/machinery/camera/directional/north{ - c_tag = "Departures Holding Area"; - name = "shuttle camera" - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"dSB" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Garden" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics/garden) -"dSG" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/port) -"dSJ" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"dTd" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"dTQ" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"dTW" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/meter/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"dUa" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/hallway/primary/fore) -"dUe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/bartender, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"dUn" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table/glass, -/obj/machinery/reagentgrinder{ - desc = "Used to grind things up into raw materials and liquids."; - pixel_y = 5 - }, -/obj/machinery/light_switch/directional/west{ - pixel_y = -4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/button/door/directional/west{ - id = "virologysurgery"; - name = "Virology Privacy Toggle"; - pixel_y = 6; - req_access = list("virology") - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/virology) -"dUE" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start/security_officer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/office) -"dUK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Tech Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/landmark/navigate_destination, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"dUQ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/fore) -"dUY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"dVb" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/taperecorder{ - pixel_x = 5 - }, -/obj/structure/table, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"dVd" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Satellite External Starboard"; - name = "exterior camera"; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"dVk" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/dark, -/area/station/service/chapel/storage) -"dVB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/shaft_miner, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"dVN" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/suit/jacket{ - desc = "All the class of a trenchcoat without the security fibers."; - icon_state = "noirdet"; - name = "trenchcoat" - }, -/obj/item/clothing/suit/jacket{ - desc = "All the class of a trenchcoat without the security fibers."; - icon_state = "detective"; - name = "trenchcoat" - }, -/obj/item/clothing/head/fedora, -/obj/item/clothing/head/fedora{ - icon_state = "detective" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"dWj" = ( -/obj/machinery/door/airlock/maintenance/external{ - name = "Mass Driver Intersection" - }, -/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/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) -"dWG" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison/safe) -"dWM" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/storage) -"dXz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"dXI" = ( -/obj/structure/flora/bush/lavendergrass/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"dXN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"dYw" = ( -/turf/closed/wall, -/area/station/cargo/qm) -"dYy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"dYB" = ( -/obj/structure/table/reinforced, -/obj/machinery/syndicatebomb/training, -/obj/item/wirecutters, -/turf/open/floor/iron/dark, -/area/station/security/office) -"dYM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"dYQ" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/courtroom) -"dZe" = ( -/obj/structure/closet/secure_closet/bar, -/obj/item/flashlight/lantern, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/west, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"dZk" = ( -/obj/machinery/door/airlock/grunge{ - id_tag = "Cabin_2"; - name = "Cabin 2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"dZA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig) -"dZM" = ( -/obj/machinery/computer/monitor{ - dir = 4; - name = "Bridge Power Monitoring Console" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"dZR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"dZS" = ( -/obj/machinery/door/airlock/atmos/glass, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"eah" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet, -/obj/item/stack/rods/ten, -/obj/item/stock_parts/matter_bin, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"eak" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "ceprivate"; - name = "Chief Engineer's Privacy Shutters"; - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) -"eao" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - id_tag = "commissarydoor"; - name = "Vacant Commissary" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/commons/vacant_room/commissary) -"ear" = ( -/obj/structure/flora/grass/jungle/a/style_random, -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/machinery/light/directional/east, -/mob/living/carbon/human/species/monkey{ - name = "mankey" - }, -/turf/open/floor/grass, -/area/station/medical/virology) -"eaw" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"eaQ" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"ebp" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/bluespace_sender, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"eby" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/corner{ - dir = 1 - }, -/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, -/area/station/medical/morgue) -"ebF" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/yellow, -/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, -/area/station/cargo/sorting) -"ebK" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/obj/effect/landmark/start/mime, -/turf/open/floor/iron, -/area/station/service/theater) -"ebU" = ( -/turf/closed/wall, -/area/station/service/chapel/dock) -"ebV" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/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 = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/genetics) -"ebW" = ( -/obj/effect/turf_decal/tile/red{ - 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/security/office) -"ecf" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"ecl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/obj/effect/spawner/random/maintenance, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"ecE" = ( -/turf/closed/wall/rust, -/area/station/service/chapel/storage) -"ecF" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/lattice/catwalk, -/turf/open/floor/plating, -/area/space/nearstation) -"ecY" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/station/maintenance/port/aft) -"edj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/iron/showroomfloor, -/area/station/science/genetics) -"edU" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/grimy, -/area/station/hallway/primary/fore) -"eeb" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"eej" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters"; - name = "Research Privacy Shutter"; - dir = 8 - }, -/obj/machinery/door/airlock/research/glass{ - name = "Research Lab" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron/dark, -/area/station/science/lab) -"een" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/maintenance/aft) -"eeo" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/starboard) -"eeq" = ( -/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/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/aft) -"eer" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"eeC" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Command Maintenance" - }, -/obj/machinery/door/poddoor/preopen{ - id = "brige-maint"; - name = "Bridge Blast Door" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/crew_quarters/bar) -"eeE" = ( -/obj/structure/girder/displaced, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"eeQ" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"efe" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=EVA"; - location = "HOP"; - name = "hop navigation beacon" - }, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"efG" = ( -/turf/closed/wall, -/area/station/maintenance/fore) -"efP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/command/teleporter) -"efS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/built/directional/north, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"efV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"ege" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/status_display/supply{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"egr" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/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/showroomfloor, -/area/station/command/heads_quarters/rd) -"egs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/storage/art) -"egE" = ( -/obj/item/radio/intercom/directional/north, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"egU" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/virology) -"egV" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/structure/cable, -/obj/machinery/status_display/ai/directional/south, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"ehc" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/obj/effect/mapping_helpers/airlock/access/any/service/janitor, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/aft) -"ehp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/carpet/red, -/area/station/service/chapel) -"ehx" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/components/unary/passive_vent{ - dir = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"ehF" = ( -/obj/machinery/door/airlock/command{ - name = "Command Catering Access" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "brige-maint"; - name = "Bridge Blast Door" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"ehI" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/storage) -"ehY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"eib" = ( -/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/wood, -/area/station/command/heads_quarters/captain) -"eiz" = ( -/obj/structure/cable, -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/hangover, -/turf/open/floor/plastic, -/area/station/hallway/secondary/service) -"eiI" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/conveyor{ - dir = 9; - id = "QMLoad"; - name = "off ramp" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/status_display/supply{ - pixel_x = 32; - pixel_y = 32 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/storage) -"eiJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"eiT" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/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/sorting/mail/flip{ - dir = 4; - name = "xenobiology sorting disposal pipe"; - sortType = 28 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"eiW" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"eiY" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"ejc" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/random/clothing/costume{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/spawner/random/clothing/kittyears_or_rabbitears, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"eji" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"ejk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/west, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"ejt" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"ejO" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Atrium" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/service/bar/atrium) -"ejP" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"ejQ" = ( -/obj/structure/flora/grass/jungle/a/style_random, -/obj/structure/flora/bush/ferny/style_random, -/obj/effect/decal/cleanable/dirt, -/turf/open/misc/asteroid, -/area/space/nearstation) -"ejU" = ( -/obj/structure/cable, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/science/robotics/mechbay) -"ejX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Port Mix to West Ports" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"eki" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"ekm" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter/room) -"ekp" = ( -/turf/open/floor/plating/airless, -/area/station/maintenance/disposal/incinerator) -"ekB" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/exam_room) -"ekL" = ( -/turf/closed/wall/rust, -/area/station/service/kitchen/coldroom) -"ekM" = ( -/turf/closed/wall, -/area/station/hallway/primary/aft) -"ekY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/plumbed, -/obj/effect/turf_decal/delivery/white{ - color = "#52B4E9" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/crew_quarters/bar) -"elc" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/starboard/fore) -"ele" = ( -/obj/structure/table/wood, -/obj/machinery/door/firedoor, -/obj/item/book/manual/wiki/barman_recipes{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/rag, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/wood, -/area/station/service/bar) -"elg" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/table/optable{ - name = "Forensics Operating Table" - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"ell" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - name = "library sorting disposal pipe"; - sortType = 16 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"elw" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"ely" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/service/chapel/funeral) -"elz" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"elD" = ( -/obj/machinery/vending/dinnerware, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/newscaster/directional/east, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"elS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/navigate_destination/court, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"emb" = ( -/obj/machinery/door/airlock/external{ - name = "Departure Shuttle Airlock"; - space_dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"emd" = ( -/obj/structure/flora/grass/jungle/b/style_random, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/misc/asteroid, -/area/space/nearstation) -"emo" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/structure/chair/office{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"emx" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/fore) -"emz" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/junction/flip, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"emB" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"emU" = ( -/obj/machinery/door/poddoor/incinerator_atmos_aux, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"eni" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/incinerator_input{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"enr" = ( -/obj/structure/table, -/obj/item/storage/box/lights/mixed{ - pixel_y = 5 - }, -/obj/item/analyzer{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/analyzer, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"enP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"enS" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/start/station_engineer, -/obj/effect/turf_decal/siding/yellow{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"eob" = ( -/obj/structure/sign/warning, -/turf/closed/wall, -/area/station/hallway/secondary/entry) -"eog" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/research) -"eon" = ( -/obj/machinery/door/poddoor/shutters{ - id = "teleshutter"; - name = "Teleporter Access Shutter" - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"eot" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/stack/package_wrap{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/hand_labeler, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/lab) -"eoM" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigfrontdoor"; - name = "Front Security Blast Door" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/caution/stand_clear, -/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, -/area/station/security/brig) -"eoT" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/clothing/head/welding{ - pixel_y = 4 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Tool Storage"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/structure/cable, -/obj/item/clothing/gloves/color/fyellow, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/dark, -/area/station/commons/storage/primary) -"eoV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/light/directional/south, -/obj/machinery/reagentgrinder{ - pixel_y = 5 - }, -/obj/machinery/firealarm/directional/south, -/obj/machinery/newscaster/directional/south{ - pixel_x = 28 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"ept" = ( -/obj/structure/cable, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"epA" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"epI" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/landmark/start/scientist, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"epN" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/closed/wall, -/area/station/maintenance/port/greater) -"eqx" = ( -/obj/machinery/conveyor{ - dir = 5; - id = "NTMSLoad"; - name = "off ramp" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/cargo/warehouse) -"eqA" = ( -/obj/machinery/light_switch/directional/south{ - pixel_x = 26 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/photocopier, -/turf/open/floor/iron, -/area/station/security/office) -"eqD" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/dock) -"eqE" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"eqK" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/taperecorder{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/warden) -"eqV" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/item/tank/jetpack/carbondioxide{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/tank/jetpack/carbondioxide{ - pixel_y = 2 - }, -/obj/item/wrench, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"era" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"eri" = ( -/obj/structure/rack, -/obj/item/crowbar/red, -/obj/effect/spawner/random/clothing/gloves, -/obj/effect/turf_decal/bot, -/obj/item/flashlight, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/airalarm/directional/east, -/obj/item/storage/box/lights/mixed{ - pixel_y = 4 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/crew_quarters/bar) -"erl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/north, -/obj/machinery/autolathe, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/cargo/office) -"ero" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"erH" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/pharmacy) -"erN" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/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, -/area/station/hallway/primary/aft) -"esn" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/food/donut/plain, -/obj/item/inspector, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/obj/item/inspector, -/turf/open/floor/iron/dark, -/area/station/security/office) -"eso" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/item/kirbyplants{ - icon_state = "plant-03" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/carpet/green, -/area/station/maintenance/port/greater) -"esq" = ( -/turf/closed/wall/rust, -/area/station/commons/locker) -"esv" = ( -/obj/structure/chair/stool/directional/south, -/turf/open/floor/iron/grimy, -/area/station/security/prison) -"esG" = ( -/turf/closed/wall/r_wall/rust, -/area/station/maintenance/port/fore) -"esK" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"esO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"esZ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/closed/wall, -/area/station/engineering/atmos) -"etm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/table, -/obj/item/storage/backpack, -/obj/item/storage/backpack{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/starboard) -"eto" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/main) -"etB" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/lighter{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/mask/cigarette/cigar/cohiba{ - pixel_x = 6 - }, -/obj/item/clothing/mask/cigarette/cigar, -/obj/machinery/light/directional/west, -/obj/machinery/airalarm/directional/west, -/obj/item/paper_bin, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hos) -"etD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"etO" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"etY" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/pharmacy) -"euc" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/airlock/public/glass{ - name = "Chapel Hallway" - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/fore) -"euh" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/machinery/computer/atmos_control/nitrous_tank{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos) -"eul" = ( -/obj/machinery/firealarm/directional/north, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/iron/stairs/right{ - dir = 4 - }, -/area/station/service/chapel) -"euX" = ( -/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/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/item/kirbyplants/random, -/obj/machinery/light_switch/directional/south{ - pixel_x = 12 - }, -/obj/effect/turf_decal/tile/brown, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"evb" = ( -/obj/structure/tank_dispenser, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"evs" = ( -/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/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/duct, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"evt" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"evu" = ( -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - 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/secondary/exit/departure_lounge) -"evD" = ( -/obj/structure/flora/bush/large/style_random, -/obj/structure/flora/bush/flowers_yw/style_random, -/turf/open/floor/grass, -/area/station/medical/virology) -"evE" = ( -/turf/closed/wall/mineral/plastitanium, -/area/station/maintenance/port/greater) -"ewe" = ( -/turf/closed/wall/rust, -/area/station/maintenance/central) -"ewl" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"ewt" = ( -/obj/effect/turf_decal/arrows/red{ - dir = 4; - pixel_x = -15 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"ewC" = ( -/obj/structure/chair/pew/left{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/chapel{ - dir = 4 - }, -/area/station/service/chapel) -"ewK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "engi-entrance" - }, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Desk" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, -/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) -"ewW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"exg" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall, -/area/station/maintenance/starboard) -"exz" = ( -/obj/effect/turf_decal/bot, -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/gps{ - gpstag = "TP0" - }, -/turf/open/floor/iron, -/area/station/command/teleporter) -"exA" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/disposalpipe/segment{ - 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/plating/airless, -/area/space/nearstation) -"exD" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"exH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/spawner/random/vending/colavend, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"exJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"exN" = ( -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"exP" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"exV" = ( -/obj/structure/table, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -4 - }, -/obj/machinery/portable_atmospherics/canister/air{ - pixel_x = 4 - }, -/obj/item/clothing/mask/breath{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/mask/breath, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"eyj" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"eyl" = ( -/mob/living/simple_animal/hostile/bear{ - desc = "Once a trained show bear, this creature has been left abandoned and unfed."; - environment_smash = 0; - health = 160; - maxHealth = 160; - melee_damage_upper = 25; - name = "hungry show bear" - }, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"eyv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"eyx" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"eyA" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/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/showroomfloor, -/area/station/medical/medbay/lobby) -"eyU" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/command/bridge) -"ezl" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "captain_escape"; - name = "Tactical Relocation Shutter" - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/captain) -"ezC" = ( -/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/rust, -/area/station/security/prison) -"ezV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"ezY" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/security/execution/education) -"ezZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"eAa" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/item/storage/toolbox/emergency, -/obj/item/flashlight, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"eAk" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/chair/wood{ - dir = 8 - }, -/obj/item/radio/intercom/chapel/directional/north, -/turf/open/floor/wood/parquet, -/area/station/service/chapel) -"eAl" = ( -/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/public/glass{ - name = "Library" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/station/service/library) -"eAn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L10" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"eAs" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/turf/closed/wall/rust, -/area/station/engineering/atmos) -"eAu" = ( -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"eAF" = ( -/obj/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/service/chapel) -"eAZ" = ( -/obj/structure/flora/grass/jungle/b/style_random, -/obj/structure/flora/bush/grassy/style_random, -/obj/structure/flora/bush/generic/style_random, -/obj/structure/flora/bush/flowers_pp/style_random, -/obj/structure/flora/bush/sunny/style_random, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/grass, -/area/station/hallway/secondary/exit/departure_lounge) -"eBi" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/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/engineering/atmos) -"eBu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/mob/living/simple_animal/hostile/retaliate/goat{ - name = "Pete" - }, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"eBx" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"eBH" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/siding/blue{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"eBM" = ( -/obj/machinery/cryopod, -/obj/effect/turf_decal/siding/white, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/common/cryopods) -"eBQ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/structure/noticeboard/directional/north, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/under/syndicate/tacticool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"eBZ" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/crate/silvercrate, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/screwdriver/power, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"eCd" = ( -/turf/closed/wall, -/area/station/hallway/secondary/service) -"eCf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"eCh" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"eCu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating/rust, -/area/station/security/prison) -"eCy" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"eCU" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"eDg" = ( -/obj/structure/displaycase/captain, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/turf/open/floor/wood/large, -/area/station/command/heads_quarters/captain) -"eDr" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder{ - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron/dark, -/area/station/medical/pharmacy) -"eDu" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/landmark/start/medical_doctor, -/obj/effect/turf_decal/siding/blue{ - dir = 5 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/storage) -"eDx" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/firealarm/directional/east, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/security/brig) -"eDT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L8" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Medical"; - location = "Upload"; - name = "Upload navigation beacon" - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"eEe" = ( -/obj/structure/sign/warning/electric_shock/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"eEh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"eEi" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/grimy, -/area/station/security/prison) -"eEz" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/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/disposal/incinerator) -"eEB" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/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, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"eEJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"eEX" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"eEY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"eEZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"eFn" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Mix to Filter" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"eFE" = ( -/obj/structure/transit_tube/crossing, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"eFR" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"eGh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/chair/office{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"eGC" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/machinery/camera/autoname/directional/north, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/iron/stairs/right{ - dir = 4 - }, -/area/station/service/chapel/monastery) -"eGD" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/ordnance_freezer_chamber_input{ - dir = 1 - }, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"eGL" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"eGW" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"eHa" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/vending/assist, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"eHc" = ( -/turf/closed/wall, -/area/station/engineering/lobby) -"eHf" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"eHu" = ( -/obj/structure/cable, -/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/east, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"eHI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/research) -"eHJ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"eHO" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"eHY" = ( -/obj/structure/sign/departments/evac, -/turf/closed/wall, -/area/station/security/checkpoint/customs) -"eIb" = ( -/obj/machinery/computer/security/telescreen/ordnance{ - dir = 8; - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/structure/chair/office/light{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"eIi" = ( -/obj/structure/table/wood/fancy, -/obj/effect/turf_decal/siding/wideplating/dark/corner{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/food/grown/harebell{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"eIl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Prison Wing" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-maint-passthrough" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"eIP" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the ai_upload."; - dir = 4; - name = "AI Upload Monitor"; - network = list("aiupload"); - pixel_x = -28 - }, -/obj/effect/landmark/start/cyborg, -/obj/machinery/airalarm/directional/north, -/obj/machinery/camera/motion/directional/west{ - c_tag = "ai_upload Foyer"; - name = "upload camera"; - network = list("aiupload") - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/ai_monitored/turret_protected/ai_upload) -"eIT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"eIW" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/lobby) -"eJc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plastic, -/area/station/hallway/secondary/service) -"eJk" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood/large, -/area/station/service/bar/atrium) -"eJm" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/folder/red, -/obj/item/restraints/handcuffs, -/obj/item/melee/baseball_bat{ - desc = "A staple of security force interrogations."; - icon_state = "baseball_bat_metal"; - name = "kneecapper" - }, -/obj/machinery/status_display/ai/directional/east, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"eJs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"eJu" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - sortType = 28 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"eJy" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mining Dock Maintenance" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron/dark, -/area/station/cargo/miningoffice) -"eJE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"eJH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"eJN" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"eJO" = ( -/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/cable, -/obj/structure/sign/poster/contraband/random/directional/north, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"eKk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/loading_area, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"eKA" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-03" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"eKG" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/loading_area, -/turf/open/floor/iron/showroomfloor, -/area/station/science/robotics/lab) -"eKT" = ( -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"eKU" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"eLm" = ( -/turf/closed/wall, -/area/station/security/checkpoint/customs) -"eLp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/obj/machinery/vending/cigarette, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"eLv" = ( -/obj/machinery/door/window/left/directional/west{ - name = "Waste Door" - }, -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "garbage"; - name = "disposal conveyor" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"eLx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/landmark/xeno_spawn, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"eLU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"eMc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"eMf" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"eMo" = ( -/obj/structure/sign/departments/evac, -/turf/closed/wall, -/area/station/maintenance/department/cargo) -"eMr" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/storage) -"eMB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light_switch/directional/west, -/obj/structure/noticeboard/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"eMC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Council Chamber" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"eMR" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/common/cryopods) -"eMW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation B" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"eMX" = ( -/obj/structure/girder/displaced, -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/button/door/directional/west{ - id = "aux_base_shutters"; - name = "Auxiliary Base Shutters Toggle"; - req_access = list("aux_base") - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"eNb" = ( -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"eNy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random/directional/north, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"eNQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"eNV" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"eOh" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/red, -/obj/structure/reagent_dispensers/servingdish, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"eOi" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/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 = 9 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"eOl" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/turf/open/floor/wood/tile, -/area/station/service/library) -"eOs" = ( -/obj/effect/decal/cleanable/robot_debris, -/turf/closed/wall/r_wall/rust, -/area/station/service/chapel/dock) -"eOt" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"eOG" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/iron/dark, -/area/station/maintenance/aft) -"eON" = ( -/obj/machinery/porta_turret/ai{ - dir = 1 - }, -/obj/machinery/flasher/directional/east{ - id = "AI"; - name = "Meatbag Pacifier" - }, -/turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) -"eOW" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"ePe" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"ePf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"ePm" = ( -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"ePy" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/closed/wall/r_wall/rust, -/area/station/engineering/atmos) -"ePU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/central/fore) -"ePY" = ( -/obj/machinery/door/firedoor, -/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/cyclelink_helper_multi{ - cycle_id = "engi-entrance" - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engine_equipment, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"eQb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cmoprivacy"; - name = "Office Privacy Shutters" - }, -/turf/open/floor/plating, -/area/station/medical/medbay/central) -"eQf" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, -/turf/open/space/basic, -/area/space/nearstation) -"eQj" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"eQq" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/radio{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/radio{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/radio{ - pixel_y = 4 - }, -/turf/open/floor/iron/dark, -/area/station/commons/storage/primary) -"eQD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/storage) -"eQE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Port Hallway Firelock"; - name = "port camera" - }, -/obj/machinery/bluespace_vendor/directional/west, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/port) -"eQG" = ( -/obj/machinery/announcement_system, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/firealarm/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"eQO" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/command/gateway, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"eRp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/disposalpipe/segment, -/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/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"eRx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"eRy" = ( -/obj/effect/turf_decal/box, -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/mirror/directional/west, -/obj/machinery/newscaster/directional/south{ - pixel_x = -28 - }, -/obj/machinery/light/small/directional/east, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/start/hangover, -/obj/machinery/button/door/directional/east{ - id = "Unit_1Privacy"; - name = "Unit 1 Privacy Toggle"; - pixel_y = -8 - }, -/obj/machinery/button/door/directional/east{ - id = "Unit_1"; - name = "Unit 1 Privacy Lock"; - normaldoorcontrol = 1; - pixel_y = 8; - specialfunctions = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/toilet/restrooms) -"eRC" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"eRD" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/hand_tele, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/wood/large, -/area/station/command/heads_quarters/captain) -"eRK" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/obj/machinery/air_sensor/incinerator_tank, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"eSi" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 2; - name = "cargo sorting disposal pipe"; - sortType = 2 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"eSl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/carbon_output{ - dir = 1 - }, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"eSu" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/surgery/aft) -"eTh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 1 - }, -/turf/closed/wall, -/area/station/engineering/atmos) -"eTt" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle, -/obj/structure/transit_tube, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"eTG" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"eTS" = ( -/obj/machinery/light/directional{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"eUd" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/peppermill{ - desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; - pixel_x = -8; - pixel_y = 2 - }, -/obj/item/book/manual/chef_recipes, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"eUk" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/radio/intercom/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/camera/directional/north{ - c_tag = "Starboad Hallway Custodial Bay"; - name = "starboard camera" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"eUs" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/mob/living/simple_animal/bot/cleanbot/medbay, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"eUM" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/station/science/ordnance/burnchamber) -"eUN" = ( -/turf/closed/wall, -/area/station/medical/psychology) -"eUT" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"eVL" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/engineering/supermatter) -"eVP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/girder/displaced, -/obj/structure/grille/broken, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"eVT" = ( -/obj/machinery/computer/med_data{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"eWd" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/storage) -"eWu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig) -"eWH" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/carpet, -/area/station/medical/psychology) -"eWP" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/port/fore) -"eWS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"eWT" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Xenobiology Cell 2"; - name = "xenobiology camera"; - network = list("ss13","rd","xeno") - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"eXj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"eXJ" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/conveyor_switch/oneway{ - id = "QMLoad2"; - name = "on ramp"; - pixel_y = 6 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/cargo/storage) -"eXX" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/decal/cleanable/insectguts, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/grimy, -/area/station/security/prison/safe) -"eXY" = ( -/obj/structure/railing/corner, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"eXZ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"eYd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"eYl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/requests_console/directional/east{ - department = "Hydroponics"; - departmentType = 2; - name = "Hydroponics Requests Console" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Hydroponics Aft"; - name = "hydroponics camera" - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"eYu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/megaphone{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"eYv" = ( -/obj/machinery/exodrone_launcher, -/obj/effect/turf_decal/trimline/yellow, -/obj/effect/turf_decal/trimline/yellow/mid_joiner, -/obj/effect/turf_decal/trimline/yellow/mid_joiner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/mid_joiner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/mid_joiner{ - dir = 4 - }, -/obj/item/fuel_pellet, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"eYw" = ( -/obj/machinery/recharge_station, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/robotics/mechbay) -"eYB" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/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/extinguisher_cabinet/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"eYE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/landmark/start/chief_engineer, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"eYH" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/lobby) -"eYS" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/loading_area, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/storage) -"eZa" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"eZm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Science"; - location = "Cargo"; - name = "cargo navigation beacon" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"eZx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/microwave{ - pixel_y = 5 - }, -/obj/structure/table, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"eZL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"fac" = ( -/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, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"fae" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/station/cargo/miningoffice) -"fak" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera/directional/east{ - c_tag = "Starboard Hallway Cargo Counter"; - name = "starboard camera" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"faN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"fbm" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"fbr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"fby" = ( -/obj/machinery/oven, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"fbz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"fbB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/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/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"fbF" = ( -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"fbK" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/landmark/start/chemist, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/pharmacy) -"fbZ" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Research and Development" - }, -/obj/machinery/door/window/left/directional/east{ - dir = 1; - name = "Research and Development Delivery Access"; - req_access = list("science") - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) -"fcs" = ( -/obj/structure/cable, -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole/bookmanagement{ - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/library) -"fcv" = ( -/obj/machinery/door/firedoor, -/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/medical{ - name = "Psychology" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/psychology, -/turf/open/floor/iron/dark, -/area/station/medical/psychology) -"fcM" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - 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/hallway/primary/fore) -"fcX" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Bar Storage"; - name = "bar camera" - }, -/obj/item/gun/ballistic/shotgun/doublebarrel{ - pixel_y = 5 - }, -/obj/item/storage/box/rubbershot{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"fdd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"fdp" = ( -/obj/machinery/power/smes{ - capacity = 9e+006; - charge = 10000 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"fdA" = ( -/obj/structure/table_frame/wood, -/mob/living/simple_animal/hostile/asteroid/basilisk{ - environment_smash = 0 - }, -/turf/open/floor/carpet/green, -/area/station/cargo/warehouse) -"fdC" = ( -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock"; - shuttledocked = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/processing) -"fdY" = ( -/turf/closed/wall, -/area/station/medical/medbay/lobby) -"fez" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"feD" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/station_engineer, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"feU" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/rack, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"feV" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"feZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/displaycase/labcage, -/obj/effect/turf_decal/box, -/obj/machinery/light/directional/south, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"ffa" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/deathsposal{ - layer = 4 - }, -/turf/open/floor/plating, -/area/station/medical/virology) -"ffd" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - 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 = 2; - name = "science sorting disposal pipe"; - sortType = 12 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/lab) -"ffh" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"ffi" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"ffm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"ffo" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"ffu" = ( -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"ffv" = ( -/obj/machinery/gibber, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"ffC" = ( -/obj/machinery/vending/assist, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/commons/storage/primary) -"ffI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"ffN" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xeno2"; - name = "Creature Cell 2" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"ffQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"ffY" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/landmark/event_spawn, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"fgb" = ( -/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 - }, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"fgo" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/storage/art) -"fgu" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"fgy" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/lobby) -"fgA" = ( -/obj/effect/turf_decal/bot, -/obj/structure/tank_dispenser/oxygen{ - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/iron, -/area/station/command/teleporter) -"fgB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/effect/landmark/start/medical_doctor, -/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/medical/morgue) -"fgH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/engineering/glass{ - name = "Laser Room" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"fgJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"fhe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/clothing/gloves/color/brown, -/obj/item/clothing/under/misc/overalls, -/obj/item/clothing/mask/gas{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"fhs" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"fhv" = ( -/obj/structure/table/wood, -/turf/open/floor/wood/tile, -/area/station/service/library) -"fhw" = ( -/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/plating, -/area/station/maintenance/aft) -"fhH" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet{ - name = "science locker" - }, -/obj/item/clothing/under/rank/rnd/scientist{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/suit/toggle/labcoat/science, -/obj/item/clothing/shoes/sneakers/white, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"fhY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"fix" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"fiy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/department/bridge) -"fiH" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/table, -/obj/item/wallframe/airalarm, -/turf/open/floor/iron/showroomfloor, -/area/station/maintenance/port/lesser) -"fiQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/item/pinpointer/nuke, -/obj/item/disk/nuclear, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/captain) -"fiR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/processing) -"fiY" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/turf/open/floor/wood/large, -/area/station/service/bar/atrium) -"fiZ" = ( -/obj/item/kirbyplants{ - icon_state = "applebush" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"fjh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced, -/obj/machinery/computer/camera_advanced/xenobio{ - dir = 8 - }, -/obj/machinery/button/door/directional/north{ - id = "xeno3"; - name = "Creature Cell 3 Toggle"; - pixel_x = 24; - req_access = list("xenobiology") - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"fji" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"fjn" = ( -/obj/structure/sink{ - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/firealarm/directional/north{ - pixel_x = 26 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/virology) -"fjw" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"fjz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"fjI" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"fjX" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"fkw" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"fkB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/stack/sheet/plasteel/fifty{ - amount = 10; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/clothing/shoes/magboots{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/shoes/magboots, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"fkI" = ( -/obj/structure/table, -/obj/item/wallframe/airalarm, -/obj/item/screwdriver{ - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"fkL" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall, -/area/station/commons/fitness/recreation) -"fkP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"fkT" = ( -/obj/machinery/door/airlock/external{ - name = "Departure Shuttle Airlock" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"fla" = ( -/obj/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"flt" = ( -/obj/structure/bed, -/obj/machinery/iv_drip, -/obj/item/bedsheet/medical, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/medical) -"flx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"flH" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"flL" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "AI Chamber" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "AI Chamber entrance shutters"; - name = "AI Chamber Lockdown Shutter" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/flasher/directional/west{ - id = "AI"; - name = "Meatbag Pacifier" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "ai-passthrough" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"fmh" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/box/corners, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"fmm" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/dresser, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/contraband/prison, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"fmn" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - 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/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"fmo" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"fmx" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/structure/sign/warning/no_smoking{ - pixel_x = 30; - pixel_y = -32 - }, -/turf/open/floor/engine, -/area/station/ai_monitored/command/storage/satellite) -"fmy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Locker Room" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"fmA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"fmQ" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/airlock/public/glass{ - name = "Chapel Hallway" - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/fore) -"fmV" = ( -/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/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/door/airlock/hydroponics/glass{ - name = "Hydroponics Backroom" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"fne" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/medical_doctor, -/obj/effect/turf_decal/siding/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/storage) -"fnu" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"fnL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/meter/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"fnN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/smooth_large, -/area/station/maintenance/department/chapel/monastery) -"fnZ" = ( -/obj/structure/table, -/obj/machinery/light/directional/north, -/obj/item/reagent_containers/food/condiment/saltshaker{ - desc = "Salt. From space oceans, presumably. A staple of modern medicine."; - pixel_x = -8; - pixel_y = 12 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; - pixel_x = -8; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/bottle/orangejuice{ - desc = "An emerald flask, from the Keeper's soul. High in vitamins!"; - name = "estus flask"; - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/north{ - c_tag = "Atrium Starboard"; - name = "service camera" - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/bar/atrium) -"fob" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"fov" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"foB" = ( -/obj/structure/table/wood/fancy/black, -/obj/item/food/grown/poppy/geranium{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/food/grown/poppy/geranium{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/food/grown/poppy/geranium, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"foP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/paramedic) -"foQ" = ( -/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/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"foU" = ( -/obj/structure/table/wood, -/obj/item/folder/blue{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/folder/red, -/obj/item/clothing/glasses/sunglasses/big{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/clothing/glasses/sunglasses/big, -/turf/open/floor/carpet/green, -/area/station/service/lawoffice) -"fph" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/spawner/random/engineering/tracking_beacon, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"fpk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"fpx" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/start/virologist, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/virology) -"fpz" = ( -/obj/machinery/door/airlock/engineering{ - name = "Electrical Maintenance" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/spider/stickyweb, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/electrical) -"fpG" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/station/maintenance/department/bridge) -"fpQ" = ( -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/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/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"fqb" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction/layer2{ - dir = 8 - }, -/obj/machinery/door/airlock/research/glass{ - name = "Ordnance Lab" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"fqe" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/structure/cable, -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/engineering/gravity_generator) -"fql" = ( -/obj/structure/lattice/catwalk, -/obj/item/stack/sheet/glass, -/turf/open/space/basic, -/area/station/solars/port/aft) -"fqp" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/observer_start, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"fqq" = ( -/obj/effect/turf_decal/tile/neutral, -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/starboard) -"fqG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"fqN" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"fqP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Bridge Council Chamber"; - name = "command camera" - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"fqQ" = ( -/turf/closed/wall/rust, -/area/station/engineering/storage/tech) -"frb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"frh" = ( -/obj/structure/railing/corner, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"frO" = ( -/turf/closed/wall/r_wall, -/area/station/science/genetics) -"frP" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/checker, -/area/station/security/processing/cremation) -"frT" = ( -/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/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"fsd" = ( -/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/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) -"fse" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"fsj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/research) -"fsp" = ( -/obj/effect/decal/cleanable/blood/old, -/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/cable, -/obj/structure/sign/poster/contraband/random/directional/west, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"fsu" = ( -/obj/effect/turf_decal/box, -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/item/soap/nanotrasen, -/obj/machinery/newscaster/directional/west, -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/start/hangover, -/obj/machinery/button/door/directional/east{ - id = "Shower_2"; - name = "Shower 2 Privacy Lock"; - normaldoorcontrol = 1; - pixel_y = 8; - specialfunctions = 4 - }, -/obj/machinery/button/door/directional/east{ - id = "Shower_2Privacy"; - name = "Shower 2 Privacy Toggle"; - pixel_y = -8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/toilet/restrooms) -"fsx" = ( -/obj/structure/reflector/single/anchored{ - dir = 5 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"fsJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"fsZ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"ftd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron/white, -/area/station/security/prison/safe) -"fth" = ( -/obj/machinery/firealarm/directional/south, -/obj/machinery/smartfridge/organ, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/surgery/fore) -"fti" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/commons/locker) -"ftl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai_upload) -"fts" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"fty" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel/dock) -"ftz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"ftG" = ( -/obj/machinery/deepfryer, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"ftS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/button/door/directional/west{ - id = "Secure Storage"; - name = "Secure Storage Toggle"; - req_access = list("engine_equip") - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"ftX" = ( -/obj/machinery/power/smes, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"fun" = ( -/obj/structure/cable, -/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/parquet, -/area/station/command/heads_quarters/captain/private) -"fuq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/grunge{ - name = "Custodial Closet" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/service/janitor, -/turf/open/floor/iron/dark, -/area/station/service/janitor) -"fur" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/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, -/area/station/hallway/primary/starboard) -"fuB" = ( -/turf/closed/wall/rust, -/area/station/maintenance/starboard/aft) -"fuX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"fuY" = ( -/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/cable, -/obj/effect/spawner/random/trash/grille_or_waste, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"fvb" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/teleporter) -"fvh" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"fvr" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"fvz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"fvB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/light/small/directional/east, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/structure/spider/stickyweb, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"fvC" = ( -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/ce) -"fvJ" = ( -/obj/structure/bookcase/random/reference, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"fvK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"fvQ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"fvT" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"fvU" = ( -/turf/closed/wall/rust, -/area/station/maintenance/starboard/fore) -"fvX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/port) -"fwf" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - 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/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"fwJ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"fwM" = ( -/obj/structure/table, -/obj/machinery/camera/directional/east{ - c_tag = "Garden" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/green{ - dir = 8 - }, -/obj/item/shovel/spade, -/obj/item/hatchet, -/obj/item/cultivator, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics/garden) -"fxd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/central) -"fxt" = ( -/obj/machinery/chem_heater/withbuffer, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/pharmacy) -"fxw" = ( -/obj/machinery/door/airlock/external{ - name = "Departure Shuttle Airlock"; - space_dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"fxx" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light_switch/directional/west, -/obj/machinery/light/directional/west, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/medical/paramedic) -"fxB" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Air to Mix" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"fxM" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/small/directional/west, -/obj/machinery/newscaster/directional/south, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/wood/fancy/red, -/obj/structure/sign/painting/large/library{ - dir = 8; - pixel_x = -29 - }, -/turf/open/floor/iron/dark, -/area/station/service/library) -"fxP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table, -/obj/item/food/dough, -/obj/item/kitchen/rollingpin, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"fxQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"fxV" = ( -/obj/structure/cable, -/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/south, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/security/prison) -"fxY" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/door/airlock/external{ - name = "Mining Dock Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron/dark, -/area/station/cargo/miningoffice) -"fyc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/caution{ - pixel_y = -12 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"fyf" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/courtroom) -"fyj" = ( -/obj/structure/cable, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/aft) -"fyp" = ( -/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/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"fyq" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/obj/machinery/button/door/directional/north{ - id = "ordnancestorage"; - name = "Ordnance Storage Access"; - req_access = list("ordnance") - }, -/obj/machinery/firealarm/directional/north{ - pixel_x = -32 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/storage) -"fyw" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/camera/directional/north{ - c_tag = "Medbay Aux Storage"; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/effect/turf_decal/bot, -/obj/item/toy/figure/paramedic, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/dark, -/area/station/medical/paramedic) -"fyA" = ( -/obj/machinery/door/airlock/mining{ - name = "Auxiliary Base" - }, -/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/construction, -/turf/open/floor/iron/dark, -/area/station/construction/mining/aux_base) -"fyD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"fyG" = ( -/obj/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/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"fyS" = ( -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"fyZ" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/chemist, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/pharmacy) -"fzd" = ( -/turf/closed/wall, -/area/station/maintenance/solars/port/fore) -"fzk" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/vending/autodrobe/all_access, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"fzn" = ( -/obj/machinery/door/airlock/external{ - name = "Science Escape Pod"; - space_dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) -"fzp" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"fzu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"fzG" = ( -/obj/machinery/vending/medical, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"fzH" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"fzJ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/firealarm/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Telecomms Server Room"; - name = "telecomms camera"; - network = list("ss13","tcomms") - }, -/turf/open/floor/engine/telecomms, -/area/station/tcommsat/server) -"fzL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"fAI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/turf/open/floor/plating/plasma/rust, -/area/station/maintenance/space_hut/plasmaman) -"fAM" = ( -/obj/structure/chair/pew/right{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark, -/turf/open/floor/iron/chapel{ - dir = 8 - }, -/area/station/service/chapel) -"fBh" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"fBm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/reinforced/spawner{ - dir = 8 - }, -/obj/structure/table, -/obj/item/raw_anomaly_core/random, -/obj/item/raw_anomaly_core/random{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/raw_anomaly_core/random{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"fBt" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel Office" - }, -/obj/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/service/chapel_office, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"fBF" = ( -/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/bar) -"fBI" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"fBX" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/storage/toolbox/drone, -/obj/machinery/light/directional/north, -/obj/item/flashlight/flare, -/obj/item/flashlight/flare, -/obj/machinery/newscaster/directional/north, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/construction/mining/aux_base) -"fCb" = ( -/obj/machinery/computer/cargo{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/button/door/directional/east{ - id = "QMLoaddoor"; - layer = 4; - name = "Off Ramp Toggle"; - pixel_y = 6; - req_access = list("cargo") - }, -/obj/machinery/button/door/directional/east{ - id = "QMLoaddoor2"; - layer = 4; - name = "On Ramp Toggle"; - pixel_y = -6; - req_access = list("cargo") - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"fCc" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"fCe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"fCs" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/assistant, -/turf/open/floor/wood, -/area/station/service/bar/atrium) -"fCH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/command/gateway) -"fCM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/effect/landmark/start/clown, -/turf/open/floor/iron, -/area/station/service/theater) -"fCN" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"fCX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"fDi" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - 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/security/lockers) -"fDr" = ( -/obj/structure/window/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/disposal/delivery_chute{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/status_display/supply{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/sorting) -"fDB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Restrooms" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"fDS" = ( -/obj/machinery/air_sensor/carbon_tank, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"fDT" = ( -/obj/structure/closet/secure_closet/brig{ - name = "Prisoner Locker" - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"fEb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/trinary/mixer{ - name = "plasma mixer" - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"fEc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "applebush" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/locker) -"fEe" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/folder/red, -/obj/machinery/door/window/brigdoor/left/directional/north{ - dir = 2; - name = "Brig Control Desk"; - req_access = list("armory") - }, -/turf/open/floor/plating, -/area/station/security/warden) -"fEj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "chem-passthrough" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"fEu" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/siding/yellow{ - 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, -/area/station/engineering/atmos/storage/gas) -"fEC" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Xenobiology Cell 6"; - name = "xenobiology camera"; - network = list("ss13","rd","xeno") - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"fEE" = ( -/obj/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/firedoor, -/obj/machinery/duct, -/obj/machinery/door/airlock{ - name = "Bar" - }, -/obj/effect/turf_decal/siding/white/corner{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/bar, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"fFa" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/wideplating/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, -/area/station/service/chapel) -"fFe" = ( -/obj/machinery/chem_master, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/chemistry) -"fFh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/airalarm/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/engineering/gravity_generator) -"fFs" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"fFE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"fFH" = ( -/obj/structure/flora/bush/large/style_random, -/turf/open/floor/grass, -/area/station/medical/psychology) -"fFW" = ( -/obj/structure/easel, -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/twentythree_nineteen, -/obj/item/canvas/twentythree_twentythree, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/small/directional/west, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/iron/dark, -/area/station/commons/storage/art) -"fGu" = ( -/turf/closed/wall, -/area/station/security/checkpoint/engineering) -"fGz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random/directional/west, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"fGC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"fGG" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/hostile/asteroid/hivelord, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"fGI" = ( -/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/cable, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/iron, -/area/station/cargo/office) -"fGM" = ( -/obj/machinery/door/airlock/external{ - name = "Departure Shuttle Airlock" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"fHj" = ( -/obj/effect/turf_decal/stripes/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/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"fHw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/table_or_rack, -/obj/effect/spawner/random/trash/bucket, -/obj/effect/spawner/random/trash/janitor_supplies, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/department/bridge) -"fHZ" = ( -/obj/structure/table, -/obj/item/assembly/signaler{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/assembly/signaler{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/assembly/signaler{ - pixel_y = 8 - }, -/obj/item/assembly/signaler{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"fIl" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"fIn" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/flora/grass/jungle/a/style_random, -/obj/effect/decal/cleanable/dirt, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"fIu" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/storage) -"fIw" = ( -/obj/machinery/libraryscanner, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/iron/dark, -/area/station/service/library) -"fIx" = ( -/obj/effect/turf_decal/siding/wood/corner, -/obj/machinery/camera/directional/west{ - c_tag = "Library"; - name = "library camera" - }, -/turf/open/floor/wood, -/area/station/service/library) -"fIB" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/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{ - desc = "A sophisticated analyzer capable of analyzing cryptic subspace wavelengths. Shifted slightly right."; - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/stock_parts/subspace/analyzer{ - desc = "A sophisticated analyzer capable of analyzing cryptic subspace wavelengths. Shifted slightly right."; - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/stock_parts/subspace/analyzer{ - desc = "A sophisticated analyzer capable of analyzing cryptic subspace wavelengths. Shifted slightly right."; - pixel_x = 6; - pixel_y = 4 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) -"fII" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"fIP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/carpet/green, -/area/station/maintenance/port/greater) -"fIR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"fJo" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"fJq" = ( -/obj/structure/flora/bush/leavy/style_random, -/obj/machinery/camera/directional/west{ - c_tag = "Genetics Monkey Pen"; - name = "science camera"; - network = list("ss13","rd") - }, -/turf/open/floor/grass, -/area/station/science/genetics) -"fJr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/mob/living/simple_animal/hostile/russian{ - environment_smash = 0; - loot = list(/obj/effect/mob_spawn/corpse/human/russian); - name = "Russian Mobster" - }, -/turf/open/floor/carpet/green, -/area/station/maintenance/port/greater) -"fJs" = ( -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock"; - shuttledocked = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/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/processing) -"fJz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/ai_monitored/command/storage/satellite) -"fJR" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/stock_parts/matter_bin{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/scanning_module{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stock_parts/scanning_module, -/turf/open/floor/iron/dark, -/area/station/science/lab) -"fKe" = ( -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/obj/structure/window/spawner, -/obj/structure/window/spawner/north, -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/fullgrass/style_random, -/turf/open/floor/grass, -/area/station/service/chapel/monastery) -"fKf" = ( -/obj/machinery/chem_heater/withbuffer{ - pixel_x = 6 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/pharmacy) -"fKg" = ( -/obj/structure/closet/crate, -/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/stock_parts/cell/high, -/obj/item/stack/sheet/mineral/plasma{ - amount = 30 - }, -/obj/item/gps, -/obj/effect/turf_decal/bot, -/obj/item/stack/cable_coil, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"fKi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/port) -"fKs" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/obj/effect/spawner/random/structure/crate, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"fKx" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/disposal/delivery_chute{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/sorting) -"fKA" = ( -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"fKD" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/airalarm/engine{ - pixel_y = -24 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"fKJ" = ( -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/bush/ferny/style_random, -/turf/open/misc/asteroid, -/area/station/maintenance/port/lesser) -"fKS" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/checker, -/area/station/service/hydroponics) -"fLd" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/sign/warning/electric_shock/directional/north, -/obj/machinery/light/directional/north, -/obj/structure/cable/layer3, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/ai_monitored/command/storage/satellite) -"fLo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"fLu" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"fLv" = ( -/turf/open/floor/glass, -/area/station/service/hydroponics) -"fLx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/teleporter) -"fLy" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance{ - name = "Command Maintenance" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/central) -"fLD" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/south{ - c_tag = "Starboard Bow Solar"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/airalarm/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"fLH" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/air_sensor/ordnance_burn_chamber, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"fLZ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"fMn" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/virology) -"fMs" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"fMt" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 4; - freq = 1400; - location = "Atmospherics"; - name = "navigation beacon (Atmospherics Delivery)" - }, -/obj/machinery/door/window/left/directional/south{ - dir = 8; - name = "Atmospherics Delivery Access"; - req_access = list("atmospherics") - }, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage/gas) -"fMB" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"fMF" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Atmospherics Tank - Plasma"; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"fML" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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) -"fNe" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"fNw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/departments/security/directional/south, -/obj/effect/turf_decal/box, -/obj/vehicle/ridden/secway, -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/showroomfloor, -/area/station/security/office) -"fNy" = ( -/obj/structure/flora/grass/jungle/b/style_random, -/turf/open/misc/asteroid, -/area/station/maintenance/port/lesser) -"fNG" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/north, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron, -/area/station/security/courtroom) -"fNT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/central/fore) -"fOd" = ( -/obj/machinery/chem_master/condimaster{ - desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; - name = "BrewMaster 2199" - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/item/reagent_containers/food/drinks/shaker{ - pixel_x = 5 - }, -/obj/machinery/light_switch/directional/west{ - pixel_x = -22; - pixel_y = -6 - }, -/obj/machinery/airalarm/directional/north, -/obj/item/radio/intercom/directional/west{ - pixel_x = -28; - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"fOf" = ( -/obj/structure/transit_tube/curved/flipped{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating, -/area/space/nearstation) -"fOt" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"fOu" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/rd) -"fOx" = ( -/obj/structure/flora/grass/jungle/a/style_random, -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/flora/bush/flowers_br/style_random, -/obj/structure/flora/bush/leavy/style_random, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/grass, -/area/station/hallway/secondary/exit/departure_lounge) -"fOz" = ( -/obj/structure/window/reinforced/plasma{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/power/energy_accumulator/grounding_rod/anchored, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/engineering/supermatter) -"fOH" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"fOI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"fOX" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/cargo/storage) -"fPc" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/item/kirbyplants{ - icon_state = "plant-18" - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/pharmacy) -"fPh" = ( -/obj/structure/sign/departments/holy{ - pixel_y = -30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/stairs/left{ - dir = 4 - }, -/area/station/hallway/primary/fore) -"fPj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/central/fore) -"fPp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/hallway/primary/central/fore) -"fPs" = ( -/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/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) -"fPN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"fPP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/showroomfloor, -/area/station/security/office) -"fPQ" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/item/healthanalyzer, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/medical) -"fQb" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"fQf" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/starboard) -"fQg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/office) -"fQr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"fQx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"fQM" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/siding/red{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"fQO" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "permaouter"; - name = "Permabrig Transfer" - }, -/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/security/brig, -/turf/open/floor/iron/grimy, -/area/station/security/prison/safe) -"fRf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"fRp" = ( -/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/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"fRt" = ( -/obj/machinery/door/airlock/external{ - name = "Science Escape Pod"; - space_dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) -"fRw" = ( -/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/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"fRz" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"fRP" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"fRS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"fSt" = ( -/turf/closed/wall/r_wall/rust, -/area/station/engineering/storage_shared) -"fSC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Arrivals Dock" - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"fSD" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"fSE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"fSK" = ( -/obj/machinery/hydroponics/constructable, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"fSS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/trash/chips, -/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, -/area/station/maintenance/port/fore) -"fST" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/painting/library{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/iron/dark, -/area/station/service/library) -"fSW" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/item/restraints/legcuffs/beartrap, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"fSY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/bluespace_vendor/directional/north, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/hallway/primary/fore) -"fSZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/ai_monitored/command/storage/satellite) -"fTr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"fTQ" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/secure_closet/evidence, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/processing) -"fTW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/rack, -/obj/item/clothing/under/costume/lobster, -/obj/item/clothing/head/lobsterhat, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, -/obj/effect/spawner/random/clothing/costume, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron, -/area/station/service/theater) -"fUf" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron/showroomfloor, -/area/station/security/brig) -"fUp" = ( -/obj/machinery/chem_heater/withbuffer, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/medical/chemistry) -"fUP" = ( -/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/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/duct, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"fUQ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/sign/warning/vacuum/external/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"fUZ" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/noticeboard/directional/west, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"fVj" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Docking Hallway" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = 24 - }, -/obj/structure/sign/directions/science{ - dir = 1; - pixel_y = 40 - }, -/obj/structure/sign/directions/supply{ - dir = 1; - pixel_y = 32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/starboard) -"fVl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/radio/intercom/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "N2 to Pure" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"fVB" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/shieldgen, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/west{ - c_tag = "Secure Storage"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"fVF" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/medical/medbay/central) -"fVJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/fore) -"fVM" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/l3closet/scientist, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/extinguisher, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"fWk" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"fWq" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/bomb) -"fWB" = ( -/obj/machinery/airalarm/directional/west, -/obj/machinery/rnd/production/techfab/department/service, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"fWL" = ( -/obj/effect/landmark/start/psychologist, -/turf/open/floor/carpet, -/area/station/medical/psychology) -"fWX" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"fWZ" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/fore) -"fXm" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/clipboard, -/obj/item/storage/medkit/regular, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/lobby) -"fXy" = ( -/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/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"fXL" = ( -/turf/closed/wall/rust, -/area/station/service/chapel/office) -"fXS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "E.V.A. Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/navigate_destination, -/obj/effect/mapping_helpers/airlock/access/all/command/eva, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"fXZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"fYf" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"fYh" = ( -/turf/closed/wall/r_wall, -/area/station/command/bridge) -"fYm" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"fYs" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage"; - name = "trash belt" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/service/janitor) -"fYw" = ( -/turf/closed/wall/r_wall, -/area/station/medical/surgery/aft) -"fYy" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/mineral/random/labormineral, -/area/space/nearstation) -"fYS" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/bush/flowers_pp/style_random, -/obj/structure/flora/bush/leavy/style_random, -/obj/structure/flora/bush/grassy/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"fYU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/landmark/start/orderly, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) -"fZk" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"fZy" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/siding/blue/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"fZz" = ( -/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/chapel/funeral) -"gab" = ( -/obj/machinery/computer/atmos_control/nocontrol/incinerator{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"gao" = ( -/obj/machinery/door/airlock/research{ - name = "Testing Lab" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/research, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"gau" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"gaE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/pharmacy) -"gaR" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"gba" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/north{ - pixel_x = -4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/central/fore) -"gbd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror/directional/west, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/surgery/fore) -"gbf" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/surgery/fore) -"gbh" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/sign/warning/biohazard/directional/north, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"gbk" = ( -/obj/effect/turf_decal/tile/neutral, -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) -"gbp" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/item/clipboard{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/toy/figure/assistant{ - pixel_x = 8; - pixel_y = 2 - }, -/turf/open/floor/iron/dark, -/area/station/commons/vacant_room/commissary) -"gbs" = ( -/obj/effect/spawner/random/trash/moisture_trap, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/bridge) -"gbB" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/item/computer_hardware/hard_drive/portable/medical, -/obj/item/computer_hardware/hard_drive/portable/medical, -/obj/item/computer_hardware/hard_drive/portable/medical, -/obj/item/computer_hardware/hard_drive/portable/chemistry, -/obj/item/clothing/neck/stethoscope{ - pixel_y = 5 - }, -/obj/structure/table/reinforced/rglass, -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/cmo) -"gbF" = ( -/obj/machinery/door/poddoor/preopen{ - id = "gravity"; - name = "Gravity Generator Blast Door" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/button/door/directional/north{ - id = "gravity"; - name = "Gravity Generator Lockdown"; - req_one_access = list("command","tech_storage") - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/aft) -"gbL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"gbO" = ( -/obj/structure/table/wood, -/obj/structure/desk_bell{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/item/storage/box/matches{ - pixel_x = -1; - pixel_y = 6 - }, -/obj/item/lighter{ - pixel_x = 2 - }, -/obj/item/lighter{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/wood, -/area/station/service/bar) -"gbU" = ( -/obj/effect/turf_decal/bot, -/obj/structure/frame/computer{ - anchored = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"gbY" = ( -/obj/effect/turf_decal/bot/left, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"gcb" = ( -/obj/structure/window/reinforced/spawner/north, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"gcq" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"gcy" = ( -/obj/structure/table, -/obj/machinery/computer/security/telescreen/turbine{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"gcL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"gdA" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) -"gdI" = ( -/obj/structure/chair/pew{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/chapel{ - dir = 8 - }, -/area/station/service/chapel) -"gdL" = ( -/obj/machinery/door/airlock/grunge{ - id_tag = "Cabin_3"; - name = "Cabin 3" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"gdP" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/noticeboard/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Detective's Office"; - name = "detective camera" - }, -/turf/open/floor/wood, -/area/station/security/detectives_office) -"gel" = ( -/obj/effect/turf_decal/tile/blue{ - 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) -"gev" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"gey" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/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/maintenance/port/greater) -"geO" = ( -/obj/structure/table/optable, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/virology) -"geV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/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, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"gfc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/filingcabinet, -/obj/effect/turf_decal/bot_white, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"gfe" = ( -/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/sign/directions/evac{ - dir = 8; - pixel_y = 24 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"gfi" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"gfz" = ( -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/stalky/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"gfD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"gfT" = ( -/obj/machinery/firealarm/directional/west, -/obj/machinery/light/directional/west, -/obj/machinery/computer/atmos_control/ordnancemix{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"ggb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/service/chapel/monastery) -"ggj" = ( -/obj/structure/chair/pew/left{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/turf/open/floor/iron/chapel, -/area/station/service/chapel) -"ggF" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/clipboard, -/obj/item/reagent_containers/pill/patch/aiuri, -/obj/item/clothing/glasses/meson/engine, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) -"ggI" = ( -/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/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"ggS" = ( -/turf/closed/wall/r_wall, -/area/station/science/ordnance) -"ggZ" = ( -/obj/item/food/grown/banana, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/grass, -/area/station/science/genetics) -"ghl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/item/radio/intercom/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"ghp" = ( -/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/west, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"ght" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"ghO" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"gii" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/plaques/kiddie{ - pixel_y = -32 - }, -/obj/effect/landmark/navigate_destination/aiupload, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai_upload) -"gij" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-entrance-left" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/plating, -/area/station/security/execution/transfer) -"gin" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"gip" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"gix" = ( -/obj/effect/turf_decal/box, -/obj/structure/cable, -/turf/open/floor/iron/solarpanel/airless, -/area/station/solars/starboard/aft) -"giA" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/storage/tech) -"giG" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/obj/structure/closet/bombcloset, -/turf/open/floor/iron/dark, -/area/station/science/research) -"giH" = ( -/obj/structure/sign/poster/official/help_others, -/turf/closed/wall/r_wall/rust, -/area/station/security/prison/shower) -"giJ" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/stock_parts/subspace/transmitter, -/obj/item/stock_parts/subspace/transmitter, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/amplifier, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) -"giT" = ( -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"giU" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"gjc" = ( -/obj/machinery/airalarm/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai_upload) -"gjg" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"gjx" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - 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/showroomfloor, -/area/station/medical/virology) -"gjD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/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/iron/dark, -/area/station/maintenance/port/fore) -"gjF" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/dark, -/area/station/construction/mining/aux_base) -"gjL" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/seed_extractor, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/siding/green{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics/garden) -"gjP" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/door/window/right/directional/south{ - name = "Cargo Disposal"; - req_access = list("shipping") - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"gka" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/department/bridge) -"gkb" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/ai_monitored/command/nuke_storage) -"gkf" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall/rust, -/area/station/cargo/storage) -"gkr" = ( -/obj/machinery/vending/tool, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/dark, -/area/station/commons/storage/primary) -"gkv" = ( -/turf/closed/wall/r_wall, -/area/station/medical/medbay/central) -"gkx" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"gkD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/table, -/obj/machinery/status_display/ai/directional/north, -/obj/item/storage/toolbox/mechanical, -/obj/item/multitool, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"gkW" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"glo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/cable, -/obj/effect/spawner/random/decoration/carpet, -/turf/open/floor/iron, -/area/station/security/prison) -"glG" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) -"glI" = ( -/turf/closed/indestructible/opshuttle, -/area/station/science/ordnance/bomb) -"glM" = ( -/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/sorting/mail/flip{ - dir = 8; - name = "atmospherics sorting disposal pipe"; - sortType = 6 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"glX" = ( -/obj/machinery/holopad, -/turf/open/floor/carpet/green, -/area/station/security/detectives_office) -"glY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/grimy, -/area/station/hallway/primary/fore) -"gmj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Hydroponics Storage"; - name = "hydroponics camera" - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"gmn" = ( -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"gmo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"gmx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"gmB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"gmG" = ( -/turf/closed/wall, -/area/station/maintenance/aft) -"gmJ" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall/rust, -/area/station/maintenance/starboard) -"gne" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Docking Hallway" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/starboard) -"gng" = ( -/obj/structure/sign/departments/engineering, -/turf/closed/wall, -/area/station/commons/storage/primary) -"gnh" = ( -/turf/closed/wall/r_wall, -/area/station/service/chapel) -"gnp" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/siding/wood/end, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/west, -/obj/item/flashlight/lantern, -/turf/open/floor/carpet/red, -/area/station/service/chapel) -"gny" = ( -/obj/structure/cable, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"gnB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/storage) -"gnN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/chair/stool/directional/north, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/service/library) -"goc" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/door/window/left/directional/south{ - name = "Trash Chute"; - req_access = list("janitor") - }, -/obj/machinery/conveyor_switch/oneway{ - dir = 4; - id = "garbage"; - name = "trash chute" - }, -/obj/effect/turf_decal/loading_area, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/service/janitor) -"goh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"goi" = ( -/obj/machinery/power/turbine/inlet_compressor, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"goj" = ( -/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/security/prison) -"gos" = ( -/obj/machinery/light/floor, -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"gou" = ( -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"goG" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"goY" = ( -/obj/structure/chair/pew/right{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"gpe" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrous_input{ - dir = 1 - }, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"gpy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security/glass{ - name = "Transferring Centre" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark, -/area/station/security/processing) -"gpz" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/central) -"gpH" = ( -/obj/machinery/door/airlock/external{ - name = "Ferry Shuttle Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) -"gpI" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"gpL" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/turf/open/floor/plating/airless, -/area/station/engineering/supermatter/room) -"gpM" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/office) -"gpP" = ( -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"gpS" = ( -/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/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/duct, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"gql" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/left/directional/west{ - name = "Hydroponics Desk"; - req_access = list("hydroponics") - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"gqn" = ( -/obj/machinery/door/airlock/external{ - name = "Departure Shuttle Airlock" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/landmark/navigate_destination, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"gqz" = ( -/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/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"gqD" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet{ - name = "detective closet" - }, -/obj/item/clothing/suit/jacket{ - desc = "All the class of a trenchcoat without the security fibers."; - icon_state = "noirdet"; - name = "trenchcoat"; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/suit/jacket{ - desc = "All the class of a trenchcoat without the security fibers."; - icon_state = "detective"; - name = "trenchcoat" - }, -/obj/item/clothing/head/fedora{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/head/fedora{ - icon_state = "detective" - }, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"gqR" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"grq" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/command/teleporter) -"gry" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/station/maintenance/aft) -"grK" = ( -/turf/open/space/basic, -/area/station/maintenance/disposal/incinerator) -"grQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "Satellite Antechamber" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "ai-passthrough" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/minisat, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"grV" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/station/solars/port/fore) -"gse" = ( -/obj/structure/chair/pew/left{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/turf/open/floor/iron/chapel{ - dir = 1 - }, -/area/station/service/chapel) -"gsl" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/siding/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, -/area/station/hallway/secondary/exit/departure_lounge) -"gsr" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/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/showroomfloor, -/area/station/medical/exam_room) -"gsu" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "Skynet_launch"; - name = "Mech Bay Door Control"; - req_access = list("robotics") - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"gsw" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"gsy" = ( -/turf/closed/wall, -/area/station/medical/exam_room) -"gsB" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/table, -/obj/item/pipe_dispenser, -/obj/item/holosign_creator/atmos, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"gsO" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/landmark/start/cargo_technician, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"gtd" = ( -/turf/open/floor/iron, -/area/station/common/cryopods) -"gtj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"gtq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"gtC" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packagereturn"; - name = "crate return belt" - }, -/obj/structure/plasticflaps/opaque, -/turf/open/floor/iron/dark, -/area/station/cargo/sorting) -"gtI" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/small/directional/west, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/janitor) -"gtK" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"gtT" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"gtU" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark, -/area/station/maintenance/aft) -"gtW" = ( -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/rd) -"guu" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/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/decal/cleanable/food/salt{ - desc = "A sizable pile of concentrated salt left behind by the previous occupant." - }, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron/showroomfloor, -/area/station/security/brig) -"guC" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"guJ" = ( -/turf/open/misc/asteroid, -/area/station/maintenance/port/lesser) -"guK" = ( -/obj/machinery/bookbinder, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/library) -"guS" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"guT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"gva" = ( -/obj/structure/grille, -/turf/closed/wall/r_wall/rust, -/area/station/engineering/atmos) -"gvu" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/box, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"gvx" = ( -/obj/structure/closet/secure_closet/evidence, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"gvM" = ( -/obj/structure/cable, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/storage/box/pdas{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/ids, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"gwa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/random/structure/crate, -/obj/structure/sign/poster/contraband/random/directional/west, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"gwk" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/closed/wall, -/area/station/security/checkpoint/engineering) -"gwI" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/bomb) -"gwO" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/lab) -"gwV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/central/fore) -"gwW" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/button/door/directional/east{ - id = "commissaryshutter"; - name = "Commissary Shutter Toggle"; - pixel_x = 26; - pixel_y = 7 - }, -/obj/machinery/button/door/directional/east{ - id = "commissarydoor"; - name = "Commissary Door Lock"; - normaldoorcontrol = 1; - pixel_x = 26; - pixel_y = -2; - specialfunctions = 4 - }, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"gxe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/obj/structure/noticeboard/directional/east, -/obj/machinery/computer/gateway_control, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"gxi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"gxu" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/lab) -"gxN" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/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/showroomfloor, -/area/station/medical/medbay/lobby) -"gxW" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall, -/area/station/maintenance/starboard) -"gyb" = ( -/turf/open/floor/plating/rust, -/area/station/security/prison) -"gyd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"gyf" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall/rust, -/area/station/security/prison/garden) -"gyn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_output{ - dir = 1 - }, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"gyv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/tank/internals/oxygen, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"gyx" = ( -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/north{ - c_tag = "Gateway"; - name = "command camera" - }, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"gyM" = ( -/obj/machinery/light/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/sm_apc/directional/south, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"gyV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"gzh" = ( -/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/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"gzv" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"gzx" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "NTMSLoad"; - name = "off ramp"; - pixel_x = -8; - pixel_y = -5 - }, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"gzA" = ( -/obj/structure/girder, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"gzC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/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 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"gAp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/xeno_mining/directional/north, -/obj/machinery/camera/directional/west{ - c_tag = "Port Quarter Solar"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/effect/landmark/xeno_spawn, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"gAq" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/item/toy/figure/ce{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/machinery/button/door/directional/west{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_y = 6; - req_access = list("atmospherics") - }, -/obj/machinery/button/door/directional/west{ - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_y = -6; - req_access = list("engineering") - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"gAO" = ( -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "medbay_front_door"; - name = "Medbay" - }, -/obj/effect/landmark/navigate_destination, -/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/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) -"gBd" = ( -/obj/machinery/portable_atmospherics/canister/plasma, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"gBf" = ( -/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/cable, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) -"gBi" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/clipboard, -/obj/item/flashlight/seclite, -/obj/item/flashlight/seclite, -/obj/item/flashlight/seclite, -/obj/effect/decal/cleanable/dirt, -/obj/item/toy/figure/secofficer, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"gBp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"gBx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/central/fore) -"gBC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/grunge{ - id_tag = "commissarydoor"; - name = "Vacant Commissary" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/aft) -"gBJ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Lockers"; - location = "Medical"; - name = "medical navigation beacon" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"gBN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"gBT" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/analyzer{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/analyzer, -/obj/item/flashlight, -/obj/item/flashlight, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"gCf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"gCl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"gCu" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"gCY" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Prison Cells"; - network = list("ss13","prison") - }, -/turf/open/floor/iron, -/area/station/security/prison) -"gDe" = ( -/obj/structure/dresser, -/obj/machinery/airalarm/directional/east, -/obj/machinery/button/door/directional/north{ - id = "Cabin_1"; - name = "Cabin 1 Privacy Lock"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/wood, -/area/station/commons/locker) -"gDl" = ( -/obj/effect/spawner/random/entertainment/arcade, -/turf/open/floor/iron/grimy, -/area/station/security/prison) -"gDm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/directions/science{ - dir = 4; - pixel_x = -32; - pixel_y = 8 - }, -/obj/structure/sign/directions/supply{ - pixel_x = -32 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = -32; - pixel_y = -8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"gDu" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"gDv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"gDy" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"gDJ" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"gDM" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"gDR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"gDS" = ( -/obj/structure/frame/computer{ - anchored = 1; - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/cargo/warehouse) -"gDT" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - 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/effect/turf_decal/siding/purple{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/genetics) -"gDW" = ( -/obj/structure/sign/poster/contraband/random/directional/east, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/wood, -/area/station/maintenance/department/crew_quarters/bar) -"gEo" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"gER" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/research) -"gFt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"gFA" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"gFD" = ( -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"gFE" = ( -/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/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"gFF" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron, -/area/station/security/courtroom) -"gFL" = ( -/obj/structure/table, -/obj/item/storage/fancy/egg_box, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/rice, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"gFO" = ( -/obj/effect/landmark/start/lawyer, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/navigate_destination/lawyer, -/turf/open/floor/carpet/green, -/area/station/service/lawoffice) -"gFQ" = ( -/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) -"gFR" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/port) -"gFY" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/vending/coffee, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/port) -"gGf" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/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/showroomfloor, -/area/station/science/research) -"gGi" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/grille/broken, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"gGp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/camera/directional/south{ - c_tag = "Laser Room Port"; - name = "laser room camera"; - network = list("ss13","engine") - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"gGq" = ( -/obj/structure/table, -/obj/machinery/light/small/directional/east, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/suit/armor/vest, -/obj/item/clothing/neck/stethoscope, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"gGs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"gGx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"gGF" = ( -/obj/structure/grille/broken, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"gGR" = ( -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"gHc" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/courtroom) -"gHd" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/box, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"gHi" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"gHA" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/left/directional/south{ - dir = 1; - name = "Security Desk"; - req_access = list("security") - }, -/obj/item/crowbar/red, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"gHD" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/clothing/gloves/color/latex, -/obj/item/storage/backpack/duffelbag/sec/surgery{ - pixel_y = 5 - }, -/obj/item/clothing/mask/surgical, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/east, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"gHE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"gIo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/wrench, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"gIt" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/department/security) -"gIw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"gIz" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"gIE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"gIF" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters"; - name = "Chemistry Lobby Shutters"; - dir = 1 - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/medical/glass{ - name = "Pharmacy" - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/medical/pharmacy, -/turf/open/floor/iron/dark, -/area/station/medical/pharmacy) -"gII" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/iron, -/area/station/engineering/main) -"gJa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"gJc" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/iron/stairs/right{ - dir = 4 - }, -/area/station/service/chapel) -"gJj" = ( -/obj/machinery/door/airlock/external{ - name = "Arrival Shuttle Airlock"; - space_dir = 2 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"gJs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera/directional/south{ - c_tag = "Gravity Generator"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/engineering/gravity_generator) -"gJz" = ( -/obj/structure/grille, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"gJC" = ( -/obj/structure/sign/departments/security/directional/south, -/obj/structure/flora/bush/pale/style_random, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"gJE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"gJF" = ( -/obj/structure/table_frame, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"gJK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/closed/wall/rust, -/area/station/maintenance/disposal/incinerator) -"gJL" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigfrontdoor"; - name = "Front Security Blast Door" - }, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"gKd" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/co2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"gKg" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/railing, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"gKB" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/table_frame, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"gKC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/spawner/random/structure/crate, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"gKI" = ( -/turf/closed/wall/rust, -/area/station/cargo/miningoffice) -"gKR" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"gKV" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 1; - height = 4; - name = "escape pod loader"; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/turf/open/space/basic, -/area/space) -"gLm" = ( -/obj/machinery/status_display/ai/directional/south, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/hostile/giant_spider/hunter/scrawny, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"gLn" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/station/security/medical) -"gLp" = ( -/obj/structure/window/reinforced/spawner, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"gLH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"gLK" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - 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/secondary/exit/departure_lounge) -"gLO" = ( -/turf/closed/wall/r_wall/rust, -/area/station/security/courtroom) -"gLP" = ( -/obj/structure/bookcase/random/adult, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/crew_quarters/bar) -"gLT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/meter/layer2, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"gMg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"gMp" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"gMq" = ( -/obj/machinery/door/airlock/grunge{ - name = "Cell 2" - }, -/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/security/prison/safe) -"gMA" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"gMC" = ( -/obj/machinery/suit_storage_unit/engine, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/directional/east, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"gME" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"gMK" = ( -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"gNq" = ( -/obj/machinery/vending/wardrobe/medi_wardrobe, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"gNy" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/left/directional/east{ - name = "Service Hall Delivery Access"; - req_access = list("service") - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Bar" - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/crew_quarters/bar) -"gNB" = ( -/obj/structure/chair/sofa/right{ - color = "#c45c57"; - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/dark, -/area/station/service/bar/atrium) -"gNE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"gNI" = ( -/obj/structure/transit_tube, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"gNJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"gNM" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/siding/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs) -"gOh" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/lobby) -"gOo" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = -24 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/port) -"gOq" = ( -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock"; - shuttledocked = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/security/processing) -"gOG" = ( -/obj/structure/closet/crate, -/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/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"gPa" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"gPy" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/computer/rdconsole{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/lab) -"gPA" = ( -/turf/closed/wall/rust, -/area/station/maintenance/port/aft) -"gPC" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/station/service/chapel/monastery) -"gPH" = ( -/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/machinery/meter/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"gPO" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/closet/crate, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/flashlight/flare, -/obj/item/flashlight/flare, -/obj/item/stock_parts/cell/high, -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/cargo/miningoffice) -"gPS" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/exam_room) -"gPX" = ( -/obj/structure/reflector/box/anchored{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"gPZ" = ( -/obj/structure/janitorialcart, -/obj/effect/turf_decal/delivery, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/lusty_xenomorph{ - pixel_x = 32 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"gQd" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/fore) -"gQo" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/firealarm/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/blue/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/storage) -"gQq" = ( -/obj/machinery/computer/mecha{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"gQu" = ( -/obj/structure/cable, -/obj/machinery/power/port_gen/pacman, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/catwalk_floor/iron_smooth, -/area/station/maintenance/department/chapel/monastery) -"gQx" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/iron, -/area/station/cargo/storage) -"gQB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/restraints/handcuffs, -/obj/machinery/recharger, -/obj/item/screwdriver, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/customs) -"gQJ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/office) -"gQV" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Atmospherics Tank - CO2"; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"gRg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xeno1"; - name = "Creature Cell 1" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"gRq" = ( -/obj/effect/turf_decal/tile/neutral{ - 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/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"gRr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/button/door/directional/north{ - id = "greylair"; - name = "Lair Privacy Toggle" - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"gRP" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/south, -/obj/machinery/camera/directional/east{ - c_tag = "Bridge Maintenance Entrance"; - name = "command camera" - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"gSc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/security/prison) -"gSk" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/vending/wardrobe/chem_wardrobe, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"gSz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"gSC" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/blood, -/obj/item/reagent_containers/blood{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/reagent_containers/blood/a_minus, -/obj/item/reagent_containers/blood/b_minus{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/reagent_containers/blood/b_plus{ - pixel_x = 1; - pixel_y = 2 - }, -/obj/item/reagent_containers/blood/o_minus, -/obj/item/reagent_containers/blood/o_plus{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"gSF" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison/mess) -"gSL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/circuitboard/computer/operating, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"gSQ" = ( -/obj/structure/table/reinforced, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"gSW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Research Director's Office" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/rd, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"gTc" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 6 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -6 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage/gas) -"gTr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/engineering{ - name = "Engineering" - }, -/obj/structure/cable, -/obj/effect/landmark/navigate_destination, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "engi-entrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron/dark, -/area/station/engineering/storage_shared) -"gTA" = ( -/obj/machinery/door/airlock/hydroponics/glass{ - name = "Hydroponics Backroom" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"gTD" = ( -/obj/machinery/light/floor, -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"gTN" = ( -/obj/machinery/seed_extractor, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"gUw" = ( -/obj/machinery/power/solar{ - id = "aftport"; - name = "Aft-Port Solar Array" - }, -/obj/structure/cable, -/turf/open/floor/iron/solarpanel/airless, -/area/station/solars/port/aft) -"gUK" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/east, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"gUP" = ( -/obj/item/storage/medkit/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/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 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/west, -/obj/structure/sign/warning/no_smoking/directional/north, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"gUS" = ( -/obj/effect/turf_decal/bot, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/cargo/storage) -"gUT" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"gUZ" = ( -/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/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"gVc" = ( -/obj/machinery/power/terminal, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/obj/structure/sign/poster/contraband/missing_gloves{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"gVg" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/north, -/obj/machinery/suit_storage_unit/medical, -/turf/open/floor/iron/dark, -/area/station/medical/paramedic) -"gVi" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - 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, -/turf/open/floor/iron, -/area/station/security/brig) -"gVp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/plumbed, -/obj/effect/turf_decal/delivery/white{ - color = "#52B4E9" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/crew_quarters/bar) -"gVt" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/rd) -"gVv" = ( -/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) -"gVC" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/genetics) -"gWb" = ( -/obj/effect/landmark/secequipment, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/office) -"gWw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"gWT" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/trash/popcorn, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"gXc" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/sorting) -"gXh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/pumproom) -"gXG" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"gXJ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=HOP"; - location = "Security"; - name = "security navigation beacon" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"gXX" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/air, -/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, -/area/station/engineering/atmos/storage/gas) -"gYl" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/brig) -"gYA" = ( -/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/broken_floor, -/turf/open/floor/plating, -/area/station/security/prison) -"gYK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"gYS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"gYV" = ( -/obj/effect/turf_decal/stripes/line{ - 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/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"gZl" = ( -/turf/closed/wall/r_wall/rust, -/area/station/hallway/secondary/service) -"gZm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "N2O to Pure" - }, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"gZI" = ( -/obj/structure/water_source/puddle, -/obj/structure/flora/bush/reed/style_random{ - pixel_y = 5 - }, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/grass, -/area/station/medical/virology) -"hah" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"hat" = ( -/turf/closed/wall, -/area/station/service/hydroponics) -"haP" = ( -/obj/machinery/seed_extractor, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/item/radio/intercom/prison/directional/west, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"hbe" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xeno4"; - name = "Creature Cell 4" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/left/directional/north{ - dir = 4; - name = "Creature Cell"; - req_access = list("xenobiology") - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"hbf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"hbr" = ( -/obj/machinery/door/airlock/external{ - name = "External Freight Airlock" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/warehouse) -"hbC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"hbE" = ( -/turf/closed/wall/r_wall/rust, -/area/station/command/bridge) -"hbH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"hbT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"hcP" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"hda" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/iron/stairs/medium{ - dir = 1 - }, -/area/station/service/chapel/monastery) -"hdj" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/sign/warning/no_smoking{ - pixel_x = -30 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/port) -"hdm" = ( -/obj/structure/kitchenspike, -/obj/effect/turf_decal/bot/left, -/obj/machinery/airalarm/kitchen_cold_room{ - dir = 1; - pixel_y = 24 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"hdo" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/hallway/primary/central/fore) -"hdq" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"hdy" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"hdz" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/central/fore) -"hdY" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"hee" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/painting/library{ - pixel_x = 32 - }, -/turf/open/floor/iron/dark, -/area/station/service/library) -"hev" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"heD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Freight Mining Airlock" - }, -/turf/open/floor/iron/dark, -/area/station/cargo/warehouse) -"heU" = ( -/obj/structure/sign/warning/electric_shock/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"heX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Office" - }, -/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/supply/general, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"hfk" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"hfl" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/tank/internals/oxygen/red, -/obj/item/stack/package_wrap, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"hfp" = ( -/turf/closed/wall, -/area/station/maintenance/central) -"hfr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/textured, -/area/station/cargo/storage) -"hfF" = ( -/obj/structure/bed{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/obj/effect/landmark/start/assistant, -/obj/item/bedsheet/dorms{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/obj/machinery/button/door/directional/north{ - id = "Cabin_3"; - name = "Cabin 3 Privacy Lock"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/wood, -/area/station/commons/locker) -"hfP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Prison Wing" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-maint-passthrough" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"hfV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science/research) -"hgc" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "QM #2" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/small/directional/north, -/mob/living/simple_animal/bot/mulebot{ - home_destination = "QM #2"; - suffix = "#2" - }, -/turf/open/floor/iron/dark, -/area/station/cargo/storage) -"hgf" = ( -/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 = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"hgL" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/maintenance/port/greater) -"hgW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/assist, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/sign/poster/contraband/punch_shit{ - pixel_x = 30 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"hhc" = ( -/obj/machinery/computer/aifixer{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"hhi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison) -"hhn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"hhp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/security/prison) -"hhE" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-18" - }, -/obj/machinery/light_switch/directional/west{ - pixel_y = -4 - }, -/obj/machinery/button/door/directional/west{ - id = "research_shutters"; - name = "Research Shuttle Toggle"; - pixel_y = 6; - req_access = list("science") - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/lab) -"hhX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/port) -"hib" = ( -/obj/machinery/door/airlock/maintenance/external{ - name = "Construction Zone" - }, -/turf/open/floor/iron/dark, -/area/station/construction/mining/aux_base) -"hih" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/l3closet/virology, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"hiQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "engi-maint-passthrough" - }, -/obj/structure/cable, -/obj/machinery/door/airlock/engineering{ - name = "Gravity Generator Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/aft) -"hja" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/south, -/obj/item/radio/intercom/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/duct, -/turf/open/floor/wood, -/area/station/service/bar/atrium) -"hjb" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"hjh" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Medical Operating Theater A"; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/suit/apron/surgical, -/obj/item/clipboard{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/surgery/fore) -"hjj" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Supermatter 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/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/aft) -"hjk" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/ordnance_burn_chamber_input, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"hjn" = ( -/obj/structure/cable, -/obj/machinery/computer/cargo/request, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"hjt" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"hjD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/obj/machinery/status_display/ai/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"hjE" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/holopad, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/command/nuke_storage) -"hjJ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/central/fore) -"hjL" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/station/cargo/storage) -"hjZ" = ( -/obj/machinery/door/morgue{ - name = "Booze Storage"; - req_access = list("bar") - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark/textured_large, -/area/station/service/bar) -"hkd" = ( -/obj/machinery/power/smes, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electric_shock/directional/north, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/spider/stickyweb, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"hkp" = ( -/turf/closed/wall/r_wall/rust, -/area/station/medical/virology) -"hkq" = ( -/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, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"hkr" = ( -/obj/machinery/computer/slot_machine, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot_white, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"hkw" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Engineering Hallway" - }, -/obj/structure/sign/departments/engineering/directional/east, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"hky" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/carbon_input{ - dir = 1 - }, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"hkA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"hkC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/port) -"hkF" = ( -/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/security/prison) -"hkI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"hkK" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"hkL" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hkO" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall/rust, -/area/station/maintenance/port/fore) -"hkR" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/security{ - name = "Armoury" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"hkV" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/sign/warning/xeno_mining/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/xeno_spawn, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"hkW" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/door/window/left/directional/north{ - dir = 2; - name = "Cargo Delivery Access"; - req_access = list("shipping") - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"hlb" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/sign/poster/official/safety_eye_protection{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"hlJ" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"hlP" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/department/crew_quarters/bar) -"hlS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"hma" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/genetics) -"hmh" = ( -/turf/closed/wall/r_wall/rust, -/area/station/maintenance/department/chapel/monastery) -"hmn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/clothing/wardrobe_closet_colored, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/crew_quarters/bar) -"hmr" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"hmK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"hmO" = ( -/turf/closed/wall, -/area/station/security/processing) -"hna" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - 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/aft) -"hnb" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Pure to Mix" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"hne" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"hnl" = ( -/obj/machinery/door/window/left/directional/north{ - dir = 2; - name = "Cargo Delivery Access"; - req_access = list("shipping") - }, -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) -"hnw" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xeno2"; - name = "Creature Cell 2" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/left/directional/north{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Creature Cell"; - req_access = list("xenobiology") - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"hnA" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/service/janitor) -"hnD" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/stack/package_wrap, -/obj/item/crowbar, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/item/electronics/airlock{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/electronics/airlock{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/hand_labeler, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) -"hnL" = ( -/obj/machinery/telecomms/server/presets/engineering, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"hnU" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"hoz" = ( -/obj/structure/table/wood, -/obj/structure/mirror/directional/west, -/obj/machinery/light/small/directional/west, -/obj/item/food/pie/cream, -/obj/item/bikehorn{ - pixel_x = -6; - pixel_y = 8 - }, -/turf/open/floor/wood, -/area/station/service/theater) -"hoE" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron, -/area/station/commons/locker) -"hoI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/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/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hoK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/port) -"hoV" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/storage/belt/utility, -/obj/item/weldingtool/largetank, -/obj/item/clothing/head/welding, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage/gas) -"hpg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"hph" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/flasher/directional/west{ - id = "Cell 3"; - name = "Prisoner Pacifier" - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/brig) -"hpu" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/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 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/research) -"hpv" = ( -/turf/closed/wall, -/area/station/medical/surgery/aft) -"hpz" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/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/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"hpC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/grass, -/area/station/science/genetics) -"hpG" = ( -/obj/effect/turf_decal/box, -/obj/machinery/power/solar{ - id = "foreport"; - name = "Fore-Port Solar Array" - }, -/obj/structure/cable, -/turf/open/floor/iron/solarpanel/airless, -/area/station/solars/port/fore) -"hpQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/psychology) -"hpS" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/office) -"hpW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/recharge_station, -/turf/open/floor/iron, -/area/station/security/office) -"hpY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"hqk" = ( -/obj/machinery/status_display/ai/directional/north, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"hqm" = ( -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/iron, -/area/station/cargo/storage) -"hqr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/purple{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"hqP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/transfer) -"hqS" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"hqT" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"hqW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"hri" = ( -/obj/structure/dresser, -/turf/open/floor/wood, -/area/station/commons/locker) -"hrY" = ( -/obj/effect/turf_decal/tile/blue{ - 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, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"hsg" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/research) -"hsr" = ( -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random/directional/north, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"hsx" = ( -/obj/machinery/vending/hydroseeds{ - slogan_delay = 700 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"hsB" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/delivery, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/medical) -"hsC" = ( -/obj/machinery/vending/hydronutrients, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"hsJ" = ( -/obj/structure/window/reinforced/spawner{ - dir = 4 - }, -/obj/structure/flora/bush/grassy/style_random, -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/bush/leavy/style_random, -/mob/living/simple_animal/butterfly, -/turf/open/floor/grass, -/area/station/hallway/primary/fore) -"hsL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"hsO" = ( -/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/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/storage/art) -"hsW" = ( -/obj/structure/noticeboard/directional/east, -/turf/closed/mineral/random/labormineral, -/area/space/nearstation) -"htJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"htP" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/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/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"htS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/medical{ - name = "Operating Theater B" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/aft) -"htZ" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/engineering/storage/tech) -"huc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/hallway/primary/fore) -"huo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Isolation"; - name = "Isolation Shutters" - }, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"huK" = ( -/obj/item/shrapnel/bullet, -/turf/open/floor/plating, -/area/station/security/prison) -"huR" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/item/reagent_containers/chem_pack{ - pixel_x = 10; - pixel_y = 10 - }, -/obj/item/stack/medical/gauze{ - pixel_x = 8 - }, -/obj/item/stack/medical/mesh{ - pixel_x = -4; - pixel_y = 3 - }, -/turf/open/floor/iron/dark, -/area/station/medical/exam_room) -"huS" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"hvj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"hvl" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/toy/figure/scientist{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"hvz" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/obj/machinery/button/door/directional/west{ - id = "ordnancemix"; - name = "Ordnance Lab Access"; - pixel_y = 8; - req_access = list("ordnance") - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"hvB" = ( -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/glass, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/plating/rust, -/area/station/security/prison) -"hwn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/turf/open/floor/wood, -/area/station/cargo/qm) -"hwA" = ( -/turf/closed/wall/rust, -/area/station/maintenance/solars/starboard/aft) -"hwJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"hwN" = ( -/obj/machinery/rnd/production/circuit_imprinter, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"hwY" = ( -/obj/machinery/air_sensor/air_tank, -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"hwZ" = ( -/obj/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/firealarm/directional/north, -/turf/open/floor/plastic, -/area/station/hallway/secondary/service) -"hxb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/bartender, -/obj/effect/turf_decal/siding/wood/end{ - dir = 1 - }, -/turf/open/floor/wood/parquet, -/area/station/service/bar) -"hxd" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/item/trash/cheesie, -/obj/item/trash/syndi_cakes, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"hxf" = ( -/obj/structure/transit_tube, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/iron/grimy, -/area/station/hallway/primary/fore) -"hxi" = ( -/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/atmos{ - name = "Incinerator" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 6 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hxt" = ( -/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/white{ - dir = 1 - }, -/obj/structure/noticeboard/directional/south, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"hxw" = ( -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"hxL" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/storage/toolbox/emergency{ - pixel_y = 5 - }, -/obj/item/crowbar/red, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"hxQ" = ( -/obj/machinery/computer/cargo{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/carpet/blue, -/area/station/command/heads_quarters/hop) -"hxZ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/flora/bush/flowers_pp/style_random, -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/bush/stalky/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"hyl" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"hyq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"hyJ" = ( -/obj/effect/turf_decal/bot, -/obj/structure/ore_box, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"hyQ" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/chair/stool/bar/directional/south, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"hzC" = ( -/obj/structure/flora/rock/icy/style_2, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"hzE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"hzO" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/closet, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"hAc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hAF" = ( -/obj/structure/table/wood, -/obj/machinery/reagentgrinder{ - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/toy/figure/bartender{ - pixel_x = -7 - }, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"hAJ" = ( -/turf/closed/wall, -/area/station/engineering/storage/tech) -"hAM" = ( -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"hAP" = ( -/turf/closed/wall/r_wall, -/area/station/security/brig) -"hBa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"hBf" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"hBg" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad"; - name = "off ramp" - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"hBk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"hBm" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"hBx" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/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, -/obj/structure/sign/warning/secure_area/directional/north{ - name = "EMERGENCY STORAGE" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"hBD" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"hBG" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"hBH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters{ - id = "visitation"; - name = "Visitation Shutters"; - dir = 1 - }, -/turf/open/floor/plating, -/area/station/security/execution/transfer) -"hBJ" = ( -/turf/closed/wall/r_wall/rust, -/area/station/maintenance/port/greater) -"hBR" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/l3closet/scientist, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/machinery/firealarm/directional/north, -/obj/item/extinguisher, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Air to Room" - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"hBV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance{ - name = "Ordnance Lab Maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/science/ordnance) -"hCd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"hCl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/newscaster/directional/east, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"hCr" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit/old, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/bed, -/obj/item/bedsheet/brown, -/obj/item/radio/intercom/prison/directional/east, -/turf/open/floor/iron/showroomfloor, -/area/station/security/brig) -"hCK" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/orange, -/obj/item/restraints/handcuffs, -/obj/item/reagent_containers/spray/pepper, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"hCV" = ( -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - color = "#c45c57"; - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"hDa" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"hDy" = ( -/obj/structure/grille/broken, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"hDB" = ( -/turf/closed/wall/r_wall, -/area/station/tcommsat/server) -"hDC" = ( -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/toilet/restrooms) -"hDK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"hDV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos) -"hDX" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"hEa" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "applebush" - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/central/fore) -"hEh" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"hEk" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/wrapping_paper{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/stack/wrapping_paper{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/radio/intercom/directional/north, -/obj/item/storage/box/shipping, -/turf/open/floor/iron/dark, -/area/station/cargo/sorting) -"hEw" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/item/stamp/law{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/lawoffice) -"hEy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "justiceshutter"; - name = "Justice Shutter"; - dir = 4 - }, -/turf/open/floor/plating, -/area/station/security/execution/education) -"hEE" = ( -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/structure/flora/bush/grassy/style_random, -/obj/structure/flora/bush/pale/style_random, -/turf/open/misc/asteroid, -/area/station/maintenance/aft) -"hEH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/east, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"hEI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/pdapainter/medbay, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"hEQ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/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/secondary/exit/departure_lounge) -"hEU" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"hEV" = ( -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"hEY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Air to Distro" - }, -/obj/structure/sign/warning/fire/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Atmospherics Distribution Loop"; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/pumproom) -"hFm" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hFy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/station/science/ordnance/office) -"hGa" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos) -"hGf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/command/bridge) -"hGm" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/extinguisher_cabinet/directional/south{ - pixel_x = 26 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/virology) -"hGC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/rnd/bepis, -/obj/effect/turf_decal/box/white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/storage) -"hGX" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"hHg" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/cryo_cell{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) -"hHj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"hHm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/transfer) -"hHt" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/item/storage/crayons, -/obj/item/clothing/under/color/grey{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/under/color/grey, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"hHL" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/fore) -"hHM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"hHP" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad/secure, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai_upload) -"hIm" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/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/secondary/exit/departure_lounge) -"hIq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/geneticist, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/genetics) -"hIs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/mob/living/simple_animal/hostile/retaliate/ghost, -/turf/open/floor/wood, -/area/station/maintenance/starboard/fore) -"hIS" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/rnd_all, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/obj/structure/sign/warning/secure_area/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"hIY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"hJa" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/checkpoint/supply) -"hJm" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"hJp" = ( -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/bot, -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/warden) -"hJy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/vault{ - name = "Vault" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/locked, -/obj/structure/cable, -/obj/effect/landmark/navigate_destination, -/obj/effect/mapping_helpers/airlock/access/all/supply/vault, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"hJz" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stock_parts/cell/high, -/obj/item/screwdriver{ - pixel_y = 18 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/commons/storage/primary) -"hJC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/mob/living/simple_animal/bot/cleanbot/medbay{ - maints_access_required = list(22); - name = "Deacon Scrubsy" - }, -/turf/open/floor/iron/smooth_large, -/area/station/maintenance/department/chapel/monastery) -"hJD" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/security_all, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"hJZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/flasher/directional/north{ - id = "AI"; - name = "Meatbag Pacifier" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/camera/directional/north{ - c_tag = "AI Chamber SMES"; - name = "core camera"; - network = list("aicore") - }, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"hKc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/security/processing) -"hKg" = ( -/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/cable, -/obj/effect/spawner/random/vending/snackvend, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/starboard) -"hKA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"hKB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/port) -"hKE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"hKQ" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/courtroom) -"hKV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/supply) -"hLj" = ( -/obj/machinery/telecomms/server/presets/security, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"hLr" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/east, -/obj/machinery/airalarm/directional/south, -/obj/item/storage/toolbox/emergency{ - pixel_y = 4 - }, -/obj/item/wrench, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/east{ - c_tag = "Vacant Commissary"; - name = "cargo camera"; - network = list("ss13","qm") - }, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron/dark, -/area/station/commons/vacant_room/commissary) -"hLO" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2"; - name = "on ramp" - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"hLS" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"hMo" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/iron/dark, -/area/station/cargo/sorting) -"hMx" = ( -/obj/structure/cable, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/department/security) -"hMN" = ( -/turf/closed/wall, -/area/station/service/chapel/funeral) -"hMW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"hMZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor/preopen{ - id = "brige-maint"; - name = "Bridge Blast Door" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-passthrough" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance{ - name = "Command Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/bridge) -"hNi" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/starboard) -"hNj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/directional/south, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"hNk" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/item/kirbyplants/potty, -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/rd) -"hNy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hNF" = ( -/obj/effect/turf_decal/loading_area, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/barricade/wooden/crude, -/obj/machinery/door/window/left/directional/south{ - name = "Cage Door" - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"hNI" = ( -/turf/closed/wall/rust, -/area/station/security/detectives_office) -"hNL" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"hNR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Teleporter Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/teleporter, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"hOc" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/storage) -"hOh" = ( -/obj/machinery/door/airlock/engineering{ - name = "Port Quarter Solar Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/solars/port/aft) -"hOm" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/obj/structure/transit_tube/horizontal, -/obj/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/service/chapel/dock) -"hOs" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"hOt" = ( -/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/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"hOE" = ( -/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/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"hOH" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/firealarm/directional/south, -/obj/machinery/light/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/toilet/restrooms) -"hOJ" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"hOK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/dock) -"hON" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 4 - }, -/obj/item/storage/belt/utility, -/obj/machinery/airalarm/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Engineering Desk"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/obj/item/storage/box/donkpockets{ - pixel_y = 5 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) -"hOU" = ( -/obj/machinery/door/airlock/external{ - name = "Security Escape Pod"; - space_dir = 2 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/aft) -"hOY" = ( -/obj/structure/bookcase/random/reference, -/obj/item/toy/figure/psychologist{ - pixel_y = 18 - }, -/turf/open/floor/carpet, -/area/station/medical/psychology) -"hPp" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet{ - name = "medical locker" - }, -/obj/structure/grille/broken, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"hPx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"hPz" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/maintenance/port/greater) -"hPG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/education) -"hPR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"hPV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"hPW" = ( -/turf/closed/wall/r_wall/rust, -/area/station/tcommsat/computer) -"hPX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"hPY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"hQa" = ( -/obj/item/radio/intercom/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/transfer) -"hQg" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-03" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"hQs" = ( -/obj/structure/chair, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"hQA" = ( -/obj/structure/sink{ - pixel_y = 20 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"hQF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"hQL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail{ - name = "hydroponics sorting disposal pipe"; - sortType = 21 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"hQP" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/engine/telecomms, -/area/station/tcommsat/server) -"hRa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"hRf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/central/fore) -"hRg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"hRj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix to Ports" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hRo" = ( -/obj/machinery/door/poddoor/preopen{ - id = "transittube_ai"; - name = "Transit Tube Blast Door" - }, -/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, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"hRG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/storage) -"hRO" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"hRU" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stock_parts/cell/high, -/turf/open/floor/iron/dark, -/area/station/science/lab) -"hRY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"hRZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/service/library) -"hSa" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/bed, -/obj/item/bedsheet/brown, -/obj/item/radio/intercom/prison/directional/east, -/turf/open/floor/iron/showroomfloor, -/area/station/security/brig) -"hSt" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"hSv" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/turf/closed/wall, -/area/station/engineering/atmos) -"hSy" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/west, -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/customs) -"hSG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "detective_shutters"; - name = "Detective's Office Shutter"; - dir = 8 - }, -/turf/open/floor/plating, -/area/station/security/detectives_office) -"hTb" = ( -/obj/structure/closet/secure_closet/research_director, -/obj/effect/turf_decal/delivery, -/obj/item/gun/energy/e_gun/mini, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Research Director's Office"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"hTj" = ( -/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/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"hTz" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"hTB" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/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/event_spawn, -/obj/item/kirbyplants{ - icon_state = "plant-03" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"hTK" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics/garden) -"hTQ" = ( -/obj/structure/plasticflaps/opaque, -/turf/open/floor/plating, -/area/station/security/prison/shower) -"hUw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/mining{ - name = "Cargo Bay" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron/dark, -/area/station/cargo/office) -"hUy" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/command/captain, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/captain/private) -"hUA" = ( -/obj/machinery/computer/secure_data, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"hUC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/three, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"hUD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/south, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"hUE" = ( -/obj/structure/chair/pew{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/chapel{ - dir = 1 - }, -/area/station/service/chapel) -"hUL" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"hUM" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"hUW" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"hVc" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/storage/backpack/satchel/eng, -/obj/item/wirecutters, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"hVj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/oil/slippery, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"hVl" = ( -/obj/structure/sign/warning/electric_shock/directional/south, -/obj/structure/flora/grass/jungle/a/style_random, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"hVF" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - 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, -/area/station/hallway/secondary/exit/departure_lounge) -"hVH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"hVL" = ( -/obj/machinery/computer/slot_machine, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot_white, -/obj/structure/sign/poster/contraband/smoke{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"hVT" = ( -/obj/structure/flora/bush/flowers_br/style_random, -/obj/machinery/light/directional/east, -/turf/open/floor/grass, -/area/station/service/chapel) -"hVU" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/spawner/random/engineering/tracking_beacon, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"hVY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate, -/obj/effect/spawner/random/medical/memeorgans, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"hVZ" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/delivery, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"hWw" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/west, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"hWD" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"hXK" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/directions/security{ - pixel_y = -40 - }, -/obj/structure/sign/directions/medical{ - dir = 8; - pixel_y = -32 - }, -/obj/structure/sign/directions/command{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"hXL" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/computer/station_alert, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/requests_console/directional/east{ - department = "Atmospherics"; - departmentType = 3; - name = "Atmospherics Requests Console" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage/gas) -"hXY" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/closet/secure_closet/personal, -/obj/item/storage/backpack, -/obj/item/storage/backpack/satchel, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/machinery/airalarm/directional/north, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"hYa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"hYo" = ( -/obj/structure/bed, -/obj/item/bedsheet/red, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/landmark/start/prisoner, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"hYu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"hYw" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"hYY" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants{ - icon_state = "plant-11" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/transfer) -"hZd" = ( -/obj/structure/flora/tree/jungle/style_random, -/turf/open/floor/grass, -/area/station/service/chapel) -"hZg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/south, -/obj/machinery/suit_storage_unit/security, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"hZi" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/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/showroomfloor, -/area/station/command/heads_quarters/rd) -"hZn" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall, -/area/station/science/xenobiology) -"hZp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/hallway/secondary/service) -"hZr" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/genetics) -"hZt" = ( -/obj/structure/chair/sofa/right{ - color = "#c45c57"; - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/bar/atrium) -"hZP" = ( -/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/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-maint-passthrough" - }, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"hZS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/storage/art) -"hZT" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"iaf" = ( -/obj/machinery/door/window{ - atom_integrity = 300; - base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - name = "Primary AI Core Access"; - req_access = list("ai_upload") - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "AI Core shutters"; - name = "AI Core Shutter"; - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/light_switch/directional/north{ - pixel_x = 8 - }, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"iai" = ( -/obj/machinery/vending/hydronutrients, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/siding/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics/garden) -"ias" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/vending_refill/cigarette, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/structure/mirror/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"iaw" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/directions/engineering{ - pixel_y = -40 - }, -/obj/structure/sign/directions/supply{ - dir = 4; - pixel_y = -32 - }, -/obj/structure/sign/directions/science{ - dir = 4; - pixel_y = -24 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"iay" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"iaH" = ( -/obj/structure/chair/wood/wings{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/theater) -"iaX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"iaY" = ( -/obj/structure/closet/l3closet/security, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/aft) -"ibd" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/left/directional/west{ - name = "Kitchen Service Desk"; - req_access = list("kitchen") - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/item/storage/bag/plants, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/green/corner, -/obj/machinery/door/window/right/directional/east{ - name = "Kitchen Service Desk"; - req_access = list("hydroponics") - }, -/turf/open/floor/iron, -/area/station/service/kitchen) -"ibi" = ( -/obj/machinery/biogenerator, -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/siding/green{ - dir = 4 - }, -/obj/item/reagent_containers/glass/watering_can, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics/garden) -"ibm" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/hostile/asteroid/hivelord, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"ibJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/ai_monitored/security/armory) -"ibL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/item/circular_saw, -/obj/item/surgicaldrill{ - pixel_y = 5 - }, -/obj/item/healthanalyzer, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/aft) -"ibN" = ( -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"ibU" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/sign/warning/electric_shock/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"icp" = ( -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/security/brig) -"icw" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 6 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 6 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 6 - }, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson/engine, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/engineering/storage_shared) -"icx" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/rust, -/area/space/nearstation) -"icG" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"icJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/landmark/event_spawn, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/command/gateway) -"icQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Security Secways" - }, -/obj/effect/turf_decal/box, -/obj/vehicle/ridden/secway, -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/showroomfloor, -/area/station/security/office) -"icU" = ( -/obj/structure/sign/departments/security/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/security/execution/transfer) -"idq" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"idF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/central/fore) -"idM" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/modular_computer/console/preset/cargochat/cargo{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/office) -"idQ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/disposal/bin, -/obj/machinery/newscaster/directional/west, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/port) -"idY" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Morgue Maintenance" - }, -/obj/structure/disposalpipe/segment, -/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/medical/morgue, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"ieb" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Xenobiology Euthanization Chamber"; - name = "xenobiology camera"; - network = list("ss13","rd","xeno") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/circuit/telecomms, -/area/station/science/xenobiology) -"ieg" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/security/brig) -"ieu" = ( -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/office) -"ieI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/teleporter) -"ieV" = ( -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/genetics) -"ifd" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 4 - }, -/obj/machinery/bluespace_vendor/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"ifu" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/safe{ - pixel_x = 3 - }, -/obj/item/book{ - desc = "An undeniably handy book."; - icon_state = "bookknock"; - name = "A Simpleton's Guide to Safe-cracking with Stethoscopes" - }, -/obj/item/stack/spacecash/c500{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stack/spacecash/c1000, -/obj/item/gun/ballistic/automatic/pistol/deagle/gold, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"ifv" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/mmi, -/obj/item/bodypart/chest/robot{ - pixel_y = 4 - }, -/obj/item/bodypart/r_leg/robot{ - pixel_x = 6 - }, -/obj/item/bodypart/r_arm/robot{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/bodypart/l_leg/robot{ - pixel_x = -6 - }, -/obj/item/bodypart/l_arm/robot{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/bodypart/head/robot, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"ifw" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"ifB" = ( -/obj/structure/sign/warning/no_smoking{ - pixel_x = 30 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"ifQ" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/security/prison) -"ifX" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/corner{ - dir = 1 - }, -/obj/machinery/disposal/delivery_chute{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"igg" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/blue{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/storage) -"igl" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/service/library) -"igo" = ( -/obj/machinery/vending/wardrobe/jani_wardrobe, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Custodial Closet"; - name = "service camera" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/service/janitor) -"igC" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"igR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sign/poster/official/fruit_bowl{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/port) -"ihg" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/satellite) -"iht" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/iron, -/area/station/cargo/storage) -"ihD" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"ihU" = ( -/turf/closed/wall/rust, -/area/station/cargo/sorting) -"iio" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"iiQ" = ( -/obj/effect/turf_decal/box, -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/mirror/directional/west, -/obj/machinery/newscaster/directional/south{ - pixel_x = -28 - }, -/obj/machinery/light/small/directional/east, -/obj/effect/landmark/start/assistant, -/obj/effect/landmark/start/hangover, -/obj/machinery/button/door/directional/east{ - id = "Unit_2Privacy"; - name = "Unit 2 Privacy Toggle"; - pixel_y = -8 - }, -/obj/machinery/button/door/directional/east{ - id = "Unit_2"; - name = "Unit2 Privacy Lock"; - normaldoorcontrol = 1; - pixel_y = 8; - specialfunctions = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/toilet/restrooms) -"ijc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/station/engineering/gravity_generator) -"ijd" = ( -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - color = "#c45c57"; - dir = 1 - }, -/obj/effect/landmark/start/head_of_security, -/turf/open/floor/carpet/red, -/area/station/command/heads_quarters/hos) -"ijl" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/office) -"ijr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"iju" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/virology) -"ijz" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/dresser, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"ijF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"ijG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"ijH" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"ijL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stock_parts/cell/high, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"ijN" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/bomb) -"ijQ" = ( -/turf/closed/wall, -/area/station/service/bar/atrium) -"ike" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"ikg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/monastery) -"ikh" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Mix to Distro" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"iko" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/cargo/storage) -"ikr" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Psychology Maintenance" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/medical/psychology, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"ikt" = ( -/obj/structure/plaque/static_plaque/atmos, -/turf/closed/wall/rust, -/area/station/engineering/atmos) -"iku" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/locker) -"ikx" = ( -/obj/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/transit_tube/station/dispenser/reverse{ - dir = 1 - }, -/turf/open/floor/catwalk_floor/iron, -/area/station/service/chapel/dock) -"ikE" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/locker) -"ikH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"ikO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"ikR" = ( -/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/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"ikT" = ( -/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/security/detectives_office) -"ikX" = ( -/obj/structure/sign/poster/contraband/missing_gloves, -/turf/closed/wall/rust, -/area/station/maintenance/port/fore) -"ikZ" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/stock_parts/capacitor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"ill" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/computer/teleporter{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"iln" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"ilp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/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/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"ils" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/station_engineer, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) -"ilv" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/machinery/newscaster/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Security Office Computers" - }, -/turf/open/floor/iron/dark, -/area/station/security/office) -"ilJ" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/commons/fitness/recreation) -"imo" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/sign/directions/science{ - dir = 4; - pixel_y = 40 - }, -/obj/structure/sign/directions/supply{ - dir = 4; - pixel_y = 32 - }, -/obj/structure/sign/directions/engineering{ - dir = 4; - pixel_y = 24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"imM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"imS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "rdprivacy"; - name = "Director's Privacy Blast Door" - }, -/turf/open/floor/plating, -/area/station/command/heads_quarters/rd) -"ine" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"inf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/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/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"ing" = ( -/turf/closed/wall/rust, -/area/station/service/chapel/dock) -"inw" = ( -/obj/structure/flora/grass/jungle/b/style_random, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/misc/asteroid, -/area/space/nearstation) -"inE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"inF" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"inT" = ( -/obj/structure/chair/sofa/left{ - color = "#c45c57"; - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/dark, -/area/station/service/bar/atrium) -"ios" = ( -/turf/closed/wall/rust, -/area/station/service/kitchen) -"ioK" = ( -/obj/machinery/computer/upload/borg{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"ioT" = ( -/obj/structure/lattice/catwalk, -/obj/structure/sign/warning/secure_area/directional/west{ - pixel_y = -32 - }, -/obj/structure/transit_tube/horizontal{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating, -/area/space/nearstation) -"ipb" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/engine/telecomms, -/area/station/tcommsat/server) -"ipf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/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, -/area/station/engineering/hallway) -"ipg" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/hallway/primary/aft) -"ipo" = ( -/obj/machinery/chem_master/condimaster{ - desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; - name = "BrewMaster 2199" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"ipA" = ( -/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/highsecurity{ - name = "AI Upload" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai_upload) -"ipC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"ipD" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/station/solars/port/aft) -"ipE" = ( -/obj/structure/frame/computer{ - anchored = 1; - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"ipI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/radio/intercom/directional/east, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/dark, -/area/station/service/library) -"ipJ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Mix Outlet Pump" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"ipL" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/crowbar/red, -/obj/item/reagent_containers/glass/watering_can, -/obj/item/circuitboard/machine/biogenerator, -/obj/item/wirecutters, -/obj/item/wrench, -/obj/item/shovel/spade, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"ipO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"ipQ" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/stack/rods/fifty, -/obj/item/storage/box/lights/mixed, -/obj/machinery/light/directional/south, -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/construction/mining/aux_base) -"iqd" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/medical_all, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"iqk" = ( -/obj/structure/flora/rock/pile/style_random{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 8 - }, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"iqN" = ( -/obj/structure/girder, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"iqQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/structure/cable, -/turf/open/floor/iron/smooth_large, -/area/station/maintenance/department/chapel/monastery) -"iqU" = ( -/obj/machinery/door/airlock/maintenance{ - id_tag = "bankvault" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/barricade/wooden/crude, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"irg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/engineering/storage/tcomms) -"iri" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"irj" = ( -/obj/structure/sign/departments/security, -/turf/closed/wall, -/area/station/security/courtroom) -"irE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/teleport/station, -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"irG" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/light_switch/directional/north, -/obj/machinery/light/directional/north, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"irJ" = ( -/obj/effect/spawner/random/structure/crate, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"irL" = ( -/obj/structure/table, -/obj/machinery/processor{ - pixel_y = 6 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"irM" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"irN" = ( -/obj/structure/cable, -/obj/structure/flora/bush/sparsegrass/style_random{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/structure/flora/bush/sparsegrass/style_random, -/turf/open/floor/grass, -/area/station/security/prison/garden) -"irO" = ( -/obj/structure/rack, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/electropack, -/obj/item/assembly/signaler{ - pixel_x = 6 - }, -/obj/effect/turf_decal/bot, -/obj/structure/reagent_dispensers/wall/peppertank/directional/east, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"irQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"irZ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/robotics/lab) -"isw" = ( -/obj/machinery/chem_heater/withbuffer, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/button/door/directional/north{ - id = "xeno1"; - name = "Creature Cell 1 Toggle"; - pixel_x = -24; - req_access = list("xenobiology") - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"isD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"isO" = ( -/obj/structure/closet/secure_closet/atmospherics, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"isS" = ( -/turf/open/floor/iron/grimy, -/area/station/security/prison) -"itn" = ( -/turf/closed/wall/r_wall/rust, -/area/station/ai_monitored/command/nuke_storage) -"itr" = ( -/obj/structure/table/glass, -/obj/item/clipboard{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/book/manual/wiki/chemistry{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/book/manual/wiki/grenades, -/obj/item/toy/figure/chemist, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/pharmacy) -"itw" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/power/shieldwallgen, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/power/shieldwallgen, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"itC" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"itF" = ( -/obj/structure/chair/comfy/black, -/obj/effect/landmark/start/chaplain, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"itR" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"itZ" = ( -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/grassy/style_random, -/obj/structure/flora/bush/flowers_pp/style_random, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/grass, -/area/station/medical/psychology) -"iug" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/plasma_input{ - dir = 1 - }, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"iun" = ( -/obj/machinery/door/airlock/medical{ - id_tag = "Shower_1"; - name = "Shower 1" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/commons/toilet/restrooms) -"ius" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/station/maintenance/starboard/fore) -"iuC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Cabin_4Privacy"; - name = "Cabin 4 Privacy Shutter" - }, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"iuE" = ( -/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 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/loading_area, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/office) -"iuH" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"iuP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/computer/teleporter{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/button/door/directional/east{ - id = "teleshutter"; - name = "Teleporter Shutter Toggle"; - req_access = list("command") - }, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"ivm" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/firecloset, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/port) -"ivF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/central) -"ivG" = ( -/turf/closed/wall/rust, -/area/station/command/bridge) -"ivK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters{ - id = "virologysurgery"; - name = "Virology Privacy Shutters"; - dir = 1 - }, -/turf/open/floor/plating, -/area/station/medical/virology) -"ivP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/stack/sheet/iron/fifty, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"ivU" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/maintenance/department/security) -"ivY" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Departures Cargo Dock"; - name = "shuttle camera" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"iwo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/obj/structure/grille/broken, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"iwB" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - 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/showroomfloor, -/area/station/security/checkpoint/science/research) -"iwL" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/security/processing) -"iwM" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"iwS" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"iwT" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"ixc" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine/telecomms, -/area/station/tcommsat/server) -"ixf" = ( -/obj/machinery/porta_turret/ai, -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/box/red, -/obj/structure/cable, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/ai_monitored/turret_protected/aisat_interior) -"ixi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot_white, -/obj/machinery/light/small/directional/west, -/obj/structure/rack, -/obj/item/storage/toolbox/emergency{ - pixel_y = 5 - }, -/obj/item/clothing/under/color/grey, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"ixj" = ( -/obj/machinery/modular_computer/console/preset/engineering, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/west, -/obj/machinery/requests_console/directional/west{ - department = "Engineering"; - departmentType = 4; - name = "Engineering Requests Console" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) -"ixn" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/machinery/door/morgue{ - name = "Coffin Storage"; - req_access = list("chapel_office") - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"ixo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/central) -"ixx" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"ixB" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/department/chapel/monastery) -"ixN" = ( -/obj/structure/sign/painting/library{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/library) -"ixO" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"iyd" = ( -/obj/machinery/door/poddoor/incinerator_atmos_main, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"iyi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/closet/emcloset/anchored, -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"iyk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"iyB" = ( -/obj/machinery/atmospherics/components/binary/valve/layer4, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"iyF" = ( -/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/cable, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"iyI" = ( -/turf/closed/wall, -/area/station/medical/virology) -"iyM" = ( -/obj/effect/turf_decal/tile/red, -/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) -"iyT" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/folder/red, -/obj/item/restraints/handcuffs, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"iza" = ( -/turf/closed/wall/rust, -/area/station/maintenance/port/lesser) -"ize" = ( -/obj/structure/flora/bush/pale/style_random, -/obj/machinery/newscaster/directional/north, -/obj/machinery/light/small/directional/north, -/obj/structure/flora/bush/flowers_pp/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"izf" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor{ - id = "Secure Storage"; - name = "Secure Storage" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"izt" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"izu" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"izv" = ( -/obj/structure/closet{ - name = "chapel locker" - }, -/obj/item/storage/backpack/cultpack{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/under/color/black, -/obj/effect/turf_decal/bot, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"izL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/reagent_containers/blood/random{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random{ - pixel_x = -4; - pixel_y = -4 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"izM" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/port) -"izU" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/vending/clothing, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"iAC" = ( -/obj/machinery/suit_storage_unit/rd, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"iAE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"iAR" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/structure/spider/stickyweb, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"iAU" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/clothing/head/welding{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/head/welding, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"iAX" = ( -/obj/structure/table, -/obj/item/storage/toolbox/electrical, -/obj/item/multitool, -/turf/open/floor/engine, -/area/station/engineering/storage/tech) -"iBc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/holosign/barrier/atmos, -/turf/open/floor/plating/airless, -/area/station/maintenance/space_hut/plasmaman) -"iBh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/genetics) -"iBi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"iBm" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 2; - name = "virology sorting disposal pipe"; - sortType = 27 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/virology) -"iBt" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xeno3"; - name = "Creature Cell 3" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"iBv" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"iBy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/turf/open/floor/iron/dark, -/area/station/security/warden) -"iBz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"iBD" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"iBH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/engine/telecomms, -/area/station/tcommsat/server) -"iBV" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"iBY" = ( -/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/cable, -/obj/structure/sign/poster/contraband/random/directional/west, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"iCK" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2"; - name = "mail belt" - }, -/obj/structure/disposalpipe/junction/flip, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/cargo/sorting) -"iCP" = ( -/obj/machinery/door/airlock/external{ - name = "Brig Shuttle Airlock" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"iCV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/exam_room) -"iCW" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/machinery/camera/directional/north{ - c_tag = "Departures Lounge"; - name = "shuttle camera" - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"iDh" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Upload"; - location = "Science"; - name = "science navigation beacon" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"iEi" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/office) -"iEr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/light/directional/west, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"iEu" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/random/engineering/atmospherics_portable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/crew_quarters/bar) -"iEy" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sign/poster/official/cohiba_robusto_ad{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/matches{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/lighter{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/lighter, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"iEB" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/station/cargo/warehouse) -"iEG" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"iFa" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"iFd" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/rust, -/area/station/maintenance/starboard) -"iFe" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/window/brigdoor/right/directional/north{ - id = "Cell 3"; - name = "Cell 3"; - req_access = list("security") - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/brig) -"iFE" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"iFI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/machinery/door/window/right/directional/west{ - name = "Library Desk"; - req_access = list("library") - }, -/obj/item/clipboard, -/obj/item/toy/figure/curator, -/obj/item/pen/fountain, -/turf/open/floor/iron/dark, -/area/station/service/library) -"iFK" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 9 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/storage) -"iFR" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"iFU" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"iGg" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/maintenance/aft) -"iGx" = ( -/obj/structure/table/bronze, -/obj/item/stack/sheet/bronze{ - amount = 50 - }, -/turf/open/floor/bronze, -/area/station/maintenance/department/chapel) -"iGD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/table, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/machinery/status_display/ai/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"iGG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"iGI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/command{ - name = "Chief Medical Officer's Office" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/medical/cmo, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"iGK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"iGT" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/storage/box/lights/mixed{ - pixel_y = 5 - }, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/item/storage/box/shipping{ - pixel_x = -4; - pixel_y = -4 - }, -/turf/open/floor/iron/dark, -/area/station/commons/storage/primary) -"iHq" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"iHC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"iHG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"iHL" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/science/research) -"iHN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"iHO" = ( -/obj/structure/closet/crate/coffin, -/obj/effect/turf_decal/bot_white, -/obj/effect/mob_spawn/corpse/human/skeleton, -/turf/open/floor/iron/dark/textured_large, -/area/station/service/chapel/funeral) -"iHP" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/office) -"iHT" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"iHY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/west, -/obj/structure/sign/departments/botany/directional/west, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"iIl" = ( -/obj/effect/turf_decal/stripes/line, -/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/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"iIp" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"iIF" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/glasses/science{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/glasses/science, -/obj/item/storage/pill_bottle/epinephrine, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/pharmacy) -"iIP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"iIX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/filingcabinet/employment, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south, -/obj/machinery/button/door/directional/east{ - id = "lawyer_shutters"; - name = "Law Office Shutters Toggle"; - req_access = list("lawyer") - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/service/lawoffice) -"iJf" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/sign/warning/no_smoking{ - pixel_x = -28 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Mech Bay"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/science/robotics/mechbay) -"iJg" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"iJu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/warning/xeno_mining/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"iJv" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"iJy" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"iJN" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"iJO" = ( -/obj/structure/reflector/single/anchored{ - dir = 10 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"iJQ" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/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) -"iJR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"iJV" = ( -/obj/effect/landmark/start/chaplain, -/turf/open/floor/cult, -/area/station/service/chapel/office) -"iKg" = ( -/turf/closed/wall/rust, -/area/station/engineering/main) -"iKn" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/processor/slime, -/obj/machinery/button/door/directional/south{ - id = "xeno4"; - name = "Creature Cell 4 Toggle"; - pixel_x = 24; - req_access = list("xenobiology") - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"iKq" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs) -"iKy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/central/fore) -"iKN" = ( -/obj/structure/table, -/obj/item/multitool/circuit{ - pixel_x = -6 - }, -/obj/item/multitool/circuit, -/obj/item/multitool/circuit{ - pixel_x = 6 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"iKT" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/holywater, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"iKX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"iLj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"iLz" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/keycard_auth, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"iLD" = ( -/obj/structure/table/wood/fancy, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"iLQ" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"iLS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/central) -"iLT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/space_heater, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"iLX" = ( -/obj/structure/table, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the RD's goons from the safety of his office."; - dir = 1; - name = "Research Monitor"; - network = list("rd") - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science/research) -"iMr" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/psychology) -"iMx" = ( -/obj/effect/turf_decal/siding/wood, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/carpet/red, -/area/station/service/chapel) -"iMA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"iMG" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/east, -/obj/effect/spawner/random/structure/crate, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"iMJ" = ( -/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 - }, -/obj/machinery/door/window{ - atom_integrity = 300; - base_state = "leftsecure"; - dir = 8; - icon_state = "leftsecure"; - layer = 4.1; - name = "Tertiary AI Core Access"; - pixel_x = -3; - req_access = list("ai_upload") - }, -/turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai) -"iMN" = ( -/obj/machinery/vending/boozeomat, -/turf/closed/wall, -/area/station/service/bar) -"iMX" = ( -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"iNa" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/turf/open/floor/wood, -/area/station/cargo/qm) -"iNc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/sign/poster/contraband/random/directional/north, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"iNh" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Xenobiology Cell 4"; - name = "xenobiology camera"; - network = list("ss13","rd","xeno") - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"iNi" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/starboard) -"iNm" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/obj/effect/landmark/event_spawn, -/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/engineering/atmos) -"iNU" = ( -/obj/machinery/door/firedoor, -/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 = "Robotics Lab" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/robotics, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"iNZ" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/flasher/directional/west{ - id = "Cell 5"; - name = "Prisoner Pacifier" - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/brig) -"iOb" = ( -/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/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/duct, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"iOD" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"iOR" = ( -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/transfer) -"iOW" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"iPa" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory) -"iPw" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/recharge_floor, -/area/station/science/robotics/mechbay) -"iPY" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"iQd" = ( -/obj/effect/turf_decal/bot, -/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, -/turf/open/floor/iron/showroomfloor, -/area/station/science/lab) -"iQg" = ( -/obj/machinery/door/airlock/grunge{ - name = "Prison Forestry" - }, -/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/security/prison/garden) -"iQn" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/item/stack/sheet/iron/ten, -/obj/item/stack/cable_coil, -/obj/item/storage/backpack/duffelbag/sec/surgery{ - pixel_y = 5 - }, -/obj/item/wirecutters, -/obj/machinery/firealarm/directional/east, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"iQx" = ( -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/research/glass/incinerator/ordmix_interior{ - name = "Burn Chamber Interior Airlock" - }, -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_ordmix{ - pixel_x = -32 - }, -/turf/open/floor/engine, -/area/station/science/ordnance/burnchamber) -"iQK" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/cargo/warehouse) -"iQN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"iQT" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"iQY" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/box, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - name = "HoP sorting disposal pipe"; - sortType = 15 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"iRq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"iRJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/closet/secure_closet/medical2, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/surgery/aft) -"iRR" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/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/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/research_director, -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/rd) -"iSb" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor"; - name = "Supply Dock Loading Door" - }, -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad"; - name = "off ramp" - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"iSw" = ( -/turf/closed/wall/rust, -/area/station/security/checkpoint/customs) -"iSx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"iSC" = ( -/obj/structure/cable, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"iSG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"iSO" = ( -/obj/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/service/chapel/dock) -"iSQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"iSS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"iSU" = ( -/obj/machinery/computer/security{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/radio/intercom/directional/west, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"iTq" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"iTs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"iTy" = ( -/obj/machinery/computer/security/telescreen/entertainment/directional/south, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/light/small/directional/south, -/obj/item/clipboard, -/obj/item/toy/figure/mime{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/structure/table/wood/fancy, -/obj/item/toy/dummy{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/toy/figure/clown, -/turf/open/floor/iron, -/area/station/service/theater) -"iTB" = ( -/obj/structure/rack, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/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) -"iTL" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/bomb) -"iTM" = ( -/obj/effect/turf_decal/tile/red{ - 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/security/brig) -"iTQ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs) -"iTW" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/bomb) -"iTZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/spawner/random/structure/steam_vent, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"iUm" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/research) -"iUJ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/flora/bush/flowers_pp/style_random, -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/bush/ferny/style_random, -/obj/structure/flora/bush/sparsegrass/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"iUM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - name = "Service Maintenance" - }, -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/service/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/crew_quarters/bar) -"iUT" = ( -/turf/closed/wall/r_wall/rust, -/area/station/maintenance/starboard/fore) -"iUV" = ( -/obj/structure/rack, -/obj/item/tank/internals/oxygen/empty, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"iVj" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/department/security) -"iVk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"iVl" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/command/bridge) -"iVn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"iVy" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/beacon, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"iVF" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/camera, -/turf/open/floor/wood, -/area/station/maintenance/starboard/fore) -"iVH" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet{ - name = "security locker" - }, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/shoes/jackboots, -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"iVO" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/iron, -/area/station/cargo/office) -"iVR" = ( -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/closed/wall, -/area/station/maintenance/port/lesser) -"iVV" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"iWj" = ( -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/item/wrench, -/obj/machinery/door/window/left/directional/north{ - name = "Emergency Storage"; - req_access = list("command") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/crowbar/red, -/obj/item/clothing/mask/gas, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"iWm" = ( -/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/white{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"iWy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"iWL" = ( -/obj/machinery/firealarm/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/siding/red, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs) -"iWT" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall, -/area/station/hallway/secondary/exit/departure_lounge) -"iXd" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - 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/fore) -"iXx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"iXD" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Xenobiology Cell 3"; - name = "xenobiology camera"; - network = list("ss13","rd","xeno") - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"iXM" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/flasher/directional/west{ - id = "Cell 1"; - name = "Prisoner Pacifier" - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/brig) -"iYa" = ( -/obj/effect/turf_decal/tile/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, -/area/station/commons/locker) -"iYb" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/iron/stairs/right{ - dir = 1 - }, -/area/station/service/chapel/monastery) -"iYf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/virology{ - name = "Operating Theater B" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"iYj" = ( -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"iYq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/item/kirbyplants{ - icon_state = "plant-02"; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/office) -"iYr" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"iYA" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/l3closet/virology, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/camera/directional/north{ - c_tag = "Virology Airlock"; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"iYI" = ( -/obj/effect/turf_decal/arrows, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"iYS" = ( -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/station/security/processing) -"iYW" = ( -/obj/machinery/vending/wardrobe/viro_wardrobe, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"iYY" = ( -/obj/structure/window/reinforced/spawner{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner{ - dir = 1 - }, -/obj/structure/window/reinforced/spawner{ - dir = 8 - }, -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/bush/reed/style_random, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "emmd"; - name = "Emergency Medical Lockdown Shutters"; - dir = 4 - }, -/turf/open/floor/grass, -/area/station/medical/paramedic) -"iZa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard) -"iZm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"iZv" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/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/security/processing) -"iZB" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Air to Ports" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"iZV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/landmark/blobstart, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"iZX" = ( -/obj/structure/chair, -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/north, -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"jam" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/north, -/obj/machinery/medical_kiosk{ - pixel_y = 4 - }, -/obj/effect/turf_decal/box, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/lobby) -"jas" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"jav" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters{ - id = "visitation"; - name = "Visitation Shutters"; - dir = 1 - }, -/obj/machinery/flasher/directional/east{ - id = "visitorflash" - }, -/turf/open/floor/plating, -/area/station/security/execution/transfer) -"jay" = ( -/obj/machinery/conveyor{ - id = "garbage" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/west, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"jaM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/security/office) -"jaR" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"jaW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/office) -"jbf" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/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/fitness/recreation) -"jbg" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jbt" = ( -/turf/closed/wall/mineral/plastitanium, -/area/station/maintenance/starboard) -"jbP" = ( -/obj/structure/flora/rock/pile/style_random, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/misc/asteroid, -/area/space/nearstation) -"jbV" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Armoury External" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"jbZ" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 8; - filter_type = list(/datum/gas/nitrogen) - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"jca" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/bomb) -"jcd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/port) -"jcj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"jck" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"jco" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"jcp" = ( -/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/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"jcs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"jcK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/command/bridge) -"jcN" = ( -/obj/structure/bookcase/random/fiction, -/obj/item/radio/intercom/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/wood, -/area/station/service/library) -"jdl" = ( -/obj/structure/flora/bush/flowers_yw/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"jdp" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Xenobiology Entrance"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"jds" = ( -/turf/closed/wall, -/area/station/service/kitchen) -"jdE" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Fore Hallway Diner"; - name = "fore camera" - }, -/obj/machinery/bluespace_vendor/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"jdL" = ( -/obj/structure/railing, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"jdY" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"jec" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"jes" = ( -/obj/structure/girder, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"jet" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external/glass{ - name = "Monastery External Airlock" - }, -/turf/open/floor/plating, -/area/station/service/chapel) -"jeR" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"jeS" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"jeT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/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/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"jeU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/research) -"jeZ" = ( -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/turf/open/floor/carpet/green, -/area/station/maintenance/port/greater) -"jfc" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"jfy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/rack, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"jfK" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/stack/package_wrap, -/obj/item/storage/secure/briefcase, -/obj/item/hand_labeler, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"jfV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/closet/secure_closet/captains, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/captain) -"jgf" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/station/maintenance/starboard/aft) -"jgn" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/structure/table/optable{ - name = "Robotics Operating Table" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"jgr" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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/structure/disposalpipe/segment, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Courtroom"; - location = "Lockers"; - name = "lockers navigation beacon" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"jgt" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"jgu" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"jgv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/medical/glass{ - name = "Infirmary" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/medical) -"jgy" = ( -/obj/structure/closet/secure_closet/evidence, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"jgz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/bomb) -"jgB" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Kitchen Cold Room Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/bridge) -"jgI" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate, -/obj/item/clothing/shoes/jackboots{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/cowboy/black, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"jgN" = ( -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"jhc" = ( -/obj/structure/table/bronze, -/obj/item/clothing/head/bronze{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/machinery/light/small/directional/east, -/obj/item/toy/clockwork_watch{ - pixel_x = -5 - }, -/turf/open/floor/bronze/filled, -/area/station/maintenance/department/chapel) -"jhg" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/showroomfloor, -/area/station/security/office) -"jhr" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/lobby) -"jhv" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"jhy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"jhz" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"jhB" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) -"jhD" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/light_switch/directional/south, -/obj/structure/disposalpipe/segment{ - 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, -/area/station/cargo/office) -"jhH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/cargo/storage) -"jhN" = ( -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"jhP" = ( -/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/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/security/prison) -"jhX" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/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/showroomfloor, -/area/station/medical/storage) -"jia" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"jij" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"jiq" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/south, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"jiE" = ( -/obj/item/storage/medkit/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/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/structure/table/glass, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"jiJ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/chair/sofa/bench/left, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"jiO" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/office) -"jiR" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/departments/restroom/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"jiS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/starboard) -"jiT" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/light/directional/north, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"jiU" = ( -/obj/machinery/door/airlock/medical{ - id_tag = "Shower_2"; - name = "Shower 2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/commons/toilet/restrooms) -"jjj" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/bluespace_vendor/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"jjs" = ( -/turf/closed/wall/r_wall/rust, -/area/station/maintenance/starboard/aft) -"jju" = ( -/obj/machinery/light/directional/north, -/obj/structure/chair/sofa/bench/left{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/chapel/monastery) -"jjP" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/storage/toolbox/emergency, -/obj/item/wirerod, -/obj/machinery/light/small/directional/north, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"jks" = ( -/obj/effect/turf_decal/bot, -/obj/structure/table, -/obj/item/stack/sheet/iron/ten{ - amount = 5 - }, -/obj/item/assembly/prox_sensor, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/button/door/directional/west{ - id = "sparemech"; - name = "Abandoned Mech Bay Toggle" - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"jkB" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 9 - }, -/turf/closed/wall, -/area/station/engineering/atmos) -"jkW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"jlh" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/central) -"jlw" = ( -/turf/closed/wall, -/area/station/service/bar) -"jlY" = ( -/obj/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/chapel/monastery) -"jmj" = ( -/obj/machinery/bluespace_beacon, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/teleporter) -"jmw" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig) -"jmE" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/starboard) -"jmK" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"jmM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"jnj" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/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/commons/fitness/recreation) -"jnp" = ( -/turf/closed/wall/rust, -/area/station/cargo/drone_bay) -"joh" = ( -/turf/closed/wall/rust, -/area/station/command/heads_quarters/hos) -"jop" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/medical/storage) -"joC" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/carpet/red, -/area/station/service/chapel) -"joK" = ( -/obj/structure/chair/pew{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"joL" = ( -/obj/machinery/firealarm/directional/west, -/obj/structure/dresser, -/turf/open/floor/carpet/royalblue, -/area/station/command/heads_quarters/captain/private) -"joP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig) -"joS" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/structure/reagent_dispensers/water_cooler, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"joY" = ( -/turf/closed/wall/rust, -/area/station/maintenance/disposal) -"jpa" = ( -/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/border_only{ - dir = 8 - }, -/turf/open/floor/iron/stairs/medium{ - dir = 4 - }, -/area/station/service/chapel) -"jpF" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/siding/blue{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"jpM" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) -"jpX" = ( -/obj/machinery/recharge_station, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) -"jqb" = ( -/turf/closed/wall, -/area/station/security/detectives_office) -"jqt" = ( -/obj/machinery/computer/bank_machine, -/obj/structure/sign/warning/secure_area/directional/north, -/obj/machinery/light/small/directional/north, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/ai_monitored/command/nuke_storage) -"jqI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"jqJ" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/clothing/head/chefhat{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/kitchen/rollingpin{ - pixel_x = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"jqS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet/green, -/area/station/maintenance/port/greater) -"jqV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/sign/warning/electric_shock/directional/west{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"jqW" = ( -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"jra" = ( -/obj/machinery/door/poddoor/preopen{ - id = "gravity"; - name = "Gravity Generator Blast Door" - }, -/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/caution/stand_clear, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/aft) -"jre" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/starboard/fore) -"jrh" = ( -/obj/machinery/door/morgue{ - name = "Confession Booth (Public)" - }, -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/wood/parquet, -/area/station/service/chapel) -"jri" = ( -/turf/closed/wall, -/area/station/security/execution/transfer) -"jrr" = ( -/obj/structure/table, -/obj/item/book/manual/hydroponics_pod_people{ - pixel_y = 4 - }, -/obj/item/paper/guides/jobs/hydroponics, -/obj/item/reagent_containers/dropper, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/item/toy/figure/botanist, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"jrs" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line{ - 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/showroomfloor, -/area/station/medical/medbay/central) -"jrR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"jrT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison) -"jsc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light_switch/directional/east{ - pixel_x = 23; - pixel_y = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"jsj" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"jso" = ( -/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/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"jsI" = ( -/obj/structure/holohoop{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/security/prison) -"jsN" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"jtk" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/chair/sofa/bench, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"jtl" = ( -/obj/structure/table, -/obj/machinery/computer/med_data/laptop, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"jtD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/port_gen/pacman, -/obj/structure/sign/warning/no_smoking/directional/north, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/spider/stickyweb, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"jtJ" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"jtL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/security/office) -"juj" = ( -/obj/effect/spawner/random/decoration/glowstick, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/north, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/hallway/primary/aft) -"juq" = ( -/obj/structure/flora/grass/jungle/a/style_random, -/obj/structure/flora/bush/sparsegrass/style_random, -/turf/open/misc/asteroid, -/area/station/hallway/secondary/exit/departure_lounge) -"jus" = ( -/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/caution/stand_clear, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"juL" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/item/radio/intercom/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"juR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/airalarm/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Laser Room Starboard"; - name = "laser room camera"; - network = list("ss13","engine") - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"jvh" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/storage_shared) -"jvl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/processing) -"jvQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"jvR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"jwi" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-passthrough" - }, -/obj/machinery/door/airlock/command{ - name = "Bridge Maintenance" - }, -/obj/machinery/door/poddoor/preopen{ - id = "brige-maint"; - name = "Bridge Blast Door" - }, -/obj/effect/turf_decal/siding/blue/corner{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"jwn" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"jwu" = ( -/obj/machinery/door/firedoor, -/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, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/dark, -/area/station/cargo/storage) -"jwV" = ( -/turf/closed/wall/r_wall/rust, -/area/station/engineering/atmos) -"jxy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/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 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"jya" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"jyr" = ( -/obj/structure/sign/warning/secure_area{ - name = "WARNING: Station Limits" - }, -/turf/closed/wall/rust, -/area/space/nearstation) -"jyF" = ( -/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, -/obj/structure/sign/poster/contraband/random/directional/west, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"jyI" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/turf/open/floor/plastic, -/area/station/hallway/secondary/service) -"jyS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"jzh" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/library) -"jzk" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"jzm" = ( -/obj/structure/closet/secure_closet/atmospherics, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"jzo" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"jzt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L12" - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"jzw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"jzB" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - 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/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/cmo) -"jzF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"jzH" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/engineering/gravity_generator) -"jAc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"jAl" = ( -/obj/machinery/computer/exodrone_control_console{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/cargo/drone_bay) -"jAp" = ( -/turf/open/space, -/area/space) -"jAu" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/carpet/red, -/area/station/service/chapel) -"jAy" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/smooth_large, -/area/station/maintenance/department/chapel/monastery) -"jAF" = ( -/obj/structure/marker_beacon/burgundy{ - name = "landing marker" - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"jBh" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/science/robotics/lab) -"jBi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/engine/telecomms, -/area/station/tcommsat/server) -"jBl" = ( -/obj/structure/table/wood/fancy/blue, -/obj/effect/turf_decal/siding/wood{ - dir = 10 - }, -/obj/machinery/firealarm/directional/west, -/obj/item/reagent_containers/food/drinks/bottle/wine/unlabeled, -/turf/open/floor/carpet/royalblue, -/area/station/service/chapel/office) -"jBr" = ( -/obj/effect/turf_decal/bot, -/obj/structure/ore_box, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"jBs" = ( -/turf/closed/wall/r_wall, -/area/station/security/checkpoint/engineering) -"jBx" = ( -/obj/effect/turf_decal/tile/blue, -/obj/item/clipboard, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/folder/blue, -/obj/item/clothing/glasses/hud/health, -/obj/structure/table/reinforced/rglass, -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/cmo) -"jBy" = ( -/obj/structure/bookcase/random/nonfiction, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"jBN" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/navigate_destination/bridge, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"jBO" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/cryo_cell{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) -"jBR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/door_assembly/door_assembly_eng{ - anchored = 1 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/warehouse) -"jBT" = ( -/obj/machinery/light_switch/directional/east, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/tank/air, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"jCl" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"jCm" = ( -/turf/closed/wall, -/area/station/maintenance/department/crew_quarters/bar) -"jCD" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/obj/structure/sign/poster/contraband/random/directional/south, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"jCP" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"jCZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/insectguts, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/bridge) -"jDs" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/razor, -/turf/open/floor/iron, -/area/station/commons/locker) -"jDy" = ( -/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/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/duct, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"jDF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"jDU" = ( -/obj/effect/turf_decal/loading_area, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"jEd" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/firealarm/directional/west, -/obj/item/clipboard{ - pixel_x = 4 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/item/book/manual/wiki/tcomms, -/obj/item/radio, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"jEp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/theater) -"jEw" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"jEy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/start/customs_agent, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/supply) -"jEC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/engine/telecomms, -/area/station/tcommsat/server) -"jEK" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/station/hallway/secondary/entry) -"jEO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/atmos/storage/gas) -"jFq" = ( -/obj/structure/barricade/wooden/crude, -/obj/machinery/door/airlock/bronze, -/turf/open/floor/bronze, -/area/station/maintenance/department/chapel) -"jFv" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"jFS" = ( -/obj/structure/sign/departments/engineering/directional/east{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/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/aft) -"jFZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"jGt" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/grille/broken, -/obj/effect/spawner/random/structure/crate, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"jGU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"jGW" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"jHm" = ( -/obj/vehicle/ridden/janicart, -/obj/item/key/janitor, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/service/janitor) -"jHo" = ( -/obj/structure/flora/bush/jungle/a/style_random, -/obj/structure/flora/bush/sunny/style_random, -/obj/item/food/grown/banana, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/station/medical/virology) -"jHy" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"jHR" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/sign/warning/vacuum/external/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/frame/computer{ - anchored = 1; - dir = 4 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"jHS" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/virology) -"jHT" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/filled/line, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"jIa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/chaplain, -/turf/open/floor/carpet/red, -/area/station/service/chapel) -"jIg" = ( -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/medical/psychology) -"jID" = ( -/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/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"jIR" = ( -/obj/structure/closet/crate/solarpanel_small, -/obj/effect/turf_decal/delivery, -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"jIV" = ( -/obj/machinery/vending/security, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"jIW" = ( -/obj/structure/chair/pew/right{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark, -/turf/open/floor/iron/chapel{ - dir = 1 - }, -/area/station/service/chapel) -"jIX" = ( -/obj/item/radio/intercom/directional/west{ - freerange = 1; - listening = 0; - name = "Common Channel"; - pixel_y = 4 - }, -/obj/item/radio/intercom/directional/north{ - freerange = 1; - listening = 0; - name = "Custom Channel" - }, -/obj/item/radio/intercom/directional/east{ - freerange = 1; - listening = 0; - name = "Common Channel"; - pixel_y = 4 - }, -/obj/effect/landmark/start/ai, -/obj/machinery/button/door/directional/north{ - id = "AI Core shutters"; - name = "AI Core Shutters Toggle"; - pixel_x = 24; - req_access = list("ai_upload") - }, -/obj/machinery/button/door/directional/north{ - id = "AI Chamber entrance shutters"; - name = "AI Chamber Lockdown"; - pixel_x = -24; - req_access = list("ai_upload") - }, -/turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai) -"jJd" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -7 - }, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -7 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 7 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 7 - }, -/obj/item/reagent_containers/dropper{ - pixel_y = 6 - }, -/obj/item/reagent_containers/dropper, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/machinery/camera/directional/south{ - c_tag = "Chemistry"; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/pharmacy) -"jJh" = ( -/obj/structure/flora/bush/ferny/style_random, -/turf/open/misc/asteroid, -/area/space/nearstation) -"jJs" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig) -"jJx" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron, -/area/station/security/courtroom) -"jJD" = ( -/obj/machinery/power/shieldwallgen/xenobiologyaccess, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/box, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"jJJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"jJN" = ( -/obj/effect/turf_decal/stripes/end, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"jJW" = ( -/obj/item/kirbyplants{ - icon_state = "plant-18" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/lobby) -"jKt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/kirbyplants{ - desc = "After his promotion, he was transferred to Kilo Station to serve as the gateway's protector."; - icon_state = "plant-21"; - name = "rodger" - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron, -/area/station/command/gateway) -"jKv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron, -/area/station/command/bridge) -"jKz" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"jKJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/decoration/glowstick, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"jKQ" = ( -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot_white, -/obj/machinery/camera/directional/north{ - c_tag = "Morgue"; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"jKZ" = ( -/obj/machinery/vending/sustenance, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"jLk" = ( -/obj/machinery/door/airlock/grunge{ - name = "Cell 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, -/area/station/security/prison/safe) -"jLq" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"jLy" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/sign/poster/official/help_others{ - pixel_y = 32 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"jLK" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/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, -/area/station/hallway/primary/central/fore) -"jLM" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/aft) -"jLS" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/structure/window/reinforced, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage/gas) -"jLT" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/science/robotics/mechbay) -"jMa" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/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/showroomfloor, -/area/station/medical/surgery/aft) -"jMo" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"jMF" = ( -/obj/structure/closet/emcloset/anchored, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"jMK" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"jMU" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/pharmacy) -"jMZ" = ( -/obj/machinery/recharge_station, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/robotics/mechbay) -"jNb" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/spawner/random/medical/two_percent_xeno_egg_spawner, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"jNe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"jNn" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/rust, -/area/station/maintenance/starboard) -"jNt" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Arrivals"; - location = "Custodial"; - name = "custodial navigation beacon" - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"jNA" = ( -/obj/item/toy/figure/qm{ - pixel_x = -17 - }, -/obj/machinery/modular_computer/console/preset/id{ - dir = 1 - }, -/obj/machinery/keycard_auth/directional/east{ - pixel_y = 26 - }, -/turf/open/floor/carpet/orange, -/area/station/cargo/qm) -"jNR" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"jNW" = ( -/obj/structure/table/wood, -/obj/item/storage/crayons, -/obj/item/bikehorn/rubberducky, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/wood, -/area/station/service/theater) -"jOb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"jOi" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/supply) -"jOn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/maintenance/starboard/fore) -"jOA" = ( -/obj/machinery/gateway/centerstation, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/command/gateway) -"jOI" = ( -/obj/structure/sign/warning/secure_area{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/closed/wall/r_wall/rust, -/area/station/science/ordnance/bomb) -"jOZ" = ( -/obj/machinery/computer/rdservercontrol, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/server) -"jPq" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/cobweb, -/obj/item/storage/secure/briefcase{ - pixel_y = 4 - }, -/obj/item/radio{ - desc = "An old handheld radio. You could use it, if you really wanted to."; - icon_state = "radio"; - name = "old radio" - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/button/door/directional/north{ - id = "Cabin_4"; - name = "Cabin 4 Privacy Lock"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/wood, -/area/station/commons/locker) -"jPB" = ( -/turf/closed/wall/rust, -/area/station/security/courtroom) -"jPG" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/east, -/obj/item/radio/intercom/directional/east, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"jQh" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"jQn" = ( -/turf/open/floor/plating, -/area/station/security/execution/transfer) -"jQy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"jQE" = ( -/turf/closed/wall, -/area/station/hallway/primary/port) -"jQR" = ( -/obj/structure/barricade/wooden, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"jQT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"jQV" = ( -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/structure/flora/bush/grassy/style_random, -/obj/structure/flora/bush/pale/style_random, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/misc/asteroid, -/area/space/nearstation) -"jQW" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/station/ai_monitored/command/nuke_storage) -"jRe" = ( -/obj/structure/cable, -/obj/structure/chair/office, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"jRv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random/directional/east, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"jRx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron, -/area/station/service/theater) -"jRF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai_upload) -"jRQ" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/ore_silo, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"jRR" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) -"jSu" = ( -/obj/machinery/conveyor{ - id = "garbage" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"jSx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/modular_computer/console/preset/cargochat/science{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/end{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/research) -"jSC" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/rust, -/area/station/maintenance/aft) -"jSE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security{ - name = "Equipment Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"jSF" = ( -/turf/open/floor/carpet/green, -/area/station/cargo/warehouse) -"jSJ" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/starboard) -"jSM" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/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, -/area/station/hallway/primary/aft) -"jTa" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Custodial Closet" - }, -/obj/effect/landmark/navigate_destination, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/janitor, -/turf/open/floor/iron/dark, -/area/station/service/janitor) -"jTc" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/locker) -"jTk" = ( -/obj/structure/flora/rock/pile/style_random{ - pixel_x = -6; - pixel_y = -3 - }, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"jTm" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"jTt" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall/rust, -/area/station/maintenance/port/greater) -"jTu" = ( -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/station/medical/exam_room) -"jUa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"jUi" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/tank/internals/anesthetic{ - pixel_x = -5 - }, -/obj/item/tank/internals/anesthetic{ - pixel_x = -5 - }, -/obj/machinery/vending/wallmed/directional/north{ - pixel_x = -32 - }, -/obj/machinery/light/directional/north, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"jUz" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jUJ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/station/security/office) -"jUU" = ( -/turf/closed/wall/rust, -/area/station/medical/morgue) -"jVf" = ( -/obj/structure/table/glass, -/obj/item/book/manual/wiki/infections{ - pixel_y = 6 - }, -/obj/item/healthanalyzer, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/clothing/glasses/hud/health, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Virology"; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/machinery/requests_console/directional/east{ - department = "Virology"; - name = "Virology Requests Console"; - receive_ore_updates = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"jVA" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"jVD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"jVG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/obj/effect/decal/cleanable/generic, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/department/crew_quarters/bar) -"jVZ" = ( -/obj/structure/water_source/puddle, -/obj/structure/flora/bush/reed/style_random{ - pixel_y = 5 - }, -/turf/open/floor/grass, -/area/station/medical/psychology) -"jWw" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"jWx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"jWD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Cabin_3Privacy"; - name = "Cabin 3 Privacy Shutter" - }, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"jWL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/vending/tool, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/storage_shared) -"jXd" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/toilet/restrooms) -"jXi" = ( -/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/structure/cable, -/obj/structure/sign/poster/contraband/random/directional/west, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"jXk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/command/bridge) -"jXN" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"jXX" = ( -/obj/effect/turf_decal/tile/blue{ - 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, -/area/station/commons/fitness/recreation) -"jYb" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"jYc" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jYd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security{ - name = "Engineering Guard's Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engie_guard, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) -"jYe" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"jYh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/garden) -"jYo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/security/prison) -"jYp" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/storage) -"jYL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"jYT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/pumproom) -"jYX" = ( -/obj/machinery/door/airlock/external/glass{ - name = "Monastery External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/service/chapel) -"jZd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"jZJ" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/clipboard, -/obj/item/paper/crumpled{ - info = "The safes have been locked and scrambled. Three thousand space dollars, a bandolier, a custom shotgun, and a lazarus injector have been safely deposited."; - name = "bank statement" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"kac" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "chem-passthrough" - }, -/obj/machinery/door/airlock/medical/glass{ - name = "Chemistry" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"kan" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"kat" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"kax" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"kay" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/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/aft) -"kaM" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"kaT" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/exam_room) -"kaW" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"kaX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/shaft_miner, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"kbc" = ( -/obj/structure/sign/poster/random/directional/north, -/obj/effect/spawner/random/structure/steam_vent, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/bridge) -"kbf" = ( -/obj/machinery/light/directional/east, -/obj/machinery/status_display/ai/directional/east, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"kbl" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"kbv" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"kbw" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "O2 to Airmix" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"kbx" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"kbC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/camera/directional/north{ - c_tag = "Prison Labor"; - network = list("ss13","prison") - }, -/turf/open/floor/plating, -/area/station/security/prison) -"kbT" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/newscaster/directional/south, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/checker, -/area/station/service/hydroponics) -"kbV" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/storage/box/evidence, -/obj/item/taperecorder{ - pixel_x = 5 - }, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"kbY" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/box, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"kbZ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"kca" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"kcx" = ( -/obj/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/button/door/directional/south{ - id = "kitchenshutters"; - name = "Kitchen Shutter Control"; - pixel_x = -6 - }, -/obj/machinery/light_switch/directional/south{ - pixel_x = 6 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/duct, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"kcy" = ( -/obj/machinery/newscaster/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"kcE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sign/departments/lawyer/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"kcI" = ( -/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/machinery/light_switch/directional/west, -/turf/open/floor/carpet/red, -/area/station/service/chapel) -"kcW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"kcX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"kdr" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/structure/sign/warning/electric_shock/directional/north, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"kdO" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/vending/coffee, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"kem" = ( -/turf/closed/wall/rust, -/area/station/security/processing) -"kep" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Engineering Guard's Office" - }, -/obj/effect/turf_decal/siding/red/corner{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engie_guard, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) -"kex" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"keE" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency{ - pixel_y = 4 - }, -/obj/item/crowbar, -/obj/item/flashlight{ - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Arrivals Storage"; - name = "shuttle camera" - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"keO" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"keP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"kfh" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"kgc" = ( -/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/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-maint-passthrough" - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"kgB" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage_shared) -"kgD" = ( -/obj/machinery/power/solar{ - id = "aftstarboard"; - name = "Aft-Starboard Solar Array" - }, -/obj/effect/turf_decal/box, -/obj/structure/cable, -/turf/open/floor/iron/solarpanel/airless, -/area/station/solars/starboard/aft) -"kgE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Transferring Centre" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/unres, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark, -/area/station/security/processing) -"khe" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"khj" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/cmo) -"kho" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"khy" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall, -/area/station/maintenance/starboard) -"kio" = ( -/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/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"kir" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"kix" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"kiG" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/iron, -/area/station/security/courtroom) -"kiO" = ( -/obj/structure/lattice, -/obj/structure/sign/warning/secure_area/directional/west, -/turf/open/space/basic, -/area/space/nearstation) -"kiW" = ( -/obj/structure/weightmachine/weightlifter, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"kiZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/poster/official/space_cops{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"kji" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/assembly/timer{ - desc = "Used to time things. Works well with contraptions which has to count down. Tick tock. But slightly shifted to the left."; - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/assembly/timer{ - desc = "Used to time things. Works well with contraptions which has to count down. Tick tock. But slightly shifted to the left."; - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/assembly/timer{ - desc = "Used to time things. Works well with contraptions which has to count down. Tick tock. But slightly shifted to the left."; - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/item/screwdriver{ - pixel_y = 5 - }, -/obj/item/stack/cable_coil, -/turf/open/floor/iron/dark, -/area/station/medical/pharmacy) -"kjl" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/item/pen/red{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/toy/figure/hos, -/turf/open/floor/carpet/red, -/area/station/command/heads_quarters/hos) -"kjK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/bridge) -"kkc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"kkg" = ( -/obj/structure/table, -/obj/item/storage/toolbox/electrical{ - pixel_y = 5 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"kkC" = ( -/obj/item/toy/beach_ball{ - pixel_y = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/grass, -/area/station/medical/psychology) -"kkP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"kkV" = ( -/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/security/prison) -"kll" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/obj/item/radio/intercom/directional/north, -/obj/structure/cable, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/science/robotics/mechbay) -"klm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/engine/telecomms, -/area/station/tcommsat/server) -"klp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"klK" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/rack, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/seeds/tower, -/obj/item/seeds/watermelon, -/obj/item/seeds/wheat, -/obj/item/seeds/sugarcane, -/obj/item/seeds/orange, -/obj/item/seeds/grape, -/obj/item/seeds/cocoapod, -/obj/item/seeds/banana, -/obj/item/seeds/apple, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/siding/green{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics/garden) -"kmo" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"kmt" = ( -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"kmC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"kmK" = ( -/obj/structure/flora/rock, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"kmN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/rd) -"kmZ" = ( -/obj/machinery/camera/autoname/directional/east, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"knh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/storage/gas) -"knk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"kno" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/layer2{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"knu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/landmark/start/scientist, -/turf/open/floor/iron/dark, -/area/station/science/lab) -"knv" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/space_heater, -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "External Waste Ports to Filter" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"knL" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/shower{ - dir = 8; - name = "emergency shower" - }, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/exam_room) -"knR" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/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, -/area/station/hallway/primary/aft) -"koc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"koi" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Prison Isolation Cell"; - network = list("ss13","prison","isolation") - }, -/obj/structure/toilet/greyscale{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/spawner/random/contraband/prison, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron/white, -/area/station/security/prison/safe) -"kox" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"koE" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/item/radio/intercom/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/hallway/primary/aft) -"kpH" = ( -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/storage) -"kpS" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/engine/hull/reinforced, -/area/space/nearstation) -"kqe" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron/showroomfloor, -/area/station/security/brig) -"kql" = ( -/obj/machinery/computer/station_alert{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/item/storage/secure/safe/caps_spare/directional/east, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"kqs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/security/detectives_office) -"kqD" = ( -/obj/structure/flora/grass/jungle/a/style_random, -/obj/structure/flora/bush/grassy/style_random, -/obj/structure/flora/bush/generic/style_random, -/obj/structure/flora/bush/flowers_pp/style_random, -/obj/structure/flora/bush/sunny/style_random, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/grass, -/area/station/command/heads_quarters/hop) -"kqG" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/chem_dispenser/drinks{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/west, -/obj/structure/table, -/obj/machinery/light_switch/directional/south{ - pixel_x = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"kqI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"kra" = ( -/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/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/transfer) -"krc" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"krg" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Morgue Entrance"; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/obj/machinery/light/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/fore) -"kri" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"krk" = ( -/obj/structure/closet/secure_closet/brig{ - name = "Prisoner Locker" - }, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"krr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"krv" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/effect/turf_decal/box/red, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/ai_monitored/turret_protected/ai) -"krw" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Art Cabinet" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/commons/storage/art) -"krM" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/paramedic) -"krN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine/telecomms, -/area/station/tcommsat/server) -"krY" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"ksd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters_2"; - name = "Chemistry Hall Shutters"; - dir = 4 - }, -/turf/open/floor/plating, -/area/station/medical/pharmacy) -"ksg" = ( -/obj/structure/table, -/obj/item/pipe_dispenser{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/item/pipe_dispenser, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/obj/structure/cable, -/obj/machinery/air_sensor{ - chamber_id = "ordnancegas2" - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/storage) -"ksp" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "External Gas to Loop" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"ksr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Port Hallway Chemistry Desk"; - name = "port camera" - }, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/port) -"ksM" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall, -/area/station/security/lockers) -"ktc" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/obj/effect/spawner/random/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"ktu" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/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, -/area/station/security/brig) -"ktA" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - 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, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/storage) -"kua" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"kuf" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - 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, -/area/station/engineering/atmos) -"kuk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"kuo" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"kur" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/chair/sofa{ - color = "#c45c57" - }, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/wood, -/area/station/maintenance/starboard/fore) -"kut" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/vault{ - name = "Vault" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/effect/mapping_helpers/airlock/access/all/supply/vault, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"kuK" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/item/tank/internals/oxygen, -/obj/item/pickaxe, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"kuL" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/maintenance/port/aft) -"kvl" = ( -/turf/closed/wall/r_wall/rust, -/area/station/security/brig) -"kvo" = ( -/obj/structure/table, -/obj/machinery/firealarm/directional/west, -/obj/item/ai_module/reset{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/ai_module/supplied/freeform, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai_upload) -"kvJ" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/machinery/light/directional/east, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/sign/warning/fire/directional/east, -/turf/open/floor/iron/dark, -/area/station/commons/storage/primary) -"kvM" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"kvU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/security/prison) -"kwe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/button/door/directional/west{ - id = "gatewayshutters"; - name = "Gateway Shutters"; - req_access = list("command") - }, -/obj/machinery/door/poddoor/shutters/window{ - id = "gatewayshutters"; - name = "Gateway Chamber Shutters" - }, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"kwf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/hostile/jungle/mook{ - environment_smash = 0; - name = "deformed creature" - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"kwm" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/iron, -/area/station/service/chapel/dock) -"kwI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cmoprivacy"; - name = "Office Privacy Shutters"; - dir = 4 - }, -/turf/open/floor/plating, -/area/station/command/heads_quarters/cmo) -"kwK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/decoration/glowstick, -/obj/structure/grille/broken, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"kwM" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"kwV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/genetics) -"kxf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/trimline/blue/end{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"kxu" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"kxG" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/medical) -"kxH" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/pickaxe, -/obj/item/pickaxe, -/obj/item/multitool, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "evashutter"; - name = "E.V.A. Storage Shutter Toggle"; - pixel_x = -24; - req_access = list("command") - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"kxS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/central/fore) -"kxT" = ( -/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/cable, -/obj/effect/spawner/random/structure/steam_vent, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"kxU" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/obj/structure/sign/departments/medbay/alt/directional/west, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/fore) -"kyj" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/tank/internals/oxygen/yellow, -/turf/open/floor/iron/dark, -/area/station/cargo/miningoffice) -"kyR" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"kyT" = ( -/obj/machinery/vending/wardrobe/engi_wardrobe, -/obj/effect/turf_decal/bot, -/obj/machinery/camera/directional/north{ - c_tag = "Engineering Lockers"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage_shared) -"kyU" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/shieldgen, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"kzh" = ( -/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 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"kzl" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall, -/area/station/maintenance/port/lesser) -"kzz" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/north, -/obj/structure/chair/stool/directional/west, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"kzG" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood/large, -/area/station/service/bar/atrium) -"kzK" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/landmark/start/scientist, -/turf/open/floor/iron/showroomfloor, -/area/station/science/lab) -"kzP" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/toilet/restrooms) -"kzT" = ( -/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/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"kAj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/west, -/obj/structure/sign/warning/vacuum/external/directional/east{ - pixel_y = -32 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"kAt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/command{ - name = "Head of Security's Office" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/hos, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"kAR" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/cmo) -"kBd" = ( -/obj/machinery/door/airlock/maintenance{ - name = "E.V.A. Maintenance" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/command/eva, -/turf/open/floor/iron/dark, -/area/station/maintenance/aft) -"kBs" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"kBz" = ( -/obj/machinery/door/airlock/engineering/glass/critical{ - heat_proof = 1; - name = "Supermatter Chamber" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"kBF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"kBP" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "Emergency Research Blast Door" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/station/science/research) -"kBU" = ( -/obj/machinery/light_switch/directional/south, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/south, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat_interior) -"kCk" = ( -/turf/closed/wall/rust, -/area/station/maintenance/disposal/incinerator) -"kCm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"kCK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"kCZ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/exam_room) -"kDe" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"kDg" = ( -/obj/machinery/computer/apc_control, -/obj/effect/turf_decal/bot, -/obj/machinery/requests_console/directional/west{ - announcementConsole = 1; - department = "Chief Engineer's Desk"; - departmentType = 3; - name = "Chief Engineer's Requests Console" - }, -/obj/machinery/button/door/directional/north{ - id = "ceprivate"; - name = "Privacy Shutters Toggle"; - pixel_x = -6; - req_access = list("ce") - }, -/obj/machinery/button/door/directional/north{ - id = "Secure Storage"; - name = "Secure Storage Toggle"; - pixel_x = 6; - req_access = list("engine_equip") - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"kDw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/exam_room) -"kDy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"kDC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/janitor) -"kDE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"kDG" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/bomb) -"kDR" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/engineering/storage/tech) -"kEm" = ( -/obj/item/kirbyplants/random, -/obj/structure/sign/poster/contraband/self_ai_liberation{ - pixel_x = -32 - }, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) -"kEz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/hallway/primary/fore) -"kEC" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/psychology) -"kEQ" = ( -/obj/effect/turf_decal/bot, -/obj/structure/tank_dispenser, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage/gas) -"kES" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - aiControlDisabled = 1; - id_tag = "justicedoor_2"; - name = "Justice Chamber" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/button/door/directional/north{ - id = "justicedoor_2"; - name = "Justice Door Lock"; - normaldoorcontrol = 1; - req_access = list("armory"); - silicon_access_disabled = 1; - specialfunctions = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"kFl" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"kFw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"kFx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"kFB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/closet/wardrobe/green, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"kFG" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"kFN" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"kFR" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos) -"kGc" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"kGj" = ( -/obj/machinery/door/airlock/engineering{ - name = "Port Bow Solar Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/solars/port/fore) -"kGs" = ( -/obj/machinery/door/morgue{ - name = "Religious Equipment"; - req_access = list("chapel_office") - }, -/turf/open/floor/cult, -/area/station/service/chapel/office) -"kGD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/command/gateway) -"kGI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/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/meter/layer2, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"kHh" = ( -/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/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"kHr" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"kHs" = ( -/obj/machinery/modular_computer/console/preset/cargochat/engineering, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"kHw" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/storage) -"kHG" = ( -/obj/machinery/smartfridge/chemistry/preloaded, -/turf/closed/wall, -/area/station/medical/pharmacy) -"kHI" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"kHK" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/meter, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"kHQ" = ( -/obj/structure/sign/poster/official/wtf_is_co2, -/turf/closed/wall, -/area/station/engineering/atmos) -"kHR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/library) -"kHX" = ( -/obj/machinery/door/poddoor{ - id = "trash"; - name = "Disposal Bay Door" - }, -/obj/structure/fans/tiny, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"kIf" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/service_all, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"kIz" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/folder/red, -/obj/item/pen, -/obj/machinery/door/window/left/directional/south{ - name = "Security Desk"; - req_access = list("security") - }, -/turf/open/floor/plating, -/area/station/hallway/primary/aft) -"kIE" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) -"kIQ" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/item/radio/intercom/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/xeno_spawn, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"kIY" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"kJf" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/hallway) -"kJq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Brig" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/office) -"kJs" = ( -/obj/item/clothing/mask/breath, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"kJu" = ( -/obj/structure/chair/pew/right{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/chapel{ - dir = 1 - }, -/area/station/service/chapel) -"kJx" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/greater) -"kJH" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/surgery/aft) -"kKa" = ( -/obj/structure/table/wood/fancy/blue, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/item/reagent_containers/food/drinks/trophy/bronze_cup, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/carpet/royalblue, -/area/station/service/chapel/office) -"kKm" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/station/service/library) -"kKw" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "xeno_blastdoor"; - name = "Xenobiology Containment Blast Door" - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"kKE" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"kLa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"kLm" = ( -/obj/structure/flora/tree/jungle/small/style_random, -/turf/open/floor/grass, -/area/station/science/genetics) -"kLo" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"kLx" = ( -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"kLy" = ( -/obj/structure/flora/bush/pale/style_random{ - icon_state = "fernybush_3" - }, -/turf/open/misc/asteroid, -/area/space/nearstation) -"kLR" = ( -/obj/machinery/telecomms/server/presets/medical, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"kLS" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/drone_dispenser, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"kLW" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron/showroomfloor, -/area/station/security/brig) -"kMe" = ( -/turf/closed/wall/r_wall/rust, -/area/station/maintenance/solars/port/aft) -"kMq" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos) -"kMs" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/hallway/primary/fore) -"kMt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/central/fore) -"kMu" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab" - }, -/obj/machinery/door/firedoor/heavy, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance_storage, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"kMw" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"kMM" = ( -/obj/machinery/vending/cart{ - req_access = list("hop") - }, -/obj/structure/noticeboard/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Head of Personnel's Office"; - name = "command camera" - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"kMP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/external{ - name = "External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"kMV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"kNe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/security/execution/transfer) -"kNf" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/security/execution/transfer) -"kNw" = ( -/obj/structure/table, -/obj/machinery/light/directional/north, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/bar/atrium) -"kNz" = ( -/obj/structure/grille/broken, -/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 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"kNG" = ( -/obj/structure/sign/poster/official/help_others, -/turf/closed/wall, -/area/station/command/bridge) -"kNI" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/security/telescreen{ - name = "Test Chamber Monitor"; - network = list("xeno"); - pixel_y = 2 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"kNJ" = ( -/obj/structure/table/wood, -/obj/item/folder{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/dice{ - pixel_x = -4 - }, -/obj/item/pen/red{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/starboard/fore) -"kNK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"kNO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/obj/structure/sign/warning/secure_area/directional/south{ - name = "EMERGENCY STORAGE" - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"kNP" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/effect/decal/cleanable/cobweb, -/obj/item/clothing/suit/fire/firefighter{ - pixel_y = 5 - }, -/obj/item/clothing/mask/breath, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"kNS" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"kNY" = ( -/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/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "cargo-maint-passthrough" - }, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) -"kOb" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/photocopier, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot_white, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"kOt" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/storage) -"kOw" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall, -/area/station/science/ordnance) -"kOx" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"kOJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/teleport/hub, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"kOX" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"kPd" = ( -/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/showroomfloor, -/area/station/security/execution/transfer) -"kPf" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/fore) -"kPk" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) -"kPo" = ( -/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) -"kPt" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/open/misc/asteroid, -/area/space/nearstation) -"kPv" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/obj/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/engineering/atmos) -"kPE" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"kPK" = ( -/obj/machinery/button/ignition/incinerator/atmos{ - pixel_x = 8; - pixel_y = 36 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"kPO" = ( -/turf/closed/wall/rust, -/area/station/commons/storage/primary) -"kPQ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/bomb) -"kPS" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/newscaster/directional/south, -/obj/machinery/recharger, -/obj/machinery/camera/directional/south{ - c_tag = "Engineering Security Post"; - name = "engineering camera" - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) -"kQd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"kQf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/turf_decal/bot, -/obj/effect/spawner/random/clothing/kittyears_or_rabbitears, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"kQH" = ( -/obj/machinery/skill_station, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/box, -/obj/machinery/newscaster/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Art Storage"; - name = "library camera" - }, -/turf/open/floor/iron/dark, -/area/station/commons/storage/art) -"kQI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"kQO" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"kQQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "Satellite Antechamber" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "ai-passthrough" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/minisat, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"kQT" = ( -/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/service/chapel/funeral) -"kRd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/command/gateway) -"kRu" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/siding/blue, -/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/showroomfloor, -/area/station/medical/medbay/central) -"kRD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"kSn" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/suit_storage_unit/security, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"kSp" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage"; - name = "trash belt" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/recycler, -/turf/open/floor/iron/dark, -/area/station/service/janitor) -"kSr" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 11 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/lobby) -"kSs" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/pump/off{ - dir = 4; - name = "O2 To Pure" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"kSx" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/blue, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/storage) -"kSR" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/chair/stool/bar/directional/south, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"kTa" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet/royalblue, -/area/station/service/chapel/office) -"kTe" = ( -/obj/structure/table/glass, -/obj/item/storage/medkit/regular, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/syringe, -/obj/machinery/camera/directional/east{ - c_tag = "Security Infirmary" - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron/showroomfloor, -/area/station/security/medical) -"kTk" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"kTq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/ai_monitored/command/storage/eva) -"kTD" = ( -/obj/machinery/light/directional/south, -/obj/machinery/status_display/ai/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/suit_storage_unit/industrial/loader, -/turf/open/floor/iron/dark, -/area/station/cargo/drone_bay) -"kTJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"kTK" = ( -/turf/closed/wall/r_wall/rust, -/area/station/maintenance/port/lesser) -"kUd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"kUp" = ( -/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/cable, -/turf/open/floor/grass, -/area/station/medical/psychology) -"kUy" = ( -/obj/machinery/computer/chef_order{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/newscaster/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Kitchen Coldroom"; - name = "kitchen camera" - }, -/obj/machinery/light/cold/directional/east, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"kUB" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/item/wrench, -/obj/item/crowbar, -/obj/item/analyzer, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage/gas) -"kUJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"kUR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"kUS" = ( -/turf/closed/wall, -/area/station/engineering/storage_shared) -"kUV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/button/crematorium/indestructible{ - pixel_x = 22 - }, -/turf/open/floor/iron/checker, -/area/station/security/processing/cremation) -"kUX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"kUZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"kVd" = ( -/obj/structure/chair/pew/right{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/chapel, -/area/station/service/chapel) -"kVk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/spawner/random/structure/crate, -/mob/living/simple_animal/chicken{ - atmos_requirements = list("min_oxy"=0,"max_oxy"=0,"min_tox"=0,"max_tox"=1,"min_co2"=0,"max_co2"=0,"min_n2"=0,"max_n2"=0); - desc = "A timeless classic."; - name = "Kentucky" - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"kVv" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Engineering"; - location = "EVA"; - name = "eva navigation beacon" - }, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"kVD" = ( -/obj/machinery/exodrone_launcher, -/obj/effect/turf_decal/trimline/yellow, -/obj/effect/turf_decal/trimline/yellow/mid_joiner, -/obj/effect/turf_decal/trimline/yellow/mid_joiner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/mid_joiner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/mid_joiner{ - dir = 4 - }, -/obj/item/exodrone, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"kVN" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/open/space/basic, -/area/space/nearstation) -"kVY" = ( -/obj/machinery/door/airlock/command{ - name = "Gateway" - }, -/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/command/gateway, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"kWe" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"kWm" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"kWz" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Disposal Access" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/obj/effect/mapping_helpers/airlock/access/any/service/janitor, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"kWA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"kWK" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/computer/med_data/laptop, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"kXw" = ( -/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, -/turf/open/floor/carpet/royalblue, -/area/station/service/chapel/office) -"kXJ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xeno1"; - name = "Creature Cell 1" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/left/directional/north{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Creature Cell"; - req_access = list("xenobiology") - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"kXN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/teleporter) -"kXS" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage_shared) -"kXV" = ( -/obj/machinery/door/airlock/grunge, -/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/dock) -"kYr" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump, -/turf/open/floor/engine, -/area/station/science/ordnance/burnchamber) -"kYy" = ( -/obj/machinery/door/airlock/external{ - name = "Science Escape Pod"; - space_dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) -"kYB" = ( -/obj/structure/rack, -/obj/item/storage/bag/ore, -/obj/item/tank/internals/emergency_oxygen, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/grille/broken, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"kYG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"kYI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"kYL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"kYP" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 14; - pixel_y = 13 - }, -/turf/open/floor/plating/rust, -/area/station/security/prison/shower) -"kYU" = ( -/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/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/janitor, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/aft) -"kZq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"kZx" = ( -/obj/machinery/door/airlock/hydroponics/glass{ - name = "Kitchen Service Door" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/kitchen, -/obj/effect/mapping_helpers/airlock/access/any/service/hydroponics, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"kZz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - 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, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"kZH" = ( -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/directional/west{ - c_tag = "Satellite Maintenance"; - name = "satellite camera"; - network = list("minisat") - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/ai_monitored/command/storage/satellite) -"kZI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/mob/living/simple_animal/hostile/giant_spider/tarantula/scrawny, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"kZK" = ( -/obj/machinery/door/airlock/external{ - name = "Security Escape Pod"; - space_dir = 2 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/aft) -"kZP" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/security/brig) -"kZU" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"kZX" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/crossing, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating, -/area/space/nearstation) -"kZY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"lac" = ( -/turf/closed/wall, -/area/station/command/gateway) -"lae" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/engine/telecomms, -/area/station/tcommsat/server) -"laf" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"lam" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light_switch/directional/west, -/obj/structure/disposalpipe/trunk, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/lawoffice) -"laB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L2" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"laE" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/station/maintenance/department/bridge) -"laH" = ( -/obj/structure/table/wood/fancy, -/obj/item/storage/fancy/candle_box, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"lbj" = ( -/obj/structure/cable, -/obj/structure/table, -/obj/machinery/reagentgrinder{ - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"lbq" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/stack/rods/twentyfive, -/obj/item/wrench, -/obj/item/storage/box/lights/mixed, -/obj/item/radio/intercom/directional/south, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) -"lby" = ( -/turf/closed/wall, -/area/station/science/robotics/mechbay) -"lbD" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/mask/russian_balaclava, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"lbJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"lbK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "greylair"; - name = "Lair Privacy Shutter" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"lbO" = ( -/turf/closed/wall, -/area/station/service/library) -"lch" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"lcw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/hallway/primary/central) -"lcF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/storage/backpack/satchel/med, -/obj/item/assembly/health, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"lcN" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/box, -/obj/structure/sign/poster/official/safety_internals{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/crew_quarters/bar) -"lcS" = ( -/obj/structure/flora/grass/jungle/b/style_random, -/obj/structure/flora/bush/grassy/style_random, -/obj/structure/flora/bush/generic/style_random, -/obj/structure/flora/bush/flowers_pp/style_random, -/obj/structure/flora/bush/sunny/style_random, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor/grass, -/area/station/command/heads_quarters/hop) -"lcZ" = ( -/obj/machinery/door/airlock/engineering{ - name = "Electrical Maintenance" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/electrical) -"ldc" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"lds" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/item/stack/rods, -/turf/open/floor/carpet/green, -/area/station/cargo/warehouse) -"lea" = ( -/obj/machinery/rnd/production/techfab/department/cargo, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/cargo/storage) -"lep" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/computer/operating{ - name = "Forensics Operating Computer" - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/airalarm/directional/north, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"lev" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"ley" = ( -/obj/machinery/telecomms/server/presets/science, -/obj/structure/cable, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"leB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = -24 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-maint-passthrough" - }, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"leD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/girder, -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"leF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"lfl" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/briefcase, -/obj/item/taperecorder, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"lfu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"lfz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 5 - }, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"lfE" = ( -/obj/machinery/power/turbine/core_rotor{ - mapping_id = "main_turbine" - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"lfQ" = ( -/obj/structure/closet/secure_closet/security/med, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/showroomfloor, -/area/station/security/checkpoint/medical) -"lfU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/teleport/station, -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"lgb" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/storage/backpack, -/obj/item/extinguisher{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/extinguisher, -/obj/structure/sign/warning/no_smoking{ - pixel_x = -30 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"lge" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/engine/hull/reinforced, -/area/space/nearstation) -"lgh" = ( -/obj/effect/turf_decal/bot, -/obj/structure/sign/warning/fire/directional/north, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"lgl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/spider/stickyweb, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"lgu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/closet/secure_closet/security/science, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science/research) -"lgv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"lgC" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/cargo/storage) -"lhf" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"lhm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"lhv" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/item/soap/nanotrasen, -/obj/structure/cable, -/turf/open/floor/plastic, -/area/station/security/prison/shower) -"lhx" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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/secondary/entry) -"lhG" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"lhJ" = ( -/obj/structure/flora/bush/ferny/style_random, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/grass, -/area/station/science/genetics) -"lhT" = ( -/obj/structure/table, -/obj/item/candle/infinite{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/food/spaghetti/meatballspaghetti{ - pixel_y = 5 - }, -/obj/item/kitchen/fork, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"lia" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"lie" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/vending/wardrobe/science_wardrobe, -/turf/open/floor/iron/dark, -/area/station/science/lab) -"lig" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/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/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"lix" = ( -/obj/structure/closet/secure_closet/brig{ - name = "Prisoner Locker" - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"liB" = ( -/turf/closed/wall, -/area/station/security/checkpoint/supply) -"liE" = ( -/obj/structure/grille/broken, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"liK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"liS" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/item/pen/red{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/toy/figure/lawyer, -/turf/open/floor/carpet/green, -/area/station/service/lawoffice) -"liY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"ljb" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"ljy" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/security/courtroom) -"ljA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "engi-maint-passthrough" - }, -/obj/machinery/door/airlock/engineering{ - name = "Gravity Generator Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/aft) -"ljJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/light/small/directional/east, -/obj/structure/sign/warning/xeno_mining/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"lkl" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/pharmacy) -"lko" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/gloves/color/latex, -/obj/item/storage/box/disks{ - pixel_y = 5 - }, -/obj/structure/noticeboard/directional/north, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"lkp" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/siding/red{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"lkB" = ( -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"lkF" = ( -/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/structure/cable, -/obj/effect/spawner/random/vending/colavend, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/starboard) -"lkW" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/departments/engineering/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Starboard Hallway Rotunda"; - name = "starboard camera" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"llh" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/rust, -/area/station/maintenance/port/lesser) -"llj" = ( -/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/plating, -/area/station/maintenance/fore) -"llr" = ( -/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, -/area/station/maintenance/port/greater) -"llu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"llI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset/anchored, -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) -"llJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "greylair"; - name = "Lair Privacy Shutter" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"llY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/virology{ - name = "Virology Access" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "viro-airlock" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"lmb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"lme" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/central) -"lmh" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/window/brigdoor/right/directional/north{ - id = "Cell 4"; - name = "Cell 4"; - req_access = list("security") - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/brig) -"lmi" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/siding/red/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs) -"lmk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"lmr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/door/airlock{ - name = "Prison Kitchen" - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"lmA" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/office) -"lmC" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"lmF" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig) -"lmO" = ( -/turf/closed/wall/rust, -/area/station/cargo/storage) -"lnc" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/landmark/start/paramedic, -/obj/structure/chair/office/light, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/paramedic) -"lnj" = ( -/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/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/cargo/qm) -"lnm" = ( -/obj/effect/turf_decal/stripes/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/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"lnD" = ( -/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/caution/stand_clear, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"lnU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - 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, -/turf/open/floor/iron, -/area/station/security/processing) -"lox" = ( -/obj/effect/turf_decal/trimline/green/line{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"loI" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"loO" = ( -/obj/machinery/airlock_sensor/incinerator_ordmix{ - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/science/ordnance/burnchamber) -"lpf" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/directional/north, -/obj/machinery/computer/cargo, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/cargo/sorting) -"lpp" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/vomit/old, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) -"lpt" = ( -/turf/closed/wall/r_wall/rust, -/area/station/command/heads_quarters/captain) -"lpF" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/station/maintenance/port/greater) -"lpH" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/multitool, -/obj/item/storage/toolbox/electrical, -/obj/item/multitool{ - pixel_x = 4 - }, -/obj/item/reagent_containers/glass/beaker/large, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"lql" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio{ - desc = "An old handheld radio. You could use it, if you really wanted to."; - icon_state = "radio"; - name = "old radio" - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"lqn" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/security/brig) -"lqp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"lqy" = ( -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/flora/bush/stalky/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"lqC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/airless, -/area/station/maintenance/disposal/incinerator) -"lqE" = ( -/obj/machinery/power/solar_control{ - dir = 8; - id = "forestarboard"; - name = "Starboard Bow Solar Control" - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/sign/warning/vacuum/external/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"lqM" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"lqN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/storage/box/evidence{ - pixel_y = 4 - }, -/obj/item/taperecorder{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/grenade/flashbang, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"lqP" = ( -/obj/machinery/door/airlock/grunge{ - id_tag = "Cabin_1"; - name = "Cabin 1" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"lqR" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/dark, -/area/station/service/chapel/storage) -"lqU" = ( -/turf/closed/wall, -/area/station/engineering/atmos/pumproom) -"lrc" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/exam_room) -"lre" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"lrk" = ( -/obj/structure/cable, -/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/command/heads_quarters/captain) -"lrp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"lrq" = ( -/turf/closed/wall/r_wall/rust, -/area/station/security/prison) -"lrI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"lrO" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"lrP" = ( -/obj/machinery/door/airlock/medical{ - id_tag = "Unit_1"; - name = "Unit 1" - }, -/turf/open/floor/iron/dark, -/area/station/commons/toilet/restrooms) -"lrR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"lrU" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) -"lsb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/structure/table, -/obj/machinery/recharger, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hos) -"lsf" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/turf/closed/wall, -/area/station/engineering/atmos) -"lst" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"lsu" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"lsE" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/engine/hull/reinforced, -/area/space/nearstation) -"lsS" = ( -/obj/machinery/newscaster/directional/west, -/obj/machinery/computer/prisoner/management{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hos) -"lsW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Pure to Ports" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"lsX" = ( -/obj/structure/sign/departments/restroom, -/turf/closed/wall, -/area/station/commons/locker) -"lsZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/hydroponics/constructable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/green/end{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"lte" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/library) -"lth" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/button/door/directional/south{ - id = "xeno5"; - name = "Creature Cell 5 Toggle"; - pixel_x = -24; - req_access = list("xenobiology") - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"lts" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"lue" = ( -/obj/structure/sign/warning/fire/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"luh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"luk" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/iron/dark, -/area/station/service/chapel/storage) -"lun" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine/telecomms, -/area/station/tcommsat/server) -"lux" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"luI" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"luK" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plastic, -/area/station/hallway/secondary/service) -"luO" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"luP" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/air_input{ - dir = 4 - }, -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"luQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/mechpad, -/turf/open/floor/iron/dark, -/area/station/science/robotics/mechbay) -"lvy" = ( -/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/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment, -/obj/machinery/duct, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"lvP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/kirbyplants{ - icon_state = "plant-02"; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/showroomfloor, -/area/station/security/office) -"lvS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random/directional/east, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"lvV" = ( -/obj/machinery/computer/operating{ - dir = 1; - name = "Robotics Operating Computer" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - 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/science/robotics/lab) -"lwn" = ( -/obj/structure/closet/secure_closet/evidence, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"lwp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/processing/cremation) -"lwu" = ( -/turf/closed/wall, -/area/station/security/medical) -"lwT" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/starboard) -"lwV" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/button/door/directional/south{ - id = "evashutter"; - name = "E.V.A. Storage Shutter Toggle"; - req_access = list("command") - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"lwW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/landmark/start/lawyer, -/obj/effect/turf_decal/siding/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"lxf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/item/radio/intercom/directional/north{ - freerange = 1; - frequency = 1447; - listening = 0; - name = "Private Channel" - }, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat_interior) -"lxo" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"lxp" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/newscaster/directional/south, -/obj/item/stack/package_wrap, -/obj/item/storage/secure/briefcase{ - pixel_y = 4 - }, -/obj/item/hand_labeler, -/turf/open/floor/iron/dark, -/area/station/commons/vacant_room/commissary) -"lxu" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"lxw" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - 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/effect/turf_decal/siding/purple{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/robotics/lab) -"lxG" = ( -/obj/structure/table, -/obj/item/stock_parts/cell/high, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"lxL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"lxQ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"lxU" = ( -/obj/effect/turf_decal/bot, -/obj/item/storage/box/lights/mixed, -/obj/effect/spawner/random/structure/crate_empty, -/turf/open/floor/iron, -/area/station/cargo/storage) -"lyb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"lyc" = ( -/obj/machinery/mecha_part_fabricator, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"lyd" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"lyr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"lyu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"lyT" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"lzc" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/engine, -/area/station/engineering/gravity_generator) -"lzg" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/security/office) -"lzs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/security/processing) -"lzv" = ( -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) -"lzF" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"lAk" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"lAr" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"lAs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/engineering/gravity_generator) -"lAu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/security{ - name = "Orderly's Office" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/medical, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) -"lAA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/camera/directional/south{ - c_tag = "Fore Hallway Vault"; - name = "fore camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/central/fore) -"lAB" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"lAC" = ( -/obj/machinery/door/poddoor/shutters{ - id = "maidbay"; - name = "Maid Bay" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"lAV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"lAW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron/checker, -/area/station/security/processing/cremation) -"lBj" = ( -/obj/structure/table/wood, -/obj/structure/cable, -/turf/open/floor/carpet/royalblack, -/area/station/command/heads_quarters/captain) -"lBk" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"lBB" = ( -/obj/structure/bed, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/bot_white/right, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/bedsheet/medical, -/obj/machinery/light/directional/east, -/obj/structure/sign/warning/biohazard/directional/east, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) -"lBO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random/directional/north, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"lBP" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"lBQ" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/security) -"lBU" = ( -/obj/structure/table/wood, -/obj/item/folder/white{ - pixel_y = 3 - }, -/obj/item/pen, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/psychology) -"lCa" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/psychology) -"lCs" = ( -/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/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"lCz" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"lCC" = ( -/obj/structure/flora/bush/flowers_pp/style_random, -/turf/open/floor/grass, -/area/station/service/chapel) -"lCV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/obj/structure/table/wood, -/obj/item/clipboard{ - pixel_x = 4 - }, -/obj/item/stack/spacecash/c50{ - pixel_y = 8 - }, -/obj/item/stack/spacecash/c50, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"lDa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"lDb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"lDc" = ( -/obj/structure/lattice/catwalk, -/obj/effect/landmark/carpspawn, -/turf/open/space/basic, -/area/station/solars/port/fore) -"lDm" = ( -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/storage) -"lDu" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard) -"lDB" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"lDK" = ( -/obj/effect/decal/remains/robot, -/obj/effect/decal/cleanable/oil/streak, -/turf/open/floor/iron/dark, -/area/station/service/chapel/storage) -"lDS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/filingcabinet/security, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"lDV" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-02"; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig) -"lEi" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/item/kirbyplants, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"lEs" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/station/maintenance/starboard) -"lED" = ( -/obj/machinery/telecomms/message_server/preset, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"lEI" = ( -/obj/structure/flora/bush/ferny/style_random, -/obj/structure/flora/bush/grassy/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"lEQ" = ( -/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 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-maint-passthrough" - }, -/obj/machinery/door/airlock/security{ - name = "Prison Wing" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"lFr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"lFt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/botanist, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"lFB" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/small/directional/north, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"lFC" = ( -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"lFN" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/medical/psychology) -"lFS" = ( -/obj/item/reagent_containers/food/drinks/bottle/rum{ - pixel_x = -7; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/colocup{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/cigarette/rollie/cannabis{ - pixel_y = -3 - }, -/turf/open/floor/plating/rust, -/area/station/maintenance/department/security) -"lGa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/canister_frame/machine/unfinished_canister_frame, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"lGp" = ( -/obj/structure/window/reinforced/plasma{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/power/energy_accumulator/tesla_coil/anchored, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/engineering/supermatter) -"lGq" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engineaccess"; - name = "Engine Access Shutters"; - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"lGs" = ( -/turf/closed/wall, -/area/station/security/warden) -"lGF" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/east, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"lGO" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 5 - }, -/turf/open/space/basic, -/area/space/nearstation) -"lGQ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/robotics/lab) -"lGS" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Auxiliary Base Construction"; - name = "cargo camera"; - network = list("ss13","qm") - }, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"lGV" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/security/execution/transfer) -"lGY" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"lHg" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "ordnancestorage"; - name = "Ordnance Storage Shutters"; - dir = 1 - }, -/obj/machinery/door/firedoor/heavy, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/storage) -"lHk" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"lHy" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/paper/guides/jobs/medical/morgue, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/pen, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"lHE" = ( -/obj/structure/table/wood, -/obj/structure/displaycase/forsale/kitchen{ - pixel_y = 4 - }, -/obj/structure/sign/picture_frame/portrait/bar{ - pixel_y = 32 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/wood, -/area/station/service/bar) -"lHX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"lIr" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"lIs" = ( -/turf/closed/wall/rust, -/area/station/security/execution/education) -"lJd" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/chair/stool/bar/directional/east, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"lJg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Satellite Foyer"; - name = "satellite camera"; - network = list("minisat") - }, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"lJA" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/lighter, -/turf/open/floor/wood, -/area/station/commons/locker) -"lJD" = ( -/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, -/area/station/cargo/storage) -"lJJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/trimline/green/line, -/obj/effect/turf_decal/trimline/green/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"lJL" = ( -/obj/machinery/requests_console/directional/north{ - department = "Security"; - departmentType = 3; - name = "Security Requests Console" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/closet/secure_closet/security/med, -/turf/open/floor/iron/showroomfloor, -/area/station/security/checkpoint/medical) -"lJR" = ( -/obj/machinery/button/crematorium/indestructible{ - pixel_x = -25 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"lJU" = ( -/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/showroomfloor, -/area/station/science/research) -"lKi" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/item/storage/box/mousetraps{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/mousetraps{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/toy/figure/janitor{ - pixel_x = -8; - pixel_y = 6 - }, -/obj/item/restraints/legcuffs/beartrap{ - pixel_y = 8 - }, -/obj/item/restraints/legcuffs/beartrap{ - pixel_y = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/service/janitor) -"lKk" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/camera/directional/south{ - c_tag = "Research Division"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/showroomfloor, -/area/station/science/research) -"lKq" = ( -/turf/closed/wall, -/area/station/cargo/storage) -"lKC" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/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/showroomfloor, -/area/station/science/research) -"lLc" = ( -/obj/effect/landmark/carpspawn, -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/station/solars/starboard/aft) -"lLf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters"; - name = "Chemistry Lobby Shutters"; - dir = 1 - }, -/turf/open/floor/plating, -/area/station/medical/pharmacy) -"lLi" = ( -/obj/structure/sign/warning/no_smoking{ - pixel_x = 30 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"lLl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai_upload) -"lLp" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"lLv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"lLH" = ( -/obj/structure/sign/departments/engineering, -/turf/closed/wall, -/area/station/cargo/warehouse) -"lLN" = ( -/obj/structure/fans/tiny, -/obj/machinery/door/poddoor/massdriver_chapel, -/turf/open/floor/plating, -/area/station/service/chapel/funeral) -"lLY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"lMf" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/service/bar/atrium) -"lMh" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/glass, -/area/station/service/hydroponics) -"lMo" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"lMx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/atmospherics/components/binary/pump/on/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"lMy" = ( -/obj/effect/decal/remains/human, -/obj/machinery/light/small/directional/west, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"lMZ" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"lNe" = ( -/obj/docking_port/stationary/mining_home/common/kilo, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"lNn" = ( -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"lNp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter/flipped{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"lNK" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"lNP" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/showroomfloor, -/area/station/science/lab) -"lOb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/pill_bottle/mutadone{ - pixel_x = 4 - }, -/obj/item/storage/pill_bottle/mannitol, -/obj/item/toy/figure/geneticist{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/effect/turf_decal/siding/purple/corner, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"lOh" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/turf_decal/box/red, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 4 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Ordnance Test Lab"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/item/radio/intercom/directional/east, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"lOq" = ( -/obj/machinery/status_display/ai/directional/west, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"lOG" = ( -/turf/closed/wall/rust, -/area/station/service/chapel/monastery) -"lON" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/bodybag{ - pixel_y = 5 - }, -/obj/item/shovel, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"lOX" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"lOY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Evidence Closet" - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"lOZ" = ( -/obj/effect/turf_decal/box, -/obj/machinery/shower{ - dir = 8 - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/item/bikehorn/rubberducky, -/obj/machinery/newscaster/directional/west, -/obj/effect/landmark/start/assistant, -/obj/effect/landmark/start/hangover, -/obj/machinery/button/door/directional/east{ - id = "Shower_1"; - name = "Shower 1 Privacy Lock"; - normaldoorcontrol = 1; - pixel_y = 8; - specialfunctions = 4 - }, -/obj/machinery/button/door/directional/east{ - id = "Shower_1Privacy"; - name = "Shower 1 Privacy Toggle"; - pixel_y = -8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/toilet/restrooms) -"lPh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table, -/obj/machinery/requests_console/directional/west{ - department = "Security"; - departmentType = 5; - name = "Security Requests Console" - }, -/obj/machinery/light_switch/directional/north, -/obj/machinery/computer/security/telescreen/engine, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) -"lPm" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"lPU" = ( -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/plastic, -/area/station/security/prison/shower) -"lPY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"lQj" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"lQu" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"lQw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/landmark/start/chaplain, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"lQB" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/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/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"lQK" = ( -/obj/machinery/door/firedoor, -/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, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/medical/exam_room) -"lRd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/landmark/event_spawn, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/security/courtroom) -"lRg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"lRk" = ( -/turf/closed/wall, -/area/station/maintenance/starboard/fore) -"lRl" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"lRq" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/blue, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/storage) -"lRE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"lRJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/security/processing) -"lRS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"lRZ" = ( -/obj/machinery/door/airlock/external{ - name = "Abandoned External Airlock" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"lSl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hop) -"lSt" = ( -/obj/structure/cable, -/obj/structure/bed/dogbed/ian, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/mob/living/simple_animal/pet/dog/corgi/ian{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"lSE" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "NTMSLoad"; - name = "off ramp" - }, -/obj/machinery/door/poddoor{ - id = "freight_port"; - name = "Freight Bay Blast Door" - }, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"lSY" = ( -/obj/effect/spawner/random/structure/table, -/obj/item/candle{ - pixel_x = -5 - }, -/obj/effect/spawner/random/food_or_drink/refreshing_beverage{ - pixel_x = 5; - pixel_y = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"lTc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/west, -/obj/item/pickaxe, -/obj/item/shovel, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"lTf" = ( -/turf/closed/wall/rust, -/area/station/security/medical) -"lTu" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/vending/drugs, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/surgery/fore) -"lTM" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"lTZ" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/carpet/royalblack, -/area/station/command/heads_quarters/captain) -"lUq" = ( -/turf/closed/wall/r_wall/rust, -/area/station/service/chapel/storage) -"lUD" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/security/courtroom) -"lUM" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/item/stamp/cmo{ - pixel_x = 8; - pixel_y = 20 - }, -/obj/machinery/light_switch/directional/south{ - pixel_x = -8 - }, -/obj/machinery/keycard_auth/directional/south{ - pixel_x = 8 - }, -/obj/structure/table/reinforced/rglass, -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/cmo) -"lVe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/effect/landmark/blobstart, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"lVf" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"lVi" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/office) -"lVj" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"lVx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"lVD" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/newscaster/directional/north, -/obj/structure/spider/stickyweb, -/obj/machinery/button/door/directional/east{ - id = "bankvault"; - name = "Bank Door Lock"; - normaldoorcontrol = 1; - pixel_y = 8; - specialfunctions = 4 - }, -/obj/machinery/button/door/directional/east{ - id = "bankshutter"; - name = "Bank Shutter Toggle"; - pixel_y = -8 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"lVL" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/science/server) -"lWg" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 8 - }, -/obj/machinery/requests_console/directional/east{ - department = "Robotics"; - departmentType = 2; - name = "Robotics Requests Console"; - receive_ore_updates = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"lWm" = ( -/obj/machinery/door/airlock/engineering{ - name = "Starboard Bow Solar Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/solars/starboard/fore) -"lWw" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/lab) -"lWC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/south, -/obj/structure/lattice/catwalk, -/obj/machinery/light/directional/south, -/turf/open/floor/plating/airless, -/area/station/hallway/secondary/entry) -"lWJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"lWL" = ( -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"lWQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/engine, -/area/station/engineering/storage/tech) -"lWW" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/item/stamp{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/stamp/denied{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/pen/red{ - pixel_x = 8; - pixel_y = -5 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/office) -"lXe" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/item/storage/box/lights/mixed{ - pixel_y = 5 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/port) -"lXK" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Chemistry West"; - network = list("ss13","medbay") - }, -/obj/machinery/firealarm/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"lXL" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/structure/sign/warning/fire/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"lXP" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "NTMSLoad"; - name = "off ramp" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/structure/sign/warning/vacuum/external/directional/south, -/turf/open/floor/iron/dark, -/area/station/cargo/warehouse) -"lYa" = ( -/obj/structure/chair/comfy/brown, -/obj/effect/landmark/start/detective, -/turf/open/floor/carpet/green, -/area/station/security/detectives_office) -"lYb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Gas to Chamber" - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/engineering/supermatter) -"lYg" = ( -/turf/closed/wall, -/area/station/science/robotics/lab) -"lYi" = ( -/obj/machinery/door/poddoor/shutters{ - id = "evashutter"; - name = "E.V.A. Storage Shutter"; - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"lYv" = ( -/obj/structure/window/reinforced/spawner{ - dir = 1 - }, -/obj/structure/flora/bush/leavy/style_random, -/obj/structure/flora/bush/sparsegrass/style_random, -/turf/open/floor/grass, -/area/station/hallway/primary/fore) -"lYE" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/railing/corner, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"lYG" = ( -/obj/structure/closet/secure_closet/evidence, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"lYT" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"lYX" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/security/brig) -"lZi" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/fore) -"lZn" = ( -/obj/structure/sign/departments/science, -/turf/closed/wall/rust, -/area/station/science/lab) -"lZr" = ( -/obj/structure/table/wood, -/obj/item/storage/box/deputy{ - pixel_y = 5 - }, -/obj/item/taperecorder{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/flashlight/seclite, -/obj/machinery/firealarm/directional/east, -/obj/machinery/light_switch/directional/north{ - pixel_x = 26 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"lZK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/item/camera, -/obj/item/camera_film{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/dark, -/area/station/commons/storage/art) -"lZV" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"maj" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/sign/departments/science/directional/east{ - pixel_y = 32 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"maA" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"maK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"maN" = ( -/obj/machinery/power/emitter, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/fire/directional/north, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"maW" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"mbc" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"mbh" = ( -/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/grimy, -/area/station/security/prison/safe) -"mbl" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"mbp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/ticket_machine/directional/north, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"mbC" = ( -/obj/structure/transit_tube/curved{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"mbE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "departures-entrance" - }, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"mbP" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/station/security/processing) -"mbS" = ( -/obj/machinery/door/airlock/engineering{ - name = "Starboard Quarter Solar Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/solars/starboard/aft) -"mbW" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/human, -/obj/item/paper/crumpled{ - info = "This isn't funny, I'm trapped on the least fun room on the station."; - name = "poorly written complaint" - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"mbY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/janitor, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/janitor) -"mcs" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - 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, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"mcN" = ( -/obj/effect/turf_decal/bot, -/obj/effect/landmark/navigate_destination/hop, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"mda" = ( -/obj/machinery/door/airlock/engineering/glass/critical{ - heat_proof = 1; - name = "Supermatter Chamber" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"mdl" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - 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/secondary/exit/departure_lounge) -"mdp" = ( -/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, -/area/station/security/brig) -"mdB" = ( -/obj/machinery/door/airlock/external{ - name = "External Freight Airlock" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/iron/dark, -/area/station/cargo/warehouse) -"mdE" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/light/small/directional/north, -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"mdX" = ( -/obj/effect/turf_decal/bot/right, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"mee" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/structure/closet/firecloset, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/starboard) -"mej" = ( -/obj/structure/cable, -/obj/machinery/icecream_vat, -/obj/effect/turf_decal/bot/right, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/bridge) -"mes" = ( -/obj/structure/table, -/obj/item/storage/bag/tray/cafeteria, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"meO" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - 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/commons/fitness/recreation) -"meS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - name = "security disposal pipe"; - sortType = 7 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"meU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"mfd" = ( -/obj/machinery/door/firedoor, -/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, -/obj/machinery/airalarm/directional/south, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"mff" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit/old, -/obj/effect/spawner/random/structure/crate, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"mfh" = ( -/turf/closed/wall/r_wall, -/area/station/science/ordnance/office) -"mfs" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cmoprivacy"; - name = "Office Privacy Shutters" - }, -/turf/open/floor/plating, -/area/station/medical/storage) -"mfw" = ( -/obj/structure/chair/sofa/right{ - color = "#c45c57"; - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/service/bar/atrium) -"mfD" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/command/nuke_storage) -"mfE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/camera/directional/west{ - c_tag = "Supermatter Terminal"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/machinery/light_switch/directional/west, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"mfF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/botanist, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"mfG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"mfI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line, -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"mfJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/central/fore) -"mfU" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/obj/machinery/light/small/directional/east, -/obj/item/radio/intercom/directional/east, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/engine, -/area/station/tcommsat/computer) -"mfY" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/siding/purple/corner, -/turf/open/floor/iron/showroomfloor, -/area/station/science/lab) -"mgx" = ( -/obj/structure/bookcase/random/nonfiction, -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/turf/open/floor/wood, -/area/station/service/library) -"mgA" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/machinery/newscaster/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Bridge Port"; - name = "command camera" - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"mgC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Equipment Room" - }, -/obj/effect/turf_decal/siding/red/corner{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"mgR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"mha" = ( -/obj/machinery/porta_turret/ai, -/obj/machinery/airalarm/directional/west, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/box/red, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/ai_monitored/turret_protected/aisat_interior) -"mhi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/starboard) -"mhP" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/lab) -"mid" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/old, -/mob/living/simple_animal/hostile/giant_spider/hunter/scrawny, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"mii" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/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/showroomfloor, -/area/station/science/robotics/lab) -"mij" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/aft) -"mis" = ( -/obj/structure/frame/machine, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/oil, -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"miK" = ( -/obj/effect/decal/cleanable/blood/footprints{ - dir = 4; - pixel_x = 24; - pixel_y = 8 - }, -/obj/structure/urinal/directional/north, -/turf/open/floor/plating/rust, -/area/station/security/prison/shower) -"miM" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/chair, -/obj/effect/landmark/start/hangover, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"miS" = ( -/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/cyclelink_helper_multi{ - cycle_id = "brig-entrance-left" - }, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/plating, -/area/station/security/execution/transfer) -"mjc" = ( -/obj/structure/window/reinforced/spawner{ - dir = 4 - }, -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/grassy/style_random, -/obj/structure/window/reinforced/spawner{ - dir = 1 - }, -/obj/structure/flora/bush/flowers_yw/style_random, -/turf/open/floor/grass, -/area/station/hallway/primary/fore) -"mjh" = ( -/turf/closed/wall/r_wall/rust, -/area/station/maintenance/aft) -"mjG" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/door_timer{ - id = "Cell 5"; - name = "Cell 5"; - pixel_x = -32 - }, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 5"; - name = "Cell 5 Locker" - }, -/turf/open/floor/iron, -/area/station/security/brig) -"mjR" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"mjU" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"mjW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"mkk" = ( -/turf/closed/wall/rust, -/area/station/hallway/secondary/entry) -"mkq" = ( -/obj/structure/table, -/obj/item/storage/briefcase{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/secure/briefcase, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/office) -"mkB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/department/crew_quarters/bar) -"mkI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/machinery/light/small/directional/north, -/obj/item/clothing/suit/toggle/suspenders, -/obj/item/clothing/head/papersack/smiley, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"mkQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"mld" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/cyborg, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"mle" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - 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/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"mlj" = ( -/obj/structure/table, -/obj/item/storage/box/deputy, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/machinery/camera/directional/west{ - c_tag = "Warden's Office" - }, -/obj/structure/reagent_dispensers/wall/peppertank/directional/west, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/warden) -"mlv" = ( -/obj/structure/closet/secure_closet/hos, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hos) -"mlw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/plaque{ - icon_state = "L7" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"mlx" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"mlz" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/mesh, -/obj/item/stack/medical/suture, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/lobby) -"mlB" = ( -/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 = 5 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"mlC" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"mlD" = ( -/obj/structure/flora/bush/lavendergrass/style_random, -/turf/open/floor/grass, -/area/station/service/chapel) -"mlH" = ( -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/storage) -"mma" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/spawner/random/engineering/tracking_beacon, -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/navigate_destination/bar, -/obj/machinery/duct, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"mmo" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/dresser, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"mmt" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"mmu" = ( -/obj/structure/table, -/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/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/west, -/obj/machinery/status_display/ai/directional/north, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) -"mmE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"mmF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"mmY" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall/rust, -/area/station/maintenance/starboard) -"mnl" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"mnE" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"mnG" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/virology{ - name = "Virology Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "viro-airlock" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"mnK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"mnO" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"mnR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/office) -"mnY" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "bankshutter"; - name = "Bank Shutter"; - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/noticeboard/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"mob" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"moc" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"mog" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"mol" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/bomb) -"mop" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/security/glass{ - name = "Equipment Room" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"moz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/lockers) -"moD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research/glass{ - name = "Robotics Lab" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics_shutters"; - name = "Robotics Privacy Shutters" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/robotics, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"moK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"mpd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/landmark/start/warden, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"mpv" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/pharmacy) -"mqa" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel's Office" - }, -/obj/effect/landmark/navigate_destination, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood/corner, -/obj/effect/mapping_helpers/airlock/access/all/command/hop, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"mqC" = ( -/turf/open/floor/iron, -/area/station/security/prison) -"mqF" = ( -/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/hydroponics/glass{ - name = "Hydroponics" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"mqK" = ( -/obj/effect/turf_decal/stripes/line, -/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, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/gravity_generator) -"mqU" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/toilet/restrooms) -"mrl" = ( -/turf/closed/wall, -/area/station/command/heads_quarters/cmo) -"mrt" = ( -/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/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"mrz" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/light/broken/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"mrB" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/door_timer{ - id = "Cell 6"; - name = "Cell 6"; - pixel_x = -32 - }, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 6"; - name = "Cell 6 Locker" - }, -/turf/open/floor/iron, -/area/station/security/brig) -"mrC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"mrI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/door/directional/east{ - id = "Arrival Shuttle Bay"; - name = "Arrival Shuttle Bay Toggle"; - pixel_y = 8; - req_access = list("command") - }, -/obj/machinery/modular_computer/console/preset/id, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light_switch/directional/east{ - pixel_x = 24; - pixel_y = -3 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Departures Checkpoint"; - name = "shuttle camera" - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/customs) -"mrR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/closet/crate, -/obj/item/vending_refill/snack{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/vending_refill/cola, -/obj/item/screwdriver, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"msf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/painting/library_secure{ - pixel_x = -32 - }, -/obj/structure/table/wood/fancy/red, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/left/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/library) -"msL" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - 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/showroomfloor, -/area/station/medical/medbay/lobby) -"msM" = ( -/obj/structure/window/reinforced/spawner{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner, -/obj/structure/window/reinforced/spawner{ - dir = 8 - }, -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/ferny/style_random, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "emmd"; - name = "Emergency Medical Lockdown Shutters"; - dir = 4 - }, -/turf/open/floor/grass, -/area/station/medical/paramedic) -"msS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"msW" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/line{ - 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/engine, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"msY" = ( -/obj/structure/chair/pew/left{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/chapel, -/area/station/service/chapel) -"msZ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/chair/office, -/obj/effect/turf_decal/siding/red{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"mtc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"mtq" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/chair/office/light, -/obj/effect/landmark/start/research_director, -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/rd) -"mtw" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"mtA" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/effect/turf_decal/box/red, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/ai_monitored/turret_protected/ai) -"mtI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bodycontainer/crematorium{ - dir = 4 - }, -/turf/open/floor/iron/checker, -/area/station/security/processing/cremation) -"mtN" = ( -/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, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"mtV" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/port/greater) -"mtZ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"mua" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"mug" = ( -/obj/machinery/telecomms/server/presets/service, -/obj/structure/cable, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"mui" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"mun" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Brig" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/office) -"muN" = ( -/obj/machinery/computer/med_data{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"muR" = ( -/obj/structure/chair/sofa/right{ - color = "#c45c57" - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/starboard/fore) -"mvm" = ( -/obj/effect/turf_decal/arrows, -/obj/effect/decal/cleanable/blood/old, -/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) -"mvz" = ( -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab" - }, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/machinery/door/firedoor/heavy, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance_storage, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"mvD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"mvF" = ( -/obj/structure/chair/stool/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/warning, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/transfer) -"mvV" = ( -/obj/effect/turf_decal/siding/thinplating/dark/end{ - dir = 4 - }, -/obj/structure/window/spawner, -/obj/structure/window/spawner/east, -/obj/structure/window/spawner/north, -/obj/structure/flora/bush/flowers_pp/style_random, -/turf/open/floor/grass, -/area/station/service/chapel/monastery) -"mvW" = ( -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"mwe" = ( -/obj/machinery/smartfridge, -/turf/closed/wall, -/area/station/service/kitchen) -"mwj" = ( -/obj/machinery/door/airlock/external{ - name = "Departure Shuttle Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/cargo/warehouse) -"mwn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Engineering Foyer" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/hallway) -"mwp" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"mwy" = ( -/obj/machinery/newscaster/directional/west, -/obj/machinery/airalarm/directional/north, -/obj/machinery/computer/accounting{ - dir = 4 - }, -/turf/open/floor/carpet/blue, -/area/station/command/heads_quarters/hop) -"mwA" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/obj/item/wrench, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"mwG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"mwR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"mxf" = ( -/turf/closed/wall/r_wall/rust, -/area/station/security/execution/transfer) -"mxh" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -4; - pixel_y = 12 - }, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 7; - pixel_y = 12 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"mxo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"mxx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Engineering Foyer" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/engineering/hallway) -"mxH" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/security/brig) -"myc" = ( -/obj/structure/rack, -/obj/item/wirecutters{ - pixel_y = 5 - }, -/obj/item/wirerod, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"myd" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/mirror/directional/south, -/obj/item/mod/module/plasma_stabilizer, -/obj/item/mod/module/thermal_regulator, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"myg" = ( -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat_interior) -"myp" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison/garden) -"myz" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - name = "medical sorting disposal pipe"; - sortType = 9 - }, -/obj/effect/turf_decal/siding/blue/corner{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/storage) -"myS" = ( -/obj/effect/turf_decal/box, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/tcommsat/computer) -"myU" = ( -/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, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"mza" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/department/bridge) -"mzp" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/command/bridge) -"mzs" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/vending/wardrobe/hydro_wardrobe, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/checker, -/area/station/service/hydroponics) -"mzt" = ( -/obj/machinery/cryopod, -/obj/effect/turf_decal/siding/white, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/common/cryopods) -"mzB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"mzI" = ( -/obj/structure/transit_tube/diagonal/crossing/topleft, -/turf/open/space/basic, -/area/space/nearstation) -"mAa" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"mAc" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/dark, -/area/station/service/chapel/storage) -"mAf" = ( -/obj/effect/spawner/random/vending/snackvend, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"mAj" = ( -/obj/machinery/computer/station_alert{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/ai/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) -"mAH" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/gloves/color/latex, -/obj/item/storage/box/monkeycubes{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/storage/box/monkeycubes{ - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"mBm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/engineering/storage/tech) -"mBL" = ( -/obj/item/tank/internals/emergency_oxygen/engi{ - pixel_x = -5 - }, -/obj/item/tank/internals/emergency_oxygen/engi{ - pixel_x = 5 - }, -/obj/item/geiger_counter, -/obj/item/geiger_counter, -/obj/structure/table, -/obj/structure/sign/warning/xeno_mining/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"mBS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"mBW" = ( -/obj/structure/sign/warning/electric_shock/directional/north, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"mBX" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"mCg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Morgue" - }, -/obj/structure/disposalpipe/segment, -/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/medical/morgue, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"mCk" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"mCm" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/primary/aft) -"mCs" = ( -/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/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/machinery/duct, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"mCt" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"mCu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/light/directional/north, -/obj/machinery/status_display/ai/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/transfer) -"mCE" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/north, -/obj/machinery/newscaster/directional/north, -/obj/machinery/computer/atmos_control/nocontrol/master, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage/gas) -"mCF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/spider/stickyweb, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"mCO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/newscaster/directional/south, -/obj/machinery/camera/autoname/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"mCT" = ( -/obj/machinery/light/floor, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"mCV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"mDb" = ( -/obj/structure/transit_tube/station/reverse{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/transit_tube_pod{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/hallway/primary/central/fore) -"mDj" = ( -/turf/closed/wall, -/area/station/science/genetics) -"mDD" = ( -/turf/closed/wall/rust, -/area/station/cargo/warehouse) -"mDJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Security's Office" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/hos, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"mDM" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/light/directional/south, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/box, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/hallway) -"mDQ" = ( -/turf/closed/wall/r_wall, -/area/station/security/checkpoint/science/research) -"mEg" = ( -/turf/closed/wall/r_wall/rust, -/area/station/security/prison/mess) -"mEj" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"mEt" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "medbay_front_door"; - name = "Medbay Doors Toggle"; - normaldoorcontrol = 1; - req_access = list("medical") - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"mEH" = ( -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/storage) -"mER" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/light_switch/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"mEW" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/office) -"mFa" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/closet/emcloset/anchored, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"mFb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"mFt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/steam_vent, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"mFE" = ( -/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, -/area/station/maintenance/port/fore) -"mFQ" = ( -/obj/structure/chair/sofa/bench{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/fore) -"mGj" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/engineering/hallway) -"mGo" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/storage/belt/utility, -/obj/item/clothing/head/welding, -/obj/item/clothing/glasses/welding, -/obj/structure/noticeboard/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"mGz" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/aicard, -/obj/item/ai_module/reset, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"mGG" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/security/processing) -"mGS" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/light/directional/south, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/showroomfloor, -/area/station/science/lab) -"mHa" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"mHc" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Office" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-passthrough" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/captain, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/captain) -"mHd" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light_switch/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/command/storage/satellite) -"mHe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/bookcase{ - name = "Forbidden Knowledge" - }, -/turf/open/floor/iron/dark, -/area/station/service/library) -"mHf" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/service/chapel) -"mHm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/landmark/start/orderly, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron/showroomfloor, -/area/station/security/checkpoint/medical) -"mHq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/item/radio/intercom/directional/south{ - freerange = 1; - frequency = 1447; - listening = 0; - name = "Private Channel" - }, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"mHu" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"mIe" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - 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/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"mIo" = ( -/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, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"mIq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Server Room" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, -/turf/open/floor/iron/dark, -/area/station/tcommsat/server) -"mIR" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/bed/dogbed/cayenne{ - name = "Lia's bed" - }, -/obj/structure/extinguisher_cabinet/directional/east, -/mob/living/simple_animal/hostile/carp/lia, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"mIT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"mIW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison) -"mIX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/mob/living/simple_animal/bot/secbot/pingsky, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat_interior) -"mJo" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Custodial"; - location = "Tools"; - name = "tools navigation beacon" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"mJA" = ( -/obj/structure/punching_bag, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/station/security/prison) -"mJP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Nitrogen Outlet" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"mKo" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - 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 = "virology sorting disposal pipe"; - sortType = 27 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"mKv" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/obj/structure/chair/comfy, -/turf/open/floor/iron, -/area/station/security/courtroom) -"mKw" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"mKA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"mKC" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/ore_box, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"mKI" = ( -/obj/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/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"mKP" = ( -/obj/machinery/light/small/directional/east, -/mob/living/basic/cow, -/turf/open/misc/sandy_dirt, -/area/station/service/hydroponics/garden) -"mLb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/command/gateway) -"mLd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/smooth_large, -/area/station/maintenance/department/chapel/monastery) -"mLe" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/education) -"mLE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"mLJ" = ( -/obj/machinery/ntnet_relay, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"mLN" = ( -/turf/closed/wall, -/area/station/maintenance/disposal/incinerator) -"mLP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/computer/department_orders/security{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/office) -"mMa" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"mMb" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/closet{ - name = "suit closet" - }, -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"mMc" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/right/directional/west, -/obj/structure/window/reinforced, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"mMj" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall/rust, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"mMp" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"mMv" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/station/solars/port/fore) -"mMy" = ( -/turf/closed/wall/r_wall, -/area/station/security/execution/transfer) -"mMz" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/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/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"mMB" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"mMC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - name = "ce sorting disposal pipe"; - sortType = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"mMJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"mMP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"mMR" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/paicard, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/bar/atrium) -"mNt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4; - external_pressure_bound = 140; - pressure_checks = 0 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"mNz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Bar Backroom" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/bar, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"mNT" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"mOa" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/structure/sign/plaques/kiddie/library{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/wood, -/area/station/maintenance/starboard/fore) -"mOb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security{ - aiControlDisabled = 1; - id_tag = "justicedoor"; - name = "Justice Chamber" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/structure/cable, -/obj/machinery/button/door/directional/west{ - id = "justicedoor"; - name = "Justice Door Lock"; - normaldoorcontrol = 1; - req_access = list("armory"); - silicon_access_disabled = 1; - specialfunctions = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"mOg" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"mOj" = ( -/obj/structure/chair/sofa/right{ - color = "#c45c57"; - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/bar/atrium) -"mOt" = ( -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"mOz" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"mOK" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"mPo" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/mineral/plasma{ - amount = 5 - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) -"mPE" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/directional/east{ - c_tag = "Xenobiology Computers"; - name = "xenobiology camera"; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"mPM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Break Room" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"mPP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"mPS" = ( -/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, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"mPZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"mQe" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"mQj" = ( -/obj/machinery/mineral/equipment_vendor, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/status_display/supply{ - pixel_y = -32 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Mining Dock"; - name = "cargo camera"; - network = list("ss13","qm") - }, -/turf/open/floor/iron/dark, -/area/station/cargo/miningoffice) -"mQk" = ( -/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, -/area/station/maintenance/port/fore) -"mQu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/station/science/genetics) -"mQB" = ( -/obj/effect/turf_decal/arrows/white, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"mQN" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/service/bar/atrium) -"mQR" = ( -/obj/structure/closet/secure_closet/personal{ - name = "Commissary Locker" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/commons/vacant_room/commissary) -"mQS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"mQW" = ( -/obj/effect/turf_decal/box/white{ - color = "#EFB341" - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"mQY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"mRf" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"mRi" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/stock_parts/micro_laser{ - desc = "A tiny laser used in certain devices. A lil left."; - pixel_x = -6 - }, -/obj/item/stock_parts/micro_laser{ - desc = "A tiny laser used in certain devices. A lil left."; - pixel_x = -6 - }, -/obj/item/stock_parts/micro_laser{ - desc = "A tiny laser used in certain devices. A lil left."; - pixel_x = -6 - }, -/obj/item/stock_parts/micro_laser{ - desc = "A tiny laser used in certain devices. A lil left."; - pixel_x = -6 - }, -/obj/item/stock_parts/micro_laser{ - desc = "A tiny laser used in certain devices. A lil left."; - pixel_x = -6 - }, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/capacitor{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/status_display/ai/directional/north, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) -"mRm" = ( -/obj/structure/table, -/obj/item/toy/cards/deck{ - pixel_x = -9 - }, -/obj/item/storage/dice{ - pixel_x = -8; - pixel_y = 11 - }, -/obj/item/storage/photo_album/prison{ - pixel_x = 8; - pixel_y = -3 - }, -/turf/open/floor/iron/grimy, -/area/station/security/prison) -"mRo" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"mRV" = ( -/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 = 10 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"mSf" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/closed/wall/rust, -/area/station/engineering/atmos) -"mSm" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Incinerator Entrance"; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/obj/item/hfr_box/body/fuel_input, -/obj/item/hfr_box/body/interface, -/obj/item/hfr_box/body/moderator_input, -/obj/item/hfr_box/body/waste_output, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"mSo" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "commissaryshutter"; - name = "Vacant Commissary Shutter"; - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/station/commons/vacant_room/commissary) -"mSq" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"mSu" = ( -/obj/structure/table, -/obj/machinery/light/directional/west, -/obj/item/clipboard, -/obj/item/airlock_painter{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/airlock_painter, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/hallway) -"mSC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"mSE" = ( -/obj/machinery/door/airlock/grunge{ - name = "Crematorium" - }, -/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/service/crematorium, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"mSM" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"mST" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"mTz" = ( -/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/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"mTJ" = ( -/obj/structure/toilet, -/obj/machinery/light/small/directional/north, -/obj/effect/spawner/random/contraband/prison, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/vault, -/area/station/security/prison/shower) -"mTK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"mTM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/station/security/prison) -"mUp" = ( -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"mUs" = ( -/obj/effect/turf_decal/stripes/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, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"mUA" = ( -/obj/effect/decal/cleanable/chem_pile, -/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/broken_floor, -/turf/open/floor/plating, -/area/station/security/prison) -"mVf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/office) -"mVh" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/rd) -"mVm" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 2; - name = "robotics sorting disposal pipe"; - sortType = 14 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/research) -"mVo" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - 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/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"mVL" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/storage/box/bodybags{ - pixel_y = 5 - }, -/obj/item/storage/medkit/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/storage/medkit/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/storage/medkit/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/stack/package_wrap, -/obj/item/healthanalyzer, -/obj/item/healthanalyzer, -/obj/item/healthanalyzer, -/obj/machinery/camera/directional/north{ - c_tag = "Robotics Lab"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"mVP" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/arrows, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"mWg" = ( -/obj/effect/turf_decal/bot, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"mWj" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/easel, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"mWn" = ( -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/engineering/gravity_generator) -"mWq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/port) -"mWy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison) -"mWR" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"mWS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics_shutters"; - name = "Robotics Privacy Shutters" - }, -/turf/open/floor/plating, -/area/station/science/robotics/lab) -"mWV" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall, -/area/station/maintenance/port/aft) -"mWZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/sign/poster/contraband/random/directional/north, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/cargo/warehouse) -"mXI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/central) -"mXM" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"mXO" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L5" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"mXX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/junction/flip, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/genetics) -"mYv" = ( -/obj/effect/turf_decal/siding/thinplating/dark/end{ - dir = 8 - }, -/turf/open/floor/glass/reinforced, -/area/station/service/chapel/monastery) -"mYV" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/lobby) -"mYX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"mZb" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"mZn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/effect/spawner/random/entertainment/money_large, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"mZz" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/girder/displaced, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"mZF" = ( -/obj/effect/turf_decal/stripes/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, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/transfer) -"mZK" = ( -/obj/machinery/airalarm/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"mZO" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"mZR" = ( -/obj/machinery/door/airlock/maintenance/external{ - name = "Transit Intersection" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"mZS" = ( -/obj/machinery/light/directional/east, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"mZT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/closed/wall/rust, -/area/space/nearstation) -"mZW" = ( -/turf/closed/wall/r_wall, -/area/station/service/bar/atrium) -"naf" = ( -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/obj/structure/window/spawner, -/obj/structure/window/spawner/north, -/obj/structure/flora/rock/pile/style_random, -/turf/open/floor/grass, -/area/station/service/chapel/monastery) -"nal" = ( -/obj/structure/cable, -/obj/structure/chair/sofa/left{ - color = "#c45c57"; - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/hangover, -/obj/machinery/camera/directional/south{ - c_tag = "Atrium Port"; - name = "service camera" - }, -/turf/open/floor/iron/dark, -/area/station/service/bar/atrium) -"nam" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"nan" = ( -/obj/machinery/computer/department_orders/engineering{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"naw" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"nax" = ( -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/flora/bush/lavendergrass/style_random, -/turf/open/floor/grass, -/area/station/hallway/primary/fore) -"naC" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Medbay Lobby"; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/lobby) -"naK" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"naQ" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"naY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"nbg" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/paramedic) -"nbn" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/structure/grille/broken, -/obj/item/wallframe/apc, -/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) -"nbu" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Bridge Starboard"; - name = "command camera" - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"nby" = ( -/turf/closed/wall/r_wall, -/area/station/security/courtroom) -"nbC" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/item/radio/intercom/prison/directional/south, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"nbH" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/radio/intercom/directional/east, -/obj/machinery/camera/directional/north{ - c_tag = "Secure tech_storage"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/turf/open/floor/engine, -/area/station/engineering/storage/tech) -"nbI" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/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/aft) -"nbJ" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/courtroom) -"nbO" = ( -/obj/structure/table, -/obj/structure/cable, -/obj/item/food/sausage, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"nbR" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"nbU" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"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 = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/monastery) -"ncj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"ncB" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/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, -/area/station/hallway/primary/aft) -"ncC" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/rd) -"ncH" = ( -/turf/open/floor/iron, -/area/station/cargo/storage) -"ncQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/iron, -/area/station/cargo/storage) -"ncS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"ndz" = ( -/obj/machinery/smartfridge/extract/preloaded, -/turf/closed/wall, -/area/station/science/xenobiology) -"ndP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"ndS" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"ndT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/cook, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"nec" = ( -/obj/effect/turf_decal/arrows/white{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"nem" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"nep" = ( -/obj/structure/cable, -/obj/machinery/modular_computer/console/preset/command, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"nes" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/lobby) -"nex" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Courtroom" - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/service/lawyer, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"neJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "chem-passthrough" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"nfa" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"nfd" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall, -/area/station/cargo/storage) -"nfe" = ( -/obj/machinery/mecha_part_fabricator, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"nfD" = ( -/obj/structure/spirit_board, -/obj/machinery/light/very_dim/directional/south, -/turf/open/floor/cult, -/area/station/service/chapel/office) -"nfI" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted{ - 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/showroomfloor, -/area/station/science/ordnance) -"nfN" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/rnd_secure_all, -/obj/machinery/light/small/directional/south, -/obj/machinery/status_display/shuttle{ - pixel_y = -32 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/engineering/storage/tech) -"nfO" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Research Division" - }, -/obj/machinery/door/window/left/directional/west{ - dir = 2; - name = "Research Division Delivery Access"; - req_access = list("research") - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) -"nfR" = ( -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/bush/ferny/style_random, -/obj/effect/decal/cleanable/dirt, -/turf/open/misc/asteroid, -/area/space/nearstation) -"nfX" = ( -/turf/closed/wall/r_wall, -/area/station/science/server) -"ngg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/port) -"ngi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/research{ - name = "Genetics Lab" - }, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, -/obj/effect/mapping_helpers/airlock/access/any/science/genetics, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"ngl" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"ngF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"ngI" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/security/prison) -"ngW" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/hostile/cat_butcherer, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"nhc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table_frame, -/obj/machinery/camera/directional/north{ - c_tag = "Incinerator"; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"nhd" = ( -/obj/machinery/flasher/directional/north{ - id = "AI"; - name = "Meatbag Pacifier" - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/ai_monitored/turret_protected/ai) -"nhy" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/rack, -/obj/item/storage/backpack/satchel/science, -/obj/item/analyzer, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"nhz" = ( -/obj/structure/sign/departments/security/directional/east, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/aft) -"nhO" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/landmark/start/atmospheric_technician, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nie" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"nig" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/misc/asteroid, -/area/space/nearstation) -"nij" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/suit/apron/surgical, -/obj/item/clothing/mask/surgical, -/obj/item/mmi, -/obj/item/mmi, -/obj/item/mmi, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"nim" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/structure/chair/stool/directional/south, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"niy" = ( -/obj/machinery/photocopier, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/box/white, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"niL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/iron/smooth_large, -/area/station/maintenance/department/chapel/monastery) -"niQ" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/department/bridge) -"njd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/command/bridge) -"njf" = ( -/obj/machinery/door/airlock/medical{ - id_tag = "Unit_3"; - name = "Unit 3" - }, -/turf/open/floor/iron/dark, -/area/station/commons/toilet/restrooms) -"njL" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"njT" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"nkd" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/storage/briefcase, -/obj/item/clothing/neck/tie/red, -/obj/item/clothing/head/bowler{ - pixel_y = 8 - }, -/obj/item/cane, -/turf/open/floor/iron, -/area/station/commons/locker) -"nkg" = ( -/obj/machinery/igniter/incinerator_atmos, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"nki" = ( -/turf/closed/wall/rust, -/area/station/hallway/primary/fore) -"nkN" = ( -/turf/closed/wall/r_wall, -/area/station/science/ordnance/bomb) -"nkQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Chapel Hallway" - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/fore) -"nlA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/security/detectives_office) -"nlR" = ( -/turf/closed/wall/rust, -/area/station/medical/virology) -"nmo" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"nmq" = ( -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "packagereturn"; - name = "crate returns"; - pixel_x = 6; - pixel_y = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/dark/textured, -/area/station/hallway/primary/starboard) -"nms" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Server Room" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"nmu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"nmR" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/requests_console/directional/east{ - announcementConsole = 1; - department = "Research Director's Desk"; - departmentType = 5; - name = "Research Director's Requests Console" - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"nnp" = ( -/obj/effect/turf_decal/tile/yellow{ - 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/showroomfloor, -/area/station/medical/chemistry) -"nny" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"nnA" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/siding/red{ - dir = 8 - }, -/obj/effect/landmark/start/customs_agent, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"nnV" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/command/teleporter) -"noj" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"nol" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"not" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - 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, -/area/station/hallway/primary/fore) -"noE" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/chair, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"noO" = ( -/obj/structure/flora/tree/jungle/small/style_random, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/grass, -/area/station/medical/psychology) -"npg" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Connector" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) -"npi" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/science/robotics/mechbay) -"npo" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"npr" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/commons/fitness/recreation) -"nps" = ( -/obj/structure/chair/pew/right{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"npx" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"npy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"npR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/station/security/checkpoint/engineering) -"nqg" = ( -/obj/structure/closet/secure_closet/security/cargo, -/obj/effect/turf_decal/delivery, -/obj/item/crowbar, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/supply) -"nqh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/east, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"nqm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/grunge{ - name = "Morgue" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"nqn" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"nqs" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall, -/area/station/maintenance/starboard/fore) -"nqx" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"nqE" = ( -/obj/machinery/disposal/bin{ - desc = "A pneumatic waste disposal unit. This one leads into space!"; - name = "deathsposal unit" - }, -/obj/effect/turf_decal/box, -/obj/structure/cable, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"nqF" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/shutters{ - id = "sidearmory"; - name = "Side Armoury Shutter" - }, -/obj/machinery/button/door/directional/south{ - id = "sidearmory"; - name = "Armoury Shutter Toggle"; - req_access = list("armory") - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"nqR" = ( -/obj/structure/table, -/obj/item/clothing/under/rank/prisoner/skirt{ - pixel_x = -13; - pixel_y = 5 - }, -/obj/item/clothing/under/rank/prisoner/skirt{ - pixel_x = 9; - pixel_y = 5 - }, -/obj/item/clothing/under/rank/prisoner{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/transfer) -"nqX" = ( -/obj/structure/sign/poster/contraband/random/directional/east, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"nqZ" = ( -/obj/structure/chair/sofa/right{ - color = "#c45c57"; - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/bar/atrium) -"nrh" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/janitor, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"nri" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/pharmacy) -"nrv" = ( -/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, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"nrB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"nrF" = ( -/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, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"nrJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/chair_maintenance{ - dir = 4 - }, -/obj/effect/spawner/random/maintenance, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"nrN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/decoration/glowstick, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"nrS" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"nsl" = ( -/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/showroomfloor, -/area/station/medical/chemistry) -"nsp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"nsM" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/structure/grille/broken, -/obj/item/clothing/suit/hazardvest{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"nsQ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/box, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"nsZ" = ( -/obj/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/chapel) -"ntb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"ntf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"nts" = ( -/obj/structure/janitorialcart, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/janitor) -"ntC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/landmark/navigate_destination/teleporter, -/turf/open/floor/iron, -/area/station/command/teleporter) -"ntE" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/departments/security/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"ntG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/machinery/light/small/directional/west, -/obj/item/stack/cable_coil{ - pixel_y = 8 - }, -/obj/item/stack/rods/ten{ - pixel_y = 4 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 10 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"ntR" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/security/processing) -"nuf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"nuh" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"nul" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"nuo" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"nuz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/security/office) -"nuF" = ( -/obj/item/radio/intercom/directional/north, -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"nuL" = ( -/obj/structure/flora/rock/style_random, -/obj/effect/decal/cleanable/dirt, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"nuZ" = ( -/obj/effect/turf_decal/tile/neutral{ - 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/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"nvq" = ( -/obj/structure/chair/office/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/science_guard, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science/research) -"nvA" = ( -/obj/machinery/suit_storage_unit/hos, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/item/storage/secure/safe/hos{ - pixel_x = 36; - pixel_y = 28 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hos) -"nvE" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"nvH" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall/r_wall/rust, -/area/station/medical/virology) -"nvI" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/lab) -"nvK" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/computer/security/telescreen/prison{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/computer/security{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/warden) -"nvP" = ( -/obj/structure/cable, -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/spawner/random/engineering/tracking_beacon, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plastic, -/area/station/hallway/secondary/service) -"nwf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"nwh" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/ai_all, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/engineering/storage/tech) -"nwp" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/obj/structure/reagent_dispensers/wall/peppertank/directional/south, -/obj/machinery/camera/directional/east{ - c_tag = "Science Security Post"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/machinery/button/door/directional/south{ - id = "Biohazard"; - name = "Emergency Research Lockdown"; - pixel_x = 24; - req_access = list("brig_entrance") - }, -/obj/machinery/recharger{ - pixel_x = -3 - }, -/obj/item/radio{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science/research) -"nwE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/central/fore) -"nwI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"nwN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"nwY" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"nxa" = ( -/obj/machinery/door/airlock/external{ - name = "Science Escape Pod"; - space_dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) -"nxj" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/research) -"nxx" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"nxY" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nyw" = ( -/obj/machinery/door/airlock/engineering{ - name = "Emergency Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/service/janitor, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"nzu" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/structure/flora/bush/flowers_br/style_random, -/obj/structure/flora/bush/leavy/style_random, -/obj/structure/flora/bush/stalky/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"nzz" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/rd) -"nzD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"nzW" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/security/brig) -"nAa" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_y = 5 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"nAe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"nAE" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/department/bridge) -"nAH" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"nBd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"nBD" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - 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, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"nBE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"nBZ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/newscaster/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/fore) -"nCc" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"nCf" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"nCs" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/commons/locker) -"nCv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"nCA" = ( -/obj/structure/flora/bush/flowers_pp/style_random, -/obj/structure/flora/bush/reed/style_random, -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/machinery/light/directional/south, -/turf/open/floor/grass, -/area/station/hallway/primary/fore) -"nCI" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"nCK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"nCL" = ( -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"nCS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "greylair"; - name = "Lair Privacy Shutter" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"nCU" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/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/turf_decal/stripes/line, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/virology) -"nDi" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nDp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/meter/layer2, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"nDK" = ( -/obj/machinery/flasher/directional/east{ - id = "AI"; - name = "Meatbag Pacifier" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai_upload) -"nDM" = ( -/obj/machinery/button/door/directional/south{ - id = "ordnancemix"; - name = "Ordnance Lab Access"; - pixel_x = 24; - req_access = list("ordnance") - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"nDS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/photocopier, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"nDX" = ( -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"nDZ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"nEe" = ( -/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/aft) -"nEg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"nEs" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/commons/storage/primary) -"nEx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/wood{ - dir = 10 - }, -/turf/open/floor/wood, -/area/station/cargo/qm) -"nEA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/holopad, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/research) -"nEQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"nEV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics/garden) -"nFb" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/lab) -"nFe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"nFm" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"nFu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/public/glass{ - name = "Tool Storage" - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/commons/storage/primary) -"nFy" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/brown, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"nFN" = ( -/obj/machinery/igniter/incinerator_ordmix, -/mob/living/simple_animal/chicken{ - atmos_requirements = list("min_oxy"=0,"max_oxy"=0,"min_tox"=0,"max_tox"=1,"min_co2"=0,"max_co2"=0,"min_n2"=0,"max_n2"=0); - desc = "A timeless classic."; - name = "Kentucky" - }, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"nFT" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/cargo/storage) -"nGt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/south, -/obj/structure/sign/departments/botany/directional/south, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"nGC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/surgery/fore) -"nGE" = ( -/obj/structure/table/wood/fancy, -/obj/item/food/grown/poppy{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/food/grown/poppy{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/food/grown/poppy, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"nGH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/vomit/old, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"nGJ" = ( -/obj/effect/mapping_helpers/iannewyear, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"nGK" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/engine/telecomms, -/area/station/tcommsat/server) -"nHd" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"nHy" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"nHC" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Gas to Mix" - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"nHG" = ( -/obj/structure/chair/sofa/left{ - color = "#c45c57"; - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/bar/atrium) -"nHO" = ( -/turf/closed/wall/rust, -/area/station/service/janitor) -"nHT" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"nIg" = ( -/obj/machinery/door/airlock/security{ - name = "Science Guard's Office" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/red{ - dir = 4 - }, -/obj/machinery/door/firedoor/heavy, -/obj/effect/mapping_helpers/airlock/access/all/science/sci_guard, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science/research) -"nIh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"nIq" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/command/nuke_storage) -"nIw" = ( -/obj/structure/cable, -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/peppermill{ - desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; - pixel_x = -8; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - desc = "Salt. From space oceans, presumably. A staple of modern medicine."; - pixel_x = -8; - pixel_y = 12 - }, -/turf/open/floor/iron/dark, -/area/station/service/bar/atrium) -"nIx" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"nIR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"nIW" = ( -/obj/item/toy/plush/pkplush{ - desc = "Give HUG-E a hug!"; - name = "TH3R4PY-X09" - }, -/obj/machinery/flasher/directional/north{ - id = "IsolationFlash" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron/white, -/area/station/security/prison/safe) -"nIX" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad/secure, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat_interior) -"nJj" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"nJv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/secure_closet/security/cargo, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/supply) -"nJA" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/kirbyplants{ - icon_state = "plant-03" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"nJF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"nJK" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/showroomfloor, -/area/station/science/robotics/lab) -"nJQ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/closet/athletic_mixed, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"nJV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/human, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/mob/living/simple_animal/hostile/jungle/mook{ - environment_smash = 0; - name = "deformed creature" - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"nKh" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/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, -/area/station/commons/locker) -"nKj" = ( -/obj/effect/turf_decal/siding/thinplating/dark/end{ - dir = 4 - }, -/turf/open/floor/glass/reinforced, -/area/station/service/chapel) -"nKn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"nKr" = ( -/obj/effect/turf_decal/tile/red, -/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/showroomfloor, -/area/station/security/office) -"nKu" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/door_timer{ - id = "Cell 2"; - name = "Cell 2"; - pixel_x = -32 - }, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 2"; - name = "Cell 2 Locker" - }, -/turf/open/floor/iron, -/area/station/security/brig) -"nKv" = ( -/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 = 6 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"nKy" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"nKC" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/virology) -"nKO" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/security/prison/safe) -"nKQ" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"nKV" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"nLk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/common/cryopods) -"nLm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random/directional/west, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"nLZ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/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/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"nMj" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/box, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"nMB" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/machinery/requests_console/directional/south{ - department = "Security"; - departmentType = 5; - name = "Security Requests Console" - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science/research) -"nMD" = ( -/obj/structure/girder/displaced, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"nMQ" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"nNb" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/station/solars/starboard/aft) -"nNM" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"nNT" = ( -/obj/structure/sign/departments/custodian, -/turf/closed/wall, -/area/station/maintenance/fore) -"nNV" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"nNW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/vending/wardrobe/robo_wardrobe, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"nOc" = ( -/obj/structure/bookcase/random/reference, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/wood, -/area/station/service/library) -"nOg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/checkpoint/engineering) -"nOp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/security/courtroom) -"nOI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"nOJ" = ( -/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 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"nOL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"nOR" = ( -/obj/effect/turf_decal/stripes/line, -/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/showroomfloor, -/area/station/security/execution/transfer) -"nPk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/machinery/holopad, -/turf/open/floor/wood, -/area/station/cargo/qm) -"nPl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"nPo" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hos) -"nPz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/brown, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"nPN" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos) -"nPS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"nPT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"nPV" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/spawner/random/structure/tank_holder, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/starboard) -"nQo" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/iron/stairs/medium{ - dir = 1 - }, -/area/station/service/chapel) -"nQs" = ( -/obj/structure/chair/pew/left{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"nQx" = ( -/obj/effect/turf_decal/box, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"nQK" = ( -/turf/closed/wall/r_wall/rust, -/area/station/security/prison/shower) -"nQO" = ( -/obj/machinery/conveyor/inverted{ - dir = 10; - id = "packagereturn"; - name = "crate return belt" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plating, -/area/station/cargo/storage) -"nQX" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/closet/wardrobe/mixed, -/obj/machinery/light/small/directional/south, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"nRC" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/emergency{ - pixel_y = 5 - }, -/obj/item/stack/cable_coil, -/obj/item/wirecutters, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/airalarm/directional/west, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Recreation Arcade"; - name = "recreation camera" - }, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"nRO" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"nSf" = ( -/obj/effect/turf_decal/tile/purple/anticorner/contrasted, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/office) -"nSh" = ( -/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/white{ - dir = 1 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"nSq" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/goldcrate, -/obj/machinery/firealarm/directional/west, -/obj/item/crowbar/power, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"nSy" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/wall/rust, -/area/station/maintenance/port/greater) -"nSZ" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = 6 - }, -/obj/item/storage/box/gloves{ - pixel_x = -5 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"nTd" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"nTo" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"nTr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hop) -"nTG" = ( -/obj/effect/spawner/random/vending/snackvend, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/central/fore) -"nTK" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/bridge) -"nUf" = ( -/obj/machinery/newscaster/directional/north, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"nUP" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"nUZ" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/delivery, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage_shared) -"nVc" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/office) -"nWG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/storage/tech) -"nWM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"nWR" = ( -/obj/structure/closet/cardboard, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"nWU" = ( -/obj/structure/tank_dispenser, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"nWW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/closet/secure_closet/psychology, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/psychology) -"nXp" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "Xenolab"; - name = "Containment Chamber Toggle"; - pixel_y = 4; - req_access = list("xenobiology") - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"nXu" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/checkpoint/customs) -"nXC" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/toilet/restrooms) -"nXW" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"nYa" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"nYo" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/storage/backpack/duffelbag/engineering{ - pixel_y = 5 - }, -/obj/item/assembly/signaler{ - desc = "Used to remotely activate devices. Allows for syncing when using a secure signaler on another. Slightly scooted."; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/assembly/signaler{ - desc = "Used to remotely activate devices. Allows for syncing when using a secure signaler on another. Slightly scooted."; - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/iron/dark, -/area/station/commons/storage/primary) -"nYp" = ( -/obj/machinery/telecomms/hub/preset, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"nYD" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"nYP" = ( -/turf/closed/wall, -/area/station/hallway/primary/starboard) -"nZk" = ( -/obj/structure/table/reinforced, -/obj/structure/displaycase/forsale/kitchen{ - pixel_y = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchenshutters"; - name = "Kitchen Shutters"; - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/service/kitchen) -"nZt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/obj/item/clothing/under/rank/civilian/lawyer/black{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/under/rank/civilian/lawyer/black, -/obj/item/clothing/neck/tie/black{ - pixel_x = 6 - }, -/obj/item/clothing/neck/tie/red, -/obj/item/clothing/mask/animal/small/jackal, -/obj/item/clothing/mask/animal/small/jackal, -/obj/structure/spider/stickyweb, -/obj/machinery/button/door/directional/west{ - id = "bank"; - name = "Bank Vault Lock"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"nZC" = ( -/obj/effect/turf_decal/bot, -/obj/structure/punching_bag, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/noticeboard/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"nZE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"nZF" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"nZG" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/button/door/directional/east{ - id = "Arrival Shuttle Bay"; - name = "Arrival Shuttle Bay Toggle"; - req_access = list("command") - }, -/obj/machinery/light/directional/east, -/turf/open/floor/plating/airless, -/area/station/hallway/secondary/entry) -"nZJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"nZM" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/siding/red{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"nZZ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/obj/structure/chair/stool/directional/east, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"oam" = ( -/turf/closed/wall, -/area/station/maintenance/disposal) -"oat" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"oay" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"oaz" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/security/detectives_office) -"oaF" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"oaK" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, -/turf/open/space/basic, -/area/space/nearstation) -"oaO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/window/reinforced/spawner/north, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"obi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"obq" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/left/directional/north{ - name = "Kitchen Delivery Access"; - req_access = list("kitchen") - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Kitchen" - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/bridge) -"obM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/grunge{ - name = "Restrooms" - }, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"obU" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/storage/box/monkeycubes, -/obj/item/reagent_containers/syringe/antiviral, -/obj/item/reagent_containers/dropper, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/reagent_dispensers/wall/virusfood/directional/south, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"oca" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters{ - id = "virologysurgery"; - name = "Virology Privacy Shutters"; - dir = 8 - }, -/turf/open/floor/plating, -/area/station/medical/virology) -"oce" = ( -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/structure/flora/bush/grassy/style_random, -/obj/structure/flora/bush/pale/style_random, -/turf/open/misc/asteroid, -/area/station/maintenance/port/lesser) -"ocg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/tile/wood, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"ocn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"ocq" = ( -/obj/structure/closet/secure_closet/brig, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/transfer) -"ocv" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"ocx" = ( -/obj/effect/turf_decal/box, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"ocz" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"ocE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"ocL" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"ocO" = ( -/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/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"ocQ" = ( -/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, -/area/station/engineering/lobby) -"ocS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"ocZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/green/line{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"odc" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigfrontdoor"; - name = "Front Security Blast Door" - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"odd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/door/airlock/research{ - glass = 1; - name = "Slime Euthanization Chamber"; - opacity = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"odA" = ( -/obj/effect/turf_decal/stripes/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, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"odE" = ( -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/bush/pointy/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"oeF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"oeS" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrogen_input{ - dir = 4 - }, -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"ofa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/grille/broken, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"ofg" = ( -/turf/closed/wall, -/area/station/medical/pharmacy) -"ofp" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"ofq" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"ofr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"ofs" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/destructive_scanner, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/starboard) -"oft" = ( -/obj/machinery/power/solar_control{ - dir = 8; - id = "aftstarboard"; - name = "Starboard Quarter Solar Control" - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/sign/warning/vacuum/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"ofx" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "brigcelldoor"; - name = "Cell Blast Door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"ofz" = ( -/obj/structure/flora/rock/pile/style_random, -/turf/open/misc/asteroid, -/area/station/maintenance/port/lesser) -"ofA" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"ofB" = ( -/obj/structure/flora/grass/jungle/a/style_random, -/obj/structure/flora/bush/ferny/style_random, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/station/medical/virology) -"ofM" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/research) -"ogg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/clothing/neck/stethoscope, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"ogk" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"ogA" = ( -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/lowpressure, -/area/space/nearstation) -"ogM" = ( -/obj/structure/table/wood/fancy, -/obj/effect/turf_decal/siding/wideplating/dark/corner, -/obj/item/food/grown/poppy{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/food/grown/poppy{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/food/grown/poppy, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"ohj" = ( -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/hallway) -"ohq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/chair/sofa/corp/right{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"ohR" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/tank/internals/oxygen/yellow, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/cargo/miningoffice) -"oic" = ( -/obj/structure/chair/sofa/bench/left{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/fore) -"oig" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/transfer) -"oiq" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/fore) -"oiu" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple/corner, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"oix" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"oiJ" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"oiK" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/loading_area, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/storage) -"oiO" = ( -/turf/closed/wall/mineral/bronze, -/area/station/maintenance/department/chapel) -"oiS" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"oiV" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/obj/item/clothing/neck/tie/detective, -/turf/open/floor/carpet/green, -/area/station/maintenance/port/greater) -"ojj" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/warning/secure_area/directional/east, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"ojs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/newscaster/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Law Office" - }, -/turf/open/floor/carpet/green, -/area/station/service/lawoffice) -"ojG" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"ojW" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/west, -/obj/item/clothing/mask/russian_balaclava, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"ojZ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"okc" = ( -/obj/machinery/light/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/smooth_large, -/area/station/maintenance/department/chapel/monastery) -"oki" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/cable, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/engineering/gravity_generator) -"okk" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"okp" = ( -/turf/closed/wall/r_wall/rust, -/area/station/engineering/supermatter) -"okq" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos) -"okr" = ( -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/service/chapel/funeral) -"okt" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/door/window/left/directional/north{ - dir = 4; - name = "Creature Cell"; - req_access = list("xenobiology") - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"okJ" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"okP" = ( -/obj/machinery/door/poddoor/shutters{ - id = "custodialwagon"; - name = "Custodial Bay"; - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/service/janitor) -"olv" = ( -/obj/structure/flora/bush/grassy/style_random, -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/stalky/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"olz" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Security Hallway" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"olL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"olN" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/west, -/obj/machinery/newscaster/directional/west, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"olP" = ( -/obj/machinery/door/airlock/atmos{ - name = "Filter Chamber" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/iron/dark, -/area/station/maintenance/aft) -"omi" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/medical_doctor, -/obj/structure/cable, -/obj/effect/turf_decal/siding/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"omH" = ( -/obj/machinery/door/poddoor/shutters{ - id = "Skynet_launch"; - name = "Mech Bay" - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/station/science/robotics/mechbay) -"omN" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"omO" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/station/holodeck/rec_center) -"omQ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/security/brig) -"onc" = ( -/obj/effect/landmark/start/roboticist, -/obj/structure/cable, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/science/robotics/mechbay) -"onf" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/storage) -"onm" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/obj/item/circuitboard/machine/telecomms/bus{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/circuitboard/machine/telecomms/broadcaster, -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/subspace/treatment, -/obj/machinery/camera/directional/north{ - c_tag = "Telecomms Storage"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) -"onr" = ( -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"ons" = ( -/obj/machinery/recharger{ - pixel_x = -7 - }, -/obj/machinery/recharger{ - pixel_x = 7 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/toy/figure/warden, -/obj/structure/table, -/obj/item/radio/intercom/directional/north{ - pixel_x = 32 - }, -/obj/machinery/button/door/directional/north{ - id = "sidearmory"; - name = "Armoury Shutter Toggle"; - pixel_x = -8; - req_access = list("armory") - }, -/obj/machinery/button/door/directional/north{ - id = "prisonblast"; - name = "Prison Lockdown"; - pixel_x = 8; - req_access = list("brig") - }, -/turf/open/floor/iron/dark, -/area/station/security/warden) -"oou" = ( -/obj/machinery/telecomms/receiver/preset_right, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Telecomms Server SMES"; - name = "telecomms camera"; - network = list("ss13","tcomms") - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"oow" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"ooR" = ( -/obj/structure/transit_tube/crossing, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"opE" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/landmark/start/scientist, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"opL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/medical/glass{ - name = "Pharmacy" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/medical/pharmacy, -/turf/open/floor/iron/dark, -/area/station/medical/pharmacy) -"opV" = ( -/obj/structure/transit_tube/curved/flipped{ - dir = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"oqa" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/closet/emcloset/anchored, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"oqu" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L9" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Fore Hallway Centre"; - name = "fore camera" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"oqN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Tech Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"oqW" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"ore" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"orm" = ( -/obj/machinery/power/smes, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/status_display/shuttle{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"orz" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/smooth_large, -/area/station/maintenance/department/chapel/monastery) -"orD" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/cargo/storage) -"orT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/tcommsat/computer) -"orY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"ose" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder/red, -/turf/open/floor/iron, -/area/station/security/courtroom) -"osn" = ( -/obj/structure/sign/departments/xenobio, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard) -"osy" = ( -/turf/closed/wall/rust, -/area/station/commons/toilet/restrooms) -"osA" = ( -/obj/structure/chair/sofa/left{ - color = "#c45c57"; - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/dark, -/area/station/service/bar/atrium) -"osR" = ( -/obj/structure/cable, -/obj/machinery/computer/shuttle/labor, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"osT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/security/office) -"osW" = ( -/turf/closed/wall/rust, -/area/station/engineering/atmos) -"otb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"otr" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"otA" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"otF" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/light/small/directional/west, -/obj/structure/bookcase/random, -/turf/open/floor/iron/dark, -/area/station/service/library) -"otO" = ( -/obj/structure/table, -/obj/item/storage/secure/briefcase, -/obj/item/taperecorder, -/obj/structure/sign/warning/electric_shock/directional/south, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"otP" = ( -/turf/open/floor/carpet/royalblue, -/area/station/command/heads_quarters/captain) -"otS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"ouk" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/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/engineering/atmos) -"oup" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"ouC" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral, -/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/engineering/atmos) -"ouD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/closet/crate/freezer/blood, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/surgery/fore) -"ouE" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"ouK" = ( -/obj/machinery/chem_dispenser{ - layer = 2.7 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/machinery/requests_console/directional/east{ - department = "Pharmacy"; - departmentType = 2; - name = "Pharmacy Requests Console"; - receive_ore_updates = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/pharmacy) -"ouM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"ouQ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/airalarm/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/xeno_spawn, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"ouX" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ova" = ( -/obj/effect/turf_decal/tile/red, -/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/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"ovd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"ovm" = ( -/obj/machinery/mech_bay_recharge_port{ - dir = 2 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"ovo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "rdprivacy"; - name = "Director's Privacy Blast Door" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/station/command/heads_quarters/rd) -"ovv" = ( -/turf/closed/wall, -/area/station/service/hydroponics/garden) -"ovw" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/chem_dispenser/drinks/beer{ - dir = 4 - }, -/obj/structure/table, -/obj/structure/noticeboard/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"ovN" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/navigate_destination/chapel, -/obj/structure/transit_tube/station/dispenser/reverse/flipped{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/station/hallway/primary/fore) -"owm" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Medbay Central"; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) -"owA" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/cargo/storage) -"owC" = ( -/obj/structure/chair/pew/left{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/chapel{ - dir = 4 - }, -/area/station/service/chapel) -"owG" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/central) -"owT" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"owX" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"oxp" = ( -/obj/structure/flora/bush/jungle/a/style_random, -/obj/structure/flora/bush/flowers_br/style_random, -/obj/structure/flora/bush/sunny/style_random, -/obj/machinery/light/directional/west, -/turf/open/floor/grass, -/area/station/medical/psychology) -"oxC" = ( -/obj/effect/turf_decal/trimline/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, -/area/station/security/prison/garden) -"oxK" = ( -/obj/structure/table, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/color/black, -/obj/item/crowbar/red, -/obj/item/flashlight/seclite, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"oye" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/plating, -/area/station/service/chapel) -"oyk" = ( -/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 = "rd sorting disposal pipe"; - sortType = 13 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/siding/purple/corner, -/turf/open/floor/iron/showroomfloor, -/area/station/science/genetics) -"oyu" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Robotics" - }, -/obj/machinery/door/window/left/directional/east{ - name = "Robotics Delivery Access"; - req_access = list("robotics") - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"oyA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/west, -/obj/machinery/light/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Starboard Hallway Research Desk"; - name = "starboard camera" - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"oyP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"oyX" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/surgical_drapes, -/obj/item/retractor, -/obj/item/cautery, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"ozd" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"ozk" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 9 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"ozt" = ( -/obj/structure/chair/office/light, -/obj/effect/landmark/start/orderly, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/checkpoint/medical) -"ozw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/tank/internals/oxygen/empty, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"ozz" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"ozO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"ozV" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/storage/medkit/o2, -/obj/item/tank/internals/emergency_oxygen, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"ozZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"oAg" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/station/solars/starboard/aft) -"oAk" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"oAo" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"oAJ" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad"; - name = "off ramp" - }, -/turf/open/floor/iron/dark, -/area/station/cargo/storage) -"oAN" = ( -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/fore) -"oAO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/lapvend, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"oAS" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/light/directional/south, -/obj/machinery/requests_console/directional/south{ - department = "Janitorial"; - departmentType = 1; - name = "Janitorial Requests Console" - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/service/janitor) -"oBe" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/right/directional/north{ - name = "Emergency Storage"; - req_access = list("command") - }, -/obj/machinery/suit_storage_unit/standard_unit{ - desc = "An industrial suit storage device carrying retro space suits. This one is blue."; - helmet_type = /obj/item/clothing/head/helmet/space/syndicate/blue; - suit_type = /obj/item/clothing/suit/space/syndicate/blue - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"oBf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"oBo" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "ordnancestorage"; - name = "Ordnance Storage Shutters"; - dir = 1 - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/storage) -"oBq" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"oBy" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/command/bridge) -"oBA" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - 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/ai_monitored/command/storage/eva) -"oBP" = ( -/obj/effect/turf_decal/tile/neutral{ - 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/effect/landmark/start/station_engineer, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"oBT" = ( -/obj/structure/chair/pew/right{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"oCd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Gravity Generator Foyer"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/structure/cable, -/obj/machinery/button/door/directional/west{ - id = "gravity"; - name = "Gravity Generator Lockdown"; - req_one_access = list("command","tech_storage") - }, -/turf/open/floor/engine, -/area/station/engineering/gravity_generator) -"oCo" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/electronics/apc, -/obj/item/electronics/apc, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/mod/module/plasma_stabilizer, -/obj/item/mod/module/thermal_regulator, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"oCr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/reagent_dispensers/wall/peppertank/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"oCt" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/airalarm/directional/east, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"oCE" = ( -/obj/machinery/door/airlock{ - name = "Cleaning Closet" - }, -/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/security/prison/safe) -"oCI" = ( -/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/wood/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/library) -"oCJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/central/fore) -"oDh" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/recharge_station, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"oDt" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 8 - }, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, -/turf/open/space/basic, -/area/space/nearstation) -"oDG" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"oDV" = ( -/obj/structure/table, -/obj/item/storage/box/hug{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/razor{ - pixel_x = -8; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"oEc" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/bush/flowers_pp/style_random, -/obj/structure/flora/bush/leavy/style_random, -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/bush/ferny/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"oEy" = ( -/obj/effect/turf_decal/bot, -/obj/structure/frame/computer{ - anchored = 1; - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"oFc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"oFf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"oFl" = ( -/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 = 6 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"oFt" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/carpet/green, -/area/station/maintenance/port/greater) -"oFC" = ( -/obj/structure/table, -/obj/item/storage/box/syringes{ - pixel_y = 2 - }, -/obj/item/storage/box/beakers{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Hydroponcis Fore"; - name = "hydroponics camera" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"oGo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"oGu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/obj/machinery/door/airlock/grunge{ - name = "Monastery Atmos" - }, -/obj/effect/turf_decal/siding/thinplating/dark, -/turf/open/floor/iron/smooth_large, -/area/station/maintenance/department/chapel/monastery) -"oGO" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"oGU" = ( -/obj/item/target/clown, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/bomb) -"oGV" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"oHe" = ( -/obj/structure/table/reinforced, -/obj/item/mod/module/plasma_stabilizer, -/obj/item/mod/module/thermal_regulator, -/turf/open/floor/iron/dark, -/area/station/security/office) -"oHh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Fore Hallway Robotics Bay"; - name = "fore camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/central/fore) -"oHj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"oHm" = ( -/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, -/turf/open/floor/iron/showroomfloor, -/area/station/security/office) -"oHD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L4" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"oHG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"oHP" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/showroomfloor, -/area/station/science/genetics) -"oHR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"oIg" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"oIp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/vacuum/external/directional/north, -/obj/effect/landmark/event_spawn, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"oIq" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos) -"oIu" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos) -"oIv" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/tank_dispenser/oxygen{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"oIx" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/structure/flora/bush/flowers_br/style_random, -/obj/structure/flora/bush/leavy/style_random, -/obj/structure/flora/bush/pale/style_random, -/obj/structure/flora/bush/grassy/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"oIy" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/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/structure/cable, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"oIS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Engineering Guard's Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engie_guard, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) -"oIU" = ( -/obj/item/radio/intercom/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"oJk" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"oJm" = ( -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"oJq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/east, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hop) -"oJr" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"oJs" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/folder/red, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/pen/blue, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"oJH" = ( -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/grassy/style_random, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/grass, -/area/station/medical/virology) -"oJV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/chair/stool/directional/north, -/turf/open/floor/wood, -/area/station/service/library) -"oKp" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage/gas) -"oKJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "emmd"; - name = "Medical Lockdown Toggle" - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/surgery/fore) -"oKV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/library) -"oKW" = ( -/turf/closed/wall, -/area/station/security/office) -"oLa" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/computer/holodeck{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"oLp" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"oLs" = ( -/obj/structure/window/reinforced/spawner{ - dir = 1 - }, -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/flora/bush/grassy/style_random, -/mob/living/simple_animal/butterfly, -/turf/open/floor/grass, -/area/station/hallway/primary/fore) -"oLG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/obj/item/t_scanner, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"oLH" = ( -/turf/closed/wall/r_wall/rust, -/area/station/maintenance/starboard) -"oLR" = ( -/obj/structure/sign/poster/official/twelve_gauge, -/turf/closed/wall, -/area/station/maintenance/starboard/fore) -"oLT" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall/rust, -/area/station/engineering/supermatter/room) -"oMr" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/camera/motion/directional/east{ - c_tag = "Armoury Internal" - }, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"oMA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/vending/wardrobe/gene_wardrobe, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"oMJ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/medical_doctor, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/storage) -"oMZ" = ( -/obj/item/radio/intercom/directional/north, -/turf/open/misc/sandy_dirt, -/area/station/service/hydroponics/garden) -"oNf" = ( -/obj/structure/table, -/obj/item/instrument/harmonica, -/obj/item/camera{ - pixel_x = -4; - pixel_y = 6 - }, -/turf/open/floor/iron/grimy, -/area/station/security/prison) -"oNk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/botanist, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"oNo" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/rack, -/obj/effect/decal/cleanable/blood/old, -/obj/item/weldingtool{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/clothing/head/welding{ - pixel_y = 5 - }, -/obj/item/crowbar/red, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"oNr" = ( -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"oNH" = ( -/obj/structure/disposalpipe/junction/flip, -/turf/open/floor/iron, -/area/station/security/brig) -"oNI" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"oNO" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/office) -"oOC" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/window/reinforced, -/obj/machinery/door/window/right/directional/south{ - dir = 4; - name = "Mail Chute"; - req_access = list("shipping") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"oOT" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchenshutters"; - name = "Kitchen Shutters"; - dir = 8 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/turf/open/floor/iron, -/area/station/service/kitchen) -"oOU" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/east, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"oOW" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"oPf" = ( -/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, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"oPh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/service/theater) -"oPn" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Xenobiology Cell 5"; - name = "xenobiology camera"; - network = list("ss13","rd","xeno") - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"oPr" = ( -/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/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"oPz" = ( -/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 = 2; - name = "Theater sorting disposal pipe"; - sortType = 18 - }, -/obj/machinery/duct, -/turf/open/floor/plastic, -/area/station/hallway/secondary/service) -"oPX" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8; - piping_layer = 2 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"oQe" = ( -/obj/machinery/hydroponics/soil, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"oQg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external/directional/north, -/turf/open/floor/plating, -/area/station/construction/mining/aux_base) -"oQk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"oQl" = ( -/obj/machinery/light/floor, -/obj/effect/turf_decal/box, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"oQm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"oQv" = ( -/obj/structure/bookcase/random, -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/security/prison) -"oQz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/security{ - name = "Interrogation" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"oQH" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"oQL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/loading_area, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"oRz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"oRK" = ( -/obj/structure/chair/office/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"oRT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"oSf" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/obj/machinery/airalarm/mixingchamber{ - pixel_y = -24 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/freezerchamber) -"oSq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"oSs" = ( -/obj/structure/flora/grass/jungle/a/style_random, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/misc/asteroid, -/area/space/nearstation) -"oSD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"oSG" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"oSI" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"oSK" = ( -/obj/docking_port/stationary/laborcamp_home/kilo{ - dir = 2 - }, -/turf/open/space, -/area/space) -"oSX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"oTd" = ( -/obj/machinery/door/morgue{ - name = "Mass Driver"; - req_access = list("chapel_office") - }, -/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/chapel/funeral) -"oTg" = ( -/obj/machinery/conveyor{ - id = "NTMSLoad2"; - name = "on ramp" - }, -/obj/machinery/door/poddoor{ - id = "freight_port"; - name = "Freight Bay Blast Door" - }, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"oTt" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/painting/library{ - pixel_x = 32 - }, -/obj/machinery/photocopier, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/box/white, -/turf/open/floor/iron/dark, -/area/station/service/library) -"oTw" = ( -/obj/machinery/telecomms/processor/preset_one, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"oTD" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/turf/closed/wall/r_wall, -/area/station/science/ordnance/burnchamber) -"oTE" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"oTM" = ( -/obj/item/target/clown, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/delivery, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/bomb) -"oTP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/spider/stickyweb, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"oTU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners, -/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/courtroom) -"oUc" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"oUg" = ( -/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/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"oUj" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"oUz" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/miningoffice) -"oUA" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"oUH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/chair/office, -/obj/structure/sign/painting/library_private{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/landmark/start/librarian, -/turf/open/floor/iron/dark, -/area/station/service/library) -"oUL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/command/teleporter) -"oUS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/bag/trash, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/grimy, -/area/station/security/prison/safe) -"oVc" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"oVl" = ( -/obj/machinery/door/airlock/external{ - name = "Satellite External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"oVz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"oVP" = ( -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/rock, -/turf/open/misc/asteroid, -/area/station/hallway/secondary/exit/departure_lounge) -"oVY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/rebels_unite{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/obj/item/toy/plush/plasmamanplushie{ - name = "Lithium II" - }, -/turf/open/floor/plating/plasma/rust, -/area/station/maintenance/space_hut/plasmaman) -"oWc" = ( -/obj/effect/turf_decal/siding/wood, -/obj/structure/cable, -/obj/machinery/firealarm/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/carpet/red, -/area/station/service/chapel) -"oWj" = ( -/obj/machinery/atmospherics/components/binary/tank_compressor{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"oWm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random/directional/south, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"oWx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"oWG" = ( -/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/security/prison/mess) -"oWI" = ( -/obj/structure/table/reinforced, -/obj/structure/reagent_dispensers/servingdish, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"oWP" = ( -/obj/machinery/cryopod, -/obj/effect/turf_decal/siding/white, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/common/cryopods) -"oWQ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/paramedic) -"oWX" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/shieldgen, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"oXa" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"oXe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/poddoor/preopen{ - id = "prisonblast"; - name = "Prison Blast Door" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"oXm" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"oXw" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/north, -/obj/machinery/newscaster/directional/north, -/obj/machinery/computer/security/qm, -/turf/open/floor/iron/dark, -/area/station/cargo/qm) -"oXx" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"oXK" = ( -/obj/structure/table, -/obj/item/hand_labeler, -/obj/item/crowbar/red, -/obj/item/gps/mining, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch/directional/north, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/miningoffice) -"oYc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Recreation Area" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"oYd" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/loading_area{ - dir = 4; - pixel_x = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"oYi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/central) -"oYu" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/disposal/bin{ - desc = "A pneumatic waste disposal unit. This one leads into space!"; - name = "deathsposal unit" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"oYN" = ( -/obj/machinery/air_sensor/nitrous_tank, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"oYV" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/small/directional/west, -/obj/item/restraints/handcuffs/cable/red, -/obj/item/clothing/suit/apron/surgical, -/obj/item/weldingtool/mini, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"oZb" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/iron/stairs/right{ - dir = 1 - }, -/area/station/service/chapel) -"oZE" = ( -/turf/closed/wall/r_wall, -/area/station/security/processing) -"oZP" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/engine/telecomms, -/area/station/tcommsat/server) -"oZS" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/item/healthanalyzer, -/obj/item/hand_labeler, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"oZT" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Air to Mix" - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos) -"oZX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"pab" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/command/bridge) -"pac" = ( -/obj/machinery/telecomms/server/presets/command, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"paf" = ( -/obj/structure/fluff/broken_flooring{ - icon_state = "plating" - }, -/turf/closed/mineral/random/labormineral, -/area/space/nearstation) -"pah" = ( -/obj/structure/table/wood/fancy/blue, -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/obj/machinery/airalarm/directional/west, -/obj/item/reagent_containers/food/drinks/bottle/wine/unlabeled, -/turf/open/floor/carpet/royalblue, -/area/station/service/chapel/office) -"pal" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/pumproom) -"paM" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/maintenance/port/greater) -"paN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"paU" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - 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/showroomfloor, -/area/station/medical/exam_room) -"pbk" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/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/showroomfloor, -/area/station/medical/paramedic) -"pbs" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/rust, -/area/station/maintenance/disposal) -"pbx" = ( -/obj/machinery/computer/libraryconsole/bookmanagement, -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/grimy, -/area/station/security/prison) -"pbY" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/table/wood, -/obj/effect/decal/cleanable/cobweb, -/obj/item/toy/katana, -/obj/item/clothing/shoes/sandal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"pcc" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/chapel/dock) -"pcl" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"pcC" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/hallway/secondary/entry) -"pcG" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/pharmacy) -"pcO" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/camera/directional/east{ - c_tag = "E.V.A. Storage"; - name = "command camera" - }, -/obj/machinery/light/directional/east, -/obj/machinery/suit_storage_unit/standard_unit{ - desc = "An industrial suit storage device carrying retro space suits. Neat!"; - helmet_type = /obj/item/clothing/head/helmet/space; - suit_type = /obj/item/clothing/suit/space - }, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"pdg" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/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 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/research) -"pdq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/bridge) -"pdE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/binary/pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"pdI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/psychology) -"pdR" = ( -/obj/machinery/door/firedoor, -/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, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) -"pdZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/caution_sign, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"pet" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"peu" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/delivery, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"peC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random/directional/north, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"peF" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"peJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"peT" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/hallway/primary/aft) -"peY" = ( -/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 = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/office) -"peZ" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/newscaster/directional/west, -/obj/effect/landmark/start/hangover/closet, -/obj/machinery/button/door/directional/west{ - id = "Cabin_4Privacy"; - name = "Cabin 4 Privacy Toggle"; - pixel_y = -24 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/commons/locker) -"pfc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/air_output{ - dir = 4 - }, -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"pfr" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/catwalk_floor/iron_smooth, -/area/station/maintenance/department/chapel/monastery) -"pfM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"pfO" = ( -/obj/structure/rack, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash/handheld, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"pfV" = ( -/obj/machinery/airalarm/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/bridge) -"pgA" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage/gas) -"pgG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"pgQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"phh" = ( -/obj/structure/sign/poster/contraband/red_rum, -/turf/closed/wall/rust, -/area/station/maintenance/port/greater) -"phF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"phH" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot_white, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"phK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"phL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/machinery/door/window{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"phQ" = ( -/obj/structure/flora/bush/pale/style_random, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/misc/asteroid, -/area/space/nearstation) -"phX" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"phY" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/lobby) -"pig" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/airalarm/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Xenobiology Labs"; - name = "xenobiology camera"; - network = list("ss13","rd","xeno") - }, -/obj/structure/closet/secure_closet/cytology, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"pii" = ( -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_ordmix{ - dir = 8 - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/engine, -/area/station/science/ordnance/burnchamber) -"pik" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"pio" = ( -/obj/effect/decal/cleanable/blood/old, -/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, -/obj/machinery/meter/layer2, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"piu" = ( -/turf/open/floor/iron/dark, -/area/station/service/chapel/monastery) -"piB" = ( -/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/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/duct, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"piD" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall, -/area/station/engineering/supermatter/room) -"piH" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/bed, -/obj/item/bedsheet/red, -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron/white, -/area/station/security/prison/safe) -"piQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/hallway/primary/port) -"piW" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/light/small/directional/north, -/obj/structure/sign/warning/vacuum/directional/west, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/north, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"piX" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"piZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"pji" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"pjm" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"pjC" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/status_display/ai/directional/south, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Recreation Fitness Ring"; - name = "recreation camera" - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"pjE" = ( -/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 = 6 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"pjV" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster/directional/east, -/obj/item/paper_bin{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/pen, -/turf/open/floor/wood, -/area/station/maintenance/starboard/fore) -"pjX" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/closet/secure_closet/hydroponics, -/obj/structure/sign/poster/contraband/kudzu{ - pixel_x = 32 - }, -/turf/open/floor/iron/checker, -/area/station/service/hydroponics) -"pjZ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/status_display/ai/directional/east, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"pkg" = ( -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 8 - }, -/turf/open/floor/catwalk_floor/iron_smooth, -/area/station/maintenance/department/chapel/monastery) -"pkr" = ( -/obj/machinery/light/directional/east, -/obj/machinery/newscaster/directional/east, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/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, -/area/station/engineering/atmos) -"pku" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/flora/bush/flowers_br/style_random, -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/bush/sparsegrass/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"pkE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics/garden) -"pkI" = ( -/obj/structure/chair/pew/right{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/chapel{ - dir = 4 - }, -/area/station/service/chapel) -"pkK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"pkY" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"plj" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/brig) -"pll" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/atmospherics/components/binary/pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/hallway/primary/central/fore) -"plm" = ( -/turf/closed/wall/rust, -/area/station/maintenance/solars/starboard/fore) -"plp" = ( -/obj/effect/turf_decal/tile/neutral{ - 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, -/turf/open/floor/iron, -/area/station/security/processing) -"plx" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"plG" = ( -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"plX" = ( -/turf/closed/wall, -/area/station/commons/storage/art) -"pmd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/transfer) -"pmq" = ( -/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/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"pms" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"pmu" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/analyzer{ - pixel_y = 4 - }, -/obj/item/analyzer{ - pixel_x = 2 - }, -/obj/machinery/requests_console/directional/west{ - department = "Tool Storage"; - name = "Tool Storage Requests Console" - }, -/turf/open/floor/iron/dark, -/area/station/commons/storage/primary) -"pmy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"pmA" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall, -/area/station/maintenance/port/fore) -"pmD" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple/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/showroomfloor, -/area/station/science/research) -"pmI" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"pmM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"pnl" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/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/cable, -/turf/open/floor/iron, -/area/station/cargo/office) -"pns" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/security/brig) -"pnA" = ( -/obj/effect/turf_decal/stripes/line, -/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/cable, -/obj/machinery/computer/pod/old/mass_driver_controller/ordnancedriver{ - pixel_x = 24 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"pnE" = ( -/obj/structure/cable, -/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/solar_assembly, -/obj/item/stack/sheet/glass/fifty, -/obj/structure/closet/crate/engineering/electrical, -/obj/structure/sign/warning/xeno_mining/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"pnI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-maint-passthrough" - }, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab" - }, -/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, -/obj/effect/mapping_helpers/airlock/access/any/science/genetics, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"pnK" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/sign/warning/vacuum/external/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"pog" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/security/courtroom) -"pon" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"pop" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"poK" = ( -/obj/machinery/suit_storage_unit/ce, -/obj/effect/turf_decal/delivery, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"poU" = ( -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/bush/ferny/style_random, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/misc/asteroid, -/area/space/nearstation) -"poZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/flasher/directional/east{ - id = "AI"; - name = "Meatbag Pacifier" - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"ppd" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/checkpoint/customs) -"ppl" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/spawner/random/trash/food_packaging, -/turf/open/floor/plating, -/area/station/maintenance/department/bridge) -"ppy" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/item/pen/red{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/toy/figure/detective, -/obj/machinery/light/directional/east, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/carpet/green, -/area/station/security/detectives_office) -"ppH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/trimline/blue/line, -/obj/effect/turf_decal/trimline/blue/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"pqb" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"pqh" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/structure/grille/broken, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/flashlight, -/obj/item/flashlight/flare, -/obj/machinery/light/small/directional/west, -/obj/item/relic, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"pqm" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"pqu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"pqw" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "emmd"; - name = "Emergency Medical Lockdown Shutters" - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/item/toy/figure/md{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/medical/paramedic) -"pqB" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/box, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"pqD" = ( -/turf/closed/wall, -/area/station/maintenance/port/lesser) -"pqF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Chief Engineer's Office" - }, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"pqH" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/light/directional/south, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"pqS" = ( -/obj/effect/turf_decal/stripes/line{ - 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, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"pri" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"prn" = ( -/obj/effect/turf_decal/siding/thinplating/dark/end{ - dir = 8 - }, -/turf/open/floor/glass/reinforced, -/area/station/service/chapel) -"prq" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"prr" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ - name = "euthanization chamber freezer" - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"prK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/machinery/firealarm/directional/south, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"prP" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"prW" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"prX" = ( -/obj/machinery/status_display/shuttle, -/turf/closed/wall, -/area/station/engineering/storage/tech) -"prY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/grille_or_waste, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"psf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"psi" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted, -/obj/machinery/door/poddoor/shutters{ - id = "ordnancemix"; - name = "Ordnance Lab Shutters"; - dir = 8 - }, -/obj/machinery/door/firedoor/heavy, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"psn" = ( -/obj/item/clothing/mask/gas/sechailer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/clothing/mask/gas/sechailer{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/flashlight/seclite, -/obj/item/flashlight/seclite, -/obj/item/flashlight/seclite, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/airalarm/directional/west, -/obj/structure/table, -/obj/item/storage/barricade{ - pixel_y = -5 - }, -/obj/item/storage/barricade, -/obj/item/storage/barricade{ - pixel_y = 5 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"psC" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/service/chapel/dock) -"psF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/effect/landmark/start/roboticist, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"psP" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"ptu" = ( -/obj/machinery/air_sensor/oxygen_tank, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"ptL" = ( -/obj/effect/turf_decal/sand/plating, -/obj/item/poster/random_contraband, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"ptQ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/garden) -"pue" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall/rust, -/area/station/maintenance/port/greater) -"puq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/ai/directional/west, -/obj/item/radio/intercom/directional/north{ - broadcasting = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = -26 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"puB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/exile, -/obj/effect/turf_decal/bot, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"puJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/door/window/left/directional/north{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Creature Cell"; - req_access = list("xenobiology") - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"puS" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/power/emitter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"pvb" = ( -/obj/structure/sign/warning/secure_area, -/obj/item/multitool, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/nuke_storage) -"pvi" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"pvs" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/detective, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) -"pvu" = ( -/obj/machinery/vending/wardrobe/atmos_wardrobe, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/obj/machinery/newscaster/directional/south, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"pvA" = ( -/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, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"pvF" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs) -"pvH" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/starboard/fore) -"pvK" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"pwa" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) -"pwo" = ( -/obj/machinery/computer/station_alert, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) -"pwx" = ( -/obj/machinery/vending/autodrobe, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/wood, -/area/station/service/theater) -"pwy" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/lab) -"pwF" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/surgery/aft) -"pwT" = ( -/obj/effect/decal/cleanable/dirt, -/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 = 10 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"pxe" = ( -/turf/closed/wall/mineral/plastitanium, -/area/station/maintenance/port/aft) -"pxl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"pxu" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"pxE" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/hop) -"pxH" = ( -/obj/machinery/hydroponics/constructable, -/obj/structure/railing/corner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"pxN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/tcommsat/computer) -"pya" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/obj/machinery/requests_console/directional/west{ - announcementConsole = 1; - department = "Head of Security's Desk"; - departmentType = 5; - name = "Head of Security's Requests Console" - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hos) -"pyg" = ( -/obj/effect/turf_decal/box, -/obj/machinery/power/solar{ - id = "forestarboard"; - name = "Fore-Starboard Solar Array" - }, -/obj/structure/cable, -/turf/open/floor/iron/solarpanel/airless, -/area/station/solars/starboard/fore) -"pyk" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"pyJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - name = "Kitchen Maintenance" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/bridge) -"pyW" = ( -/obj/structure/chair/sofa/right{ - color = "#c45c57"; - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/bar/atrium) -"pzc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/steam_vent, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"pzi" = ( -/obj/machinery/door/poddoor/shutters{ - id = "custodialwagon"; - name = "Custodial Bay"; - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/service/janitor) -"pzm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"pzA" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/taperecorder{ - pixel_x = 5 - }, -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/structure/mirror/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/lawoffice) -"pzC" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/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/central/fore) -"pzP" = ( -/obj/machinery/telecomms/bus/preset_one, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"pAq" = ( -/obj/machinery/newscaster/directional/south, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/fore) -"pAr" = ( -/obj/machinery/door/airlock/external/glass{ - name = "Supply Door Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron/dark, -/area/station/cargo/storage) -"pAx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"pAB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/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/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"pAE" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"pAQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/turf/open/floor/iron/dark, -/area/station/security/warden) -"pBd" = ( -/turf/closed/wall/rust, -/area/station/medical/paramedic) -"pBf" = ( -/obj/effect/turf_decal/siding/thinplating/dark/end{ - dir = 8 - }, -/obj/structure/window/spawner, -/obj/structure/window/spawner/west, -/obj/structure/window/spawner/north, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/structure/flora/bush/flowers_br/style_random, -/turf/open/floor/grass, -/area/station/service/chapel/monastery) -"pBh" = ( -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"pBi" = ( -/obj/docking_port/stationary/mining_home/kilo{ - dir = 4 - }, -/turf/open/space/basic, -/area/space) -"pBy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/camera{ - pixel_y = 4 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/captain) -"pBN" = ( -/obj/machinery/door/airlock/mining{ - name = "Auxiliary Base" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron/dark, -/area/station/construction/mining/aux_base) -"pBR" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"pBU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"pCa" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xeno3"; - name = "Creature Cell 3" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/left/directional/north{ - dir = 4; - name = "Creature Cell"; - req_access = list("xenobiology") - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"pCb" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/office) -"pCj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"pCu" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"pCF" = ( -/obj/structure/door_assembly/door_assembly_ext{ - anchored = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/cargo/warehouse) -"pCP" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/spawner/random/trash/cigbutt, -/turf/open/floor/plating, -/area/station/security/prison) -"pCX" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/item/storage/book/bible, -/turf/open/floor/carpet/red, -/area/station/service/chapel) -"pDd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable, -/mob/living/simple_animal/bot/secbot/beepsky/armsky, -/turf/open/floor/iron/showroomfloor, -/area/station/ai_monitored/security/armory) -"pDm" = ( -/obj/structure/sign/warning/no_smoking{ - pixel_x = -30 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"pDs" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/dead_body_placer, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"pDF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/station/ai_monitored/command/nuke_storage) -"pDK" = ( -/turf/closed/wall, -/area/station/tcommsat/computer) -"pDM" = ( -/turf/closed/wall/rust, -/area/station/maintenance/aft) -"pDP" = ( -/obj/structure/flora/bush/flowers_br/style_random, -/obj/structure/flora/bush/leavy/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"pDT" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/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/showroomfloor, -/area/station/medical/chemistry) -"pDY" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/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, -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/cmo) -"pEc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/garbage, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/plating, -/area/station/maintenance/department/bridge) -"pEt" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/medical/central) -"pEu" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/storage/medkit/regular, -/turf/open/floor/iron, -/area/station/commons/locker) -"pEA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/machinery/camera/directional/east{ - c_tag = "Courtroom Jury"; - name = "command camera" - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"pED" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"pEL" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/tank/internals/oxygen/red, -/obj/item/clothing/mask/breath, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"pFl" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"pFq" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/lobby) -"pFs" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/newscaster/directional/west, -/obj/machinery/computer/rdconsole{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"pFw" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/bot, -/obj/machinery/conveyor{ - dir = 4; - id = "packagereturn"; - name = "crate return belt" - }, -/turf/open/floor/iron/dark, -/area/station/cargo/sorting) -"pFS" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"pFT" = ( -/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{ - name = "Theatre Room" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/service/theatre, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"pFY" = ( -/obj/machinery/newscaster/directional/north, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/paramedic) -"pGe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/kirbyplants, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"pGj" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"pGA" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/box, -/obj/structure/mirror/directional/north, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"pGD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/wideplating/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, -/area/station/service/chapel) -"pGE" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/crowbar, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 6 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = -2 - }, -/obj/item/stock_parts/cell/emproof{ - pixel_x = 6; - pixel_y = -6 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"pGM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random/directional/south, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"pGS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"pHy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine" - }, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"pHD" = ( -/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/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"pHE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"pIa" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/security/courtroom) -"pIl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "departures-entrance" - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"pIy" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"pIK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/delivery, -/obj/machinery/light/small/directional/east, -/obj/structure/closet/crate/freezer{ - name = "organ storage" - }, -/obj/item/organ/external/tail/cat, -/obj/item/organ/external/tail/cat, -/obj/item/organ/internal/ears/cat, -/obj/item/organ/internal/ears/cat, -/obj/item/organ/internal/heart, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"pIO" = ( -/turf/closed/wall/r_wall/rust, -/area/station/command/heads_quarters/ce) -"pIT" = ( -/obj/machinery/vending/wardrobe/chem_wardrobe, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/dark, -/area/station/medical/pharmacy) -"pJr" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/iv_drip, -/obj/structure/bed{ - dir = 4 - }, -/obj/structure/curtain, -/turf/open/floor/iron/dark, -/area/station/medical/exam_room) -"pJs" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall, -/area/station/maintenance/starboard) -"pJz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/port) -"pJJ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"pJK" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"pKf" = ( -/obj/effect/turf_decal/tile/neutral{ - 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/cable, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"pKm" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/shower) -"pKt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/newscaster/directional/east, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"pKB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"pKM" = ( -/obj/machinery/mass_driver{ - id = "trash" - }, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"pKQ" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/machinery/computer/security/telescreen/entertainment/directional/east, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"pKR" = ( -/obj/structure/cable, -/turf/closed/wall/r_wall/rust, -/area/station/maintenance/starboard/aft) -"pLe" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"pLi" = ( -/obj/item/stack/sheet/cardboard{ - amount = 14 - }, -/obj/item/stack/package_wrap, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison) -"pLl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"pLs" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/pumproom) -"pLu" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"pLw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/vomit/old, -/obj/structure/sign/poster/contraband/random/directional/north, -/mob/living/simple_animal/hostile/retaliate/goose/vomit, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"pLB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"pLC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/north, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"pLJ" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"pLO" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/item/clipboard, -/obj/item/clothing/mask/fakemoustache, -/obj/item/clothing/mask/cigarette/pipe, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"pLV" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/package_wrap, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/button/door/directional/east{ - id = "aux_base_shutters"; - name = "Auxiliary Base Shutters Toggle"; - req_access = list("aux_base") - }, -/turf/open/floor/iron/dark, -/area/station/construction/mining/aux_base) -"pMj" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/landmark/start/paramedic, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"pMS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/random/structure/steam_vent, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"pMT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/server) -"pNe" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/office) -"pNg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/closed/wall, -/area/station/maintenance/disposal/incinerator) -"pNk" = ( -/obj/structure/chair/sofa/left{ - color = "#c45c57"; - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/service/bar/atrium) -"pNA" = ( -/obj/effect/turf_decal/siding/wood/corner, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"pNL" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/purple/corner, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"pNV" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"pNY" = ( -/obj/machinery/computer/security/mining{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/evac/directional/east, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/dark, -/area/station/cargo/miningoffice) -"pNZ" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/delivery, -/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, -/area/station/engineering/atmos/storage/gas) -"pOb" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/virology) -"pOd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/structure/sign/warning/fire/directional/north, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"pOo" = ( -/obj/structure/flora/grass/jungle/b/style_random, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/item/plant_analyzer, -/turf/open/floor/grass, -/area/station/security/prison/garden) -"pOq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/item/exodrone, -/obj/machinery/camera/directional/south{ - c_tag = "Cargo Drones"; - name = "cargo camera"; - network = list("ss13","qm") - }, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/iron/dark, -/area/station/cargo/drone_bay) -"pOy" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"pOG" = ( -/obj/machinery/light/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden, -/obj/machinery/airlock_sensor/incinerator_atmos{ - pixel_x = 24 - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"pOO" = ( -/obj/effect/turf_decal/trimline/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, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"pOS" = ( -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/item/stamp/captain{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/pen/fountain/captain, -/obj/item/radio/intercom/directional/south, -/obj/structure/table/wood, -/turf/open/floor/carpet/royalblue, -/area/station/command/heads_quarters/captain) -"pOV" = ( -/turf/closed/wall, -/area/station/service/chapel/storage) -"pOW" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/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/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"pPe" = ( -/obj/effect/turf_decal/loading_area, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "Queue Shutters" - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"pPj" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/cardboard, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"pPw" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/item/storage/book/bible, -/turf/open/floor/carpet/red, -/area/station/service/chapel) -"pPC" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"pPD" = ( -/obj/structure/flora/bush/leavy/style_random, -/obj/structure/flora/bush/sunny/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"pPZ" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Hazard Closet" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/aft) -"pQi" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"pQo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "holodeck" - }, -/turf/open/floor/plating, -/area/station/commons/fitness/recreation) -"pQr" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/central) -"pQx" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"pQM" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 1; - id = "NTMSLoad"; - name = "off ramp" - }, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"pQT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"pRu" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/door/window/left/directional/south{ - name = "Cargo Disposal"; - req_access = list("shipping") - }, -/obj/machinery/conveyor_switch/oneway{ - id = "packageSort2"; - name = "mail belt"; - pixel_x = 5; - pixel_y = 6 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "packagereturn"; - name = "crate returns"; - pixel_x = -6; - pixel_y = 6 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"pRw" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/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, -/area/station/hallway/primary/aft) -"pRO" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos/storage/gas) -"pRP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"pSe" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/shower{ - dir = 8; - name = "emergency shower" - }, -/obj/structure/mirror/directional/east, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/landmark/start/geneticist, -/turf/open/floor/iron/showroomfloor, -/area/station/science/genetics) -"pSh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"pSj" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/storage/toolbox/emergency, -/obj/item/crowbar/red, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/structure/fireaxecabinet/directional/south, -/obj/machinery/door/window/right/directional/north{ - name = "Emergency Storage"; - req_access = list("command") - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"pSu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/spider/stickyweb, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"pSE" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Atmos to Loop" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"pSG" = ( -/turf/open/floor/iron/showroomfloor, -/area/station/security/office) -"pSN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/security/prison) -"pST" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"pSW" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"pTc" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/storage) -"pTL" = ( -/obj/effect/turf_decal/bot/left, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"pTR" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"pUb" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/siding/wood/end{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/west, -/obj/item/flashlight/lantern, -/turf/open/floor/carpet/red, -/area/station/service/chapel) -"pUj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"pUk" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/security/courtroom) -"pUA" = ( -/obj/structure/table/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/obj/item/paper_bin, -/obj/item/taperecorder, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/pen, -/turf/open/floor/iron/dark, -/area/station/security/office) -"pUH" = ( -/obj/structure/cable, -/turf/open/floor/carpet/red, -/area/station/command/heads_quarters/hos) -"pVd" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"pVz" = ( -/turf/closed/wall, -/area/station/maintenance/port/fore) -"pVF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/meter/monitored/waste_loop, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/pumproom) -"pVP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random/directional/west, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"pVQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/central) -"pVS" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"pWj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/bridge) -"pWo" = ( -/obj/machinery/door/airlock/maintenance/external{ - name = "Transit Intersection" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"pWC" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2"; - name = "on ramp" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/status_display/supply{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/storage) -"pWY" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"pXh" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/vacuum/external/directional/east, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"pXi" = ( -/turf/open/floor/plating, -/area/station/service/chapel) -"pXs" = ( -/obj/structure/window/reinforced/plasma{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/power/energy_accumulator/tesla_coil/anchored, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/engineering/supermatter) -"pXt" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/command/bridge) -"pXL" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/common/cryopods) -"pXN" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/newscaster/directional/east, -/obj/effect/landmark/start/hangover/closet, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/commons/locker) -"pXU" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig) -"pYb" = ( -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot_white, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"pYm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"pYO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"pYZ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/cmo) -"pZe" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/effect/decal/cleanable/cobweb, -/obj/item/poster/random_contraband{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/poster/random_contraband, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"pZj" = ( -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"pZx" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"pZA" = ( -/obj/structure/sign/departments/security, -/turf/closed/wall, -/area/station/hallway/secondary/exit/departure_lounge) -"pZI" = ( -/obj/machinery/modular_computer/console/preset/cargochat/security{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/office) -"pZM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/education) -"pZO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/port) -"pZT" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/starboard) -"pZX" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/flora/bush/flowers_br/style_random, -/obj/structure/flora/bush/leavy/style_random, -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/bush/sparsegrass/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"qai" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"qaF" = ( -/obj/structure/cable, -/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, -/area/station/command/heads_quarters/captain) -"qaI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"qaR" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/station/medical/paramedic) -"qaZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_output{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"qbc" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/dresser, -/turf/open/floor/wood, -/area/station/maintenance/starboard/fore) -"qbf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/siding/red{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"qbh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/central/fore) -"qbk" = ( -/turf/closed/wall/rust, -/area/station/medical/exam_room) -"qbq" = ( -/obj/item/storage/medkit/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/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/structure/table/glass, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/left/directional/east{ - name = "First-Aid Supplies"; - req_access = list("medical") - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"qbv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security/glass{ - name = "Brig" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"qbA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/landmark/start/head_of_personnel, -/obj/structure/chair/office, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hop) -"qbB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosspace"; - name = "Space Blast Door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/command/heads_quarters/hos) -"qbE" = ( -/obj/structure/altar_of_gods, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/carpet/red, -/area/station/service/chapel) -"qbJ" = ( -/obj/structure/sign/departments/medbay/alt/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"qbO" = ( -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/grassy/style_random, -/obj/structure/flora/bush/ferny/style_random, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/grass, -/area/station/medical/psychology) -"qbP" = ( -/obj/machinery/firealarm/directional/south, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/iron/stairs/left{ - dir = 4 - }, -/area/station/service/chapel) -"qbV" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Kitchen"; - name = "kitchen camera" - }, -/obj/item/toy/figure/chef{ - pixel_x = 4 - }, -/obj/item/holosign_creator/robot_seat/restaurant{ - pixel_y = -5 - }, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"qbY" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/security/brig) -"qci" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"qcv" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"qcI" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/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/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"qdd" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/storage) -"qdM" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"qdR" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "Containment Chamber Blast Door" - }, -/obj/structure/sign/warning/electric_shock/directional/west, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"qek" = ( -/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 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/supply/qm, -/obj/machinery/door/airlock/command/glass{ - name = "Quartermaster's Office" - }, -/turf/open/floor/iron/dark, -/area/station/cargo/qm) -"qew" = ( -/obj/effect/turf_decal/tile/green/half/contrasted, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/storage) -"qez" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/psychology) -"qeJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/engineering{ - name = "Telecomms Storage" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) -"qeT" = ( -/obj/machinery/chem_master/condimaster{ - name = "CondiMaster Neo" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"qeX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"qeZ" = ( -/obj/structure/cable, -/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/west, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"qfe" = ( -/turf/closed/wall/r_wall/rust, -/area/space/nearstation) -"qfg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"qfi" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/computer/atmos_control/carbon_tank{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"qfn" = ( -/obj/machinery/atmospherics/components/tank{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/storage) -"qfq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"qfu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"qgq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/decoration/glowstick, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"qgu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/central) -"qgz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"qgC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"qgE" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"qgV" = ( -/obj/item/wrench, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"qhf" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"qht" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/lobby) -"qhx" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/iron/showroomfloor, -/area/station/science/server) -"qhC" = ( -/obj/structure/rack, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/airlock_painter, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/commons/storage/art) -"qhH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/command{ - name = "Research Director's Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/rd, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"qhR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Shower_1Privacy"; - name = "Shower 1 Privacy Shutter"; - dir = 1 - }, -/turf/open/floor/plating, -/area/station/commons/toilet/restrooms) -"qhT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/transfer) -"qhZ" = ( -/obj/machinery/light/directional/north, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"qic" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/hallway/primary/port) -"qih" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/cargo) -"qij" = ( -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"qip" = ( -/obj/structure/flora/bush/jungle/b/style_random, -/obj/machinery/airalarm/directional/east, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/station/medical/virology) -"qiq" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/stack/sheet/plasteel{ - amount = 10; - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/book/manual/wiki/robotics_cyborgs, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"qiB" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/starboard) -"qiL" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/siding/red{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"qiM" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) -"qjq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/closet/secure_closet/security, -/obj/effect/turf_decal/delivery, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/item/radio/intercom/directional/south, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/crowbar, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/customs) -"qjr" = ( -/obj/effect/spawner/random/structure/girder, -/turf/open/floor/plating/rust, -/area/station/maintenance/department/crew_quarters/bar) -"qjv" = ( -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"qjK" = ( -/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/secondary/exit/departure_lounge) -"qjM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/window/left/directional/east{ - name = "Monkey Pen"; - req_access = list("virology") - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"qkf" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/station/security/processing) -"qkm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "Engineering Blast Doors" - }, -/turf/open/floor/plating, -/area/station/engineering/lobby) -"qkn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/west, -/obj/effect/landmark/start/hangover, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"qkq" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "QM #1" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/the_griffin{ - pixel_y = 32 - }, -/mob/living/simple_animal/bot/mulebot{ - beacon_freq = 1400; - home_destination = "QM #1"; - suffix = "#1" - }, -/turf/open/floor/iron/dark, -/area/station/cargo/storage) -"qks" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L14" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"qku" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/barricade/wooden/crude, -/obj/machinery/door/window/left/directional/north{ - name = "Cage Door" - }, -/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/maintenance/port/fore) -"qkA" = ( -/obj/structure/grille/broken, -/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/sign/warning/electric_shock/directional/south, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"qld" = ( -/obj/effect/turf_decal/box, -/obj/machinery/light/directional/north, -/obj/structure/cable, -/obj/machinery/power/shieldwallgen/xenobiologyaccess, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"qlg" = ( -/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/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "chem-passthrough" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"qlk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/command/nuke_storage) -"qlw" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/airalarm/directional/south, -/obj/item/toy/figure/virologist{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/restraints/handcuffs, -/obj/item/pen, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"qly" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/frame/computer{ - anchored = 1; - dir = 4 - }, -/obj/effect/turf_decal/bot_white, -/obj/machinery/newscaster/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"qlC" = ( -/turf/closed/wall/rust, -/area/station/maintenance/fore) -"qlD" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"qlX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tank/internals/plasmaman/belt/full, -/obj/structure/table, -/obj/structure/sign/poster/contraband/rebels_unite{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/obj/item/flashlight/lamp, -/turf/open/floor/plating/plasma/rust, -/area/station/maintenance/space_hut/plasmaman) -"qmg" = ( -/obj/machinery/door/window/right/directional/north{ - name = "Hydroponics Delivery Access"; - req_access = list("hydroponics") - }, -/obj/effect/turf_decal/delivery, -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Hydroponics" - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/bridge) -"qms" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"qmx" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/security/courtroom) -"qmG" = ( -/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 = "toxins sorting disposal pipe"; - sortType = 25 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/research) -"qmR" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"qmW" = ( -/turf/open/floor/engine, -/area/station/science/xenobiology) -"qmZ" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics Tank - Air"; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"qnc" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/binary/valve, -/obj/machinery/door/window/right/directional/north{ - name = "Justice Windoor" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"qnv" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/computer_hardware/hard_drive/portable/quartermaster, -/obj/item/computer_hardware/hard_drive/portable/quartermaster, -/obj/item/computer_hardware/hard_drive/portable/quartermaster, -/obj/item/pen/fountain, -/obj/item/stamp{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/stamp/denied{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/stamp/qm{ - pixel_x = 8; - pixel_y = 10 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/item/lighter{ - pixel_x = 11; - pixel_y = -7 - }, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = 10; - pixel_y = -1 - }, -/obj/item/flashlight/lamp/green{ - pixel_x = -5; - pixel_y = 7 - }, -/turf/open/floor/carpet/orange, -/area/station/cargo/qm) -"qny" = ( -/obj/machinery/mineral/stacking_machine{ - input_dir = 2 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/janitor) -"qnJ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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/structure/disposalpipe/sorting/mail/flip{ - dir = 2; - name = "qm sorting disposal pipe"; - sortType = 3 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"qnK" = ( -/obj/machinery/door/airlock/engineering{ - name = "Emergency Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/crew_quarters/bar) -"qnL" = ( -/obj/machinery/vending/wardrobe/law_wardrobe, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/delivery, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/service/lawoffice) -"qnT" = ( -/obj/structure/closet/secure_closet/chemical, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/medical/pharmacy) -"qoi" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Plasma to Incinerator" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"qoo" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/airalarm/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Atmospherics Port Tanks"; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"qox" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/port) -"qoF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/science/robotics/lab) -"qoT" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"qoW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"qpj" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/aft) -"qpx" = ( -/obj/structure/rack, -/obj/item/storage/briefcase{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/briefcase, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/service/lawoffice) -"qpI" = ( -/obj/machinery/light/floor, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"qpJ" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/airalarm/directional/east, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"qpP" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/chair/office/light, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/paramedic) -"qpZ" = ( -/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/sign/warning/no_smoking{ - pixel_x = -30 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"qqJ" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"qqM" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/engineering/gravity_generator) -"qqZ" = ( -/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/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"qrk" = ( -/obj/machinery/power/smes, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"qrN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"qrP" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/closet/secure_closet/personal, -/obj/item/storage/backpack, -/obj/item/storage/backpack/satchel, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"qrS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/structure/table, -/obj/item/clipboard{ - pixel_x = -6 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -6 - }, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/syringe, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"qrU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"qsb" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) -"qsn" = ( -/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 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"qsv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"qsy" = ( -/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/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"qsA" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/item/toy/figure/engineer{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) -"qsF" = ( -/obj/structure/transit_tube/horizontal{ - dir = 1 - }, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - 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/plating, -/area/station/maintenance/fore) -"qth" = ( -/obj/structure/closet/secure_closet/security/science, -/obj/item/crowbar, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light_switch/directional/west{ - pixel_y = 26 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science/research) -"qtA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/vending/wardrobe/sec_wardrobe, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/customs) -"qug" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/item/screwdriver{ - pixel_y = 18 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/radio/intercom/directional/south, -/obj/machinery/firealarm/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"qur" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"quu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"quv" = ( -/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 Toggle"; - req_access = list("engineering") - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"quy" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/commons/locker) -"quG" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"qvc" = ( -/obj/machinery/door/airlock/external{ - name = "Satellite External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"qvh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/machinery/light_switch/directional/north{ - pixel_x = -4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"qvi" = ( -/obj/machinery/door/firedoor, -/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/medical/glass{ - name = "Medbay Desk" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/dark, -/area/station/medical/paramedic) -"qvq" = ( -/obj/structure/flora/rock/style_random, -/turf/open/misc/asteroid/lowpressure, -/area/space/nearstation) -"qvz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/box/corners, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/door/window/right/directional/east{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Fitness Ring" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"qvG" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"qvJ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"qvV" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/item/toy/figure/atmos{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage/gas) -"qwa" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"qwi" = ( -/obj/effect/turf_decal/tile/red, -/obj/machinery/airalarm/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Transferring Centre" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line, -/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, -/area/station/security/processing) -"qwx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"qwB" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"qwR" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Research Lab Maintenance" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "cargo-maint-passthrough" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) -"qxh" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"qxA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel's Office" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/command/hop, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hop) -"qxC" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/landmark/start/cargo_technician, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/storage) -"qxD" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/chair/stool/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"qxI" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"qxQ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"qyn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"qyo" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/storage) -"qyA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/box, -/obj/machinery/holopad, -/turf/open/floor/iron/showroomfloor, -/area/station/science/robotics/lab) -"qyQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"qyR" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/station/maintenance/disposal/incinerator) -"qzg" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/station/solars/starboard/fore) -"qzu" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"qzv" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/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) -"qzz" = ( -/obj/machinery/firealarm/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"qzA" = ( -/obj/effect/turf_decal/loading_area, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/lab) -"qzD" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"qzJ" = ( -/obj/structure/chair/stool/bar/directional/south, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"qAa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"qAc" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"qAg" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison) -"qAn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Custom Agent's Office" - }, -/obj/effect/turf_decal/siding/red/corner{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/customs, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/supply) -"qAo" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"qAx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"qAE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"qAG" = ( -/obj/structure/flora/grass/jungle/a/style_random, -/obj/structure/flora/bush/grassy/style_random, -/obj/structure/flora/bush/generic/style_random, -/obj/structure/flora/bush/flowers_pp/style_random, -/obj/structure/flora/bush/sunny/style_random, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/grass, -/area/station/hallway/secondary/exit/departure_lounge) -"qAK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/girder/displaced, -/obj/structure/grille/broken, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"qAR" = ( -/turf/closed/wall, -/area/station/cargo/miningoffice) -"qBe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"qBs" = ( -/turf/closed/wall/rust, -/area/station/commons/vacant_room/commissary) -"qBz" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"qBC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/landmark/start/cook, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"qBN" = ( -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/obj/structure/window/spawner, -/obj/structure/window/spawner/north, -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/flora/bush/lavendergrass/style_random, -/turf/open/floor/grass, -/area/station/service/chapel/monastery) -"qBR" = ( -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - color = "#c45c57"; - dir = 8 - }, -/obj/effect/landmark/start/head_of_security, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/office) -"qCi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/vacuum/external/directional/west, -/obj/machinery/light/small/directional/west, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/security/execution/education) -"qCj" = ( -/obj/machinery/chem_dispenser{ - layer = 2.7 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/pharmacy) -"qCI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"qCX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"qCZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"qDj" = ( -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter) -"qDp" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"qDE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"qDI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/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/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"qDX" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig) -"qDZ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/scientist, -/turf/open/floor/iron/showroomfloor, -/area/station/science/research) -"qEf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/departments/evac/directional/north, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/starboard) -"qEh" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/security/brig) -"qEj" = ( -/obj/machinery/computer/camera_advanced/xenobio{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/light/directional/north, -/obj/machinery/requests_console/directional/north{ - department = "Xenobiology"; - departmentType = 2; - name = "Xenobiology Requests Console"; - pixel_x = -32; - receive_ore_updates = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"qEs" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/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/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"qED" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"qEJ" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/bedsheetbin, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/commons/toilet/restrooms) -"qEL" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/disposal/bin, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"qEM" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"qER" = ( -/obj/structure/chair/pew{ - dir = 8 - }, -/turf/open/floor/iron/chapel, -/area/station/service/chapel) -"qEV" = ( -/obj/structure/chair/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 = 6 - }, -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"qFb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"qFs" = ( -/obj/structure/flora/bush/flowers_pp/style_random, -/obj/machinery/light/directional/east, -/turf/open/floor/grass, -/area/station/service/chapel) -"qFN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/spawner/random/structure/crate, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"qGi" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/table, -/obj/item/clipboard, -/obj/item/paper/guides/jobs/engi/gravity_gen, -/obj/item/pen/blue, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"qGq" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/checkpoint/science/research) -"qGK" = ( -/turf/closed/wall, -/area/station/medical/storage) -"qHe" = ( -/turf/closed/wall/r_wall/rust, -/area/station/ai_monitored/command/storage/eva) -"qHu" = ( -/obj/item/kirbyplants{ - icon_state = "plant-14" - }, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/toilet/restrooms) -"qHy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"qHG" = ( -/obj/machinery/door/airlock/external{ - name = "Medical Escape Pod"; - space_dir = 8 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"qHT" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/spawner/random/aimodule/neutral, -/obj/machinery/door/window{ - base_state = "right"; - icon_state = "right"; - name = "Core Modules"; - req_access = list("captain") - }, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) -"qHV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"qId" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Unit_1Privacy"; - name = "Unit 1 Privacy Shutter" - }, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"qIv" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/starboard) -"qJf" = ( -/turf/open/floor/wood, -/area/station/service/bar/atrium) -"qJi" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"qJs" = ( -/obj/structure/lattice/catwalk, -/obj/structure/marker_beacon/burgundy{ - name = "landing marker" - }, -/turf/open/space/basic, -/area/space/nearstation) -"qJB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"qJO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/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/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/siding/red{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"qJQ" = ( -/obj/machinery/door/poddoor/shutters{ - id = "ordnancemix"; - name = "Ordnance Lab Shutters"; - dir = 8 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"qJR" = ( -/turf/closed/wall/r_wall/rust, -/area/station/maintenance/port/aft) -"qJY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"qKf" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/holopad/secure, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"qKv" = ( -/obj/effect/decal/cleanable/dirt, -/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/port/lesser) -"qKx" = ( -/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/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"qKE" = ( -/obj/structure/bed{ - dir = 4 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/item/bedsheet/brown{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"qKH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/rebels_unite{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/obj/item/toy/plush/plasmamanplushie{ - name = "Dianion XV" - }, -/turf/open/floor/plating/plasma/rust, -/area/station/maintenance/space_hut/plasmaman) -"qKI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/space_heater, -/obj/machinery/airalarm/directional/east, -/obj/machinery/light/directional/south, -/obj/structure/sign/poster/contraband/fun_police{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"qKR" = ( -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"qKS" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/door_timer{ - id = "Cell 3"; - name = "Cell 3"; - pixel_x = -32 - }, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 3"; - name = "Cell 3 Locker" - }, -/turf/open/floor/iron, -/area/station/security/brig) -"qKX" = ( -/obj/machinery/door/airlock/engineering{ - name = "Emergency Storage" - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"qLb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/landmark/start/librarian, -/obj/effect/landmark/navigate_destination/library, -/turf/open/floor/iron/dark, -/area/station/service/library) -"qLi" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - 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, -/area/station/cargo/storage) -"qLB" = ( -/obj/structure/sign/departments/holy, -/turf/closed/wall, -/area/station/maintenance/port/fore) -"qLO" = ( -/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, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"qMA" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - name = "chapel sorting disposal pipe"; - sortType = 17 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/fore) -"qMC" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"qNh" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"qNp" = ( -/obj/structure/transit_tube/curved/flipped, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/hallway/primary/central/fore) -"qNr" = ( -/turf/closed/wall, -/area/station/hallway/primary/central/fore) -"qNH" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/cyan, -/turf/closed/wall/r_wall/rust, -/area/station/maintenance/aft) -"qNJ" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/button/flasher{ - id = "hopflash"; - pixel_x = 36; - pixel_y = 6 - }, -/obj/machinery/light_switch/directional/east{ - pixel_x = 36; - pixel_y = -6 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/button/ticket_machine{ - name = "Increment Ticket Counter"; - pixel_x = 24; - pixel_y = 24 - }, -/obj/item/paper/fluff/ids_for_dummies, -/obj/machinery/button/door/directional/east{ - id = "hopqueue"; - name = "Queue Shutters Toggle"; - pixel_y = -6; - req_access = list("hop") - }, -/obj/machinery/button/door/directional/east{ - id = "hop"; - name = "Privacy Shutters Toggle"; - pixel_y = 6; - req_access = list("hop") - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hop) -"qNL" = ( -/obj/machinery/chem_master, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/directional/south, -/obj/machinery/button/door/directional/south{ - id = "chemistry_shutters_2"; - name = "Hall Shutters Toggle"; - pixel_x = 24; - req_access = list("medical") - }, -/turf/open/floor/iron/dark, -/area/station/medical/pharmacy) -"qOd" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/service/chapel/storage) -"qOi" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/suit/hooded/wintercoat/engineering, -/obj/effect/turf_decal/delivery, -/obj/machinery/light/directional/north, -/obj/machinery/light_switch/directional/north, -/obj/item/pickaxe/mini, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage_shared) -"qOq" = ( -/obj/effect/turf_decal/loading_area, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"qOv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Chapel Hallway" - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/fore) -"qOz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"qOG" = ( -/obj/structure/cable, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/item/storage/box/lights/bulbs, -/obj/machinery/firealarm/directional/south, -/obj/item/tank/internals/oxygen/red, -/obj/item/clothing/mask/gas, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"qOQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/firealarm/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/engine, -/area/station/engineering/gravity_generator) -"qOT" = ( -/obj/effect/decal/cleanable/dirt, -/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/machinery/light/small/directional/east, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"qPf" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/folder/yellow, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/machinery/door/window/right/directional/west{ - name = "Atmospherics Desk"; - req_access = list("atmospherics") - }, -/obj/structure/desk_bell{ - pixel_x = 8; - pixel_y = 10 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos/storage/gas) -"qPv" = ( -/obj/structure/chair/sofa/left{ - color = "#c45c57"; - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/service/bar/atrium) -"qPz" = ( -/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, -/area/station/hallway/primary/aft) -"qPE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"qPH" = ( -/obj/structure/sign/departments/security, -/turf/closed/wall/r_wall/rust, -/area/station/ai_monitored/command/nuke_storage) -"qPU" = ( -/obj/structure/bookcase/random/reference, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"qPX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"qQc" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/execution/transfer) -"qQf" = ( -/obj/machinery/vending/wardrobe/chap_wardrobe, -/obj/structure/sign/poster/official/bless_this_spess{ - pixel_y = 32 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"qQj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/central/fore) -"qQq" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"qQQ" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"qRf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"qRh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/flip, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"qRm" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/tank/internals/oxygen/yellow, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/dark, -/area/station/cargo/miningoffice) -"qRp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/machinery/door/airlock/atmos/glass{ - name = "Distribution Loop" - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/pumproom) -"qRr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_y = 24 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"qRv" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/item/storage/box/lights/mixed{ - pixel_y = 5 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"qRy" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchenshutters"; - name = "Kitchen Shutters"; - dir = 8 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/turf/open/floor/iron, -/area/station/service/kitchen) -"qRD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"qRE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters"; - name = "Chemistry Lobby Shutters"; - dir = 4 - }, -/turf/open/floor/plating, -/area/station/medical/pharmacy) -"qRK" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/machinery/light_switch/directional/south{ - pixel_x = -8 - }, -/obj/structure/filingcabinet, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/captain/private) -"qRS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/bombcloset/security, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/aft) -"qRT" = ( -/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/chapel/funeral) -"qSa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"qSe" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"qSg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"qSB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/security/execution/transfer) -"qSC" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"qSJ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/spawner/random/entertainment/arcade{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"qSN" = ( -/obj/machinery/door/airlock/medical{ - id_tag = "Unit_2"; - name = "Unit 2" - }, -/turf/open/floor/iron/dark, -/area/station/commons/toilet/restrooms) -"qSO" = ( -/obj/machinery/computer/med_data{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) -"qTg" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/shieldgen, -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"qTC" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/service/bar/atrium) -"qTJ" = ( -/obj/structure/closet/wardrobe/miner, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/clothing/suit/hooded/wintercoat/miner, -/obj/item/clothing/suit/hooded/wintercoat/miner, -/obj/item/clothing/suit/hooded/wintercoat/miner, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/miningoffice) -"qTY" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/item/surgical_drapes, -/obj/item/scalpel{ - pixel_y = 5 - }, -/obj/item/cautery, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/aft) -"qUb" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/item/storage/box/hug/medical{ - pixel_y = 4 - }, -/obj/item/crowbar, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"qUj" = ( -/obj/machinery/smartfridge/food, -/turf/closed/wall, -/area/station/service/kitchen) -"qUp" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"qUJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/window/left/directional/west{ - name = "Soothing Nature Exhibit"; - req_access = list("psychology") - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/psychology) -"qUO" = ( -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"qUU" = ( -/turf/closed/wall/rust, -/area/station/security/checkpoint/engineering) -"qUZ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"qVk" = ( -/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/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"qVs" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/siding/red{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"qVz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"qVA" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate{ - name = "disposal supplies" - }, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/item/shovel, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"qVC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"qVF" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"qVJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"qVM" = ( -/obj/structure/lattice, -/obj/structure/girder/reinforced, -/turf/open/space/basic, -/area/space/nearstation) -"qVN" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"qVQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset{ - name = "plasmaperson emergency closet" - }, -/obj/item/clothing/under/plasmaman, -/obj/item/clothing/under/plasmaman, -/obj/item/clothing/head/helmet/space/plasmaman, -/obj/item/clothing/head/helmet/space/plasmaman, -/obj/item/tank/internals/plasmaman/belt/full, -/obj/item/tank/internals/plasmaman/belt/full, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"qVR" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"qVW" = ( -/obj/structure/table, -/obj/item/stack/cable_coil/five, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"qWz" = ( -/obj/structure/lattice, -/obj/structure/sign/warning/secure_area/directional/east, -/turf/open/space/basic, -/area/space/nearstation) -"qWB" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) -"qWJ" = ( -/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/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random/directional/north, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"qWN" = ( -/obj/machinery/plate_press, -/obj/machinery/light/small/directional/south, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plating, -/area/station/security/prison) -"qWT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_output{ - dir = 1 - }, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"qWZ" = ( -/obj/item/grenade/barrier{ - pixel_x = 4 - }, -/obj/item/grenade/barrier, -/obj/item/grenade/barrier{ - pixel_x = -4 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/key/security, -/obj/item/key/security, -/obj/item/gun/energy/e_gun/dragnet, -/obj/item/gun/energy/e_gun/dragnet{ - pixel_x = -4; - pixel_y = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"qXa" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"qXc" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/light_switch/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/motion/directional/south{ - c_tag = "Vault"; - name = "vault camera"; - network = list("vault") - }, -/turf/open/floor/engine, -/area/station/ai_monitored/command/nuke_storage) -"qXn" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Hydroponics Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/bridge) -"qXv" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"qXA" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"qXJ" = ( -/obj/structure/girder, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"qXX" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"qYr" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"qYv" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/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 = 5 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"qYy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"qYO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/station/engineering/storage/tech) -"qZf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/port) -"qZl" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/science/robotics/mechbay) -"qZp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"qZx" = ( -/turf/closed/wall/r_wall/rust, -/area/station/tcommsat/server) -"qZL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/janitor) -"qZS" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/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/showroomfloor, -/area/station/medical/virology) -"qZX" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/aft) -"rah" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"rau" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"raM" = ( -/obj/machinery/light/directional/west, -/obj/machinery/status_display/ai/directional/west, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"raS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/east, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/machinery/computer/operating{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/aft) -"raY" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/service/library) -"rbk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/evac/directional/east, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/port) -"rbn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_output{ - dir = 4 - }, -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"rbp" = ( -/obj/structure/sign/departments/cargo/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"rbz" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/sign/warning/secure_area/directional/west, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Brig Prison Access" - }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"rbH" = ( -/obj/machinery/computer/security/telescreen{ - dir = 8; - name = "Station Monitor"; - network = list("ss13"); - pixel_x = 24 - }, -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/hand_labeler, -/obj/item/taperecorder, -/turf/open/floor/carpet/green, -/area/station/security/detectives_office) -"rbO" = ( -/turf/open/floor/iron, -/area/station/service/hydroponics) -"rbT" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/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, -/area/station/commons/storage/primary) -"rcp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"rcB" = ( -/turf/open/floor/grass, -/area/station/service/chapel) -"rcI" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ - dir = 5 - }, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"rcJ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/door_timer{ - id = "Cell 1"; - name = "Cell 1"; - pixel_x = -32 - }, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 1"; - name = "Cell 1 Locker" - }, -/turf/open/floor/iron, -/area/station/security/brig) -"rcM" = ( -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/captain) -"rcN" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Xenobiology Maintenance" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"rcS" = ( -/obj/structure/chair/pew/left{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/turf/open/floor/iron/chapel{ - dir = 8 - }, -/area/station/service/chapel) -"rdb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/west, -/obj/structure/plaque/static_plaque/golden{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"rdc" = ( -/turf/closed/wall/r_wall/rust, -/area/station/science/ordnance/bomb) -"rdl" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"rdo" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"rdp" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"rdD" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/item/radio/intercom/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Starboard Hallway Departure Checkpoint"; - name = "starboard camera" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"rdI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/structure/noticeboard/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"rdM" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/commons/fitness/recreation) -"rdV" = ( -/obj/structure/chair/pew/left{ - dir = 4 - }, -/obj/machinery/newscaster/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"rea" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"rec" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/garden) -"rel" = ( -/obj/structure/falsewall{ - name = "suspicious wall" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"reo" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/camera/directional/south{ - c_tag = "Ordnance Storage"; - name = "science camera"; - network = list("ss13","rd") - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"ret" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"reJ" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"reT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai_upload) -"reX" = ( -/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/cable, -/turf/open/floor/plating, -/area/station/security/prison) -"rfg" = ( -/obj/structure/chair/bronze, -/turf/open/floor/bronze, -/area/station/maintenance/department/chapel) -"rfo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/machinery/light/small/directional/north, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"rfD" = ( -/obj/machinery/shieldgen, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"rfF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security{ - name = "Custom Agent's Office" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/supply/customs, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/supply) -"rfM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"rfX" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/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, -/area/station/commons/fitness/recreation) -"rgv" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"rgY" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"rha" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/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/commons/fitness/recreation) -"rhd" = ( -/turf/closed/wall/r_wall, -/area/station/security/lockers) -"rhf" = ( -/turf/open/floor/iron/stairs/old, -/area/station/maintenance/port/fore) -"rhs" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"rhy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"rhK" = ( -/obj/machinery/door/firedoor, -/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 Lab" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron/dark, -/area/station/science/lab) -"rhN" = ( -/turf/closed/wall, -/area/station/commons/locker) -"rhT" = ( -/turf/closed/wall, -/area/station/service/lawoffice) -"rif" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"riB" = ( -/obj/machinery/computer/shuttle/labor{ - dir = 1 - }, -/obj/structure/sign/warning/vacuum/external/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Transferring Centre Dock" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/security/processing) -"riC" = ( -/obj/effect/turf_decal/tile/purple{ - 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/structure/cable, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/research) -"riI" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/pipe_dispenser, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"riN" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Gas to Chamber" - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"riQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/service/library) -"riS" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/left/directional/west{ - dir = 4; - name = "Cargo Desk"; - req_access = list("shipping") - }, -/obj/item/clipboard{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/folder{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/structure/desk_bell{ - pixel_x = -8; - pixel_y = 10 - }, -/turf/open/floor/plating, -/area/station/cargo/office) -"riW" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/carpet/royalblue, -/area/station/service/chapel/office) -"riX" = ( -/obj/effect/decal/cleanable/robot_debris/limb, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/oil/streak, -/obj/effect/decal/cleanable/robot_debris/old, -/turf/open/floor/iron/dark, -/area/station/service/chapel/storage) -"rja" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/obj/effect/turf_decal/delivery, -/obj/item/gun/energy/e_gun/mini, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"rjg" = ( -/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/showroomfloor, -/area/station/security/medical) -"rjR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/random/clothing/costume, -/obj/effect/spawner/random/clothing/costume, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"rjV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"rkn" = ( -/obj/item/stack/cable_coil, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"rko" = ( -/obj/structure/sign/warning/explosives, -/turf/closed/wall/r_wall/rust, -/area/station/science/ordnance/bomb) -"rky" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/port) -"rkG" = ( -/turf/closed/wall/r_wall/rust, -/area/station/security/lockers) -"rkT" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/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, -/area/station/hallway/primary/aft) -"rkV" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/security/execution/education) -"rlx" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"rlM" = ( -/obj/structure/chair/pew{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/chapel, -/area/station/service/chapel) -"rlT" = ( -/turf/open/floor/iron/showroomfloor, -/area/station/science/robotics/lab) -"rmd" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/obj/item/taperecorder, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"rmI" = ( -/obj/structure/flora/grass/jungle/a/style_random, -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/flora/bush/flowers_br/style_random, -/obj/structure/flora/bush/leavy/style_random, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/grass, -/area/station/command/heads_quarters/hop) -"rmK" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2"; - name = "mail belt" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/cargo/sorting) -"rmL" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/spawner/random/aimodule/harmful, -/obj/machinery/door/window/brigdoor/left/directional/south{ - name = "High-Risk Modules"; - req_access = list("captain") - }, -/obj/item/ai_module/reset/purge{ - pixel_y = 11 - }, -/turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) -"rmT" = ( -/obj/machinery/light_switch/directional/east, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/office) -"rna" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"rnj" = ( -/obj/item/clothing/suit/hooded/techpriest{ - pixel_y = 8 - }, -/obj/item/clothing/suit/hooded/techpriest{ - pixel_y = 6 - }, -/obj/item/clothing/suit/hooded/techpriest{ - pixel_y = 4 - }, -/obj/structure/rack, -/turf/open/floor/iron/dark, -/area/station/service/chapel/storage) -"rnp" = ( -/obj/structure/sign/poster/contraband/missing_gloves{ - pixel_x = 32 - }, -/obj/machinery/power/smes/engineering, -/obj/structure/cable, -/turf/open/floor/circuit/red, -/area/station/engineering/supermatter/room) -"rnG" = ( -/turf/closed/wall/r_wall, -/area/station/hallway/secondary/service) -"rnJ" = ( -/turf/open/floor/iron/showroomfloor, -/area/station/medical/surgery/aft) -"rnP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"rnW" = ( -/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/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"ron" = ( -/obj/effect/turf_decal/tile/purple/anticorner/contrasted, -/obj/effect/landmark/start/scientist, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/office) -"ror" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"rot" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sink{ - pixel_y = 26 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/virology) -"rou" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/obj/effect/spawner/random/structure/crate, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"rov" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"roy" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Cold Loop to Gas" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"roF" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Server Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/effect/mapping_helpers/airlock/access/all/science/rd, -/turf/open/floor/iron/dark, -/area/station/science/server) -"roO" = ( -/obj/structure/grille/broken, -/obj/effect/spawner/random/structure/crate, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"roT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/command/bridge) -"roV" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/structure/sign/warning/secure_area/directional/north, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/box/red, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/ai_monitored/turret_protected/ai) -"rph" = ( -/obj/structure/grille, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"rpl" = ( -/turf/closed/wall, -/area/station/maintenance/department/electrical) -"rpB" = ( -/obj/structure/urinal/directional/north, -/turf/open/floor/plating/rust, -/area/station/security/prison/shower) -"rpD" = ( -/obj/effect/turf_decal/tile/brown{ - 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/office) -"rpF" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/station/cargo/storage) -"rpN" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - 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/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"rqb" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"rqi" = ( -/obj/structure/sign/poster/official/pda_ad, -/turf/closed/wall, -/area/station/command/heads_quarters/hop) -"rqm" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"rqn" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/button/door/directional/south{ - id = "ordnancestorage"; - name = "Ordnance Storage Access"; - req_access = list("ordnance") - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"rqp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/storage) -"rqq" = ( -/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/public/glass{ - name = "Art Cabinet" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/commons/storage/art) -"rqs" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/computer/security{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/office) -"rqu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"rqx" = ( -/obj/structure/table, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"rqG" = ( -/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{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"rqJ" = ( -/obj/effect/turf_decal/box, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/science/robotics/lab) -"rqL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/shaft_miner, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"rqV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"rqW" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/central) -"rrc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"rrl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/r_wall/rust, -/area/station/maintenance/starboard) -"rrm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"rrs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"rrt" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/space_heater, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"rrG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"rrK" = ( -/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/cyclelink_helper_multi{ - cycle_id = "cargo-maint-passthrough" - }, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) -"rrO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"rrQ" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"rrS" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, -/turf/open/space/basic, -/area/space/nearstation) -"rrY" = ( -/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, -/area/station/security/brig) -"rsb" = ( -/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/wood{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/duct, -/turf/open/floor/wood, -/area/station/service/bar/atrium) -"rsd" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/stamp/denied{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/stamp{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"rsw" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"rsT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/tcommsat/server) -"rsX" = ( -/obj/structure/flora/bush/flowers_br/style_random, -/turf/open/floor/grass, -/area/station/service/chapel) -"rsY" = ( -/obj/machinery/door/airlock/external{ - name = "External Freight Airlock" - }, -/turf/open/floor/iron/dark, -/area/station/cargo/warehouse) -"rsZ" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"rtc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"rtr" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -6 - }, -/obj/item/reagent_containers/syringe, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/pharmacy) -"rtx" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"rtD" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/bed, -/obj/item/bedsheet/brown, -/obj/item/radio/intercom/prison/directional/east, -/turf/open/floor/iron/showroomfloor, -/area/station/security/brig) -"rtF" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 8 - }, -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"rtK" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/folder, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -4 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 4 - }, -/obj/item/reagent_containers/dropper, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"rtT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"ruc" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"ruo" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"rup" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/status_display/supply{ - pixel_y = -32 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/storage) -"ruB" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"ruU" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"ruW" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) -"rvj" = ( -/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/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"rvk" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible, -/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/engineering/atmos) -"rvz" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/closet/secure_closet/personal, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/cargo/warehouse) -"rvD" = ( -/obj/structure/transit_tube, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"rvR" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"rvU" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"rvZ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"rwh" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"rwr" = ( -/turf/closed/wall/rust, -/area/station/medical/psychology) -"rwu" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/secure_area/directional/north{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM" - }, -/turf/open/floor/plating, -/area/station/science/server) -"rwy" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/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/showroomfloor, -/area/station/command/heads_quarters/rd) -"rwD" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "Engineering Blast Doors" - }, -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/lobby) -"rwR" = ( -/obj/machinery/rnd/destructive_analyzer, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/lab) -"rwW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/girder/displaced, -/obj/structure/grille/broken, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"rxa" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/light/directional/east, -/obj/machinery/computer/med_data/laptop{ - dir = 8; - pixel_y = 4 - }, -/obj/structure/table/wood, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/psychology) -"rxe" = ( -/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/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - name = "kitchen sorting disposal pipe"; - sortType = 20 - }, -/obj/machinery/duct, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"rxi" = ( -/obj/effect/turf_decal/stripes/line, -/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, -/area/station/security/brig) -"rxo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"rxp" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/dark/end{ - dir = 8 - }, -/turf/open/floor/glass/reinforced, -/area/station/service/chapel) -"rxt" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/item/storage/secure/briefcase{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/lockbox/medal, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/captain) -"rxu" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/directional/west{ - c_tag = "Satellite Transit Access"; - name = "satellite camera"; - network = list("minisat") - }, -/obj/machinery/button/door/directional/west{ - id = "transittube_ai"; - name = "Transit Tube Lockdown Toggle"; - req_access = list("command") - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"rxJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lawyer_shutters"; - name = "Law Office Shutters" - }, -/turf/open/floor/plating, -/area/station/service/lawoffice) -"rxQ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"rxW" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/vomit/old, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"rxX" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/color/fyellow{ - pixel_y = 6 - }, -/obj/item/storage/toolbox/electrical, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"ryn" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"ryK" = ( -/obj/structure/table, -/obj/structure/sign/departments/medbay/alt/directional/east, -/obj/structure/sign/poster/official/help_others{ - pixel_y = -32 - }, -/obj/item/storage/box/bodybags{ - pixel_y = 5 - }, -/obj/item/clothing/glasses/eyepatch{ - pixel_y = 4 - }, -/obj/item/clothing/mask/surgical, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"ryW" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"ryZ" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"rzr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/library) -"rzB" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/item/clipboard{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/suit/apron/surgical, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/aft) -"rzE" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/command/bridge) -"rzR" = ( -/obj/effect/turf_decal/stripes/line, -/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, -/turf/open/floor/engine, -/area/station/engineering/gravity_generator) -"rzV" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"rAr" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/machinery/firealarm/directional/west, -/obj/machinery/suit_storage_unit/standard_unit{ - desc = "An industrial suit storage device carrying retro space suits. Neat!"; - helmet_type = /obj/item/clothing/head/helmet/space; - suit_type = /obj/item/clothing/suit/space - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"rAA" = ( -/obj/effect/decal/cleanable/ash, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"rAB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"rAD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"rAL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"rAO" = ( -/obj/structure/sign/departments/xenobio, -/turf/closed/wall, -/area/station/maintenance/starboard/fore) -"rAQ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/central) -"rBd" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/obj/item/stack/rods/ten, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"rBj" = ( -/obj/structure/transit_tube/curved/flipped, -/turf/open/space/basic, -/area/space/nearstation) -"rBE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance{ - name = "Atmospherics Maintenance" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron/dark, -/area/station/maintenance/aft) -"rBO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"rBS" = ( -/obj/structure/flora/bush/jungle/b/style_random, -/obj/structure/flora/bush/flowers_pp/style_random, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/camera/directional/west{ - c_tag = "Virology Monkey Pen"; - name = "medical camera"; - network = list("ss13","medical") - }, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/station/medical/virology) -"rBV" = ( -/obj/structure/table/reinforced/plastitaniumglass, -/obj/item/mmi, -/turf/open/floor/iron/dark, -/area/station/service/chapel/storage) -"rCi" = ( -/turf/closed/wall, -/area/station/hallway/secondary/entry) -"rCH" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"rDe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/storage/toolbox/electrical{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stack/rods/fifty{ - pixel_y = 5 - }, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/requests_console/directional/east{ - department = "EVA"; - name = "EVA Requests Console" - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"rDh" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"rDi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/firealarm/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/engineering/gravity_generator) -"rDj" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/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, -/area/station/hallway/primary/starboard) -"rDl" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"rDO" = ( -/obj/structure/frame/computer{ - anchored = 1; - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"rDX" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos) -"rEi" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop, -/obj/machinery/vending/wallmed/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/medical) -"rEs" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/washing_machine, -/obj/machinery/light/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/garden) -"rEE" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2"; - name = "mail belt" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/cargo/sorting) -"rEM" = ( -/obj/structure/cable, -/obj/structure/chair/sofa/left, -/obj/item/toy/plush/moth{ - name = "Big Moffer" - }, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/carpet, -/area/station/medical/psychology) -"rER" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Chapel Hallway" - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/fore) -"rEV" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/service/hydroponics/garden) -"rEW" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/siding/yellow/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"rFc" = ( -/obj/effect/turf_decal/bot, -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/radio{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/radio{ - pixel_y = 2 - }, -/obj/item/flashlight/flare, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"rFg" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"rFh" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/office) -"rFi" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Tools"; - location = "Engineering"; - name = "engineering navigation beacon" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"rFr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"rFt" = ( -/turf/closed/wall, -/area/station/security/checkpoint/medical) -"rFx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"rFD" = ( -/obj/structure/sign/warning/no_smoking{ - pixel_x = 30 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"rFK" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/item/clothing/mask/russian_balaclava, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"rFL" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/obj/item/clothing/head/welding, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"rFN" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"rGK" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"rHc" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/storage) -"rHi" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/north, -/obj/structure/rack, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) -"rHm" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "xeno_blastdoor"; - name = "Xenobiology Containment Blast Door" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"rHs" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/item/clothing/under/rank/security/officer, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"rHz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"rIk" = ( -/turf/open/floor/engine, -/area/station/engineering/storage/tech) -"rIl" = ( -/obj/structure/sign/departments/holy{ - pixel_y = 30 - }, -/turf/open/floor/iron/stairs/right{ - dir = 4 - }, -/area/station/hallway/primary/fore) -"rIm" = ( -/obj/machinery/airalarm/directional/east, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"rIq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/gulag_item_reclaimer{ - dir = 8; - pixel_x = 30 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"rIY" = ( -/obj/structure/table, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1447; - name = "Private AI Channel"; - pixel_y = -2 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 1; - pixel_y = -28 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/hallway/primary/central/fore) -"rJJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/light/directional/east, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/hallway/primary/port) -"rJN" = ( -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/sparsegrass/style_random, -/turf/open/floor/grass, -/area/station/service/chapel) -"rJO" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"rJS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/hydroponics/constructable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/green/line, -/obj/effect/turf_decal/trimline/green/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"rKa" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"rKf" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"rKj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Council Chamber" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"rKk" = ( -/turf/closed/wall/rust, -/area/station/medical/surgery/aft) -"rKm" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/computer/atmos_alert, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage/gas) -"rKn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"rKI" = ( -/obj/machinery/rnd/production/protolathe/department/science, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Research Lab"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/science/lab) -"rKN" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"rKV" = ( -/obj/machinery/power/emitter/welded{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"rKY" = ( -/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/sign/departments/security/directional/north, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"rLh" = ( -/obj/machinery/airalarm/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/tcommsat/computer) -"rLs" = ( -/obj/structure/reagent_dispensers/watertank/high, -/obj/item/reagent_containers/glass/watering_can, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"rLy" = ( -/obj/structure/table, -/obj/item/folder/blue{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/folder/documents, -/obj/item/clothing/neck/stethoscope{ - pixel_y = 5 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/ai_monitored/command/nuke_storage) -"rLG" = ( -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/structure/flora/bush/grassy/style_random, -/obj/structure/flora/bush/pale/style_random, -/obj/effect/decal/cleanable/dirt, -/turf/open/misc/asteroid, -/area/space/nearstation) -"rLN" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/smes{ - charge = 5e+006; - name = "ai power storage unit" - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) -"rLR" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall/rust, -/area/station/cargo/miningoffice) -"rLW" = ( -/obj/machinery/door/airlock/external{ - name = "External Freight Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/iron/dark, -/area/station/cargo/warehouse) -"rMi" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"rMl" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/obj/item/kirbyplants{ - icon_state = "plant-02"; - pixel_y = 3 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"rMI" = ( -/obj/structure/table, -/obj/machinery/newscaster/directional/west, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/item/wrench, -/obj/machinery/recharger, -/obj/item/restraints/handcuffs, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"rMJ" = ( -/obj/structure/sign/warning/no_smoking{ - pixel_x = -30 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"rNg" = ( -/obj/effect/turf_decal/tile/red{ - 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, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"rNj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"rNk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/ash/large, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"rNo" = ( -/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/locker) -"rNx" = ( -/turf/closed/wall/r_wall/rust, -/area/station/service/chapel) -"rNJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/medical) -"rNN" = ( -/obj/structure/chair{ - name = "Judge" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/noticeboard/directional/north, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/security/courtroom) -"rNO" = ( -/obj/machinery/door/airlock/external/glass{ - name = "Supply Door Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron/dark, -/area/station/cargo/storage) -"rNP" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"rNR" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/external{ - name = "External Airlock" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"rNX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"rNZ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/central) -"rOq" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"rOz" = ( -/turf/closed/wall/rust, -/area/station/service/chapel/funeral) -"rOC" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"rOJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/lab) -"rON" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"rOR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"rOS" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"rOX" = ( -/obj/machinery/hydroponics/constructable, -/obj/item/seeds/tower{ - pixel_y = -6 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/bridge) -"rPl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/manifold/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"rPo" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/bridge) -"rPx" = ( -/obj/structure/bed{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/obj/item/bedsheet/dorms{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/commons/locker) -"rPy" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, -/area/station/science/research) -"rPN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"rPO" = ( -/obj/structure/table, -/obj/item/hand_labeler, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_y = 24 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"rPU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/grey_tide{ - pixel_y = 32 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"rQl" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L11" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"rQs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/human{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/toy/talking/ai{ - pixel_x = -6; - pixel_y = -1 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/bridge) -"rQx" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/paramedic) -"rQG" = ( -/obj/structure/bodycontainer/crematorium, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron/dark/textured_large, -/area/station/service/chapel/funeral) -"rQH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"rQQ" = ( -/obj/machinery/vending/hydronutrients, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"rQZ" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"rRb" = ( -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock"; - shuttledocked = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark, -/area/station/security/processing) -"rRm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"rRu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"rRw" = ( -/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/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/ai_monitored/command/storage/satellite) -"rRx" = ( -/obj/machinery/computer/med_data, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/wood, -/area/station/security/detectives_office) -"rRz" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"rRA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"rRC" = ( -/obj/machinery/recharge_station, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/machinery/airalarm/directional/west, -/obj/machinery/light/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) -"rRD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/warning/xeno_mining/directional/north, -/obj/machinery/door/airlock/external/glass{ - name = "External Freight Airlock" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/warehouse) -"rRJ" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Satellite External Fore"; - name = "exterior camera"; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"rRM" = ( -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/obj/machinery/computer/prisoner/management, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"rRU" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"rRW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/meter, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/education) -"rRY" = ( -/turf/closed/wall/r_wall, -/area/station/security/interrogation) -"rRZ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/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, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/paramedic) -"rSe" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/power/emitter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"rSi" = ( -/turf/closed/wall/rust, -/area/station/medical/surgery/fore) -"rSB" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/folder{ - pixel_x = 3 - }, -/obj/item/pen{ - pixel_x = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters"; - name = "Research Privacy Shutter"; - dir = 8 - }, -/obj/machinery/door/window/right/directional/east{ - name = "Research Lab Desk"; - req_access = list("science") - }, -/obj/structure/desk_bell{ - pixel_x = -7; - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/station/science/lab) -"rSL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/mob/living/simple_animal/hostile/giant_spider/hunter/scrawny, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"rSN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/trimline/green/end{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"rST" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard) -"rTi" = ( -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"rTk" = ( -/turf/closed/wall, -/area/station/service/chapel/office) -"rTp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"rTu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"rTv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/caution{ - pixel_y = -12 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"rTS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/spider/stickyweb, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"rUh" = ( -/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/corner{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/transfer) -"rUj" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/starboard) -"rUD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/table, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"rUO" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"rUP" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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/showroomfloor, -/area/station/medical/medbay/central) -"rUQ" = ( -/obj/effect/turf_decal/stripes/corner{ - 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{ - dir = 6 - }, -/obj/structure/sign/poster/contraband/random/directional/west, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"rVj" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"rVp" = ( -/obj/machinery/computer/crew{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) -"rVt" = ( -/obj/structure/frame/computer{ - anchored = 1; - dir = 8 - }, -/obj/item/stack/cable_coil/cut, -/turf/open/floor/wood, -/area/station/cargo/warehouse) -"rVw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/south, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"rVA" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/port) -"rVE" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"rVY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/closet/l3closet/virology, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"rWg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/engine/telecomms, -/area/station/tcommsat/server) -"rWT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/turf/open/floor/plating, -/area/station/engineering/atmos/storage/gas) -"rXp" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Aft Hallway Security Firelock"; - name = "aft camera" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"rXv" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"rYa" = ( -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"rYc" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/station/maintenance/port/greater) -"rYf" = ( -/obj/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, -/area/station/service/library) -"rYh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Laser Room" - }, -/obj/structure/cable, -/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/supermatter/room) -"rYi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"rYx" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"rYK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/service/library) -"rZb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"rZc" = ( -/obj/structure/table/wood/fancy/black, -/obj/item/flashlight/lantern{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/flashlight/lantern{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/flashlight/lantern, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"rZi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"rZE" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/siding/blue/corner{ - 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/showroomfloor, -/area/station/medical/medbay/central) -"rZK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"rZM" = ( -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/chair/office/light, -/obj/effect/landmark/start/geneticist, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"rZN" = ( -/turf/closed/wall/r_wall/rust, -/area/station/ai_monitored/command/storage/satellite) -"rZO" = ( -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - 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/secondary/exit/departure_lounge) -"rZU" = ( -/obj/effect/spawner/random/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/central) -"rZV" = ( -/turf/closed/wall, -/area/station/maintenance/starboard) -"rZW" = ( -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"sab" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"sac" = ( -/obj/structure/flora/grass/jungle/b/style_random, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/misc/asteroid, -/area/space/nearstation) -"sav" = ( -/obj/structure/flora/bush/pale/style_random, -/obj/structure/sign/warning/electric_shock/directional/south, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/space/nearstation) -"saE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/research) -"saW" = ( -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"sbh" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"sby" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/fore) -"sbz" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/siding/wood/end{ - dir = 1 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/wood/parquet, -/area/station/command/heads_quarters/captain/private) -"sbB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/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/structure/sign/poster/contraband/random/directional/west, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"sbJ" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/item/wrench/medical, -/obj/machinery/light/directional/west, -/obj/machinery/status_display/evac/directional/west, -/obj/item/storage/pill_bottle/mannitol{ - pixel_x = 8; - pixel_y = 7 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"sbX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"sbZ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/table, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/plunger, -/obj/item/plunger, -/obj/structure/sign/departments/chemistry/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Chemistry East"; - network = list("ss13","medbay") - }, -/obj/machinery/button/door/directional/north{ - id = "chem_lockdown"; - name = "chemistry lockdown control"; - req_access = list("pharmacy") - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"scc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"scg" = ( -/obj/machinery/suit_storage_unit/captain, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/captain) -"scp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/mob/living/simple_animal/hostile/asteroid/hivelord, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"scE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/port) -"scJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"scN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/hallway/primary/central/fore) -"scQ" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 4; - height = 7; - id = "supply_home"; - name = "Cargo Bay"; - width = 12 - }, -/turf/open/space/basic, -/area/space) -"scR" = ( -/obj/item/storage/box/teargas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/flashbangs{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"scT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/rack, -/obj/item/wrench, -/obj/item/crowbar/red, -/obj/machinery/newscaster/directional/east, -/obj/effect/turf_decal/bot, -/obj/item/stack/sheet/glass{ - amount = 20 - }, -/obj/item/stack/sheet/iron/twenty, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"scX" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/commons/storage/primary) -"sda" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/secure_area/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"sdd" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/clipboard, -/obj/item/folder, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"sdm" = ( -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole/bookmanagement{ - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/noticeboard/directional/west, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"sdp" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/computer_hardware/hard_drive/portable/engineering, -/obj/item/computer_hardware/hard_drive/portable/engineering, -/obj/item/computer_hardware/hard_drive/portable/atmos, -/obj/item/folder, -/obj/item/stamp/ce, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"sdT" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"see" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/hallway) -"seo" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"sex" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"seB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"seG" = ( -/obj/machinery/doppler_array{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"seK" = ( -/obj/structure/table/reinforced/plastitaniumglass, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell, -/turf/open/floor/iron/dark, -/area/station/service/chapel/storage) -"seN" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/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/secondary/exit/departure_lounge) -"seP" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"seU" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/yellow, -/obj/item/electronics/apc, -/obj/item/electronics/airlock{ - pixel_y = 6 - }, -/obj/item/stock_parts/cell/high, -/turf/open/floor/engine, -/area/station/engineering/storage/tech) -"seW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"sfi" = ( -/obj/item/bedsheet/red, -/obj/structure/bed, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/prisoner, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"sft" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"sfw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"sfx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/button/door/directional/south{ - id = "freight_port"; - name = "Freight Bay Control" - }, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"sfI" = ( -/obj/structure/girder, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"sfV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"sgh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"sgj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"sgn" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 5 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/storage) -"sgA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"sgC" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/office) -"sgW" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/station/science/genetics) -"shk" = ( -/obj/machinery/telecomms/bus/preset_four, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"shC" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-entrance-right" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"shE" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel/monastery) -"shH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"shO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"shP" = ( -/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/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"shS" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"shW" = ( -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/cargo/drone_bay) -"shZ" = ( -/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 = 6 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"sij" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Virology Maintenance" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/medical/central) -"siF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"siH" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/service/chapel/dock) -"siI" = ( -/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/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/restaurant_portal/restaurant, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/duct, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"siL" = ( -/obj/structure/table/bronze, -/obj/machinery/light/small/directional/west, -/obj/item/toy/plush/ratplush, -/turf/open/floor/bronze/filled, -/area/station/maintenance/department/chapel) -"siS" = ( -/obj/machinery/door/airlock/external{ - name = "Prison External Airlock" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "kilo-maint-1" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"sjk" = ( -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"sjo" = ( -/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/cable, -/obj/structure/sign/poster/contraband/random/directional/east, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"sjG" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/service/chapel) -"sjV" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"skA" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/window/brigdoor/right/directional/north{ - id = "Cell 2"; - name = "Cell 2"; - req_access = list("security") - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/brig) -"skB" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/station/ai_monitored/command/nuke_storage) -"skC" = ( -/turf/closed/wall/rust, -/area/station/security/brig) -"skM" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/primary/starboard) -"skP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/reflector/double/anchored{ - dir = 6 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"skR" = ( -/obj/structure/closet{ - name = "maid locker" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/color/white, -/obj/item/clothing/accessory/maidapron{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/clothing/shoes/laceup, -/obj/structure/mirror/directional/north, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"slh" = ( -/obj/structure/flora/bush/flowers_br/style_random, -/obj/item/radio/intercom/directional/south, -/obj/structure/flora/bush/flowers_pp/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"slo" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_upload) -"slr" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"sls" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron, -/area/station/cargo/storage) -"slu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"slB" = ( -/obj/structure/chair/pew/left{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/chapel{ - dir = 1 - }, -/area/station/service/chapel) -"slC" = ( -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"slM" = ( -/obj/machinery/door/airlock/external{ - name = "Medical Escape Pod"; - space_dir = 8 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"smb" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/tank/internals/oxygen, -/obj/item/pickaxe, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"smi" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"smn" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/siding/yellow, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"smo" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/massdriver_ordnance, -/obj/structure/fans/tiny, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"smq" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/small/directional/west, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"smC" = ( -/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/security/prison/garden) -"smR" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/security/brig) -"sne" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/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/fore) -"sni" = ( -/obj/structure/sign/warning/fire, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/turf/closed/wall, -/area/station/engineering/atmos) -"snn" = ( -/turf/closed/wall/rust, -/area/station/maintenance/department/chapel/monastery) -"snw" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/office) -"snU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "ceprivate"; - name = "Chief Engineer's Privacy Shutters" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/command/heads_quarters/ce) -"snW" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -3; - pixel_y = 15 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/bottle/beer{ - desc = "A station exclusive. Consumption may result in seizures, blindness, drunkenness, or even death."; - list_reagents = list(/datum/reagent/consumable/ethanol/thirteenloko=30); - name = "Kilo-Kocktail"; - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/carpet/green, -/area/station/service/lawoffice) -"son" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"sow" = ( -/obj/item/kirbyplants{ - icon_state = "plant-02"; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/security/processing) -"soB" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"soC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"soL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plating, -/area/station/maintenance/central) -"soZ" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/saltshaker{ - layer = 3.1; - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; - pixel_x = -8; - pixel_y = 2 - }, -/obj/item/toy/figure/prisoner{ - pixel_x = 3; - pixel_y = 6 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"spi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/public/glass{ - name = "Security Hallway" - }, -/obj/structure/sign/departments/security/directional/west, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"spm" = ( -/turf/open/floor/iron/dark, -/area/station/service/chapel/storage) -"spr" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet/green, -/area/station/maintenance/port/greater) -"spw" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"spE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"spG" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/genetics) -"spQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"spV" = ( -/obj/structure/table, -/obj/machinery/newscaster/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/green{ - dir = 8 - }, -/obj/item/storage/bag/plants/portaseeder, -/obj/machinery/light/small/directional/east, -/obj/item/crowbar/red, -/obj/item/plant_analyzer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics/garden) -"spX" = ( -/obj/structure/cable, -/obj/machinery/space_heater, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"spZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"sqg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Law Office" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/lawyer, -/turf/open/floor/iron/dark, -/area/station/service/lawoffice) -"sqh" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - name = "hos sorting disposal pipe"; - sortType = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/security/office) -"sqs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/transfer) -"sqK" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/obj/item/storage/box/lights/mixed{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/storage/box/lights/mixed{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/grenade/chem_grenade/cleaner{ - pixel_x = 10; - pixel_y = 6 - }, -/obj/item/grenade/chem_grenade/cleaner{ - pixel_x = 10; - pixel_y = 6 - }, -/obj/item/grenade/chem_grenade/cleaner{ - pixel_x = 10; - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/janitor) -"sqL" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"sqM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) -"srf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Brig" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"srg" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/anesthetic_mix, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) -"srk" = ( -/obj/machinery/deepfryer, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"srs" = ( -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"srx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/structure/table/optable, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/aft) -"srA" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron, -/area/station/cargo/storage) -"srR" = ( -/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/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"srW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Detective's Office" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/landmark/navigate_destination, -/obj/effect/mapping_helpers/airlock/access/all/security/detective, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"srX" = ( -/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/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ssg" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai_upload) -"ssi" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/computer/security{ - dir = 4 - }, -/obj/machinery/requests_console/directional/west{ - department = "Security"; - departmentType = 5; - name = "Security Requests Console" - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/customs) -"ssk" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/book/manual/wiki/detective{ - pixel_y = 4 - }, -/obj/item/camera, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"ssr" = ( -/obj/structure/cable, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/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, -/area/station/command/heads_quarters/captain) -"ssx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"ssF" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison) -"ssI" = ( -/obj/structure/chair/pew/right{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/chapel, -/area/station/service/chapel) -"ssU" = ( -/obj/structure/flora/grass/jungle/a/style_random, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/misc/asteroid, -/area/space/nearstation) -"ssV" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"stu" = ( -/obj/structure/sign/departments/security, -/turf/closed/wall, -/area/station/maintenance/port/lesser) -"stx" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/spawner/random/structure/crate, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"stA" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"suj" = ( -/obj/machinery/door/airlock/external{ - name = "External Freight Airlock" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/warehouse) -"suo" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"suA" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/storage) -"suF" = ( -/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, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/tcommsat/computer) -"suQ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/structure/mirror/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/surgery/aft) -"svC" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"svW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/clothing/gloves/cargo_gauntlet, -/obj/item/clothing/gloves/cargo_gauntlet, -/obj/item/clothing/gloves/cargo_gauntlet, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/storage) -"svZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"swA" = ( -/obj/item/reagent_containers/food/drinks/flask/gold{ - pixel_x = 3; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/drinks/bottle/rum{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 7; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/structure/table/wood, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/carpet/royalblack, -/area/station/command/heads_quarters/captain) -"swY" = ( -/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/caution/stand_clear, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"swZ" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/airlock/security{ - name = "Armoury" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"sxi" = ( -/turf/closed/wall/r_wall, -/area/station/service/chapel/office) -"sxl" = ( -/obj/machinery/door/airlock/atmos{ - name = "Filter Chamber" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/iron/dark, -/area/station/maintenance/aft) -"sxn" = ( -/obj/structure/table/reinforced, -/obj/item/crowbar/red, -/obj/item/radio/headset/headset_sec, -/obj/item/folder/blue{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/folder/red{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/lighter, -/turf/open/floor/iron/dark, -/area/station/security/office) -"sxB" = ( -/turf/closed/wall/r_wall, -/area/station/science/research) -"sxC" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/item/storage/briefcase, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron, -/area/station/security/courtroom) -"sxF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/command/heads_quarters/ce) -"sxM" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/siding/blue/corner{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/storage) -"sxQ" = ( -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = -8; - pixel_y = -3 - }, -/obj/structure/table, -/obj/item/computer_hardware/hard_drive/portable/scipaper_program{ - pixel_x = 2; - pixel_y = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"syu" = ( -/obj/structure/sign/warning/deathsposal{ - layer = 4 - }, -/turf/closed/wall, -/area/station/science/xenobiology) -"syF" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"syZ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - 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/closet/boxinggloves, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"sza" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating/rust, -/area/station/security/prison) -"szg" = ( -/obj/machinery/computer/telecomms/monitor, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"szK" = ( -/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/rust, -/area/station/security/prison) -"szL" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"szX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"szY" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"sAm" = ( -/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/security/prison) -"sAr" = ( -/obj/machinery/vending/wardrobe/cargo_wardrobe, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/west{ - c_tag = "Cargo Lockers"; - name = "cargo camera"; - network = list("ss13","qm") - }, -/turf/open/floor/iron/dark, -/area/station/cargo/storage) -"sAv" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison) -"sAR" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/item/stack/sheet/cardboard{ - amount = 15 - }, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/iron/dark, -/area/station/cargo/sorting) -"sAV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/ash, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"sAZ" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/item/radio{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/radio{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/radio{ - pixel_y = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"sBl" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/machinery/pdapainter/research, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"sBm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"sBz" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/command/gateway) -"sBJ" = ( -/obj/structure/flora/grass/jungle/a/style_random, -/obj/structure/flora/bush/grassy/style_random, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/structure/flora/bush/ferny/style_random, -/obj/structure/cable, -/turf/open/floor/grass, -/area/station/security/prison/garden) -"sBO" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/cmo) -"sCa" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Medbay" - }, -/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/primary/central/fore) -"sCr" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"sCC" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/corner{ - 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, -/area/station/hallway/primary/central/fore) -"sCJ" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/folder/red, -/obj/item/pen, -/obj/machinery/door/window/brigdoor/left/directional/north{ - name = "Brig Control Desk"; - req_access = list("armory") - }, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/turf/open/floor/plating, -/area/station/security/warden) -"sCK" = ( -/obj/machinery/computer/communications{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"sCV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"sCY" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"sDd" = ( -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"sDe" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/structure/grille/broken, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"sDq" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/wardrobe/mixed, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"sDv" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"sDy" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall/rust, -/area/station/engineering/atmos/pumproom) -"sDD" = ( -/turf/open/floor/iron/showroomfloor, -/area/station/commons/toilet/restrooms) -"sDW" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"sEs" = ( -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/structure/table, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/medical) -"sEx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"sEK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"sEN" = ( -/obj/structure/water_source/puddle, -/obj/structure/flora/bush/reed/style_random{ - pixel_y = 5 - }, -/turf/open/floor/grass, -/area/station/security/prison/garden) -"sFg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/central/fore) -"sFr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"sFv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/siding/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/landmark/start/engineering_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"sFF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/brig) -"sFG" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/o2, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos) -"sFW" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/window/brigdoor/right/directional/north{ - id = "Cell 1"; - name = "Cell 1"; - req_access = list("security") - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/brig) -"sGV" = ( -/obj/effect/turf_decal/loading_area, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Unfiltered & Air to Mix" - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos/pumproom) -"sGW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall, -/area/station/maintenance/starboard/aft) -"sHf" = ( -/obj/structure/bed/dogbed/renault, -/obj/machinery/button/door/directional/south{ - id = "captain_escape"; - name = "Tactical Relocation Toggle" - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/mob/living/simple_animal/pet/fox/renault, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"sHh" = ( -/obj/structure/table, -/obj/machinery/camera/directional/west{ - c_tag = "ai_upload"; - name = "upload camera"; - network = list("aiupload") - }, -/obj/item/radio/intercom/directional/west, -/obj/machinery/light/cold/directional/west, -/obj/effect/spawner/round_default_module, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai_upload) -"sHk" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/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, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"sHm" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/sign/barsign{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/station/service/bar/atrium) -"sHn" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) -"sHC" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Docking Hallway" - }, -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = -40 - }, -/obj/structure/sign/directions/security{ - dir = 8; - pixel_y = -32 - }, -/obj/structure/sign/directions/medical{ - dir = 8; - pixel_y = -24 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/starboard) -"sHD" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"sHQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"sHX" = ( -/obj/structure/chair/stool/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/security/prison) -"sIf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/misc/asteroid, -/area/space/nearstation) -"sIo" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/folder{ - pixel_x = -4 - }, -/obj/item/disk/tech_disk{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/disk/tech_disk{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/disk/design_disk, -/obj/item/disk/design_disk, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/capacitor{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/stock_parts/capacitor{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/iron/dark, -/area/station/science/lab) -"sIq" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"sIr" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"sIx" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4; - pixel_x = 5 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"sIF" = ( -/obj/machinery/vending/cola/red, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"sIO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"sJd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/storage/fancy/cigarettes/cigars{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/storage/fancy/cigarettes/cigars/havana{ - pixel_x = 2; - pixel_y = 8 - }, -/obj/item/storage/fancy/cigarettes/cigars/cohiba{ - pixel_x = 2; - pixel_y = 10 - }, -/obj/item/holosign_creator/robot_seat/bar, -/obj/machinery/status_display/evac/directional/west, -/obj/structure/table, -/obj/machinery/light/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Bar"; - name = "bar camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"sJD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/execution/transfer) -"sJH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/meter, -/obj/machinery/light/directional/west, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"sJJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/tcommsat/computer) -"sJM" = ( -/turf/closed/wall, -/area/station/medical/surgery/fore) -"sJS" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"sJU" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/dna_scannernew, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"sJW" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "brig_entrance" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"sJY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/port) -"sKb" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"sKm" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/suit_storage_unit/cmo, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"sKy" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - 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/customs_agent, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/supply) -"sKA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/newscaster/directional/east, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"sKE" = ( -/obj/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/service/chapel) -"sKV" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/closet/crate/wooden/toy, -/obj/effect/turf_decal/box, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/firealarm/directional/south, -/obj/machinery/light_switch/directional/east{ - pixel_x = 24; - pixel_y = 6 - }, -/turf/open/floor/iron, -/area/station/service/theater) -"sLb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/central/fore) -"sLf" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"sLl" = ( -/obj/structure/girder, -/obj/structure/grille, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"sLw" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/janitor, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/service/janitor) -"sLD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/hallway/primary/fore) -"sLG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"sLP" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/landmark/start/janitor, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/mineral/stacking_unit_console{ - machinedir = 2; - pixel_x = 64 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/service/janitor) -"sLU" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/machinery/light/small/directional/north, -/obj/structure/sign/warning/electric_shock/directional/north, -/obj/structure/cable, -/turf/open/floor/circuit/red/telecomms, -/area/station/tcommsat/server) -"sLW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/supply/visible{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/pumproom) -"sMa" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - 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/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"sMe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/processing) -"sMf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics" - }, -/obj/effect/landmark/navigate_destination, -/obj/structure/cable, -/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) -"sMh" = ( -/turf/closed/wall/rust, -/area/station/hallway/secondary/exit/departure_lounge) -"sMi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"sME" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"sMI" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/folder/white, -/obj/item/wrench/medical, -/obj/item/toy/figure/cmo, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"sMO" = ( -/obj/machinery/telecomms/processor/preset_four, -/obj/structure/cable, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"sMY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"sNa" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"sNe" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/command/bridge) -"sNo" = ( -/obj/machinery/food_cart, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/bot/right, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/bridge) -"sNx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"sNR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"sOi" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/door_timer{ - id = "Cell 4"; - name = "Cell 4"; - pixel_x = -32 - }, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 4"; - name = "Cell 4 Locker" - }, -/turf/open/floor/iron, -/area/station/security/brig) -"sOn" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"sOy" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - 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, -/area/station/commons/fitness/recreation) -"sOD" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/west, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"sOI" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"sOJ" = ( -/obj/effect/turf_decal/stripes/line{ - 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/sign/poster/contraband/random/directional/north, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"sOS" = ( -/obj/structure/window/reinforced/spawner, -/obj/effect/turf_decal/siding/green, -/turf/open/misc/sandy_dirt, -/area/station/service/hydroponics/garden) -"sOV" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/station/maintenance/aft) -"sOX" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"sPd" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"sPx" = ( -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"sPG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/siding/red/corner{ - dir = 1 - }, -/obj/effect/landmark/start/engineering_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"sPK" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/exam_room) -"sPP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/public/glass{ - name = "Engineering Hallway" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"sPV" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad"; - name = "off ramp" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Cargo Ramps"; - name = "cargo camera"; - network = list("ss13","qm") - }, -/turf/open/floor/iron/dark, -/area/station/cargo/storage) -"sQj" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"sQq" = ( -/obj/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/border_only{ - dir = 8 - }, -/turf/open/floor/iron/stairs/medium{ - dir = 4 - }, -/area/station/service/chapel) -"sQt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"sQw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "brigcelldoor"; - name = "Cell Blast Door" - }, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"sQx" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple/corner, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"sQz" = ( -/obj/structure/chair/pew{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/chapel{ - dir = 4 - }, -/area/station/service/chapel) -"sQI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/office) -"sQJ" = ( -/turf/closed/wall/rust, -/area/station/service/chapel) -"sQT" = ( -/obj/machinery/door/airlock/research{ - id_tag = "ResearchInt"; - name = "Research Division" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron/dark, -/area/station/science/research) -"sQZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/girder/displaced, -/obj/structure/grille/broken, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"sRb" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"sRh" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/checker, -/area/station/service/hydroponics) -"sRi" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, -/turf/open/space/basic, -/area/space/nearstation) -"sRm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"sRr" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/item/folder{ - pixel_x = -4 - }, -/obj/item/paicard, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"sRz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance{ - name = "Ordnance Lab Maintenance" - }, -/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/science/ordnance, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/science/ordnance) -"sRL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/fancy/candle_box, -/obj/structure/rack, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"sRV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"sRZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) -"sSd" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"sSg" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"sSh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Port to Filter" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"sSA" = ( -/obj/structure/cable, -/obj/effect/spawner/random/structure/musician/piano/random_piano, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/wood/large, -/area/station/service/bar/atrium) -"sSD" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"sSJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/checkpoint/medical) -"sSN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/microwave{ - pixel_y = 5 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"sSP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/pen, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"sSZ" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"sTv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall, -/area/station/maintenance/port/greater) -"sTy" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"sTA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics_shutters"; - name = "Robotics Privacy Shutters"; - dir = 8 - }, -/turf/open/floor/plating, -/area/station/science/robotics/lab) -"sTO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"sTZ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - 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/showroomfloor, -/area/station/medical/paramedic) -"sUq" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"sUB" = ( -/obj/machinery/atmospherics/components/unary/passive_vent{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"sVh" = ( -/turf/closed/wall/rust, -/area/station/hallway/secondary/service) -"sVi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"sVj" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"sVq" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"sVz" = ( -/obj/machinery/smartfridge, -/turf/closed/wall, -/area/station/service/hydroponics) -"sVB" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chemistry Maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"sVD" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/iron/stairs/left{ - dir = 1 - }, -/area/station/service/chapel/monastery) -"sVI" = ( -/obj/machinery/light/directional/east, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/machinery/portable_atmospherics/canister, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"sVN" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/machinery/ecto_sniffer{ - pixel_x = -6 - }, -/obj/item/mod/core/standard{ - pixel_x = -4 - }, -/obj/item/mod/core/standard{ - pixel_x = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"sVP" = ( -/obj/item/storage/box/rubbershot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/rubbershot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/box/rubbershot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/structure/closet/secure_closet{ - name = "shotgun rubber rounds"; - req_access = list("armory") - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"sVS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"sWb" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"sWj" = ( -/obj/machinery/computer/station_alert{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"sWl" = ( -/turf/closed/wall/rust, -/area/station/maintenance/solars/port/aft) -"sWA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"sWI" = ( -/turf/closed/wall/rust, -/area/station/maintenance/department/bridge) -"sWM" = ( -/obj/structure/fermenting_barrel, -/turf/open/floor/plating, -/area/station/maintenance/department/security) -"sWN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Courtroom" - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"sWU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible/layer2, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"sWV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/office) -"sXl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/central/fore) -"sXB" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/anesthetic_mix, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) -"sXC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"sXE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"sXG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"sXJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"sXP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"sXQ" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/shieldgen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"sXT" = ( -/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, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"sYd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"sYe" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/bedsheetbin, -/obj/structure/table, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/garden) -"sYn" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/junction/flip{ - 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/aft) -"sYs" = ( -/obj/structure/sign/departments/security, -/turf/closed/wall/rust, -/area/station/maintenance/port/greater) -"sYu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"sYw" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"sYM" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/service/chapel) -"sZb" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"sZe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/greenglow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"sZw" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Satellite External Port"; - name = "exterior camera"; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"sZz" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage/gas) -"sZB" = ( -/obj/machinery/disposal/delivery_chute{ - desc = "Only the worthy may claim the belt"; - dir = 8; - name = "PubbyStation Memorial Trash Chute" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/commons/storage/primary) -"sZL" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/iron, -/area/station/cargo/storage) -"sZV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"tah" = ( -/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/cable, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"tat" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - name = "genetics sorting disposal pipe"; - sortType = 23 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"tav" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"taM" = ( -/obj/machinery/nuclearbomb/selfdestruct, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/ai_monitored/command/nuke_storage) -"taU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "detective_shutters"; - name = "Detective's Office Shutter" - }, -/turf/open/floor/plating, -/area/station/security/detectives_office) -"taW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/storage) -"tbb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/belt/utility, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"tbi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/docking, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"tbk" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos) -"tbn" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/hallway/primary/fore) -"tbs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"tbE" = ( -/obj/machinery/door/airlock/external{ - name = "Arrival Shuttle Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"tbS" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Drone Control" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron/dark, -/area/station/cargo/drone_bay) -"tcg" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/space_heater, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Air to External Air Ports" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"tck" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/closet, -/obj/item/storage/backpack/duffelbag{ - pixel_y = 4 - }, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"tcn" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"tcY" = ( -/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/west, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/service/chapel/dock) -"tdf" = ( -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"tdk" = ( -/turf/closed/wall/rust, -/area/station/commons/storage/art) -"tds" = ( -/obj/machinery/gravity_generator/main, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"tdt" = ( -/obj/machinery/telecomms/processor/preset_three, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"tdv" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"tdB" = ( -/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/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/exam_room) -"tdW" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light_switch/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"tdY" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/washing_machine, -/obj/structure/cable, -/obj/effect/spawner/random/contraband/prison, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/garden) -"teb" = ( -/obj/item/clipboard, -/obj/item/folder/red{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/folder/blue, -/obj/item/melee/chainofcommand, -/obj/structure/table/wood, -/turf/open/floor/carpet/royalblue, -/area/station/command/heads_quarters/captain) -"tej" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"teu" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/south{ - pixel_x = -26 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"tey" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor2"; - name = "Supply Dock Loading Door" - }, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2"; - name = "on ramp" - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"teE" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - 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, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/spawner/xmastree/rdrod, -/turf/open/floor/iron/showroomfloor, -/area/station/science/research) -"teH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sink/kitchen{ - dir = 8; - pixel_x = 12; - pixel_y = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"teL" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/candle_box, -/obj/item/storage/fancy/candle_box, -/obj/item/storage/fancy/candle_box{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/storage/fancy/candle_box{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/directional/north, -/obj/item/storage/box/matches{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"teU" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall/rust, -/area/station/engineering/supermatter/room) -"tfs" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/west, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"tfG" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/office) -"tfI" = ( -/turf/closed/wall/r_wall/rust, -/area/station/service/chapel/office) -"tfV" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/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/showroomfloor, -/area/station/science/research) -"tfW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/carpet/red, -/area/station/service/chapel) -"tfY" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/structure/mirror/directional/north, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/glasses/eyepatch{ - pixel_y = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"tgd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/siding/red{ - dir = 1 - }, -/obj/effect/landmark/start/engineering_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"tgh" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/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, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/garden) -"tgp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/effect/spawner/random/exotic/technology, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"tgx" = ( -/obj/item/storage/toolbox/electrical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/multitool{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/flashlight, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/warden) -"tgJ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/door/directional/west{ - id = "Abandoned Cell"; - name = "Abandoned Door Lock"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"tgU" = ( -/obj/structure/flora/rock/pile/style_2, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"tgZ" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio{ - desc = "An old handheld radio. You could use it, if you really wanted to."; - icon_state = "radio"; - name = "old radio" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/bar/atrium) -"the" = ( -/obj/structure/cable, -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"tho" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/starboard) -"thy" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/security/office) -"thG" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - 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/structure/cable, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"thU" = ( -/mob/living/simple_animal/hostile/asteroid/goliath, -/turf/open/misc/asteroid/lowpressure, -/area/space/nearstation) -"thW" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/chair/stool/bar/directional/south, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"tiv" = ( -/turf/closed/wall, -/area/station/service/chapel) -"tiz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"tiK" = ( -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/delivery, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/cargo/storage) -"tiY" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Brig Warden's Office" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/security/brig) -"tjv" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/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/showroomfloor, -/area/station/medical/medbay/lobby) -"tjA" = ( -/obj/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 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"tjE" = ( -/obj/structure/sign/departments/security, -/turf/closed/wall, -/area/station/maintenance/aft) -"tjO" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/station/security/office) -"tjR" = ( -/obj/machinery/modular_computer/console/preset/research{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/computer/security/telescreen/rd{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/keycard_auth/directional/east{ - pixel_y = 26 - }, -/obj/machinery/button/door/directional/north{ - id = "rdprivacy"; - name = "Director's Privacy Toggle"; - pixel_x = -8; - pixel_y = 38 - }, -/obj/machinery/button/door/directional/north{ - id = "Biohazard"; - name = "Emergency Research Lockdown"; - pixel_x = -8; - req_access = list("research") - }, -/obj/machinery/light_switch/directional/north{ - pixel_x = 6 - }, -/obj/machinery/button/door/directional/north{ - id = "xeno_blastdoor"; - name = "Xenobiology Containment"; - pixel_x = 6; - pixel_y = 38; - req_access = list("research") - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"tkO" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"tkP" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/turf_decal/box/red, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"tla" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"tlb" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"tlu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"tly" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Xenobiology Maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = -24 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) -"tlA" = ( -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/bush/leavy/style_random, -/obj/structure/flora/bush/sparsegrass/style_random, -/turf/open/misc/asteroid, -/area/station/hallway/secondary/exit/departure_lounge) -"tlJ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"tlL" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"tlM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/misc/asteroid, -/area/space/nearstation) -"tlS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"tlU" = ( -/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/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"tlV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/security/execution/education) -"tlW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"tmd" = ( -/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/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"tmf" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/iron/showroomfloor, -/area/station/science/robotics/lab) -"tmj" = ( -/obj/machinery/light/directional/west, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"tmp" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/sign/warning/electric_shock/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"tmt" = ( -/obj/structure/sign/warning/vacuum/external/directional/south, -/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/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/external{ - name = "Transit Intersection" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"tmv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/rebels_unite{ - pixel_x = -32; - pixel_y = 32 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/turf/open/floor/plating/plasma/rust, -/area/station/maintenance/space_hut/plasmaman) -"tmD" = ( -/obj/machinery/firealarm/directional/west, -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"tmH" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/closet, -/obj/item/stack/package_wrap, -/obj/item/storage/bag/trash, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"tmU" = ( -/obj/structure/grille, -/obj/structure/barricade/wooden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/aft) -"tmV" = ( -/obj/structure/reagent_dispensers/beerkeg{ - pixel_y = 5 - }, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/storage/box/drinkingglasses, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"tmZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"tnc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/bridge) -"tnp" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/delivery, -/obj/machinery/camera/directional/south{ - c_tag = "Atmospherics Desk"; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"tnq" = ( -/obj/machinery/computer/security{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"tnr" = ( -/obj/structure/railing/corner, -/turf/open/floor/iron/dark, -/area/station/service/chapel/monastery) -"tns" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plastic, -/area/station/security/prison/shower) -"tnA" = ( -/obj/effect/turf_decal/siding/wideplating/dark/corner, -/obj/structure/railing/corner, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"tnC" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"tnH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/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/showroomfloor, -/area/station/ai_monitored/security/armory) -"tnP" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"tnR" = ( -/obj/machinery/rnd/server, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/science/server) -"toh" = ( -/turf/closed/wall/r_wall/rust, -/area/station/security/prison/safe) -"toi" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/siding/yellow{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"toE" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/janitor) -"toS" = ( -/obj/structure/cable, -/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/west, -/turf/open/floor/carpet/red, -/area/station/service/chapel) -"toZ" = ( -/obj/effect/turf_decal/bot, -/obj/structure/tank_dispenser/oxygen{ - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"tpd" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/pen, -/obj/item/storage/box/prisoner, -/obj/machinery/camera/directional/south{ - c_tag = "Prison Hallway Port"; - network = list("ss13","prison") - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"tpl" = ( -/obj/structure/closet/secure_closet/detective, -/obj/structure/reagent_dispensers/wall/peppertank/directional/north, -/obj/structure/cable, -/obj/item/book/manual/wiki/detective, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/wood, -/area/station/security/detectives_office) -"tpp" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/station/solars/port/fore) -"tpq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"tpr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"tpw" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"tpy" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/blue/corner, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"tpD" = ( -/obj/machinery/atmospherics/components/tank/air{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/structure/sign/warning/no_smoking{ - pixel_y = 30 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"tpF" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Engineering"; - name = "navigation beacon (Engineering Delivery)" - }, -/obj/machinery/door/window/right/directional/north{ - dir = 4; - name = "Engineering Delivery Access"; - req_access = list("engineering") - }, -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "Engineering Blast Doors" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) -"tpM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/machinery/light/small/directional/west, -/obj/machinery/light_switch/directional/west, -/obj/item/assembly/prox_sensor{ - desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/wallframe/camera, -/obj/item/screwdriver, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"tpQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "justiceshutter"; - name = "Justice Shutter"; - dir = 4 - }, -/turf/open/floor/plating, -/area/station/security/execution/education) -"tpY" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/vending/autodrobe/all_access, -/obj/structure/noticeboard/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"tqb" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"tqz" = ( -/turf/closed/wall/r_wall/rust, -/area/station/maintenance/central) -"tqB" = ( -/obj/structure/railing, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"tqC" = ( -/obj/machinery/computer/slot_machine, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot_white, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"tqD" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall, -/area/station/maintenance/port/lesser) -"tqG" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"tqQ" = ( -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat_interior) -"tqZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"tre" = ( -/obj/structure/flora/bush/pale/style_random, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/misc/asteroid, -/area/space/nearstation) -"trf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"trj" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/pen/red{ - pixel_x = 5; - pixel_y = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"trt" = ( -/obj/machinery/portable_atmospherics/canister/plasma, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"tsf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"tsg" = ( -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"tsn" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/rust, -/area/station/commons/fitness/recreation) -"tsD" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2"; - name = "on ramp" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/radio/intercom/directional/south, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/cargo/storage) -"tsL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/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/starboard) -"tsY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"ttd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"tth" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"ttn" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"ttt" = ( -/obj/machinery/vending/games, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron/dark, -/area/station/commons/storage/art) -"ttB" = ( -/obj/structure/grille/broken, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"ttJ" = ( -/obj/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/hand_labeler, -/obj/item/hand_labeler, -/obj/item/dest_tagger, -/obj/item/dest_tagger{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/sorting) -"ttR" = ( -/obj/structure/sign/warning/secure_area/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"ttZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs) -"tud" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/restaurant_portal/bar, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/duct, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/bar/atrium) -"tue" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/cargo/storage) -"tur" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, -/obj/effect/mapping_helpers/airlock/locked, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"tuF" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"tuO" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/button/door/directional/south{ - id = "custodialwagon"; - name = "Custodial Bay Toggle"; - req_access = list("janitor") - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/mob/living/simple_animal/bot/cleanbot/autopatrol, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"tuP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/meter/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"tuT" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/cook, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"tvH" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/components/unary/passive_vent{ - dir = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"twc" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L13" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = 24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"twd" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/ore_box, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/dark, -/area/station/cargo/miningoffice) -"twg" = ( -/obj/machinery/computer/atmos_alert{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"twj" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/chair, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"two" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/airlock/security/glass{ - id_tag = "Abandoned Cell"; - name = "Abandoned Cell" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"twu" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/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/engineering/atmos) -"twG" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"twN" = ( -/turf/closed/wall/r_wall/rust, -/area/station/engineering/supermatter/room) -"twR" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"twV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/security/courtroom) -"twX" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison/shower) -"txb" = ( -/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/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"txi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/table_or_rack, -/obj/effect/spawner/random/engineering/flashlight, -/obj/item/crowbar/red, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/crew_quarters/bar) -"txl" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"tya" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"tyk" = ( -/obj/structure/closet/secure_closet/warden, -/obj/effect/turf_decal/delivery, -/obj/machinery/firealarm/directional/north, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/warden) -"tyA" = ( -/obj/structure/flora/bush/jungle/c/style_random, -/turf/open/floor/grass, -/area/station/medical/psychology) -"tyI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"tzh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"tzl" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/central/fore) -"tzA" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/transfer) -"tzF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "CO2 to Pure" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"tzH" = ( -/obj/machinery/computer/station_alert, -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/north, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"tzI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"tzL" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/flashlight/lamp, -/turf/open/floor/iron/dark, -/area/station/security/office) -"tzN" = ( -/obj/structure/table/glass, -/obj/item/storage/box/rxglasses{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/beakers, -/obj/item/gun/syringe{ - pixel_y = 5 - }, -/obj/item/reagent_containers/spray/cleaner, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"tzU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"tzY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/office) -"tAx" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/item/kirbyplants{ - icon_state = "plant-18" - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/storage) -"tAI" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/construction/mining/aux_base) -"tAM" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/carrot, -/turf/open/floor/grass, -/area/station/security/prison/garden) -"tAN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 9 - }, -/obj/machinery/button/door/incinerator_vent_atmos_aux{ - pixel_x = 23; - pixel_y = 7 - }, -/obj/machinery/button/door/incinerator_vent_atmos_main{ - pixel_x = 23; - pixel_y = -6 - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"tAP" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"tAX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"tBh" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/requests_console/directional/north{ - department = "Medbay"; - departmentType = 1; - name = "Medbay Requests Console" - }, -/obj/structure/table/optable, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/fore) -"tBj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/decal/cleanable/food/flour, -/obj/effect/landmark/start/cook, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"tBn" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"tBH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters"; - name = "Research Privacy Shutter"; - dir = 8 - }, -/turf/open/floor/plating, -/area/station/science/lab) -"tBJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/crew_quarters/bar) -"tBR" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/button/door/atmos_test_room_mainvent_1{ - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"tBT" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"tCd" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/mob/living/simple_animal/bot/medbot/autopatrol, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/lobby) -"tCh" = ( -/obj/machinery/computer/robotics{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"tCp" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"tCv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cmoprivacy"; - name = "Office Privacy Shutters"; - dir = 1 - }, -/turf/open/floor/plating, -/area/station/command/heads_quarters/cmo) -"tCQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Customs Checkpoint" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/customs) -"tCU" = ( -/turf/closed/wall, -/area/station/maintenance/port/aft) -"tCY" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/central/fore) -"tDk" = ( -/obj/structure/closet/crate/coffin, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/iron/dark/textured_large, -/area/station/service/chapel/funeral) -"tDs" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/locker) -"tDu" = ( -/obj/structure/chair/pew{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"tDA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"tDC" = ( -/turf/closed/wall/rust, -/area/station/maintenance/solars/port/fore) -"tDG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"tDT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/left/directional/north{ - dir = 4; - name = "Inner Pipe Access"; - req_access = list("atmospherics") - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"tDW" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"tEt" = ( -/obj/machinery/microwave{ - pixel_y = 5 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sign/poster/official/no_erp{ - pixel_y = -32 - }, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"tEE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"tEX" = ( -/obj/machinery/door/firedoor, -/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/cyclelink_helper_multi{ - cycle_id = "brig-maint-passthrough" - }, -/obj/machinery/door/airlock/security{ - name = "Prison Wing" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"tFb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/structure/sign/directions/medical{ - dir = 1; - pixel_x = 32; - pixel_y = 8 - }, -/obj/structure/sign/directions/command{ - pixel_x = 32 - }, -/obj/structure/sign/directions/security{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/port) -"tFn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison) -"tFq" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/north, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/folder/white, -/obj/item/folder/white, -/obj/item/pen, -/obj/item/flashlight/pen, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/dropper, -/obj/item/storage/box/rxglasses{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/obj/machinery/requests_console/directional/north{ - department = "Genetics"; - name = "Genetics Requests Console" - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"tGb" = ( -/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/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "packagereturn"; - name = "crate returns"; - pixel_x = -10; - pixel_y = -4 - }, -/obj/machinery/newscaster/directional/south, -/obj/effect/turf_decal/tile/brown, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"tGg" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"tGx" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "Containment Chamber Blast Door" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"tGz" = ( -/obj/effect/turf_decal/bot, -/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, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"tGQ" = ( -/obj/machinery/door/firedoor, -/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, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"tGS" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Captain's Office"; - name = "command camera" - }, -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - color = "#c45c57"; - dir = 8 - }, -/obj/structure/noticeboard/directional/north, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/carpet/royalblack, -/area/station/command/heads_quarters/captain) -"tGV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"tGZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/landmark/navigate_destination/tcomms, -/turf/open/floor/engine, -/area/station/tcommsat/computer) -"tHs" = ( -/obj/structure/sign/warning/fire, -/obj/structure/grille, -/turf/closed/wall/r_wall/rust, -/area/station/engineering/atmos) -"tHv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"tHO" = ( -/obj/structure/reflector/box/anchored{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"tIk" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - 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/showroomfloor, -/area/station/commons/toilet/restrooms) -"tIr" = ( -/turf/closed/wall/rust, -/area/station/engineering/supermatter/room) -"tIu" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/north, -/obj/structure/rack, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) -"tJa" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Atmospherics Tank - N2O"; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"tJh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/random/structure/steam_vent, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"tJK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/supply/visible{ - dir = 8 - }, -/obj/machinery/meter/monitored/distro_loop, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/pumproom) -"tJX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"tKi" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"tKt" = ( -/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/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"tKv" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "QMLoad"; - name = "off ramp"; - pixel_y = 5 - }, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"tKB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/siding/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"tKS" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/pipe_dispenser, -/obj/item/pipe_dispenser, -/obj/item/pipe_dispenser, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage_shared) -"tKY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"tLh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/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/medical/morgue) -"tLo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Mailroom" - }, -/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/cyclelink_helper_multi{ - cycle_id = "cargo-mailroom" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/shipping, -/turf/open/floor/iron/dark, -/area/station/cargo/sorting) -"tLM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/electric_shock/directional/west, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/tcommsat/computer) -"tMl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"tMu" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plastic, -/area/station/security/prison/shower) -"tMO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"tMU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"tMW" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"tNa" = ( -/obj/structure/closet/firecloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"tNe" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/junction, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/research) -"tNj" = ( -/obj/effect/turf_decal/bot, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/iron, -/area/station/cargo/storage) -"tNk" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/bomb) -"tNB" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"tNC" = ( -/obj/effect/turf_decal/tile/purple/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/showroomfloor, -/area/station/science/ordnance) -"tNQ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"tNW" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - 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, -/area/station/engineering/main) -"tNY" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"tOa" = ( -/obj/structure/table, -/obj/item/tank/internals/oxygen/red, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"tOo" = ( -/obj/machinery/power/smes, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"tOq" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"tOr" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"tOx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/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/cable, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/starboard) -"tOy" = ( -/turf/closed/wall, -/area/station/cargo/drone_bay) -"tOB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"tOF" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/folder/blue{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/folder/yellow, -/obj/item/lighter, -/obj/item/clothing/mask/cigarette/cigar/cohiba, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"tOH" = ( -/obj/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/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/dock) -"tOJ" = ( -/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/cable, -/obj/structure/grille/broken, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"tPn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"tPz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"tPC" = ( -/obj/effect/turf_decal/bot, -/obj/structure/frame/computer{ - anchored = 1; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"tPD" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/fore) -"tPH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/mess) -"tPN" = ( -/obj/effect/turf_decal/stripes/line{ - 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/machinery/light/small/directional/north, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"tPP" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/storage_shared) -"tPS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"tPX" = ( -/obj/item/storage/medkit/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/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 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/left/directional/east{ - dir = 8; - name = "First-Aid Supplies"; - req_access = list("medical") - }, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"tQo" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/medkit/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/healthanalyzer, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"tQp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/effect/spawner/random/decoration/glowstick, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"tQI" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/box, -/obj/machinery/mineral/ore_redemption{ - dir = 8; - input_dir = 4; - output_dir = 8 - }, -/obj/machinery/door/window/left/directional/east{ - dir = 8; - name = "Ore Redemtion Window"; - req_access = list("mineral_storeroom") - }, -/turf/open/floor/plating, -/area/station/cargo/office) -"tQM" = ( -/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/ordnance/office) -"tRw" = ( -/obj/machinery/telecomms/bus/preset_three, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"tRL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/central) -"tRO" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/box, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"tRX" = ( -/obj/machinery/conveyor{ - id = "garbage" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Disposal Exit"; - name = "Disposal Exit Vent" - }, -/obj/structure/sign/warning/deathsposal/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"tSc" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/exam_room) -"tSk" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"tSx" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall/rust, -/area/station/ai_monitored/turret_protected/aisat_interior) -"tSD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/poster/contraband/random/directional/south, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"tSI" = ( -/obj/machinery/door/airlock/grunge{ - id_tag = "Cabin_4"; - name = "Cabin 4" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"tSN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/tank/internals/oxygen/red{ - pixel_x = 4 - }, -/obj/item/tank/internals/oxygen/red{ - pixel_x = -4 - }, -/obj/item/wrench, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"tSP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"tSY" = ( -/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, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"tTu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"tUc" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold/green/visible{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"tUe" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"tUm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/station/maintenance/aft) -"tUr" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/the_griffin{ - pixel_x = 32 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"tUO" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"tUR" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"tUV" = ( -/obj/structure/table, -/obj/machinery/firealarm/directional/north, -/obj/item/storage/fancy/donut_box, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/office) -"tVh" = ( -/obj/structure/chair/sofa/left{ - color = "#c45c57"; - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/starboard/fore) -"tVt" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/emergency{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/storage/toolbox/emergency, -/obj/item/shovel, -/obj/item/shovel, -/obj/item/pickaxe, -/obj/item/pickaxe, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/cargo/miningoffice) -"tVu" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/pharmacy) -"tVC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"tVM" = ( -/turf/closed/wall, -/area/station/common/cryopods) -"tVS" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/computer/prisoner/management{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/warden) -"tWa" = ( -/obj/machinery/computer/secure_data, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/office) -"tWc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/north, -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"tWd" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/chair/office/light{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/cmo) -"tWe" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Medbay" - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"tWg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"tWn" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/light/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"tWA" = ( -/obj/structure/table, -/obj/structure/cable, -/obj/item/food/spiderleg, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"tWL" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "Bridge Blast Door" - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"tWM" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/item/crowbar, -/obj/item/wrench, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"tXg" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/department/bridge) -"tXm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Operating Theater Secondary" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) -"tXr" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - 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, -/turf/open/floor/iron, -/area/station/cargo/storage) -"tXz" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"tXB" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"tXR" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/cmo) -"tXS" = ( -/obj/machinery/atmospherics/components/tank/oxygen, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/storage) -"tXX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"tXZ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/greenglow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"tYd" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"tYe" = ( -/obj/structure/flora/grass/jungle/b/style_random, -/obj/structure/flora/bush/grassy/style_random, -/obj/structure/flora/bush/leavy/style_random, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/structure/flora/bush/leavy/style_random, -/obj/structure/cable, -/turf/open/floor/grass, -/area/station/security/prison/garden) -"tYi" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/washing_machine, -/obj/machinery/airalarm/directional/west, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/toilet/restrooms) -"tYx" = ( -/obj/machinery/door/airlock/external{ - name = "Common Mining Dock" - }, -/turf/open/floor/plating, -/area/station/commons/fitness/recreation) -"tYZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Plasma to Pure" - }, -/obj/machinery/camera/directional/south{ - c_tag = "Atmospherics Aft Tanks"; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"tZa" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"tZc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cmoprivacy"; - name = "Office Privacy Shutters" - }, -/turf/open/floor/plating, -/area/station/command/heads_quarters/cmo) -"tZe" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"tZf" = ( -/turf/open/floor/carpet/red, -/area/station/command/heads_quarters/hos) -"tZh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/cargo/warehouse) -"tZk" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"tZs" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/left/directional/north{ - dir = 4; - name = "Inner Pipe Access"; - req_access = list("atmospherics") - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"tZz" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"tZB" = ( -/obj/structure/table/wood, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - name = "bar sorting disposal pipe"; - sortType = 19 - }, -/turf/open/floor/wood, -/area/station/service/bar) -"tZD" = ( -/obj/effect/landmark/secequipment, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/office) -"tZG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"tZK" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"tZP" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall/rust, -/area/station/maintenance/port/lesser) -"tZX" = ( -/obj/structure/flora/bush/pale/style_random, -/turf/open/misc/asteroid, -/area/station/maintenance/port/lesser) -"uap" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/security/processing) -"ubt" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue{ - 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, -/area/station/command/gateway) -"ubw" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/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/showroomfloor, -/area/station/medical/medbay/central) -"ubz" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 6 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"ubC" = ( -/obj/structure/grille, -/obj/structure/barricade/wooden, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/aft) -"ubF" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -5; - pixel_y = 6 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"ubJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/surgery/aft) -"ubM" = ( -/obj/effect/turf_decal/delivery, -/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/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"ubN" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"ubU" = ( -/obj/effect/landmark/blobstart, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark/telecomms, -/area/station/science/server) -"ucm" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"ucG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/random/maintenance, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"ucP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/obj/structure/closet/cabinet, -/obj/item/stack/sheet/glass{ - amount = 10 - }, -/obj/item/stack/rods/ten, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"ucS" = ( -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/turf/open/floor/grass, -/area/station/security/prison/garden) -"udg" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"udn" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"udv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/landmark/xeno_spawn, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"udA" = ( -/obj/machinery/door/airlock/external{ - name = "Abandoned External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"udE" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/landmark/start/cargo_technician, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/storage) -"udF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"udI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/newscaster/directional/south, -/obj/machinery/vending/medical, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"ued" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"uet" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L6" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"uew" = ( -/obj/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/cafeteria, -/area/station/service/kitchen) -"uey" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"ueJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"ueO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"ueY" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/spawner/random/structure/crate, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"ueZ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"ufc" = ( -/obj/structure/table, -/obj/machinery/requests_console/directional/east{ - department = "Garden"; - name = "Garden Requests Console" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/green{ - dir = 8 - }, -/obj/item/reagent_containers/glass/bottle/nutrient/ez, -/obj/item/reagent_containers/glass/bottle/nutrient/rh{ - pixel_x = 2; - pixel_y = 1 - }, -/obj/item/plant_analyzer, -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics/garden) -"ufy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"ufD" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/reagent_containers/glass/beaker, -/obj/item/food/pie/cream{ - pixel_y = -4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/landmark/navigate_destination/kitchen, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"ufE" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "Queue Shutters" - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"ufG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ufL" = ( -/obj/item/radio/intercom/directional/north, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/wood, -/area/station/maintenance/port/greater) -"ufQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"ufU" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate/freezer/surplus_limbs, -/obj/item/radio/intercom/directional/south, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/surgery/aft) -"ufX" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"ugc" = ( -/obj/structure/flora/grass/jungle/b/style_random, -/obj/structure/flora/bush/flowers_pp/style_random, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/grass, -/area/station/medical/psychology) -"ugp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/chair/sofa/bench/right, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"ugq" = ( -/obj/structure/sign/departments/psychology/directional/north, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/structure/chair{ - desc = "A gray chair. Nothing more relaxing while waiting for therapy than watching the dying."; - dir = 8; - name = "therapy waiting chair" - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/exam_room) -"ugr" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ugy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/transfer) -"ugA" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/pipe_dispenser, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron/dark, -/area/station/construction/mining/aux_base) -"ugC" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"ugG" = ( -/obj/structure/cable, -/obj/machinery/computer/department_orders/service{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - 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) -"ugY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"uhp" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"uhx" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"uhy" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/window/brigdoor/right/directional/north{ - id = "Cell 5"; - name = "Cell 5"; - req_access = list("security") - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/brig) -"uhE" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/light/small/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/commons/locker) -"uib" = ( -/obj/machinery/status_display/evac/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/storage/box/lights/mixed{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/lights/mixed, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"uiu" = ( -/obj/structure/flora/bush/jungle/b/style_random, -/turf/open/floor/grass, -/area/station/medical/psychology) -"uiE" = ( -/obj/machinery/ai_slipper{ - uses = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai_upload) -"uiN" = ( -/obj/effect/turf_decal/siding/wood, -/obj/structure/chair/stool/directional/south, -/turf/open/floor/wood, -/area/station/service/library) -"uiR" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"uiX" = ( -/obj/structure/flora/rock, -/turf/open/misc/asteroid, -/area/space/nearstation) -"ujN" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/folder/red, -/obj/item/pen, -/obj/machinery/door/window/brigdoor/right/directional/west{ - name = "Armoury Desk"; - req_access = list("armory") - }, -/turf/open/floor/plating, -/area/station/ai_monitored/security/armory) -"ujT" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/camera/directional/east{ - c_tag = "Atmospherics Entrance"; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ujZ" = ( -/obj/structure/rack, -/obj/item/controller, -/obj/item/compact_remote, -/obj/item/compact_remote, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/office) -"ukc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"ukd" = ( -/obj/effect/turf_decal/bot, -/obj/structure/frame/computer{ - anchored = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"uke" = ( -/obj/structure/chair/sofa/bench/right{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/central/fore) -"uko" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/bot, -/obj/machinery/vending/drugs, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/exam_room) -"ukM" = ( -/obj/structure/sign/warning/vacuum/external/directional/south, -/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/maintenance/external{ - name = "Transit Intersection" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"ukQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet/red, -/area/station/service/chapel) -"ukT" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/wall, -/area/station/maintenance/port/lesser) -"ukU" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"ukV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"ulg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/oxygen_output{ - dir = 4 - }, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"ulm" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/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, -/area/station/cargo/office) -"ulp" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet/royalblue, -/area/station/command/heads_quarters/captain) -"ult" = ( -/obj/structure/sign/warning/secure_area/directional/west, -/turf/open/misc/asteroid/lowpressure, -/area/space/nearstation) -"ulF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/light/directional/east, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"ulJ" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "NTMSLoad"; - name = "off ramp" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/cargo/warehouse) -"ulS" = ( -/turf/closed/wall, -/area/station/security/courtroom) -"ulZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"umj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/showroomfloor, -/area/station/security/office) -"umq" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"umr" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/security/prison/garden) -"umA" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"umJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/door/airlock/security/glass{ - name = "Cremator Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/turf/open/floor/iron/checker, -/area/station/security/processing/cremation) -"umL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"unb" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/siding/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"unp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Research Hallway"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/machinery/status_display/evac/directional/north, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/research) -"unr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"unv" = ( -/obj/structure/closet/secure_closet/injection{ - name = "Justice Injections" - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/light_switch/directional/north, -/obj/machinery/button/door/directional/west{ - id = "justiceblast"; - name = "Justice Vent Toggle"; - pixel_y = 8; - req_access = list("armory") - }, -/obj/machinery/button/door/directional/west{ - id = "justiceshutter"; - name = "Justice Shutter Control"; - pixel_y = -8; - req_access = list("brig") - }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"unx" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"uny" = ( -/obj/structure/chair/stool/bar/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"unz" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/light/small/directional/south, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/bot_white/right, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"unE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/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/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"unQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"unS" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage/gas) -"uok" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/south, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"uot" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"uov" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2"; - name = "mail belt" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/sorting) -"uoA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/cardboard, -/obj/structure/sign/warning/no_smoking{ - pixel_x = 30 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"uoB" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/folder/red, -/obj/structure/spider/stickyweb, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"uoN" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"upa" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/conveyor{ - dir = 4; - id = "packagereturn"; - name = "crate return belt" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/cargo/sorting) -"upK" = ( -/obj/effect/turf_decal/siding/thinplating/dark/end, -/turf/open/floor/glass/reinforced, -/area/station/service/chapel) -"upS" = ( -/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/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"upW" = ( -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"upZ" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/ai_monitored/turret_protected/ai) -"uqc" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"uqv" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"uqD" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Gas to Filter" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"uqF" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/medical/virology) -"uqI" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"uqN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/hallway/primary/fore) -"uqT" = ( -/obj/structure/grille/broken, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/hallway/primary/aft) -"uqW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/hallway/primary/port) -"ura" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants{ - icon_state = "plant-02"; - pixel_y = 3 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"urh" = ( -/obj/structure/chair/pew{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/turf/open/floor/iron/chapel{ - dir = 8 - }, -/area/station/service/chapel) -"urx" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"urA" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/disposalpipe/segment, -/obj/structure/window/reinforced/spawner, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"urE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/bridge) -"urM" = ( -/obj/structure/fluff/divine/nexus, -/turf/open/floor/mineral/silver, -/area/station/service/chapel/office) -"urN" = ( -/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/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/sign/poster/contraband/random/directional/north, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"urW" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/obj/machinery/requests_console/directional/north{ - name = "Ordnance Mixing Lab Requests Console" - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"uso" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/suit_storage_unit/engine, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"usp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 8; - pixel_x = 28 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/red{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"usr" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/gravity_generator) -"usF" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/departments/security/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"usX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/theater) -"utf" = ( -/obj/machinery/rnd/production/protolathe/department/engineering, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"utk" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"utF" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/machinery/modular_computer/console/preset/cargochat/medical{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"utH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/sign/warning/secure_area/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"utU" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"uuu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Tool Storage" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/navigate_destination, -/turf/open/floor/iron/dark, -/area/station/commons/storage/primary) -"uuC" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"uuK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"uuW" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"uvi" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/ai_monitored/command/storage/eva) -"uvj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/wood, -/area/station/cargo/qm) -"uvm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Storage" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engine_equipment, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"uvG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"uvO" = ( -/turf/closed/wall, -/area/station/engineering/gravity_generator) -"uvP" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/wrench, -/obj/item/crowbar/red, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/south, -/obj/machinery/light_switch/directional/west, -/obj/machinery/camera/directional/south{ - c_tag = "Server Room"; - name = "science camera"; - network = list("ss13","rd") - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/server) -"uvT" = ( -/obj/effect/turf_decal/stripes/line{ - 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, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"uwl" = ( -/obj/structure/chair/pew{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"uwp" = ( -/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/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/aft) -"uwq" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ - dir = 9 - }, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"uwG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/spawner/random/vending/colavend, -/obj/effect/turf_decal/delivery, -/obj/structure/sign/poster/official/no_erp{ - pixel_y = -32 - }, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"uwP" = ( -/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/aft) -"uwR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/landmark/start/hangover, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/port) -"uwT" = ( -/obj/effect/spawner/random/vending/snackvend, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/east, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"uwX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"uxw" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"uxz" = ( -/obj/structure/chair, -/obj/effect/landmark/start/hangover, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/courtroom) -"uxN" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/nuke_storage) -"uyd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"uyl" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/security/courtroom) -"uyK" = ( -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"uyX" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"uzD" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Connector" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) -"uzK" = ( -/obj/structure/curtain, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison/shower) -"uzQ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"uAb" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"uAc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/stack/sheet/iron/twenty, -/obj/item/stack/sheet/glass{ - amount = 20 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"uAe" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"uAn" = ( -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/station/service/chapel) -"uAt" = ( -/obj/machinery/door/airlock/atmos/glass, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/engine/vacuum, -/area/station/maintenance/disposal/incinerator) -"uAA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/port) -"uAE" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/turf/closed/wall/rust, -/area/station/engineering/atmos/pumproom) -"uAF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/vending/clothing, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"uAH" = ( -/obj/machinery/airalarm/directional/south, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/iron/stairs/left{ - dir = 4 - }, -/area/station/service/chapel/monastery) -"uAS" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"uBo" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/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/showroomfloor, -/area/station/commons/toilet/restrooms) -"uBO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/landmark/navigate_destination/gateway, -/turf/open/floor/iron, -/area/station/command/gateway) -"uBX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "viro-airlock" - }, -/obj/machinery/door/airlock/virology{ - name = "Virology Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"uCa" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"uCd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/security/medical) -"uCf" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"uCi" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"uCQ" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/frame/machine, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/stack/rods, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"uCR" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/command/nuke_storage) -"uCS" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/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, -/area/station/engineering/atmos) -"uDe" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/recharge_floor, -/area/station/service/chapel/storage) -"uDi" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"uDn" = ( -/obj/item/soulstone/anybody/chaplain, -/obj/structure/table/wood, -/turf/open/floor/cult, -/area/station/service/chapel/office) -"uDt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"uDQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"uDT" = ( -/turf/open/floor/grass, -/area/station/science/genetics) -"uEi" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/maintenance/port/lesser) -"uEs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/central) -"uEC" = ( -/obj/effect/turf_decal/siding/wideplating/dark/corner, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"uEX" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/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/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/virology) -"uFb" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"uFf" = ( -/obj/structure/closet/l3closet/janitor, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/grenade/clusterbuster/cleaner, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/service/janitor) -"uFh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table/wood, -/turf/open/floor/iron, -/area/station/security/courtroom) -"uFl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light_switch/directional/north, -/obj/effect/turf_decal/delivery, -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 2; - pixel_y = -1 - }, -/turf/open/floor/iron/dark, -/area/station/science/robotics/mechbay) -"uFp" = ( -/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/fitness/recreation) -"uFL" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/station/solars/starboard/fore) -"uFM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"uGm" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/structure/grille/broken, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random/directional/south, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"uGn" = ( -/obj/machinery/atmospherics/components/tank/air, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel/monastery) -"uGA" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/aft) -"uGB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/execution/transfer) -"uGD" = ( -/obj/structure/cable, -/obj/effect/spawner/random/engineering/tracking_beacon, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/landmark/navigate_destination/hydro, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"uGU" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"uHc" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/obj/item/clothing/head/that{ - pixel_x = 1; - pixel_y = 6 - }, -/turf/open/floor/wood, -/area/station/maintenance/port/fore) -"uHg" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/lobby) -"uHj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/station/maintenance/aft) -"uHv" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"uHD" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/folder/yellow{ - pixel_x = 3 - }, -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "Engineering Blast Doors" - }, -/obj/machinery/door/window/left/directional/east{ - name = "Engineering Desk"; - req_access = list("engineering") - }, -/obj/structure/desk_bell{ - pixel_x = -7; - pixel_y = 10 - }, -/turf/open/floor/plating, -/area/station/engineering/lobby) -"uHF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"uHG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Unit_3Privacy"; - name = "Unit 3 Privacy Shutter" - }, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"uHL" = ( -/obj/machinery/airalarm/directional/south, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"uHN" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/storage/bag/tray, -/obj/item/food/sausage, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/bar/atrium) -"uHW" = ( -/obj/structure/sign/poster/contraband/clown, -/turf/closed/wall/rust, -/area/station/maintenance/port/fore) -"uHY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random/directional/north, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"uIs" = ( -/obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat_interior"; - name = "Antechamber Turret Control"; - pixel_y = 28; - req_access = list("minisat") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"uIx" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packagereturn"; - name = "crate return belt" - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/cargo/sorting) -"uJg" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"uJn" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"uJp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, -/obj/effect/mapping_helpers/airlock/locked, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_atmos{ - pixel_y = -24 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"uJs" = ( -/obj/machinery/computer/security/telescreen/cmo{ - dir = 1; - name = "Chief Medical Officer's telescreen"; - network = list("medical"); - pixel_y = 2 - }, -/obj/structure/table/reinforced/rglass, -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/cmo) -"uJE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/end{ - dir = 4 - }, -/obj/machinery/computer/department_orders/science{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/research) -"uJN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"uJP" = ( -/obj/machinery/door/window/left/directional/north{ - dir = 4; - name = "Monkey Pen"; - req_access = list("genetics") - }, -/turf/open/floor/grass, -/area/station/science/genetics) -"uJV" = ( -/turf/closed/wall, -/area/station/commons/vacant_room/commissary) -"uJZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/office, -/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/greater) -"uKa" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage"; - name = "trash belt" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Trash Chute"; - name = "service camera" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/service/janitor) -"uKc" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/storage/toolbox/emergency{ - pixel_y = 5 - }, -/obj/item/flashlight, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"uKi" = ( -/obj/machinery/telecomms/receiver/preset_left, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"uKp" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/engine/telecomms, -/area/station/tcommsat/server) -"uKO" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig) -"uLj" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"uLt" = ( -/obj/effect/turf_decal/bot, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/extinguisher{ - pixel_y = 4 - }, -/obj/item/extinguisher{ - pixel_x = -4 - }, -/obj/machinery/button/door/directional/south{ - id = "xeno6"; - name = "Creature Cell 6 Toggle"; - pixel_x = 24; - req_access = list("xenobiology") - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"uLA" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/west, -/obj/machinery/computer/mechpad{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/button/door/directional/south{ - id = "Skynet_launch"; - name = "Mech Bay Door Control" - }, -/turf/open/floor/iron/dark, -/area/station/science/robotics/mechbay) -"uLJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/port) -"uLS" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot_white, -/obj/machinery/light/small/directional/west, -/obj/structure/rack, -/obj/item/storage/toolbox/emergency{ - pixel_y = 5 - }, -/obj/item/clothing/under/color/grey, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"uLW" = ( -/obj/structure/table, -/obj/machinery/cell_charger{ - pixel_y = 5 - }, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high{ - pixel_x = 8; - pixel_y = -2 - }, -/obj/item/stock_parts/cell/high{ - pixel_x = 8; - pixel_y = 9 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"uMc" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/window/reinforced, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"uMf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/tcommsat/computer) -"uMk" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/engineering/main) -"uMD" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - 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/brig) -"uNv" = ( -/obj/machinery/power/turbine/turbine_outlet, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"uNI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"uNK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/pharmacy) -"uNO" = ( -/turf/closed/wall, -/area/station/commons/toilet/restrooms) -"uNY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"uOa" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/engineering/gravity_generator) -"uOd" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/station/service/chapel/monastery) -"uOo" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/newscaster/directional/west, -/obj/effect/spawner/random/entertainment/arcade{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"uOz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/west, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"uOA" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/warden) -"uOB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/grimy, -/area/station/hallway/primary/fore) -"uOC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"uPm" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/item/radio/intercom/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/engineering/gravity_generator) -"uPL" = ( -/obj/structure/sign/departments/cargo/directional/east, -/obj/effect/turf_decal/delivery, -/obj/machinery/piratepad/civilian, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark/textured, -/area/station/cargo/sorting) -"uPM" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Security Hallway" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"uPX" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"uQj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/pdapainter/security, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"uQn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/spider/stickyweb, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"uQt" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/cargo/warehouse) -"uQE" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/toilet/restrooms) -"uQF" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "Containment Chamber Blast Door" - }, -/obj/structure/sign/warning/biohazard/directional/east, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"uQI" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"uQN" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"uQS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/table, -/obj/item/book/manual/chef_recipes{ - pixel_y = 2 - }, -/obj/item/book/manual/chef_recipes{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/knife/kitchen, -/obj/item/reagent_containers/glass/rag, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"uRf" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot_white, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"uRg" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/transfer) -"uRi" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"uRG" = ( -/mob/living/carbon/human/species/monkey/punpun, -/turf/open/floor/wood/large, -/area/station/service/bar/atrium) -"uSk" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/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/machinery/status_display/ai/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"uSB" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/thermomachine/heater/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/sign/warning/xeno_mining/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/pumproom) -"uSH" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/main) -"uST" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/obj/structure/sign/departments/lawyer/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"uSX" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/janitor) -"uTt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Courtroom" - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"uTG" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/lights/mixed{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/storage/belt/janitor, -/obj/item/storage/bag/trash, -/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"uTM" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/lobby) -"uTT" = ( -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot_white, -/obj/machinery/light/small/directional/north, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"uTY" = ( -/obj/machinery/power/emitter/welded{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"uUk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"uUm" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/paramedic) -"uUA" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/turf/closed/wall, -/area/station/engineering/atmos/pumproom) -"uUO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"uUS" = ( -/turf/closed/wall, -/area/station/maintenance/solars/port/aft) -"uVe" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"uVx" = ( -/turf/closed/wall/rust, -/area/station/hallway/primary/port) -"uVK" = ( -/obj/machinery/bluespace_vendor/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"uVQ" = ( -/turf/closed/wall, -/area/station/maintenance/solars/starboard/fore) -"uVU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"uWz" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"uWA" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall/rust, -/area/station/engineering/supermatter) -"uWM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"uWO" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"uWQ" = ( -/obj/structure/flora/rock/pile/style_random{ - pixel_x = -6; - pixel_y = -3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/misc/asteroid, -/area/space/nearstation) -"uWS" = ( -/obj/structure/rack, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/bruise_pack, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"uWU" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/engine/telecomms, -/area/station/tcommsat/server) -"uXe" = ( -/obj/structure/table/wood, -/obj/item/radio/intercom, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/courtroom) -"uXl" = ( -/obj/structure/flora/grass/jungle/a/style_random, -/obj/structure/flora/bush/grassy/style_random, -/obj/structure/flora/bush/flowers_pp/style_random, -/obj/structure/cable, -/turf/open/floor/grass, -/area/station/security/prison/garden) -"uXB" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"uXI" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"uXL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/security/brig) -"uXM" = ( -/turf/closed/wall/rust, -/area/station/science/xenobiology) -"uXZ" = ( -/turf/closed/wall/rust, -/area/station/hallway/primary/aft) -"uYb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-maint-passthrough" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"uYh" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"uYp" = ( -/obj/structure/chair/stool/bar/directional/west, -/mob/living/simple_animal/hostile/russian{ - environment_smash = 0; - loot = list(/obj/effect/mob_spawn/corpse/human/russian); - name = "Russian Mobster" - }, -/turf/open/floor/wood, -/area/station/maintenance/port/greater) -"uYw" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"uYJ" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/folder/white, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/storage/box/syringes{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/box/beakers{ - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/airalarm/directional/east, -/obj/structure/noticeboard/directional/south, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"uYM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"uYP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Genetics Lab" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple/corner, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, -/obj/effect/mapping_helpers/airlock/access/any/science/genetics, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"uZg" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/rust, -/area/station/command/heads_quarters/hos) -"uZq" = ( -/obj/structure/sink{ - pixel_y = 20 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics/garden) -"uZr" = ( -/obj/structure/grille/broken, -/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/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"uZC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"uZL" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/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/showroomfloor, -/area/station/security/brig) -"uZN" = ( -/obj/structure/table/wood, -/obj/structure/mirror/directional/east, -/obj/machinery/newscaster/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/clipboard, -/obj/item/toy/figure/captain, -/obj/machinery/camera/directional/north{ - c_tag = "Captain's Quarters"; - name = "command camera" - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/captain/private) -"uZR" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/iron/dark, -/area/station/science/research) -"uZS" = ( -/obj/structure/grille, -/obj/item/shard, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"uZT" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron, -/area/station/medical/medbay/central) -"uZX" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/pump{ - name = "Lil Pump" - }, -/obj/machinery/camera/directional/west{ - c_tag = "Ordnance Mixing Lab"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/machinery/airalarm/mixingchamber{ - dir = 8; - pixel_x = -28 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/burnchamber) -"uZZ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/turf/closed/wall, -/area/station/engineering/atmos) -"vac" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"vao" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"var" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/storage/toolbox/emergency, -/obj/item/wrench, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/showroomfloor, -/area/station/security/office) -"vaz" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/loading_area{ - dir = 4; - pixel_x = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"vaP" = ( -/obj/item/storage/box/chemimp{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/box/trackimp{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/structure/reagent_dispensers/wall/peppertank/directional/south, -/obj/item/storage/box/firingpins, -/obj/item/storage/box/firingpins, -/obj/item/storage/lockbox/loyalty, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"vba" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hos) -"vbc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall, -/area/station/maintenance/fore) -"vbd" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"vbe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/radio/intercom/directional/west, -/obj/item/wallframe/apc, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"vbi" = ( -/turf/closed/wall/r_wall/rust, -/area/station/maintenance/fore) -"vbj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "atmos-entrance" - }, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Desk" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage/gas) -"vbo" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/chair/stool/bar/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"vbu" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/computer_hardware/hard_drive/portable/ordnance, -/obj/item/computer_hardware/hard_drive/portable/ordnance, -/obj/item/computer_hardware/hard_drive/portable/ordnance, -/obj/item/circuitboard/aicore{ - pixel_y = 5 - }, -/obj/item/hand_labeler, -/obj/machinery/airalarm/directional/west, -/obj/machinery/light/directional/west, -/obj/item/paicard{ - pixel_x = 6 - }, -/obj/item/aicard, -/obj/item/taperecorder{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"vbx" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vbP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/engineering/storage/tech) -"vbT" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/pharmacy) -"vcm" = ( -/obj/structure/cable, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/ai_monitored/turret_protected/ai_upload) -"vct" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/obj/machinery/camera/directional/north{ - c_tag = "Xenobiology Test Chamber"; - name = "xenobiology camera"; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"vcL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/south, -/obj/structure/cable, -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"vcY" = ( -/obj/machinery/biogenerator, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"vdy" = ( -/obj/machinery/door/morgue{ - name = "Confession Booth (Chaplain)"; - req_access = list("chapel_office") - }, -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/wood/parquet, -/area/station/service/chapel) -"vdJ" = ( -/obj/machinery/power/solar_control{ - dir = 4; - id = "aftport"; - name = "Port Quarter Solar Control" - }, -/obj/effect/turf_decal/bot, -/obj/structure/sign/warning/vacuum/external/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"vdK" = ( -/obj/machinery/cryopod{ - dir = 1 - }, -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/camera/directional/east, -/turf/open/floor/iron/dark, -/area/station/common/cryopods) -"vdS" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 6 - }, -/turf/open/space/basic, -/area/space/nearstation) -"vdT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"vea" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/newscaster/directional/west, -/obj/effect/landmark/start/hangover/closet, -/obj/machinery/button/door/directional/west{ - id = "Cabin_3Privacy"; - name = "Cabin 3 Privacy Toggle"; - pixel_y = -24 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/commons/locker) -"vef" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"vek" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"ves" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"veu" = ( -/turf/open/floor/iron, -/area/station/security/brig) -"vew" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/wood/end, -/turf/open/floor/wood/parquet, -/area/station/service/bar) -"veN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Infirmary" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/medical) -"veV" = ( -/obj/machinery/smartfridge/chemistry/virology/preloaded, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"veW" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"veZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "Satellite Storage" - }, -/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/effect/mapping_helpers/airlock/access/all/command/minisat, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"vfb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "Bridge Blast Door" - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"vfd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/main) -"vfF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/port) -"vfL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/door_assembly/door_assembly_min{ - anchored = 1 - }, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/iron/dark, -/area/station/cargo/warehouse) -"vfO" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"vgc" = ( -/obj/structure/sign/warning/vacuum/directional/east, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/light/small/directional/east, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"vgd" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/iron, -/area/station/cargo/storage) -"vgm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"vgz" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/security/prison/safe) -"vgJ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"vgU" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/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/aft) -"vha" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/siding/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"vhf" = ( -/obj/structure/bonfire, -/obj/item/reagent_containers/food/drinks/bottle/orangejuice{ - desc = "For the weary spacemen on their quest to rekindle the first plasma fire."; - name = "Carton of Estus" - }, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/item/melee/moonlight_greatsword, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"vhi" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"vhl" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - name = "custodial sorting disposal pipe"; - sortType = 22 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"vhp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics" - }, -/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/atmos, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"vhx" = ( -/mob/living/simple_animal/slime, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"vhK" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/service/chapel/funeral) -"vhL" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/light/directional/north, -/turf/open/floor/carpet/royalblue, -/area/station/service/chapel/office) -"vhV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"vim" = ( -/obj/effect/turf_decal/siding/thinplating/light/corner{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel/monastery) -"viq" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/turf/open/space/basic, -/area/space/nearstation) -"vis" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"viu" = ( -/obj/machinery/computer/security/hos{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hos) -"viM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/engineering/storage/tech) -"viW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/office) -"vjh" = ( -/turf/closed/wall, -/area/station/maintenance/port/greater) -"vjm" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/bomb) -"vjY" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"vkh" = ( -/turf/closed/wall, -/area/station/hallway/primary/central) -"vkq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/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/showroomfloor, -/area/station/medical/exam_room) -"vkr" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/radio/intercom/directional/east, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"vks" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"vku" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/space/nearstation) -"vkC" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Port Hallway Vendors"; - name = "port camera" - }, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/port) -"vkE" = ( -/turf/closed/wall/rust, -/area/station/security/checkpoint/medical) -"vkJ" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"vkL" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/stairs{ - dir = 4 - }, -/area/station/service/chapel/funeral) -"vkY" = ( -/obj/structure/girder/reinforced, -/turf/open/space/basic, -/area/space/nearstation) -"vlg" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/office) -"vlk" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "ordnancestorage"; - name = "Ordnance Storage Shutters"; - dir = 1 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/storage) -"vlm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Cargo Bay" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron/dark, -/area/station/cargo/office) -"vlq" = ( -/obj/structure/girder, -/obj/structure/grille/broken, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"vls" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/storage) -"vlv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/button/door/directional/south{ - id = "maidbay"; - name = "Maid Bay Toggle" - }, -/obj/structure/sign/poster/contraband/random/directional/west, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"vly" = ( -/obj/structure/closet/secure_closet/atmospherics, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"vlJ" = ( -/obj/effect/turf_decal/tile/neutral{ - 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 = 10 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"vlM" = ( -/obj/structure/transit_tube/crossing, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"vme" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"vmg" = ( -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"vmq" = ( -/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/showroomfloor, -/area/station/security/execution/transfer) -"vmu" = ( -/obj/machinery/door/airlock/grunge{ - name = "Escape Pod Access" - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"vmP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"vmZ" = ( -/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/chapel) -"vne" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/recharge_station, -/obj/effect/turf_decal/bot/right, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"vns" = ( -/obj/machinery/air_sensor/plasma_tank, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"vnw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"vnC" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"vnH" = ( -/obj/item/radio/intercom/directional/west, -/obj/structure/flora/bush/grassy/style_random, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/station/science/genetics) -"vnJ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/machinery/airalarm/directional/east, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"vnL" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"vnZ" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/iron/showroomfloor, -/area/station/science/robotics/lab) -"voa" = ( -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/machinery/recharger{ - pixel_x = -3 - }, -/obj/structure/cable, -/obj/item/toy/figure/rd{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/stamp/rd{ - pixel_x = 8 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"voo" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"vou" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/bot, -/obj/machinery/camera/directional/north{ - c_tag = "Theatre Room"; - name = "service camera" - }, -/turf/open/floor/wood, -/area/station/service/theater) -"vpd" = ( -/obj/structure/table, -/obj/item/clipboard{ - pixel_x = -4 - }, -/obj/item/book/manual/wiki/atmospherics, -/obj/item/storage/belt/utility, -/obj/item/t_scanner, -/obj/item/t_scanner, -/obj/item/t_scanner, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"vpi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"vps" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/maintenance/department/security) -"vpD" = ( -/obj/structure/table/glass, -/obj/item/storage/box/bodybags{ - pixel_y = 5 - }, -/obj/item/storage/belt/medical, -/obj/item/crowbar, -/obj/item/clothing/neck/stethoscope, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"vpV" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/office) -"vpX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/west, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"vpY" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"vqe" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt, -/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/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"vqg" = ( -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/structure/noticeboard/directional/east, -/obj/item/paper/monitorkey, -/obj/machinery/camera/directional/east{ - c_tag = "Chief Engineer's Office"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"vqj" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/plating/airless, -/area/station/maintenance/disposal/incinerator) -"vqr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/grunge{ - name = "Recreation Area" - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"vqs" = ( -/obj/structure/rack, -/obj/item/rcl/pre_loaded, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/commons/storage/art) -"vqv" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/wrench, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vqw" = ( -/turf/closed/wall/r_wall, -/area/station/tcommsat/computer) -"vqM" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/storage/tech) -"vqN" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/obj/machinery/button/door/directional/south{ - id = "robotics_shutters"; - name = "Robotics Shutter Toggle"; - pixel_x = 24; - req_access = list("robotics") - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"vrd" = ( -/obj/machinery/firealarm/directional/north, -/obj/structure/flora/bush/pointy/style_random, -/obj/structure/flora/bush/sparsegrass/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"vrf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/item/storage/fancy/cigarettes/cigars/havana{ - pixel_y = 5 - }, -/obj/machinery/light/directional/east, -/obj/item/lighter, -/obj/item/storage/secure/safe/directional/east, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/captain) -"vrq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"vrs" = ( -/obj/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/chapel) -"vrD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"vrN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"vsb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "rdprivacy"; - name = "Director's Privacy Blast Door" - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"vse" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/door/window/left/directional/south{ - name = "Maximum Security Test Chamber"; - req_access = list("xenobiology") - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"vsh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Shower_2Privacy"; - name = "Shower 2 Privacy Shutter"; - dir = 1 - }, -/turf/open/floor/plating, -/area/station/commons/toilet/restrooms) -"vsq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"vss" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/bot, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/lobby) -"vsJ" = ( -/obj/structure/flora/bush/jungle/b/style_random, -/obj/structure/flora/bush/flowers_pp/style_random, -/turf/open/floor/grass, -/area/station/medical/psychology) -"vsR" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/lobby) -"vte" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"vtf" = ( -/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, -/area/station/security/brig) -"vtl" = ( -/obj/structure/grille, -/obj/structure/barricade/wooden, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"vto" = ( -/obj/structure/railing/corner, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/siding/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics/garden) -"vtt" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"vtv" = ( -/obj/structure/table/bronze, -/obj/item/clothing/suit/bronze, -/obj/item/clothing/shoes/bronze{ - pixel_x = -12 - }, -/turf/open/floor/bronze, -/area/station/maintenance/department/chapel) -"vtF" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"vuj" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"vuk" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"vum" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vuu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"vuy" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"vuF" = ( -/obj/machinery/light_switch/directional/west, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/captain) -"vuI" = ( -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"vuM" = ( -/obj/machinery/airalarm/directional/west, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/bot, -/obj/machinery/computer/prisoner/gulag_teleporter_computer{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/processing) -"vuQ" = ( -/turf/closed/wall/r_wall, -/area/station/hallway/primary/starboard) -"vuZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"vvd" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/machinery/airalarm/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/science/robotics/mechbay) -"vvf" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/virology) -"vvn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/door/window/left/directional/north{ - name = "Justice Windoor" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"vvB" = ( -/obj/item/radio{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/radio{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/radio, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Security Equipment Room" - }, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"vvC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"vvE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"vvH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/engine/telecomms, -/area/station/tcommsat/server) -"vvL" = ( -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/service/chapel/funeral) -"vwe" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/clothing/mask/gas{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/mask/gas, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/dark, -/area/station/commons/storage/primary) -"vwv" = ( -/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 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"vww" = ( -/turf/open/floor/iron, -/area/station/engineering/lobby) -"vwH" = ( -/obj/structure/table/wood, -/obj/machinery/computer/med_data/laptop, -/turf/open/floor/carpet/red, -/area/station/command/heads_quarters/hos) -"vwQ" = ( -/obj/structure/closet/emcloset/anchored, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/bridge) -"vxa" = ( -/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/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/storage/art) -"vxb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/hallway/primary/fore) -"vxf" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"vxr" = ( -/obj/machinery/computer/atmos_control/mix_tank{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos/pumproom) -"vxC" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"vxL" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/bomb) -"vxN" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/disposal/delivery_chute{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/small/directional/east, -/obj/structure/sign/warning/deathsposal/directional/east, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/janitor) -"vxZ" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot_white, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"vyl" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/structure/disposalpipe/segment{ - 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, -/turf/open/floor/iron, -/area/station/security/brig) -"vys" = ( -/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/caution/stand_clear, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"vyD" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/iron/showroomfloor, -/area/station/science/lab) -"vyE" = ( -/obj/structure/table, -/obj/machinery/light_switch/directional/north{ - pixel_x = -8 - }, -/obj/item/clothing/gloves/color/orange, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/flashlight{ - pixel_y = 4 - }, -/obj/item/flashlight{ - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "custodialwagon"; - name = "Custodial Bay Toggle"; - pixel_x = 8; - req_access = list("janitor") - }, -/turf/open/floor/iron/dark, -/area/station/service/janitor) -"vyN" = ( -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"vyV" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"vza" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/crossing, -/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) -"vze" = ( -/obj/structure/table/wood, -/obj/item/gavelblock, -/obj/effect/landmark/start/hangover, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/courtroom) -"vzr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sink/kitchen{ - dir = 8; - pixel_x = 12; - pixel_y = 4 - }, -/turf/open/floor/plastic, -/area/station/hallway/secondary/service) -"vzt" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Waste to Filter" - }, -/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, -/area/station/engineering/atmos/pumproom) -"vzy" = ( -/turf/closed/wall, -/area/station/service/janitor) -"vzD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/passive_vent{ - name = "killroom vent" - }, -/turf/open/floor/circuit/telecomms, -/area/station/science/xenobiology) -"vzL" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/cigbutt, -/obj/effect/spawner/random/entertainment/cigarette, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/cargo/storage) -"vzQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Supermatter Engine"; - name = "supermatter camera"; - network = list("engine") - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"vzV" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/sign/poster/official/anniversary_vintage_reprint{ - pixel_y = 32 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Chemistry North"; - network = list("ss13","medbay") - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"vzZ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"vAh" = ( -/obj/effect/landmark/start/chaplain, -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/machinery/light/small/directional/west, -/obj/item/radio/intercom/chapel/directional/north, -/turf/open/floor/wood/parquet, -/area/station/service/chapel) -"vAl" = ( -/obj/machinery/door/window/right/directional/west{ - name = "Waste Door" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"vAr" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/warning/vacuum/external/directional/west, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"vAw" = ( -/obj/machinery/vending/wardrobe/chef_wardrobe, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"vBi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"vBt" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"vBv" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/stack/sheet/plasteel{ - amount = 10; - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/construction/mining/aux_base) -"vBE" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/bomb) -"vBI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/east, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"vBR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"vBS" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/office) -"vCa" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/briefcase, -/obj/item/taperecorder{ - pixel_x = -4; - pixel_y = 4 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"vCc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/oil, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"vCf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/airalarm/directional/west, -/obj/machinery/vending/wardrobe/det_wardrobe, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"vCh" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"vCi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/door/window/brigdoor/left/directional/east{ - name = "Justice Windoor"; - req_access = list("armory") - }, -/obj/machinery/door/window/brigdoor/right/directional/west{ - name = "Justice Windoor"; - req_access = list("armory") - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "justiceshutter"; - name = "Justice Shutter"; - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"vCk" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/north, -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"vCn" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"vCA" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/library) -"vCG" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/light_switch/directional/east{ - pixel_y = -6 - }, -/obj/machinery/requests_console/directional/north{ - department = "Detective's Office"; - name = "Detective Requests Console" - }, -/obj/machinery/button/door/directional/east{ - id = "detective_shutters"; - name = "Detective's Privacy Toggle"; - pixel_y = 6; - req_access = list("detective") - }, -/turf/open/floor/wood, -/area/station/security/detectives_office) -"vCM" = ( -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"vCO" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/security/courtroom) -"vCV" = ( -/obj/structure/cable, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"vDf" = ( -/obj/structure/table/wood/fancy/black, -/obj/item/food/grown/poppy/lily{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/food/grown/poppy/lily{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/food/grown/poppy/lily, -/obj/machinery/power/apc/five_k/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/service/chapel/monastery) -"vDk" = ( -/turf/closed/wall, -/area/station/engineering/supermatter/room) -"vDD" = ( -/obj/machinery/smartfridge/drinks, -/turf/closed/wall, -/area/station/hallway/secondary/service) -"vDO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Teleporter Access" - }, -/obj/effect/landmark/navigate_destination, -/obj/effect/mapping_helpers/airlock/access/all/command/teleporter, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"vDU" = ( -/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, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"vDZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Tool Storage" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/commons/storage/primary) -"vEt" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/table, -/obj/item/hfr_box/core, -/obj/item/hfr_box/corner, -/obj/item/hfr_box/corner, -/obj/item/hfr_box/corner, -/obj/item/hfr_box/corner, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"vEv" = ( -/obj/structure/railing, -/obj/effect/turf_decal/siding/thinplating/dark/end{ - dir = 8 - }, -/turf/open/floor/glass/reinforced, -/area/station/service/chapel) -"vEC" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"vEK" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"vEU" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"vEW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"vFc" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"vFk" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/effect/turf_decal/box, -/obj/machinery/flasher/directional/north{ - id = "AI"; - name = "Meatbag Pacifier"; - pixel_x = 26 - }, -/obj/machinery/camera/directional/south{ - c_tag = "AI Chamber Core"; - name = "core camera"; - network = list("aicore") - }, -/obj/machinery/light/floor, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"vFv" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"vFD" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/obj/item/flashlight/lamp/green, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/library) -"vFH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"vFU" = ( -/obj/structure/bookcase/random/nonfiction, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"vFW" = ( -/obj/structure/window/reinforced/spawner{ - dir = 8 - }, -/obj/machinery/research/anomaly_refinery, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"vFY" = ( -/turf/closed/wall, -/area/station/science/lab) -"vGn" = ( -/obj/machinery/door/poddoor/preopen{ - id = "prisonblast"; - name = "Prison Blast Door" - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/button/door/directional/north{ - id = "prisonblast"; - name = "Prison Lockdown"; - req_access = list("brig") - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"vGs" = ( -/obj/structure/flora/bush/flowers_br/style_random, -/obj/structure/flora/bush/leavy/style_random, -/obj/structure/flora/bush/stalky/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"vGt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"vGu" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/maintenance/starboard/aft) -"vGJ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"vHa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Cooling Loop Bypass" - }, -/obj/machinery/light/directional/east, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"vHd" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/science/lab) -"vHe" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"vHh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/directions/supply{ - dir = 1; - pixel_y = 24 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"vHr" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"vHx" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/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, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"vHC" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/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, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"vHF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"vHH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Engineering" - }, -/obj/effect/turf_decal/siding/yellow/corner, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "engi-entrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron/dark, -/area/station/engineering/storage_shared) -"vHP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"vHS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"vHZ" = ( -/obj/effect/turf_decal/box/white{ - color = "#9FED58" - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"vId" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"vIE" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Atmospherics Tank - Mix"; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"vIR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Research Division Server Room" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/rd, -/turf/open/floor/iron/dark, -/area/station/science/server) -"vJc" = ( -/turf/closed/wall/r_wall, -/area/station/science/xenobiology) -"vJg" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot_white, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"vJh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs) -"vJk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Checkpoint" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"vJm" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/light/directional/east, -/turf/open/floor/plating/airless, -/area/station/hallway/secondary/entry) -"vJv" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/component_printer, -/obj/machinery/camera/directional/north{ - c_tag = "Testing Lab"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/office) -"vJA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/closet/secure_closet{ - name = "contraband locker"; - req_access = list("armory") - }, -/obj/effect/spawner/random/contraband/armory, -/obj/effect/spawner/random/maintenance/three, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"vJB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"vJH" = ( -/obj/effect/mob_spawn/corpse/human/charredskeleton, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"vJN" = ( -/obj/machinery/hydroponics/constructable, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"vJP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"vJT" = ( -/obj/machinery/vending/wardrobe/bar_wardrobe, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/cobweb, -/obj/item/radio/intercom/directional/west, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"vJZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"vKa" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"vKc" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/table, -/obj/item/clipboard, -/obj/item/geiger_counter{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/toy/figure/ninja{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/pen, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/ai_monitored/command/nuke_storage) -"vKj" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"vKm" = ( -/turf/open/floor/engine/vacuum, -/area/station/maintenance/disposal/incinerator) -"vKp" = ( -/obj/item/clothing/head/cardborg, -/obj/item/clothing/suit/cardborg, -/obj/structure/closet/cardboard/metal, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/central) -"vKE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"vKM" = ( -/obj/structure/chair/stool/bar/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"vKN" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"vKO" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/maintenance/aft) -"vKQ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"vKV" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/storage/medkit/o2, -/obj/item/tank/internals/emergency_oxygen, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"vLm" = ( -/obj/effect/turf_decal/tile/neutral{ - 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/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/holopad/secure, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"vLG" = ( -/obj/structure/closet/radiation, -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"vLI" = ( -/turf/closed/wall/r_wall/rust, -/area/station/service/chapel/funeral) -"vLR" = ( -/obj/machinery/power/tracker, -/obj/effect/turf_decal/box, -/obj/structure/cable, -/turf/open/floor/iron/solarpanel/airless, -/area/station/solars/starboard/fore) -"vMb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/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/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"vMg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/warden) -"vMk" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - 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/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"vMo" = ( -/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 - }, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = 24 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"vMM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"vMN" = ( -/obj/structure/table/wood, -/obj/item/paicard, -/turf/open/floor/wood/tile, -/area/station/service/library) -"vMW" = ( -/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/freezer{ - name = "Kitchen Coldroom" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, -/turf/open/floor/iron/dark, -/area/station/service/kitchen/coldroom) -"vNl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/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/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"vNB" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"vNL" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/computer/security/qm, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/supply) -"vNS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/port) -"vOl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"vOq" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/stack/sheet/plasteel/fifty{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/stack/sheet/rglass{ - amount = 50; - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/machinery/camera/directional/south{ - c_tag = "Engineering Storage"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/machinery/light_switch/directional/east, -/obj/item/stock_parts/cell/emproof{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/item/stock_parts/cell/emproof{ - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"vOH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"vOM" = ( -/obj/structure/table, -/obj/item/storage/box/lights/mixed{ - pixel_y = 5 - }, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"vOO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/obj/machinery/computer/cargo, -/obj/machinery/requests_console/directional/north{ - department = "Cargo Bay"; - departmentType = 2; - name = "Cargo Bay Requests Console" - }, -/obj/item/radio/intercom/directional/north{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/office) -"vOT" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"vOW" = ( -/turf/closed/wall, -/area/station/hallway/secondary/exit/departure_lounge) -"vOX" = ( -/turf/closed/wall/rust, -/area/station/maintenance/starboard) -"vOZ" = ( -/obj/machinery/computer/security/telescreen/entertainment/directional/south, -/obj/structure/reagent_dispensers/wall/peppertank/directional/east, -/obj/machinery/photocopier, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"vPd" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"vPr" = ( -/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/maintenance/port/greater) -"vPz" = ( -/obj/item/kirbyplants/random, -/obj/machinery/status_display/ai/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"vPL" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"vPU" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/camera/directional/west{ - c_tag = "Engineering Foyer"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"vPW" = ( -/obj/machinery/door/airlock/research{ - id_tag = "ResearchInt"; - name = "Research Division" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/landmark/navigate_destination, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron/dark, -/area/station/science/research) -"vPX" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"vQf" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"vQt" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"vQD" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/chemist, -/turf/open/floor/iron/dark, -/area/station/medical/pharmacy) -"vQF" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"vQY" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/station/maintenance/port/greater) -"vRh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai_upload) -"vRl" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - 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/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/siding/red{ - dir = 9 - }, -/obj/effect/landmark/start/customs_agent, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"vRo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"vRB" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"vRK" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/wall, -/area/station/engineering/atmos) -"vRN" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/item/storage/belt/medical, -/obj/item/clothing/neck/stethoscope, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"vRO" = ( -/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/wood{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/duct, -/turf/open/floor/wood, -/area/station/service/bar/atrium) -"vRP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"vRQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai_upload) -"vRU" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/item/storage/belt/medical, -/obj/item/clothing/neck/stethoscope, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Medbay Storage"; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"vRX" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/rods/fifty, -/obj/item/stack/rods/fifty, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"vSa" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/holopad/secure, -/turf/open/floor/carpet/royalblue, -/area/station/command/heads_quarters/captain) -"vSi" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/obj/machinery/light/directional/north, -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/turf/open/floor/wood, -/area/station/service/bar/atrium) -"vSp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"vSq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/central/fore) -"vSG" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/service/chapel/monastery) -"vTs" = ( -/obj/machinery/hydroponics/constructable, -/obj/item/seeds/apple, -/obj/item/reagent_containers/glass/bottle/nutrient/l4z, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/department/bridge) -"vTt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/spawner/random/structure/grille, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"vTx" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"vTA" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"vTD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/radio/intercom/directional/east, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/hallway/primary/fore) -"vTV" = ( -/turf/closed/wall/r_wall/rust, -/area/station/service/chapel/dock) -"vTX" = ( -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/rd) -"vUi" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/iron/stairs/right{ - dir = 4 - }, -/area/station/service/chapel) -"vUo" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall/rust, -/area/station/maintenance/fore) -"vUp" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Drone Bay Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"vUr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/crowbar{ - pixel_x = -8; - pixel_y = 11 - }, -/obj/machinery/light/directional/east, -/obj/item/roller{ - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/roller, -/turf/open/floor/iron/dark, -/area/station/medical/paramedic) -"vUs" = ( -/obj/structure/bed, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/bot_white/right, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/bedsheet/medical, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) -"vUt" = ( -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad/secure, -/turf/open/floor/iron, -/area/station/security/office) -"vUu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/port) -"vUC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"vUD" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Mix to Engine" - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"vUH" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/iron, -/area/station/cargo/storage) -"vUO" = ( -/obj/item/canvas/nineteen_nineteen, -/obj/structure/easel, -/turf/open/floor/iron/grimy, -/area/station/security/prison) -"vUY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/obj/effect/turf_decal/siding/white{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"vVt" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"vVw" = ( -/turf/closed/wall/r_wall/rust, -/area/station/science/lab) -"vVx" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"vVC" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall, -/area/station/maintenance/port/greater) -"vVM" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/noticeboard/directional/west, -/obj/item/clothing/gloves/color/latex, -/obj/item/hemostat, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"vVP" = ( -/obj/machinery/air_sensor/mix_tank, -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"vVT" = ( -/turf/closed/wall/r_wall/rust, -/area/station/engineering/storage/tech) -"vVX" = ( -/obj/machinery/cryopod{ - dir = 1 - }, -/obj/effect/turf_decal/siding/white{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/common/cryopods) -"vWe" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"vWv" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"vWA" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/office) -"vWC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/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/engineering/atmos) -"vWE" = ( -/obj/effect/decal/cleanable/food/flour, -/obj/effect/landmark/start/cook, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"vWF" = ( -/obj/structure/sign/departments/custodian, -/turf/closed/wall/rust, -/area/station/service/janitor) -"vWH" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"vWU" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"vWY" = ( -/turf/closed/wall, -/area/station/security/processing/cremation) -"vXa" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/greenglow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"vXf" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/item/folder/white, -/obj/item/retractor, -/obj/item/hemostat, -/obj/machinery/vending/wallmed/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Medical Operating Theater B"; - name = "medical camera"; - network = list("ss13","medical") - }, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/aft) -"vXn" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/transfer) -"vXp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor{ - dir = 4; - id = "packagereturn"; - name = "crate return belt" - }, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/plating, -/area/station/cargo/storage) -"vXC" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Connector" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"vXI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vYm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"vYn" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"vYs" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/mob/living/simple_animal/bot/secbot/beepsky/officer, -/turf/open/floor/iron/dark, -/area/station/security/office) -"vYx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"vYI" = ( -/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/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/duct, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"vZa" = ( -/obj/machinery/computer/shuttle/mining, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"vZn" = ( -/obj/structure/flora/bush/sparsegrass/style_random, -/turf/open/floor/grass, -/area/station/service/chapel) -"vZu" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"vZv" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/clipboard{ - pixel_x = -6; - pixel_y = 2 - }, -/obj/item/aicard{ - pixel_x = 4 - }, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"vZy" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"vZB" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall, -/area/station/hallway/primary/starboard) -"wae" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/mix_input{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"waq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"war" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrig"; - name = "Brig" - }, -/obj/effect/landmark/navigate_destination, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-entrance-right" - }, -/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/security/entrance, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"was" = ( -/obj/structure/chair/pew/right{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/chapel{ - dir = 8 - }, -/area/station/service/chapel) -"waI" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/green{ - dir = 8 - }, -/obj/item/hatchet, -/obj/item/cultivator, -/obj/item/shovel/spade, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics/garden) -"waL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/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, -/area/station/hallway/primary/central/fore) -"waT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"wbf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/disposalpipe/segment, -/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/dark, -/area/station/medical/morgue) -"wbo" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Service Maintenance" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/command/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"wbG" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"wbH" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/loading_area{ - dir = 4; - pixel_x = 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, -/area/station/engineering/atmos/storage/gas) -"wbT" = ( -/obj/machinery/keycard_auth/directional/north, -/obj/item/toy/figure/ian{ - pixel_x = 8 - }, -/obj/item/toy/figure/hop{ - pixel_x = -8 - }, -/obj/machinery/recharger, -/obj/structure/table/wood, -/turf/open/floor/carpet/blue, -/area/station/command/heads_quarters/hop) -"wcg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/radio{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/pen, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) -"wcs" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"wct" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/pump/on/layer4{ - dir = 8 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"wcC" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/storage) -"wcN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/exam_room) -"wcP" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wcV" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/maintenance/department/bridge) -"wcX" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) -"wdf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/spawner/random/vending/snackvend, -/turf/open/floor/iron/dark, -/area/station/science/research) -"wdn" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/neck/tie/red, -/obj/item/clothing/head/bowler{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"wdu" = ( -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/office) -"wdx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"wdD" = ( -/obj/effect/turf_decal/tile/neutral{ - 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/cable, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/hallway/primary/fore) -"wdL" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/cargo/storage) -"weh" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"wer" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad"; - name = "off ramp" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/cargo/storage) -"weG" = ( -/obj/machinery/mass_driver/chapelgun{ - dir = 8 - }, -/obj/machinery/door/window/right/directional/north{ - req_access = list("chapel_office") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/service/chapel/funeral) -"weK" = ( -/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/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"weL" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"weR" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"weV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/lights/mixed, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"weW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"wfk" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/command/teleporter) -"wfD" = ( -/obj/machinery/flasher/directional/west{ - id = "AI"; - name = "Meatbag Pacifier" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai_upload) -"wgq" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/obj/item/crowbar, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/firealarm/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"wgr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"wgA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/monastery) -"wgK" = ( -/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/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"wgO" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/storage/fancy/donut_box, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/service/bar/atrium) -"wgS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/storage/box/pdas{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/box/silver_ids{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/box/ids, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hop) -"wgX" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"whj" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"whm" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/suit_storage_unit/standard_unit{ - desc = "An industrial suit storage device carrying retro space suits. Neat!"; - helmet_type = /obj/item/clothing/head/helmet/space; - suit_type = /obj/item/clothing/suit/space - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"why" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/bridge) -"whP" = ( -/obj/machinery/vending/engivend, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/storage_shared) -"wij" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/commons/locker) -"win" = ( -/obj/effect/turf_decal/siding/thinplating/light/corner{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel/monastery) -"wiw" = ( -/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/public/glass{ - name = "Atrium" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/service/bar/atrium) -"wiM" = ( -/obj/structure/cable, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"wiR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/valve/digital{ - name = "Waste Release" - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"wjj" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"wjm" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"wjs" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"wjz" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Aft Hallway Engineering Doors"; - name = "aft camera" - }, -/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/aft) -"wjD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/central/fore) -"wjG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics/garden) -"wjI" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/bush/flowers_pp/style_random, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/structure/flora/bush/generic/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"wjK" = ( -/turf/closed/wall, -/area/station/maintenance/department/security) -"wjP" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/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/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wkB" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/machinery/light/directional/south, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"wkC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/hallway/primary/central/fore) -"wkN" = ( -/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/broken_floor, -/turf/open/floor/plating, -/area/station/security/prison) -"wkP" = ( -/obj/structure/weightmachine/weightlifter, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/item/photo/old, -/turf/open/floor/iron, -/area/station/security/prison) -"wkT" = ( -/obj/machinery/door/airlock/external{ - name = "Brig Shuttle Airlock"; - space_dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"wlm" = ( -/obj/structure/bookcase/random/fiction, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"wlz" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/iron/stairs/left{ - dir = 1 - }, -/area/station/service/chapel) -"wlO" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/sign/warning/no_smoking/directional/north, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"wlP" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/maintenance/port/lesser) -"wlS" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/security/brig) -"wmj" = ( -/obj/machinery/vending/wardrobe/sec_wardrobe, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/obj/structure/reagent_dispensers/wall/peppertank/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"wmn" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/central) -"wmq" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"wmr" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Aft Hallway Transfer Centre Doors"; - name = "aft camera" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"wms" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/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/security/brig) -"wmB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"wmG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/dark, -/area/station/commons/vacant_room/commissary) -"wmJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"wmM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/east, -/turf/open/floor/carpet/green, -/area/station/service/lawoffice) -"wmZ" = ( -/obj/structure/window/reinforced/spawner/north, -/obj/structure/transit_tube/crossing, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"wnc" = ( -/obj/structure/dresser, -/obj/machinery/light/small/directional/north, -/obj/structure/noticeboard/directional/north, -/turf/open/floor/wood, -/area/station/service/theater) -"wnl" = ( -/obj/machinery/power/port_gen/pacman, -/obj/item/stack/sheet/mineral/plasma{ - amount = 5 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"wno" = ( -/obj/machinery/mecha_part_fabricator/maint{ - name = "forgotten exosuit fabricator" - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/storage) -"wny" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"wnJ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"wnV" = ( -/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/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"wnX" = ( -/obj/structure/table/wood, -/obj/item/storage/box/seccarts{ - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - desc = "A bottle of whiskey. There's a label that reads 'tears' taped to the front."; - name = "Bottle of Tears"; - pixel_x = 3; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_y = 2 - }, -/obj/machinery/keycard_auth/directional/south{ - pixel_x = -6 - }, -/obj/machinery/status_display/evac/directional/west, -/obj/machinery/button/door/directional/south{ - id = "hosspace"; - name = "Space Blast Door Toggle"; - pixel_x = 8 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hos) -"woc" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"woj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/security/courtroom) -"wor" = ( -/obj/effect/turf_decal/tile/blue{ - 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, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"wot" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"woz" = ( -/obj/structure/railing{ - dir = 9 - }, -/turf/open/floor/engine/hull/reinforced, -/area/space/nearstation) -"woB" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/table, -/obj/item/book/manual/wiki/surgery, -/obj/item/razor, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/surgery/fore) -"woG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison) -"woH" = ( -/mob/living/simple_animal/hostile/carp{ - environment_smash = 0; - name = "Tuna"; - real_name = "Tuna" - }, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"woJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"woV" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/structure/noticeboard/directional/east, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/clothing/under/color/grey, -/obj/item/clothing/mask/gas{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"wpf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random/directional/north, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"wpg" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/flasher/directional/west{ - id = "Cell 4"; - name = "Prisoner Pacifier" - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/brig) -"wpn" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/item/radio/intercom/directional/north, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"wpu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/mob/living/simple_animal/hostile/asteroid/hivelord, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"wpw" = ( -/turf/closed/wall, -/area/station/science/xenobiology) -"wpD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"wpI" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/aft) -"wpM" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/bomb) -"wqd" = ( -/obj/item/radio/intercom/directional/west, -/obj/machinery/modular_computer/console/preset/cargochat/service{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light_switch/directional/west{ - pixel_y = -10 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - 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) -"wqi" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/bomb) -"wqu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/rock, -/turf/open/misc/asteroid, -/area/space/nearstation) -"wqE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"wqF" = ( -/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/wood, -/obj/structure/chair/stool/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/service/library) -"wqL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/purple/filled/line, -/turf/open/floor/plating/plasma/rust, -/area/station/maintenance/space_hut/plasmaman) -"wqQ" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/iron/showroomfloor, -/area/station/science/lab) -"wqR" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/monkey_recycler, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"wqZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-entrance-right" - }, -/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/security/entrance, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"wrc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/security) -"wre" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/table, -/obj/machinery/microwave, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"wrp" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/ai_monitored/command/storage/satellite) -"wrw" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/obj/structure/sign/poster/contraband/random/directional/north, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"wrz" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"wrI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "holodeck" - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"wrR" = ( -/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/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"wrY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"wsg" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Chief Medical Officer's Office"; - name = "medical camera"; - network = list("ss13","medical") - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"wso" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"wsy" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/chair/office/light, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/landmark/start/geneticist, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"wtt" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"wtz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"wtF" = ( -/obj/structure/chair/sofa/right, -/obj/structure/sign/poster/official/love_ian{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/station/medical/psychology) -"wtP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/psychology) -"wua" = ( -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/office) -"wuc" = ( -/turf/closed/wall/r_wall/rust, -/area/station/science/xenobiology) -"wue" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"wuh" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/primary/central/fore) -"wuo" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/flasher/directional/west{ - id = "Cell 6"; - name = "Prisoner Pacifier" - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/brig) -"wuv" = ( -/obj/structure/sign/warning/deathsposal, -/turf/closed/wall, -/area/station/maintenance/starboard/aft) -"wuE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"wuI" = ( -/obj/structure/sign/poster/contraband/missing_gloves, -/turf/closed/wall/rust, -/area/station/maintenance/port/greater) -"wuK" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wuT" = ( -/obj/machinery/door/airlock/external{ - name = "Prison External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) -"wvj" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/command_all, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/engineering/storage/tech) -"wwf" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/bot_white, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/wood, -/area/station/service/library) -"wwj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/ai_upload"; - icon_state = "control_stun"; - name = "AI Upload Turret Control"; - pixel_x = -30 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai_upload) -"wwv" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/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, -/area/station/science/robotics/mechbay) -"wwG" = ( -/turf/closed/wall/r_wall/rust, -/area/station/science/ordnance/office) -"wwJ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"wwM" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/department/security) -"wxa" = ( -/obj/machinery/door/airlock/vault{ - id_tag = "bank"; - name = "Bank Vault" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/access/all/supply/vault, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"wxj" = ( -/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/service/library) -"wxl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/office) -"wxq" = ( -/turf/closed/wall/rust, -/area/station/service/hydroponics) -"wxx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Gas to Filter" - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/engineering/supermatter) -"wxF" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/carpet/green, -/area/station/cargo/warehouse) -"wxI" = ( -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"wxU" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"wyh" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/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, -/area/station/hallway/secondary/exit/departure_lounge) -"wyv" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/clipboard{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/folder/red, -/obj/item/folder/blue{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/clipboard, -/obj/item/folder/red, -/obj/item/hand_labeler, -/obj/item/hand_labeler, -/turf/open/floor/iron/dark, -/area/station/cargo/storage) -"wyF" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/sign/departments/science/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"wyG" = ( -/obj/effect/landmark/start/quartermaster, -/obj/structure/chair/office, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/carpet/orange, -/area/station/cargo/qm) -"wyO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"wyX" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/computer/shuttle/mining/common, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"wyY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"wzi" = ( -/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/greater) -"wzk" = ( -/obj/machinery/modular_computer/console/preset/command{ - dir = 4 - }, -/obj/machinery/requests_console/directional/west{ - announcementConsole = 1; - department = "Head of Personnel's Desk"; - departmentType = 5; - name = "Head of Personnel's Requests Console" - }, -/obj/machinery/light/directional/west, -/turf/open/floor/carpet/blue, -/area/station/command/heads_quarters/hop) -"wzp" = ( -/obj/machinery/hydroponics/constructable, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"wzr" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"wzy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"wzA" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/emcloset, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/port) -"wzG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/chair/sofa/corp/left{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/hangover, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"wzI" = ( -/turf/closed/wall, -/area/station/command/heads_quarters/rd) -"wzK" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Security"; - name = "navigation beacon (Security Delivery)" - }, -/obj/machinery/door/window/right/directional/north{ - name = "Security Delivery Access"; - req_access = list("security") - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/aft) -"wzW" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "emmd"; - name = "Emergency Medical Lockdown Shutters" - }, -/obj/item/folder/white{ - pixel_x = 4 - }, -/obj/item/clothing/head/soft/paramedic{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/structure/desk_bell{ - pixel_x = -7 - }, -/turf/open/floor/iron/dark, -/area/station/medical/paramedic) -"wzY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"wAn" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/theater) -"wAt" = ( -/turf/closed/wall, -/area/station/security/execution/education) -"wAv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"wAz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/research) -"wAC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/red, -/turf/open/floor/iron/showroomfloor, -/area/station/security/checkpoint/science/research) -"wAG" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"wAS" = ( -/obj/machinery/telecomms/broadcaster/preset_left, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"wBf" = ( -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/security/prison) -"wBo" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/station/service/chapel) -"wBs" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/structure/sign/warning/secure_area/directional/north, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/box/red, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/ai_monitored/turret_protected/ai) -"wBJ" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"wCe" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/iron/dark, -/area/station/cargo/miningoffice) -"wCR" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"wCY" = ( -/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/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"wDh" = ( -/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/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai_upload) -"wDs" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"wDz" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/port/lesser) -"wDF" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"wDI" = ( -/obj/structure/flora/rock/pile/style_random, -/turf/open/misc/asteroid/lowpressure, -/area/space/nearstation) -"wEj" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/components/tank/air, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/maintenance/department/chapel/monastery) -"wEt" = ( -/turf/closed/wall/r_wall/rust, -/area/station/service/bar/atrium) -"wEw" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/virologist, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/virology) -"wEy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink{ - pixel_y = 29 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Prison Maintenance"; - network = list("ss13","prison") - }, -/mob/living/simple_animal/mouse/brown/tom{ - name = "Jerm" - }, -/turf/open/floor/iron/grimy, -/area/station/security/prison/safe) -"wEI" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/chair/stool/bar/directional/east, -/obj/machinery/light/directional/north, -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"wEJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"wEM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Port Bow Solar"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"wFa" = ( -/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/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"wFi" = ( -/obj/machinery/biogenerator, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"wFl" = ( -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/captain/private) -"wFm" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/computer/department_orders/medical{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"wFs" = ( -/obj/item/food/grown/banana, -/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) -"wFu" = ( -/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, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/carpet/royalblue, -/area/station/service/chapel/office) -"wFB" = ( -/obj/machinery/light/floor, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"wFG" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Surgery Maintenance" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"wFJ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/security/brig) -"wFL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/ai_monitored/command/nuke_storage) -"wGd" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"wGe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"wGh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"wGp" = ( -/obj/effect/spawner/random/vending/colavend, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"wGs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Dock" - }, -/turf/open/floor/iron/dark, -/area/station/cargo/warehouse) -"wGx" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/computer/atmos_control/oxygen_tank{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos) -"wGA" = ( -/obj/structure/table, -/obj/structure/railing, -/obj/item/seeds/potato{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/seeds/sugarcane{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/seeds/wheat{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/seeds/random{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/reagent_containers/spray/cleaner, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"wGD" = ( -/obj/machinery/door/poddoor/preopen{ - id = "gravity"; - name = "Gravity Generator Blast Door" - }, -/obj/machinery/light/small/directional/south, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/aft) -"wGE" = ( -/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/showroomfloor, -/area/station/medical/surgery/fore) -"wGG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/electrolyzer, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"wGQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/kirbyplants, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"wGS" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/obj/structure/tank_dispenser, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"wHb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard) -"wHh" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/directional/south{ - c_tag = "Brig Cells" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig) -"wHp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"wHu" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/dirt, -/obj/structure/girder, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"wHF" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"wHK" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"wHQ" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/folder/red, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash/handheld, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"wHR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"wHW" = ( -/obj/structure/closet/secure_closet/security/engine, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/obj/structure/reagent_dispensers/wall/peppertank/directional/south, -/obj/item/crowbar, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) -"wIb" = ( -/obj/docking_port/stationary/random{ - dir = 4; - id = "pod_4_lavaland"; - name = "lavaland" - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"wIi" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "emmd"; - name = "Emergency Medical Lockdown Shutters"; - dir = 4 - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/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/medical/medbay/lobby) -"wIo" = ( -/obj/machinery/atmospherics/components/unary/passive_vent{ - dir = 1; - name = "server vent" - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/science/server) -"wIt" = ( -/obj/item/nullrod, -/obj/structure/table/wood, -/obj/machinery/light/very_dim/directional/north, -/turf/open/floor/cult, -/area/station/service/chapel/office) -"wIu" = ( -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/toilet/restrooms) -"wIE" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/power/shieldwallgen, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/west, -/obj/machinery/power/shieldwallgen, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"wII" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/right/directional/east{ - base_state = "left"; - icon_state = "left"; - name = "Fitness Ring" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"wIL" = ( -/obj/structure/kitchenspike, -/obj/effect/turf_decal/bot/left, -/turf/open/floor/iron/freezer, -/area/station/service/kitchen/coldroom) -"wIR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/siding/blue/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"wIY" = ( -/obj/structure/table, -/obj/item/assembly/timer, -/obj/item/assembly/timer{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/assembly/timer{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/assembly/timer{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"wJe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"wJj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/cardboard, -/obj/structure/grille/broken, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"wJn" = ( -/turf/closed/wall/rust, -/area/station/maintenance/department/cargo) -"wJo" = ( -/turf/open/floor/plating, -/area/station/maintenance/department/security) -"wJt" = ( -/obj/structure/table/reinforced, -/obj/structure/desk_bell{ - pixel_x = -7; - pixel_y = 8 - }, -/obj/item/storage/bag/tray, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchenshutters"; - name = "Kitchen Shutters"; - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/kitchen) -"wJw" = ( -/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/security/prison/safe) -"wJy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/exam_room) -"wJD" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage/gas) -"wKa" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/start/chief_medical_officer, -/obj/machinery/button/door{ - id = "emmd"; - name = "Medical Lockdown Toggle"; - pixel_x = -18; - pixel_y = -25 - }, -/obj/machinery/button/door{ - id = "cmoprivacy"; - name = "Privacy Shutters Toggle"; - pixel_x = -18; - pixel_y = -34 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/cmo) -"wKb" = ( -/obj/structure/railing/corner, -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"wKG" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/showroomfloor, -/area/station/security/execution/transfer) -"wKN" = ( -/obj/structure/barricade/wooden, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/iron/stairs/old{ - dir = 1 - }, -/area/station/service/chapel) -"wLp" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"wLu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Telecommunications" - }, -/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/any/command/general, -/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"wLC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"wLM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"wLX" = ( -/turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) -"wLY" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/machinery/computer/atmos_control/air_tank{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos) -"wMe" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"wMl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"wMt" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"wMH" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"wMY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/poster/random_official{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/poster/random_official, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"wNf" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/sign/warning/electric_shock/directional/south, -/obj/structure/grille, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"wNo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/security/courtroom) -"wNr" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"wNs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Central Hallway Teleporter Access"; - name = "central camera" - }, -/obj/machinery/button/door/directional/north{ - id = "teleshutter"; - name = "Teleporter Shutter Toggle"; - req_access = list("command") - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"wNz" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "bankshutter"; - name = "Bank Shutter"; - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"wNQ" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/airalarm/directional/south, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/pharmacy) -"wNT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/structure/mirror/directional/north, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/medical) -"wOb" = ( -/obj/structure/chair/sofa/right{ - color = "#c45c57"; - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/service/bar/atrium) -"wOk" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/blue{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"wOy" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/iv_drip, -/obj/structure/bed, -/obj/structure/curtain, -/turf/open/floor/iron/dark, -/area/station/medical/exam_room) -"wOB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"wPh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/radio/intercom/directional/north, -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wPp" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/research) -"wPq" = ( -/turf/closed/wall/r_wall, -/area/station/service/chapel/funeral) -"wPy" = ( -/obj/machinery/door/poddoor/atmos_test_room_mainvent_1, -/turf/open/floor/engine/vacuum, -/area/station/maintenance/disposal/incinerator) -"wPB" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"wPK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/brig) -"wPO" = ( -/obj/structure/rack, -/obj/item/gun/energy/ionrifle{ - pixel_y = 4 - }, -/obj/item/gun/energy/temperature/security, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/item/clothing/suit/hooded/ablative, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"wPU" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/sign/warning/electric_shock/directional/east, -/obj/structure/cable, -/turf/open/floor/circuit/red, -/area/station/engineering/supermatter/room) -"wPX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Dock" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron/dark, -/area/station/cargo/miningoffice) -"wQc" = ( -/obj/structure/chair/sofa/bench/right{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/fore) -"wQI" = ( -/obj/structure/sign/warning/electric_shock/directional/south, -/obj/structure/flora/bush/pale/style_random, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"wQK" = ( -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/bush/ferny/style_random, -/turf/open/misc/asteroid, -/area/station/hallway/primary/central) -"wQN" = ( -/obj/structure/cable, -/obj/structure/barricade/wooden/crude, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/dark, -/area/station/service/chapel/storage) -"wQV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"wRj" = ( -/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/highsecurity{ - name = "AI Upload" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai_upload) -"wRn" = ( -/obj/effect/turf_decal/box/corners, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"wRr" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"wRs" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) -"wRE" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/storage/belt/utility, -/obj/item/crowbar/red, -/obj/machinery/light_switch/directional/west{ - pixel_x = -25 - }, -/turf/open/floor/iron/dark, -/area/station/commons/storage/primary) -"wRM" = ( -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"wRO" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/landmark/navigate_destination, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wRQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"wRU" = ( -/turf/closed/wall, -/area/station/engineering/atmos) -"wSh" = ( -/obj/structure/sign/poster/official/fruit_bowl, -/turf/closed/wall/r_wall, -/area/station/security/prison/safe) -"wSi" = ( -/obj/structure/cable, -/obj/machinery/computer/atmos_alert{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/requests_console/directional/east{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge Requests Console" - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"wSq" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/west, -/obj/item/clothing/mask/russian_balaclava, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"wSv" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"wSL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - 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/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wSM" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/bluespace_vendor/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"wSU" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/storage/medkit/regular{ - pixel_x = 2 - }, -/obj/item/healthanalyzer, -/obj/machinery/requests_console/directional/north{ - announcementConsole = 1; - department = "Chief Medical Officer's Desk"; - departmentType = 5; - name = "Chief Medical Officer's Requests Console" - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"wSY" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Satellite Antechamber"; - name = "satellite camera"; - network = list("minisat") - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat_interior) -"wTe" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/machinery/camera/directional/north{ - c_tag = "Supermatter Cooler"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/firealarm/directional/east, -/obj/structure/cable, -/obj/machinery/modular_computer/console/preset/engineering, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"wTx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"wTy" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"wTM" = ( -/obj/item/book/granter/action/spell/smoke/lesser, -/obj/structure/table/wood, -/turf/open/floor/cult, -/area/station/service/chapel/office) -"wTS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/poster/contraband/random/directional/east, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"wUT" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - name = "disposals sorting disposal pipe"; - sortType = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"wUU" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"wVb" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"wVc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"wVA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/command/teleporter) -"wVD" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/computer/operating, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/fore) -"wVE" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/security/brig) -"wVG" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"wVI" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/candy, -/obj/item/trash/chips, -/obj/effect/spawner/random/contraband/prison, -/obj/item/weldingtool/mini, -/turf/open/floor/iron/grimy, -/area/station/security/prison/safe) -"wVR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"wVX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"wWk" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"wWm" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"wWp" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"wWB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"wWD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/wrench, -/obj/item/crowbar, -/obj/item/analyzer, -/obj/item/analyzer, -/turf/open/floor/iron/dark, -/area/station/science/research) -"wWQ" = ( -/obj/effect/turf_decal/siding/wood/end{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/grunge{ - name = "Chapel Office" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, -/turf/open/floor/carpet/royalblue, -/area/station/service/chapel) -"wWW" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall, -/area/station/maintenance/disposal/incinerator) -"wXa" = ( -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"wXt" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/bodybags{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/box/bodybags{ - pixel_y = 2 - }, -/obj/item/wirecutters, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"wXv" = ( -/obj/structure/railing, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"wXM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"wYb" = ( -/obj/structure/window/reinforced/spawner/north, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"wYi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"wYk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/trimline/blue/end{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"wYx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"wYA" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/service/chapel/monastery) -"wYC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"wYR" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"wYW" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder/red, -/obj/item/stamp/denied{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stamp/hos, -/turf/open/floor/carpet/red, -/area/station/command/heads_quarters/hos) -"wYX" = ( -/obj/structure/sign/warning, -/turf/closed/wall, -/area/station/maintenance/port/lesser) -"wZW" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"wZZ" = ( -/obj/machinery/atmospherics/components/unary/passive_vent{ - name = "server vent" - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/science/server) -"xad" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/space/nearstation) -"xaf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"xag" = ( -/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/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"xap" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/sign/departments/security/directional/north, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"xau" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/recharge_station, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/storage) -"xav" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"xaz" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"xaC" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Chemistry South"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"xaZ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig) -"xbk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/station/maintenance/disposal/incinerator) -"xbx" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/stripes/line, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"xbH" = ( -/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/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"xbZ" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/effect/turf_decal/delivery, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"xca" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"xcf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/light/small/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/passive_vent{ - dir = 4; - name = "killroom vent" - }, -/turf/open/floor/circuit/telecomms, -/area/station/science/xenobiology) -"xcj" = ( -/obj/effect/turf_decal/siding/green, -/obj/machinery/door/firedoor/border_only/closed, -/turf/open/misc/sandy_dirt, -/area/station/service/hydroponics/garden) -"xck" = ( -/obj/machinery/power/tracker, -/obj/effect/turf_decal/box, -/obj/structure/cable, -/turf/open/floor/iron/solarpanel/airless, -/area/station/solars/starboard/aft) -"xcp" = ( -/obj/structure/chair/pew/left{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"xcE" = ( -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"xcJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/service/library) -"xcR" = ( -/obj/structure/flora/grass/jungle/a/style_random{ - icon_state = "bushc2" - }, -/turf/open/misc/asteroid, -/area/space/nearstation) -"xcT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"xcU" = ( -/obj/structure/closet/secure_closet/quartermaster, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/gun/energy/e_gun/mini, -/turf/open/floor/iron/dark, -/area/station/cargo/qm) -"xcV" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"xdc" = ( -/obj/machinery/camera/autoname/directional/west, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"xdl" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/head/helmet/justice/escape{ - name = "justice helmet" - }, -/turf/open/floor/iron/dark, -/area/station/security/office) -"xds" = ( -/obj/structure/bed, -/obj/effect/landmark/start/assistant, -/obj/item/bedsheet/dorms, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/commons/locker) -"xef" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"xeh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"xeo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Gravity Generator Chamber" - }, -/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/construction, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"xeq" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/hallway) -"xev" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/siding/blue/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"xex" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"xeI" = ( -/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/electrical) -"xeP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"xeT" = ( -/obj/machinery/power/smes, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electric_shock/directional/south, -/obj/structure/spider/stickyweb, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"xfe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/table, -/obj/item/storage/box/evidence{ - pixel_y = 5 - }, -/obj/item/restraints/handcuffs/cable/zipties, -/obj/item/flashlight/seclite, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"xfx" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/maintenance/department/security) -"xfU" = ( -/obj/item/circuitboard/computer/solar_control, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) -"xfV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"xfZ" = ( -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/grassy/style_random, -/obj/structure/flora/bush/flowers_br/style_random, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/grass, -/area/station/medical/psychology) -"xgs" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/processing) -"xgz" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"xgC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/central/fore) -"xgM" = ( -/obj/machinery/light_switch/directional/west, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/item/kirbyplants{ - icon_state = "plant-02" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"xgV" = ( -/obj/item/trash/candy, -/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, -/area/station/maintenance/port/fore) -"xha" = ( -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"xhe" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/mob/living/simple_animal/hostile/russian{ - environment_smash = 0; - loot = list(/obj/effect/mob_spawn/corpse/human/russian); - name = "Russian Mobster" - }, -/turf/open/floor/carpet/green, -/area/station/maintenance/port/greater) -"xhi" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/sign/departments/chemistry/directional/west, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/lobby) -"xhl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/iron, -/area/station/security/courtroom) -"xhH" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"xhI" = ( -/obj/machinery/hydroponics/soil, -/obj/item/shovel/spade, -/obj/item/cultivator{ - pixel_x = 8 - }, -/obj/structure/cable, -/turf/open/floor/grass, -/area/station/security/prison/garden) -"xhJ" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"xhY" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"xin" = ( -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/machinery/recharger, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"xiA" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/machinery/photocopier, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/cargo/sorting) -"xiC" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/central) -"xja" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/vacuum/external/directional/west, -/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/plating, -/area/station/maintenance/port/greater) -"xjl" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/keycard_auth/directional/north{ - pixel_x = -6 - }, -/obj/machinery/light_switch/directional/north{ - pixel_x = 12 - }, -/obj/item/radio/intercom/directional/east, -/mob/living/simple_animal/parrot/poly, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"xjr" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"xju" = ( -/obj/item/storage/medkit/regular, -/obj/machinery/light/directional/east, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/newscaster/directional/east, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"xjv" = ( -/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/caution/stand_clear, -/obj/machinery/door/airlock/public/glass{ - name = "Chapel Hallway" - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/fore) -"xjB" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/noticeboard/directional/north, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xjI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - 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, -/area/station/medical/morgue) -"xjO" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Fore Hallway Monastary Hall"; - name = "fore camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/hallway/primary/central/fore) -"xjR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "Satellite Access" - }, -/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, -/obj/effect/mapping_helpers/airlock/access/all/command/minisat, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) -"xke" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"xki" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"xkj" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"xky" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - dir = 4; - name = "old sink"; - pixel_x = -12 - }, -/turf/open/floor/plating, -/area/station/security/prison) -"xkP" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/storage/photo_album{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/taperecorder{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/camera, -/obj/item/pen{ - pixel_x = -7; - pixel_y = -5 - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Library Backroom"; - name = "library camera" - }, -/obj/structure/sign/painting/large/library_private{ - dir = 8; - pixel_x = -29 - }, -/turf/open/floor/iron/dark, -/area/station/service/library) -"xle" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"xlf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Office" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/navigate_destination, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron/dark, -/area/station/cargo/office) -"xlk" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"xlr" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/table, -/obj/item/book/manual/wiki/chemistry{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/book/manual/wiki/grenades, -/obj/item/book/manual/wiki/plumbing{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/item/reagent_containers/dropper, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"xlA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/security/prison) -"xlB" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/wood, -/area/station/service/library) -"xlD" = ( -/obj/structure/window/reinforced/plasma{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/power/energy_accumulator/grounding_rod/anchored, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/engineering/supermatter) -"xlF" = ( -/obj/structure/flora/bush/grassy/style_random, -/turf/open/floor/grass, -/area/station/service/chapel) -"xlG" = ( -/obj/structure/chair/sofa/corner{ - color = "#c45c57" - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/starboard/fore) -"xmn" = ( -/obj/structure/chair/pew/right{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark, -/turf/open/floor/iron/chapel{ - dir = 4 - }, -/area/station/service/chapel) -"xms" = ( -/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, -/area/station/security/courtroom) -"xmB" = ( -/obj/effect/turf_decal/stripes/line{ - 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/engine, -/area/station/ai_monitored/turret_protected/ai) -"xmD" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"xmI" = ( -/obj/structure/flora/grass/jungle/b/style_random, -/obj/structure/flora/bush/flowers_br/style_random, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/grass, -/area/station/medical/psychology) -"xmO" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrig"; - name = "Brig" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-entrance-right" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"xmQ" = ( -/obj/machinery/door/airlock/external{ - name = "External Airlock" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"xnm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"xnC" = ( -/obj/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/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/theater) -"xnJ" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/clipboard, -/obj/item/paper/fluff/holodeck/disclaimer, -/obj/item/pen, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"xnK" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"xnU" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/chair, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"xnZ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/hallway) -"xoh" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/warning/fire/directional/west{ - pixel_y = -32 - }, -/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/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"xoI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/holopad, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"xoK" = ( -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/grassy/style_random, -/obj/structure/flora/bush/ferny/style_random, -/turf/open/floor/grass, -/area/station/medical/virology) -"xoO" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"xoT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"xpa" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/office) -"xpk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/landmark/blobstart, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"xpv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/vending/coffee, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"xpJ" = ( -/obj/machinery/telecomms/server/presets/supply, -/obj/machinery/light/directional/east, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"xpS" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/storage) -"xqf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance/office) -"xqm" = ( -/obj/structure/sign/warning/vacuum, -/turf/closed/wall/rust, -/area/station/cargo/warehouse) -"xqw" = ( -/turf/open/floor/bronze, -/area/station/maintenance/department/chapel) -"xqE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine" - }, -/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/general, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"xqQ" = ( -/obj/machinery/exoscanner, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"xrm" = ( -/obj/machinery/blackbox_recorder, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"xrp" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/window/brigdoor/right/directional/north{ - id = "Cell 6"; - name = "Cell 6"; - req_access = list("security") - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/brig) -"xrz" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/machinery/computer/atmos_control/plasma_tank{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/engineering/atmos) -"xrA" = ( -/obj/machinery/door/airlock/external{ - name = "External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"xrS" = ( -/turf/closed/wall/rust, -/area/station/security/execution/transfer) -"xsJ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"xsO" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/maintenance/starboard/fore) -"xsX" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/toilet/restrooms) -"xsZ" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Pure to Fuel Pipe" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"xta" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"xtc" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/siding/yellow{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"xtk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"xtt" = ( -/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 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"xtu" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/clothing/mask/gas/sechailer/swat, -/obj/item/screwdriver, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/office) -"xtC" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/computer/cargo/request, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"xtG" = ( -/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/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"xtO" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/table, -/obj/item/storage/toolbox/electrical, -/obj/item/clothing/mask/gas, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"xtV" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/closed/wall, -/area/station/maintenance/starboard) -"xun" = ( -/obj/structure/table, -/obj/item/clothing/suit/justice, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"xuA" = ( -/obj/machinery/vending/hydroseeds{ - slogan_delay = 700 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"xuG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/crate, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"xuM" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"xuR" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/chapel/monastery) -"xva" = ( -/obj/item/radio/intercom/directional/east, -/turf/closed/wall, -/area/station/maintenance/disposal) -"xvh" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/circular_saw, -/obj/item/scalpel{ - pixel_y = 16 - }, -/obj/item/hemostat, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"xvj" = ( -/obj/structure/flora/bush/stalky/style_random, -/obj/structure/flora/bush/flowers_br/style_random, -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/bush/sparsegrass/style_random, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"xvr" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/iron/showroomfloor, -/area/station/science/server) -"xvy" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"xvF" = ( -/obj/machinery/firealarm/directional/north, -/obj/machinery/door/poddoor/preopen{ - id = "prisonblast"; - name = "Prison Blast Door" - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"xvG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Autopsy" - }, -/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/security/detective, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"xvM" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"xvP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"xvW" = ( -/turf/closed/wall, -/area/station/medical/paramedic) -"xwk" = ( -/obj/machinery/computer/security/mining, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"xwn" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"xwt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"xwE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"xwJ" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/clothing/glasses/welding, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 1 - }, -/obj/item/storage/box/donkpockets{ - pixel_y = 5 - }, -/turf/open/floor/iron/dark, -/area/station/science/lab) -"xwO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/paramedic, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/paramedic) -"xwU" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/storage/box/bodybags{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/box/bodybags{ - pixel_y = 2 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"xxk" = ( -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/cmo) -"xxz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/item/storage/box/bodybags{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/box/bodybags{ - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/paramedic) -"xxJ" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/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/cable, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"xxM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"xxN" = ( -/obj/machinery/portable_atmospherics/canister/plasma, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"xxP" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"xxQ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/pdapainter/supply, -/turf/open/floor/iron/dark, -/area/station/cargo/qm) -"xye" = ( -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"xym" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/poster/official/enlist{ - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"xyp" = ( -/obj/structure/rack, -/obj/item/plant_analyzer, -/obj/item/plant_analyzer{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/cultivator, -/obj/effect/spawner/random/food_or_drink/seed, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/bridge) -"xzc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"xzi" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "East Ports to Engine" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xzA" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/machinery/camera/directional/east{ - c_tag = "Medbay Psychology Office"; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/psychology) -"xzC" = ( -/obj/effect/turf_decal/siding/wood, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/carpet/royalblue, -/area/station/service/chapel/office) -"xzI" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air, -/obj/item/wrench, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/miningoffice) -"xzS" = ( -/obj/machinery/chem_master, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "chemistry_shutters"; - name = "Lobby Shutters Toggle"; - pixel_x = 24; - req_one_access = list("medical","pharmacy") - }, -/turf/open/floor/iron/dark, -/area/station/medical/pharmacy) -"xAI" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 5 - }, -/turf/closed/wall, -/area/station/engineering/atmos) -"xAK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"xAL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"xAQ" = ( -/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/security/prison) -"xAW" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"xBd" = ( -/obj/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/service/chapel/monastery) -"xBi" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"xBs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/spawner/random/trash/grille_or_waste, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"xBw" = ( -/obj/structure/flora/grass/jungle/b/style_random, -/obj/structure/flora/bush/sparsegrass/style_random, -/turf/open/floor/grass, -/area/station/security/prison/garden) -"xBz" = ( -/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/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"xBI" = ( -/turf/closed/wall/rust, -/area/station/maintenance/port/fore) -"xCa" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/siding/wood/corner, -/obj/structure/disposalpipe/segment, -/obj/structure/sink/kitchen{ - dir = 8; - pixel_x = 12; - pixel_y = 4 - }, -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"xCh" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"xCp" = ( -/obj/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/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/stairs, -/area/station/service/chapel) -"xCq" = ( -/obj/effect/spawner/random/vending/snackvend, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/poster/official/the_owl{ - pixel_x = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/port) -"xCr" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/suit_storage_unit/engine, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"xCy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"xCz" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/tcomms_all, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"xCA" = ( -/obj/structure/chair/pew/left{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"xCP" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"xCY" = ( -/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 - }, -/obj/machinery/door/window{ - atom_integrity = 300; - base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - layer = 4.1; - name = "Secondary AI Core Access"; - pixel_x = 4; - req_access = list("ai_upload") - }, -/turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai) -"xDb" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/hallway/primary/central/fore) -"xDc" = ( -/turf/closed/wall, -/area/station/commons/fitness/recreation) -"xDm" = ( -/obj/machinery/light_switch/directional/west, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/structure/filingcabinet, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"xDE" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Prison Cafeteria"; - network = list("ss13","prison") - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"xDG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/security/prison) -"xDP" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/fore) -"xEm" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/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/showroomfloor, -/area/station/medical/medbay/lobby) -"xEB" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/power/emitter, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"xEV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"xEZ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/machinery/camera/directional/west{ - c_tag = "Teleporter Access"; - name = "command camera" - }, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"xFt" = ( -/obj/structure/flora/grass/jungle/a/style_random, -/obj/structure/flora/bush/ferny/style_random, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/grass, -/area/station/medical/psychology) -"xFE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/chemistry) -"xFI" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"xFM" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - name = "dormitories sorting disposal pipe"; - sortType = 26 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"xFQ" = ( -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"xGh" = ( -/obj/machinery/computer/telecomms/server, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"xGw" = ( -/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) -"xGy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"xGN" = ( -/obj/structure/cable, -/turf/open/floor/plating/rust, -/area/station/security/prison) -"xGQ" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"xHc" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"xHn" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/item/clothing/gloves/color/black, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"xHP" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"xHR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) -"xHU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"xIm" = ( -/obj/machinery/door/airlock/engineering{ - name = "Emergency Storage" - }, -/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 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"xIq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/camera/directional/south{ - c_tag = "AI Chamber Door"; - name = "core camera"; - network = list("aicore") - }, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/ai) -"xIB" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xIJ" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"xIM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/circuit/telecomms, -/area/station/science/xenobiology) -"xIQ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Operating Theatre Secondary"; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/item/radio/intercom/directional/south, -/obj/machinery/computer/operating{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"xIS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/newscaster/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Fore Hallway Monastary Tube"; - name = "fore camera" - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/hallway/primary/fore) -"xJc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"xJn" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/south, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) -"xJs" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/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/engineering/atmos) -"xJB" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/computer/scan_consolenew{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"xJK" = ( -/obj/item/clothing/head/helmet/justice/escape{ - name = "justice helmet" - }, -/obj/structure/sign/poster/official/the_owl{ - pixel_y = 32 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"xJN" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/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/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/pharmacy) -"xKn" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/chair/stool/bar/directional/west, -/turf/open/floor/carpet/green, -/area/station/maintenance/port/greater) -"xKr" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/medbay/lobby) -"xKO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"xKP" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/solars/port/aft) -"xKT" = ( -/obj/structure/chair/sofa/bench/right{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/chapel/monastery) -"xKW" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mech Bay Maintenance" - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/robotics, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"xLd" = ( -/obj/structure/closet/crate/freezer/blood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/aft) -"xLk" = ( -/obj/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, -/obj/machinery/duct, -/obj/machinery/door/airlock{ - name = "Service Hall" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/general, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) -"xLC" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/iron/dark/telecomms, -/area/station/science/server) -"xLH" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"xLL" = ( -/obj/structure/cable, -/obj/machinery/power/tracker, -/turf/open/floor/iron/solarpanel/airless, -/area/station/solars/port/aft) -"xLM" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"xLU" = ( -/obj/effect/turf_decal/tile/red{ - 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, -/area/station/hallway/primary/aft) -"xLX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"xMs" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Distro to Waste" - }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/pumproom) -"xMC" = ( -/obj/structure/table/wood, -/obj/item/paper/guides/jobs/security/courtroom, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/courtroom) -"xML" = ( -/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/stripes/line{ - dir = 4 - }, -/obj/machinery/door/airlock/command{ - name = "Captain's Office" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/command/captain, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/captain) -"xMM" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/structure/bodycontainer/morgue, -/turf/open/floor/iron/dark, -/area/station/security/medical) -"xMN" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/washing_machine, -/obj/machinery/light/directional/east, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron/showroomfloor, -/area/station/commons/toilet/restrooms) -"xNc" = ( -/turf/closed/wall/r_wall/rust, -/area/station/command/heads_quarters/cmo) -"xNe" = ( -/turf/closed/wall, -/area/station/cargo/sorting) -"xNk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/sign/warning/secure_area/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"xNq" = ( -/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/structure/cable, -/obj/structure/sign/poster/contraband/random/directional/east, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"xNu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Closet" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"xNJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"xNN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Dock" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron/dark, -/area/station/cargo/miningoffice) -"xNP" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/structure/cable, -/turf/open/floor/circuit/red, -/area/station/engineering/supermatter/room) -"xOa" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packagereturn"; - name = "crate return belt" - }, -/obj/machinery/door/window/left/directional/west{ - dir = 1; - name = "Crate Return Door"; - req_access = list("shipping") - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/cargo/storage) -"xOg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"xOh" = ( -/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/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"xOq" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/locker) -"xOu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"xOB" = ( -/turf/closed/wall/r_wall/rust, -/area/station/engineering/main) -"xOF" = ( -/obj/structure/sign/poster/contraband/missing_gloves, -/turf/closed/wall/rust, -/area/station/maintenance/starboard) -"xOI" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/lobby) -"xOP" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"xOX" = ( -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter) -"xPc" = ( -/obj/structure/table, -/obj/item/storage/box/prisoner, -/obj/item/restraints/handcuffs, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron, -/area/station/security/processing) -"xPk" = ( -/turf/closed/wall, -/area/station/maintenance/department/bridge) -"xPy" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/disposalpipe/segment, -/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/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) -"xPO" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"xPT" = ( -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"xPY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"xQq" = ( -/obj/machinery/rnd/production/techfab/department/medical, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"xQL" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/light/directional/south, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"xQU" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Satellite Atmospherics"; - name = "satellite camera"; - network = list("minisat") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/ai_monitored/turret_protected/aisat/atmos) -"xRm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/command{ - name = "Chief Engineer's Office" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"xRv" = ( -/obj/machinery/recharge_station, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"xRB" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"xRC" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"xRE" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/ai_monitored/command/nuke_storage) -"xRL" = ( -/obj/effect/turf_decal/tile/neutral{ - 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/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"xRM" = ( -/obj/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/border_only{ - dir = 8 - }, -/turf/open/floor/iron/stairs/medium{ - dir = 4 - }, -/area/station/service/chapel/monastery) -"xRZ" = ( -/obj/machinery/airalarm/directional/east, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"xSi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/station/science/genetics) -"xSn" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"xSp" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot_white, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"xSs" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"xSC" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Aft Hallway Security Doors"; - name = "aft camera" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"xSO" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/storage/belt/utility, -/obj/item/clothing/head/welding, -/obj/item/clothing/glasses/welding, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/west, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"xST" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/cmo) -"xSU" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/railing/corner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"xTt" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/south, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"xTx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) -"xTG" = ( -/turf/closed/wall, -/area/station/maintenance/solars/starboard/aft) -"xTH" = ( -/obj/machinery/computer/exoscanner_control{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/newscaster/directional/south, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/cargo/drone_bay) -"xTI" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"xUk" = ( -/obj/machinery/computer/security/wooden_tv, -/obj/structure/table/wood, -/turf/open/floor/carpet/royalblue, -/area/station/command/heads_quarters/captain) -"xUm" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"xUy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/command{ - name = "Captain's Tactical Relocation" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/access/all/command/captain, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/captain) -"xUB" = ( -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/nineteen_nineteen, -/obj/structure/table/rolling, -/obj/item/storage/crayons{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/effect/spawner/random/contraband/prison, -/obj/item/storage/crayons{ - pixel_x = -6; - pixel_y = 1 - }, -/obj/item/paper_bin{ - pixel_x = 11; - pixel_y = 4 - }, -/obj/item/pen{ - pixel_x = 13; - pixel_y = 9 - }, -/obj/item/pen{ - pixel_x = 11; - pixel_y = 6 - }, -/obj/item/pen{ - pixel_x = 11; - pixel_y = 4 - }, -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/security/prison) -"xUE" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/item/folder/white, -/obj/item/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters"; - name = "Chemistry Lobby Shutters"; - dir = 1 - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/window/left/directional/north{ - dir = 2; - name = "Chemistry Desk"; - req_access = list("pharmacy") - }, -/turf/open/floor/plating, -/area/station/medical/pharmacy) -"xUP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/sign/warning/vacuum/external/directional/east, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"xUQ" = ( -/obj/structure/closet/cardboard, -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"xVm" = ( -/turf/closed/wall/r_wall/rust, -/area/station/engineering/gravity_generator) -"xVo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"xVt" = ( -/obj/machinery/door/airlock/security{ - id_tag = "IsolationCell"; - name = "Isolation Cell" - }, -/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/security/brig, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"xVu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/vacuum/directional/east, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"xVz" = ( -/obj/structure/chair/comfy/brown, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/crew_quarters/bar) -"xVC" = ( -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/bomb) -"xVH" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/photocopier, -/obj/item/newspaper{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/newspaper, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/greater) -"xVK" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/storage) -"xVN" = ( -/obj/machinery/button/ignition/incinerator/ordmix{ - pixel_x = -6; - pixel_y = 30 - }, -/obj/machinery/button/door/incinerator_vent_ordmix{ - pixel_x = 8; - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/iron/showroomfloor, -/area/station/science/ordnance) -"xWh" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/disposal/incinerator) -"xWm" = ( -/obj/item/kirbyplants/random, -/obj/machinery/status_display/ai/directional/east, -/obj/machinery/camera/directional/north{ - c_tag = "ai_upload Turrets"; - name = "upload camera"; - network = list("aiupload") - }, -/turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) -"xWq" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"xWw" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/service/janitor) -"xWJ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"xWK" = ( -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/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/west, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/starboard) -"xWS" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall/rust, -/area/station/maintenance/starboard) -"xXo" = ( -/obj/structure/sign/departments/xenobio, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/fore) -"xXp" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/secondary/service) -"xXx" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/table, -/obj/item/multitool, -/obj/item/toy/figure/cargotech{ - pixel_x = -9 - }, -/obj/item/toy/figure/miner{ - pixel_x = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/camera/directional/east{ - c_tag = "Cargo Office"; - name = "cargo camera"; - network = list("ss13","qm") - }, -/turf/open/floor/iron/dark, -/area/station/cargo/office) -"xXz" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/firealarm/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"xYa" = ( -/obj/machinery/computer/monitor{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/shuttle{ - pixel_x = 32 - }, -/obj/machinery/computer/security/telescreen/minisat{ - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) -"xYr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"xYx" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/storage) -"xYz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/bar) -"xYE" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sign/warning/secure_area/directional/west, -/obj/machinery/suit_storage_unit/standard_unit{ - desc = "An industrial suit storage device carrying retro space suits. Neat!"; - helmet_type = /obj/item/clothing/head/helmet/space; - suit_type = /obj/item/clothing/suit/space - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"xYK" = ( -/obj/effect/turf_decal/tile/red{ - 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/security/brig) -"xYY" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"xZi" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/commons/storage/art) -"xZn" = ( -/obj/machinery/firealarm/directional/west, -/obj/item/reagent_containers/glass/bottle/ammonia, -/obj/structure/rack, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/obj/item/watertank/janitor, -/turf/open/floor/iron/grimy, -/area/station/security/prison/safe) -"xZr" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) -"xZL" = ( -/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/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"xZO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/door/window/left/directional/north{ - name = "Library Desk Access"; - req_access = list("library") - }, -/turf/open/floor/iron/dark, -/area/station/service/library) -"yad" = ( -/obj/machinery/door/poddoor/massdriver_ordnance, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plating, -/area/station/maintenance/starboard) -"yah" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/ai_monitored/command/storage/satellite) -"yaC" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/event_spawn, -/obj/effect/spawner/random/trash/mess, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"yaE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/showroomfloor, -/area/station/security/office) -"yaF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"yaG" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload) -"yaK" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/airalarm/directional/east, -/obj/machinery/light_switch/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/genetics) -"yaM" = ( -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/item/folder/white{ - pixel_x = 6 - }, -/obj/item/storage/medkit/regular, -/obj/machinery/door/window/left/directional/north{ - name = "Emergency Storage"; - req_access = list("command") - }, -/obj/machinery/camera/directional/south{ - c_tag = "Bridge Emergency Supplies"; - name = "command camera" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"yaN" = ( -/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/cable, -/obj/structure/sign/poster/contraband/random/directional/south, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"yaY" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"yaZ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - 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, -/obj/effect/landmark/start/chemist, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/medical/pharmacy) -"ybm" = ( -/obj/structure/table/wood, -/obj/item/lipstick/purple{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/lipstick/random, -/obj/item/lipstick/jade{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/wood, -/area/station/service/theater) -"ybH" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"ycd" = ( -/obj/machinery/computer/upload/ai{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"ycp" = ( -/mob/living/simple_animal/hostile/asteroid/hivelord, -/turf/open/misc/asteroid/lowpressure, -/area/space/nearstation) -"ycr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/item/weldingtool, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/bridge) -"ycs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance" - }, -/obj/structure/sign/directions/evac{ - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/aft) -"ycx" = ( -/turf/closed/wall/rust, -/area/station/maintenance/port/greater) -"ycy" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"ycF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/security/brig) -"ycL" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/siding/wood/corner, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"ydh" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/brig) -"ydw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 8 - }, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"ydV" = ( -/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/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"ydW" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"yef" = ( -/obj/item/target/clown, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/camera/preset/ordnance{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/bomb) -"yej" = ( -/obj/structure/chair/sofa/bench{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/primary/central/fore) -"yem" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/aft) -"yeo" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"yeA" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/item/crowbar/red, -/obj/machinery/recharger, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/captain) -"yeH" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/hostile/retaliate/ghost, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"yeK" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/obj/effect/spawner/random/structure/crate_abandoned, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"yeY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/noticeboard/directional/north{ - dir = 2; - name = "Chapel Notice Board" - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/hallway/primary/fore) -"yfc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"yfq" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/horizontal{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating, -/area/space/nearstation) -"yfv" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/supply/qm, -/obj/machinery/door/airlock/command/glass{ - name = "Quartermaster's Office" - }, -/turf/open/floor/iron/dark, -/area/station/cargo/qm) -"yfA" = ( -/obj/machinery/door/firedoor, -/obj/structure/sign/directions/medical{ - dir = 8; - pixel_x = 32; - pixel_y = 8 - }, -/obj/structure/sign/directions/security{ - pixel_x = 32 - }, -/obj/structure/sign/directions/command{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/effect/turf_decal/caution/stand_clear, -/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/central/fore) -"yfP" = ( -/obj/structure/grille, -/obj/structure/cable, -/turf/open/floor/plating/rust, -/area/station/security/prison) -"yfS" = ( -/obj/machinery/light/small/directional/west, -/mob/living/simple_animal/chicken, -/turf/open/misc/sandy_dirt, -/area/station/service/hydroponics/garden) -"ygj" = ( -/obj/item/radio/intercom/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/command/bridge) -"ygt" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"ygA" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Security"; - location = "Courtroom"; - name = "courtroom navigation beacon" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"ygO" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"ygU" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"ygV" = ( -/obj/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, -/obj/machinery/camera/directional/north{ - c_tag = "Service Hall"; - name = "service camera" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plastic, -/area/station/hallway/secondary/service) -"yhc" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/departments/cargo/directional/east{ - pixel_y = -32 - }, -/turf/open/floor/iron/dark/textured, -/area/station/hallway/primary/starboard) -"yhf" = ( -/obj/structure/sign/warning, -/turf/closed/wall/r_wall, -/area/station/maintenance/port/lesser) -"yhh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"yhr" = ( -/obj/structure/table/wood/fancy/black, -/obj/machinery/firealarm/directional/east, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/iron/dark, -/area/station/service/chapel/monastery) -"yhw" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/security/office) -"yhI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/effect/landmark/blobstart, -/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/morgue) -"yhR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/directional/west, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/starboard) -"yhU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"yhW" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/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, -/area/station/engineering/atmos) -"yip" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) -"yiF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/machinery/airalarm/directional/west, -/obj/item/toy/figure/borg{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"yiK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Tool Storage" - }, -/turf/open/floor/iron/dark, -/area/station/commons/storage/primary) -"yiN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"yiW" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"yjd" = ( -/obj/structure/sign/departments/security, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/nuke_storage) -"yji" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) -"yjj" = ( -/obj/machinery/door/firedoor, -/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 = "Robotics Lab" - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple/corner, -/obj/effect/mapping_helpers/airlock/access/all/science/robotics, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"yjq" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) -"yjM" = ( -/obj/machinery/plate_press, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/security/prison) -"yjV" = ( -/obj/machinery/computer/crew{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"yjW" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/requests_console/directional/west{ - department = "Security"; - departmentType = 5; - name = "Security Requests Console"; - pixel_y = -32 - }, -/obj/machinery/button/door/directional/west{ - id = "brigcelldoor"; - name = "Cell Blast Door Toggle"; - pixel_y = -6 - }, -/obj/machinery/button/door/directional/west{ - id = "brigfrontdoor"; - name = "Front Blast Door Toggle"; - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/warden) -"ykb" = ( -/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/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/duct, -/turf/open/floor/iron/showroomfloor, -/area/station/service/bar/atrium) -"ykv" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/chapel/monastery) -"ykB" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"ykK" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/frame/computer{ - anchored = 1; - dir = 4 - }, -/obj/effect/turf_decal/bot_white, -/obj/structure/noticeboard/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"ykO" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder/red, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/carpet/green, -/area/station/security/detectives_office) -"ykP" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/starboard) -"yld" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/security/brig) -"ylu" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/security/brig) -"ylD" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"ylM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"ylP" = ( -/obj/effect/spawner/random/structure/crate, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/crew_quarters/bar) -"ylT" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/cell_charger, -/obj/item/assembly/prox_sensor{ - desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/assembly/prox_sensor{ - desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/assembly/prox_sensor{ - desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/assembly/prox_sensor{ - desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/item/crowbar/red, -/obj/item/toy/figure/roboticist{ - pixel_x = 6 - }, -/obj/machinery/light/directional/north, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"yma" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) - -(1,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(2,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(3,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(4,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(5,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(6,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(7,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(8,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(9,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(10,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(11,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(12,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(13,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -jyr -aeu -aaa -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(14,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aUz -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(15,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -cmU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(16,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aaa -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -cmU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(17,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeU -aeU -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aUz -aeU -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(18,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeU -mWy -mWy -mWy -mWy -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(19,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeu -dWG -wSh -dWG -nKO -mWy -vUO -esv -mWy -ifQ -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(20,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -cmU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeU -aeU -aeU -aeu -nKO -eJN -eJN -toh -nIW -koi -huo -pbx -gSc -isS -xUB -sAv -aeU -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(21,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -aeu -aeU -aeU -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeU -amq -aeU -aeu -dWG -dmw -tzh -toh -piH -ftd -huo -oQv -dxf -mJA -eEi -mWy -aeU -coy -aeU -aeU -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(22,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeU -aeU -aeu -aeU -aeU -aeu -aeU -aeU -aeU -aeu -aaa -aaa -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeU -aeu -aeu -dWG -sfi -wJw -dWG -dWG -xVt -dWG -cuS -kvU -mTM -mRm -sAv -aUz -aeU -aeU -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(23,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -cmU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cAY -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeU -dWG -dWG -jLk -dWG -dNL -mIW -lrq -gDl -sHX -mTM -oNf -lrq -mWy -mWy -mWy -sAv -sAv -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(24,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aeU -aeU -aeU -aeU -cmU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeU -aeU -mWy -gCY -gYA -aDD -aDD -hkF -mqC -cUw -pSN -hhp -aDD -clR -mqC -aDD -sza -kiW -mWy -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(25,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aUz -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aUz -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeU -aeU -mWy -cOf -kkV -eCu -kkV -kkV -goj -kkV -baG -mUA -kkV -gYA -goj -gYA -kkV -ssF -mWy -aeu -aUz -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(26,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeU -dWG -dWG -gMq -dWG -dWG -aes -dWG -sAv -sAv -xGN -gyb -gyb -sAv -pCP -sAm -wkP -mWy -aeU -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(27,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -dWG -mmo -wJw -toh -fmm -wJw -dWG -aaa -mWy -tFn -ajw -ajw -hvB -cOf -kkV -sAv -sAv -aeU -umr -jYh -myp -myp -jYh -jYh -gyf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(28,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -aeU -aeU -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aeu -aeu -aUz -aeu -dWG -hYo -bNO -dWG -hYo -bNO -dWG -aaa -mWy -hhi -xlA -xlA -mWy -jYo -kkV -sAv -aeU -aeU -myp -cqQ -vcY -haP -xhI -aJM -myp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(29,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vku -nKO -eJN -eJN -nKO -eJN -eJN -nKO -qJs -sAv -xDG -xlA -xlA -mWy -wBf -kkV -myp -jYh -jYh -myp -xvy -tAM -tYe -ucS -bmn -jYh -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(30,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aUz -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -acm -acm -acK -acm -acm -acm -acm -acm -sAv -woG -bMw -xlA -yfP -mqC -ezC -iQg -smC -smC -iQg -aVt -sBJ -irN -sEN -xBw -jYh -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(31,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aaa -acK -aaa -aaa -aaa -aaa -aaa -mWy -glo -jsI -xlA -sAv -aDD -kkV -myp -jYh -jYh -myp -myU -cyZ -uXl -pOo -bBY -jYh -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(32,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aaa -aaa -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aaa -acK -aaa -aaa -aaa -aaa -aaa -twX -nQK -twX -twX -twX -ngI -goj -sAv -coy -aeU -myp -agx -bHM -pOO -oxC -umA -myp -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(33,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -wPq -vLI -vhK -vhK -vLI -wPq -aeU -aeU -aeU -cmU -aeU -aeU -aeU -aeU -aeU -aaa -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aUz -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -acm -aaa -aaa -acm -aaa -aaa -aaa -aaa -aaa -giH -mTJ -tMu -lhv -twX -mqC -jhP -sAv -sAv -sAv -myp -jYh -myp -rEs -rec -sYe -myp -aeU -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(34,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeU -aap -aeu -aeu -aeu -aeu -aeu -aeu -sxi -tfI -sxi -aeu -aeu -aeu -aeu -aeu -wPq -hAM -jgN -jgN -xaz -vLI -aeU -aeU -agt -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeU -aeU -aeu -aeu -aeU -aeU -aaa -aaa -aaa -acm -aaa -aaa -qJs -aaa -aaa -aaa -aaa -aaa -twX -rpB -kYP -pKm -uzK -cOf -kkV -dAu -qWN -sAv -aeU -aeU -jYh -tdY -ptQ -tgh -myp -cui -aeU -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(35,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeU -aeU -aeu -aeu -aeU -aeU -aeu -sxi -sxi -urM -sxi -tfI -aeu -aeu -aeu -aeu -vLI -tDk -tDk -tDk -vkL -wPq -aeU -aeU -aeU -cmU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeU -aaa -aaa -acm -aaa -aaa -acm -aaa -aaa -aaa -aaa -aaa -twX -miK -lPU -tns -twX -jYo -ezC -jrT -pLi -mWy -aeU -aUz -umr -myp -jYh -jYh -myp -aeU -aeu -aeu -ckn -aeo -acm -acm -aeo -ckn -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(36,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aUz -aeU -aeU -aeU -aeU -aeU -aeU -aeu -tfI -wTM -cmQ -uDn -sxi -aeu -aeu -aeu -aeu -wPq -bZQ -gtT -gtT -jmK -vLI -aeu -aeU -aeU -cmU -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeU -aaa -aaa -aeU -aeu -aeu -aeu -mtV -mtV -hBJ -hBJ -mtV -aeu -aeu -aeu -aaa -acm -aaa -aaa -acK -aaa -aaa -aaa -aaa -aaa -twX -hTQ -twX -nQK -twX -kbC -kkV -avs -yjM -sAv -aeU -aeU -aeU -aeU -cmU -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(37,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -aeU -aeU -aeU -aaa -aaa -aaa -aeU -aeU -aeu -aeu -tfI -wIt -iJV -nfD -tfI -sxi -sxi -tfI -tfI -vLI -iHO -tDk -tDk -vkL -vLI -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeU -aaa -aaa -aeU -aeu -aeu -aeu -mtV -cfN -jZJ -aUh -mtV -aeu -aeu -aeu -aeu -vku -aUz -aaa -acK -aaa -aaa -aaa -aaa -aaa -mWy -huK -szK -xAQ -wkN -reX -fxV -sAv -sAv -sAv -aeU -aeU -aeU -aeU -cmU -aeu -aeu -aeu -ckn -aeo -aeo -acm -aeo -aeo -acm -vQF -ckn -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(38,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aeU -aeU -aeu -tfI -rTk -kGs -sxi -fXL -rTk -pah -kKa -jBl -rOz -hMN -hMN -hMN -ixn -wPq -vLI -vhK -wPq -lLN -wPq -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aeo -aaQ -aeo -aeo -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aeU -aeu -aeu -hBJ -ghl -jEw -gCf -hBJ -aeu -aeu -pqD -stu -pqD -iza -pqD -acK -aaa -aaa -aaa -aaa -aaa -mWy -qAg -kkV -dHe -jYo -aDD -kkV -sAv -xky -sAv -sAv -ifQ -cmU -cmU -cmU -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -ckn -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(39,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qJs -jyr -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aeU -aeU -aeU -aeu -sxi -qQf -eCU -dIn -pNA -rTk -aJm -dAS -dCd -hMN -rQG -onr -lJR -jgN -rOz -xdc -ovd -fUQ -ely -vLI -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aaa -acm -aaa -aaa -aaa -aeu -vku -acm -aaQ -aeo -aeo -acm -vjh -vjh -vjh -ycx -vjh -vjh -acm -vku -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aeu -aeu -aeu -mtV -mtV -wxa -hgL -hBJ -aeu -aeu -iza -tIu -pYm -iZV -tqD -acm -aaa -aaa -aaa -aaa -aaa -nKO -dWG -oCE -dWG -dWG -saW -oWG -lmr -bKj -bEv -gOG -tPH -aeU -cmU -aeu -aeu -aeU -aeU -aaa -xLL -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vQF -aeU -cmU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(40,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aUz -aeU -aeu -aeu -sxi -teL -itF -agc -qEV -fBt -wFu -aoM -kXw -mSE -fZz -kQT -kQT -kQT -oTd -qRT -qRT -biq -crI -vLI -aeu -aeu -aaa -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aeo -acm -aeo -aeo -aeo -aeo -aaQ -vku -aeu -aeu -aeu -aaa -aaa -aaa -aaa -vjh -dVN -qly -ykK -lqN -ycx -aaa -aeU -aeu -aeu -aeu -aeu -aeu -vku -aeo -aeo -aeu -aeu -aeu -vjh -nZt -hzE -xYr -vjh -vjh -vjh -pqD -jhB -atT -ccf -pqD -qJs -aaa -aaa -aaa -aaa -aaa -dWG -wEy -mbh -xZn -eJN -aAu -avT -gSF -dsn -oSG -drM -tPH -aeU -cmU -coy -aeU -aeU -aeU -aeU -bSt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -cmU -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(41,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -tfI -awR -kmt -iKT -svZ -rTk -vhL -ciR -xzC -hMN -aoX -alr -wcs -uHL -hMN -nSZ -kcy -cTz -weG -wPq -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -acm -aaa -aaa -acm -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -ycx -ufL -fIP -oiV -ssk -vjh -aaa -aUz -aeU -aeu -aeu -aeu -aeu -aaQ -aaa -aaa -aaa -vku -aeu -ycx -oxK -oTP -kZI -ybH -iqU -rph -pqD -iza -pqD -uzD -iza -acm -aaa -aaa -bpm -aaa -aaa -dWG -eXX -mbh -oUS -eJN -saW -rdo -tPH -gFL -oSG -wre -mEg -cmU -cmU -awn -awn -awn -awn -awn -awn -awn -awn -awn -awn -awn -aaa -aaa -acm -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(42,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -aeU -aeu -aeu -sxi -ycL -fwJ -fwJ -kmZ -rTk -dIh -kTa -riW -hMN -vvL -vvL -okr -vvL -hMN -hMN -hMN -hMN -vLI -wPq -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aeo -aaQ -aeo -aeo -aeo -acm -aaQ -anr -acm -acm -cmU -coy -aUz -aeU -aeu -aeu -aeu -aeu -vku -acm -vjh -xVH -xhe -oFt -gfc -vjh -aeU -aeU -vku -aeu -aeu -aeu -aeu -qJs -acK -acm -acK -qJs -aeu -vjh -lVD -uQn -bsZ -uoB -hPz -eeE -pqD -mMb -iza -ugY -pqD -acm -acm -iTq -gpH -iTq -cov -dWG -vgz -mbh -wVI -eJN -saW -rdo -tPH -eUd -oSG -xIJ -tPH -aeU -cmU -gUw -gUw -gUw -gUw -gUw -awn -gUw -gUw -gUw -gUw -gUw -aaa -aaa -aeo -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(43,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -ixB -ixB -hmh -ixB -ixB -tiv -sjG -sjG -tiv -tiv -tiv -wWQ -tiv -tiv -sQJ -sQJ -tiv -tiv -sQJ -siL -oiO -oiO -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aaa -acm -aaa -acm -aaa -grV -cmU -cmU -cmU -cmU -cmU -cmU -aeU -aeu -aeu -aeu -aeu -aaa -vjh -phh -rrQ -vjh -sYs -vjh -aeU -aeu -aeu -aeu -wDI -aeu -aeu -aDT -beK -cGA -beK -sRm -aeu -ycx -vjh -wNz -mnY -vjh -vjh -urN -cUD -gFE -txb -fji -pqD -wYX -iTq -iTq -dPK -iTq -iyk -yhf -dWG -fQO -dWG -dWG -jKZ -rdo -gSF -soZ -eOh -oWI -tPH -aeU -cmU -gUw -gUw -gUw -gUw -gUw -awn -gUw -gUw -gUw -gUw -gUw -aaa -aaa -aeo -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(44,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -hmh -wEj -shE -hJC -dJi -qhZ -vmZ -vmZ -bnn -kcI -toS -cCS -ukQ -oWc -xCp -nsZ -fyG -wKN -jFq -xqw -iGx -oiO -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aaQ -acm -hpG -hpG -hpG -ala -hpG -grV -hpG -hpG -hpG -hpG -hpG -cmU -aeU -aeu -aeu -vjh -vjh -ycx -ycx -eso -jqS -lql -xSp -vjh -ycx -vjh -vjh -ycx -vjh -vjh -aeu -aDU -aaa -aaa -aaa -aoe -aeu -vjh -aAR -mid -xnm -vjh -wot -upS -ycx -aTm -mgR -pwT -drG -pqD -kNP -tZP -duU -kzl -hxL -wDz -wKG -vmq -pfO -sJD -uJn -vRB -hTz -rOC -fWk -xDE -aKY -cmU -cmU -awn -awn -awn -awn -awn -awn -awn -awn -awn -awn -awn -aaa -aaa -acm -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(45,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -ixB -uGn -aXf -iqQ -snn -wXa -vmZ -eXY -gnh -joC -ehp -jIa -tfW -iMx -gnh -slr -rqG -cop -tiv -rfg -vtv -bJV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aeo -aeo -aaa -mMv -mMv -mMv -mMv -mMv -tpp -mMv -mMv -mMv -mMv -mMv -cmU -aeU -aof -aeu -ycx -whj -jKJ -vjh -jeZ -fJr -kJx -paM -fvr -cjx -aqt -lMx -tuP -xGQ -wuI -aeu -evE -aaa -aaa -aaa -evE -aeu -vjh -hah -rTS -fvB -ycx -oVz -aiI -ycx -pqD -iza -pqD -nZJ -iza -kWA -svC -qAE -qBz -sQt -wDz -ocq -kPd -tpd -sJD -hxd -rdo -cso -tWA -arX -ubN -tPH -aUz -cmU -gUw -gUw -gUw -gUw -gUw -awn -gUw -gUw -gUw -gUw -gUw -aaa -aaa -aeo -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(46,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -ixB -don -orz -fnN -oGu -vmZ -vmZ -vEv -pUb -pPw -jAu -qbE -jAu -pCX -gnp -rxp -vrs -rZc -tiv -jhc -oiO -oiO -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aaQ -acm -hpG -hpG -hpG -hpG -hpG -tpp -hpG -hpG -hpG -hpG -hpG -cmU -aeU -aeU -aeU -vjh -uWS -qrN -sjV -spr -xKn -uYp -iEy -vjh -eVP -vQY -xpk -pdE -lGY -vjh -aeu -jTt -aaa -aaa -aaa -lpF -aeu -vjh -ycx -dsm -vjh -vjh -aAT -xOh -vjh -fzu -xuG -qPE -jkW -jpM -rFD -udv -fbz -chj -oIU -wDz -vXn -kPd -hCK -mMy -sIF -rdo -ygt -ygt -ygt -wMH -tPH -aeU -cmU -gUw -gUw -gUw -gUw -gUw -awn -gUw -gUw -gUw -gUw -gUw -aaa -aaa -aeo -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(47,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -hmh -pkg -niL -jAy -dJi -xFQ -vmZ -cjR -iFR -aGC -tUR -aGC -tUR -aGC -iFR -wBo -mCO -tiv -tiv -lOG -cRv -lOG -cGP -qfe -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aaQ -acm -acm -aaa -tpp -ckk -aaa -aaa -ckk -tpp -ckk -aaa -aaa -ckk -tpp -cmU -cmU -aeU -aeU -vjh -tQo -nzD -ycx -ubF -tqC -hVL -lfl -ycx -vrN -ycx -vjh -vXC -vVC -ycx -vjh -vjh -aaa -cOd -aaa -ycx -vjh -vjh -rUQ -vNl -vHC -pMS -frT -wFa -vjh -hVY -lDa -tKY -szX -pqD -pqD -gzA -rrc -rHs -bDp -wDz -ugy -kPd -mvF -hBH -idq -rdo -aRH -aRH -aRH -nbC -gSF -cmU -cmU -awn -awn -awn -awn -awn -awn -awn -awn -awn -awn -awn -aaa -aaa -acm -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(48,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -ixB -okc -mLd -cdi -dJi -srs -vmZ -nKj -slB -urh -kJu -kUJ -dKy -cHg -was -nKj -vrs -wKb -tiv -jju -xKT -xuR -vSG -kpS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -acm -aeo -aaa -cmU -hpG -hpG -hpG -hpG -hpG -lDc -tpp -tpp -hpG -hpG -hpG -hpG -hpG -cmU -aeU -aeU -ycx -vjh -hOJ -vjh -vjh -ycx -vjh -vjh -vjh -aHB -pzc -qBe -lRg -vOl -jhy -aHB -vjh -epN -slM -epN -vjh -kQf -fXy -foQ -vjh -sft -ycx -udn -kFx -vjh -iza -pqD -pqD -szX -mgR -iza -pqD -qiM -pqD -iza -wDz -bYK -iOR -mvF -crc -qxD -qVF -cXv -nbO -mes -ubN -tPH -aeU -aqQ -gUw -gUw -gUw -gUw -gUw -awn -gUw -gUw -gUw -gUw -gUw -aaa -aaa -aeo -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(49,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -hmh -pfr -gQu -snn -dJi -tdf -vmZ -vmZ -ewC -qER -xmn -kUJ -ggj -aSu -kVd -sKE -eAF -mMp -wlz -cvi -piu -piu -vSG -kpS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -aaa -aeo -aaa -cmU -grV -grV -grV -grV -grV -tpp -tpp -tpp -grV -grV -grV -grV -grV -cmU -aeU -aeU -hPz -tfs -iVk -vEK -gLH -gLH -gLH -tsf -yhU -gLH -mtV -hBJ -mtV -mtV -mtV -jhy -ycx -bBJ -qJY -mwR -vjh -ycx -lCs -vjh -ikZ -vsq -vjh -vjh -kFx -dij -wMY -iza -jya -hVc -qKv -jes -pqD -yji -wlP -pqD -wDz -bWP -iOR -mvF -jav -iJy -awv -fov -moc -pKQ -rxW -tPH -aeU -cmU -gUw -gUw -gUw -gUw -gUw -awn -gUw -gUw -gUw -gUw -gUw -aaa -aaa -aeo -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(50,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -ixB -ixB -snn -snn -tmj -wXa -prn -vmZ -gse -gdI -jIW -kUJ -rcS -hUE -fAM -vrs -prn -wXa -nQo -cvi -mYv -piu -vSG -kpS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aaQ -cmU -cmU -hpG -hpG -hpG -hpG -hpG -tpp -tpp -tpp -hpG -hpG -hpG -hpG -hpG -cmU -aeU -aeu -vjh -gLH -dBg -hBJ -hPx -ivP -hUC -mtV -mtV -mtV -mtV -bRO -fFe -fUp -hBJ -cYy -vjh -epN -qHG -epN -ycx -aNp -ilp -ycx -eah -baK -kan -ycx -jVD -jVD -iJv -dFM -maK -lWL -mgR -gJE -qWB -wRQ -fiH -wDz -wDz -nqR -qhT -rUh -mMy -tPH -tPH -gSF -gSF -mEg -gSF -aKY -cmU -cmU -awn -fql -awn -awn -awn -awn -awn -awn -awn -awn -awn -aaa -aaa -acm -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(51,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -gnh -vAh -vdy -wXa -wXa -uAn -vmZ -owC -rlM -pkI -kUJ -msY -sQz -ssI -vrs -uAn -eXY -oZb -cvi -dpc -piu -vSG -kpS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -acm -vku -aeU -cmU -cmU -tpp -ckk -aaa -aaa -ckk -tpp -ckk -aaa -aaa -ckk -tpp -cmU -cmU -aUz -aeu -vjh -gLH -mtV -mtV -cHY -cHY -cHY -hBJ -fvh -lXK -tGg -tnP -wHF -maA -mtV -jhy -ycx -vKV -oSq -lnm -xja -foQ -fac -vjh -vjh -ycx -vjh -vjh -ycx -vjh -vjh -pqD -lbJ -iza -qKv -fKs -iza -gIo -uEi -wDz -oDV -iOR -iOR -vmq -mMy -acK -acK -acK -acK -acm -aeo -aeU -aeU -cmU -cmU -cmU -cmU -cmU -cmU -awn -cmU -cmU -cmU -cmU -cmU -aaa -aaa -aeo -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(52,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -rNx -sjG -tiv -uVK -wXa -nKj -vmZ -kUd -dKx -cLV -cLV -cLV -upK -ocE -vrs -nKj -cln -tiv -win -piu -piu -vSG -kpS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aeu -aeU -aeU -cmU -hpG -hpG -hpG -hpG -hpG -tpp -hpG -hpG -hpG -hpG -hpG -cmU -aeU -aeU -aeu -ycx -yhU -mtV -cBJ -gfi -tnP -gfi -tnP -sSD -rZW -nJF -rZW -nJF -tAP -mtV -aHB -vjh -qwB -vBi -aiI -vef -udn -dBg -oVz -vjh -nRC -qSJ -qSJ -uOo -qSJ -qug -iza -wyY -rrt -gBf -pqD -pqD -pqD -pqD -wDz -wDz -wDz -gij -miS -iVj -wrc -wrc -iVj -acm -acm -aeo -aeU -aeU -aeU -aeU -aeU -aeU -aeU -cmU -awn -cmU -aeU -aeU -aeU -aeU -aeu -aeu -aeo -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(53,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -gnh -gnh -eAk -jrh -sPx -uEC -hUM -fFa -frh -ccd -slr -wXa -tnA -lHk -ejt -pGD -ifd -tiv -sQJ -aYE -pBf -piu -vSG -kpS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vku -aeu -aeu -aof -aUz -cmU -grV -grV -grV -grV -grV -tpp -grV -grV -grV -grV -grV -cmU -aeU -rYc -vjh -vjh -xle -mtV -ozd -hdq -lzF -hdq -lzF -lzF -sqL -hdq -lzF -lzF -hjt -hBJ -cYy -vjh -vjh -pue -kHh -vjh -vjh -sTv -vBi -vmu -keO -kSR -thW -cKR -hyQ -iIP -dfS -wyY -jqI -wgK -nCL -nCL -nCL -nCL -nCL -nKy -hEh -jQn -cyT -iVj -ivU -lBQ -iVj -iVj -iVj -vps -iVj -aeU -aeu -aeu -aeu -aeU -aeU -cmU -awn -cmU -aeU -aeU -aeU -aeU -aeu -aeu -acm -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(54,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -bbO -ecE -pOV -pOV -pOV -tiv -eul -jpa -cne -rsX -mlD -lCC -mlD -rsX -gJc -sQq -qbP -tiv -sQJ -dvs -naf -piu -vSG -kpS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -cmU -hpG -hpG -hpG -hpG -hpG -tpp -hpG -hpG -hpG -hpG -hpG -cmU -aeu -ycx -mZn -vjh -wrw -sVB -tqb -icG -wTx -oeF -nJF -nJF -xtk -rZW -rZW -lzF -xaC -mtV -nul -jBr -vjh -rPO -jAc -uKc -uXB -vjh -ycx -vjh -npr -pQo -npr -npr -pQo -npr -pqD -iza -pqD -qsy -tKt -iMA -gmo -iMA -iMA -ryn -rQZ -qQc -cyT -gIt -lBQ -lBQ -hMx -wwM -lBQ -wrc -cmU -aeU -aeU -aeu -aeu -aeu -rkn -aDS -awn -bFI -aeU -coy -aeU -aeU -aeu -aeu -acm -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(55,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -aeu -aeu -aeu -lUq -bnB -lqR -rnj -ecE -nGE -wXa -vmZ -tqB -rJN -dRh -xlF -vZn -dRh -rGK -vrs -wXa -aoi -mHf -piu -fKe -piu -vSG -kpS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -cmU -cmU -cmU -cmU -cmU -aDS -tpp -bFI -cmU -cmU -cmU -cmU -cmU -aeu -vjh -tgp -leD -iJR -mtV -mtZ -hdq -ocn -ctf -ikO -ctf -ikO -ikO -oeF -icG -dTQ -sVB -bId -oFl -dgi -rPN -wzi -bpI -vBi -vjh -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -pqD -bbC -wgK -iMA -xad -adf -iza -llh -wDz -gij -miS -iVj -lFS -wJo -cwl -sWM -sWM -wrc -cmU -aeU -coy -aeU -aeu -aeU -aeU -aDS -ipD -bFI -aeU -aeU -aeU -aeu -aeu -cmU -acm -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(56,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aUz -aeu -aeu -lUq -uDe -spm -seK -pOV -laH -ocE -vmZ -wXv -rcB -lCC -hZd -rsX -mlD -iYr -vrs -lQw -iLD -mHf -piu -qBN -piu -vSG -kpS -acm -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -coy -woH -aDS -tpp -bFI -rkn -aeU -aeU -aeu -aeu -aeu -vjh -sfw -ycx -yhU -mtV -vzV -lzF -rZW -ikO -nJF -rZW -nJF -rZW -nJF -wmq -vHr -mtV -vjh -sXT -udn -vjh -wWk -ycx -qXJ -vjh -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -iza -jsN -tKt -iMA -xad -cnQ -sav -mMy -jri -mCu -bIq -wjK -dbu -kES -xfx -dbu -dbu -wjK -cmU -cmU -ptL -aeU -aeU -aeU -aeU -aDS -ipD -bFI -aUz -aeU -aeu -aeu -aeu -aeu -ckn -cmU -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(57,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -bVv -bbO -dIR -riX -rBV -pOV -ogM -hUM -fFa -jdL -hVT -mlD -dRh -vZn -qFs -tUO -pGD -hUM -eIi -mHf -piu -mvV -piu -vSG -kpS -aaa -acm -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -coy -aDS -grV -bFI -aeU -aeu -aeu -aeu -aeu -aeu -vjh -vjh -vjh -mFt -hBJ -mtZ -hdq -rZW -cSJ -rZW -nJF -nJF -rZW -rZW -lzF -vHr -mtV -hPx -vwv -duA -rNj -vBi -vBi -hYa -ycx -bJv -bJv -omO -bJv -bJv -bJv -bJv -bJv -bJv -bJv -pqD -srR -qkA -iza -aeu -acW -xad -sJD -rRM -tzA -kra -iln -wAt -tlV -ezY -qCi -aOf -kiO -acm -acK -cmU -aeU -aUz -xfU -aeU -krY -qQq -krY -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -cmU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(58,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -qOd -lDK -lqR -pOV -pOV -tiv -vUi -jpa -cbJ -ebU -siH -ebU -siH -ing -eGC -xRM -uAH -lOG -cRv -vim -piu -piu -vSG -kpS -aaa -aaa -acm -acm -acK -acm -acm -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aDS -grV -bFI -aeu -aeu -aeu -aeu -aeu -aeu -aeu -ycx -sfw -gLH -mtV -xhY -lzF -hdq -uRi -lzF -lzF -lzF -lzF -hdq -lzF -rgY -mtV -vjh -dhe -ycx -vjh -qVQ -vBi -hYa -vjh -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -pqD -fPs -iza -pqD -aeu -aeu -xad -sJD -hUA -cTY -oig -wXt -wAt -bLN -rkV -aLg -aOf -qWz -aaQ -acK -cmU -aeU -aeU -aeu -aeu -krY -fCN -krY -aeu -aeu -aeu -aeu -aeu -aeu -ckn -aUz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(59,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -qOd -dVk -luk -ecE -nUf -eTS -wXa -vmZ -wXa -siH -bzu -tcY -hOK -siH -piu -nbZ -piu -ykv -sVD -cvi -mYv -piu -vSG -kpS -aaa -acm -acm -aaa -acm -aaa -acm -acm -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aeU -pST -fCc -pST -aeu -aeu -aeu -aeu -aeu -aeu -aeu -vjh -tMO -tsf -mtV -xki -lRE -rZW -cSJ -nJF -rZW -nJF -nJF -rZW -rZW -vHr -hBJ -pZe -qsn -otO -tVM -tVM -tVM -tVM -tVM -bJv -bJv -bJv -bJv -bJv -bJv -omO -bJv -bJv -bJv -iza -tKt -jzF -iVR -aeu -add -cnQ -mxf -jri -hqP -hQa -xrS -wAt -tpQ -vCi -hEy -lIs -wAt -cJx -gPA -cRm -cRm -cRm -tCU -tCU -uUS -lsu -sWl -uUS -aeu -aeu -aeu -aeu -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(60,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -bbO -wno -aBB -pOV -sOI -rjV -tTu -vmZ -vmZ -kXV -cOR -aGK -buS -dIy -jlY -xBd -ggb -ikg -hda -cvi -dpc -piu -vSG -kpS -acm -acm -aaa -aaa -acm -aaa -aaa -acm -acm -aaa -acm -acm -vku -aeu -aeu -aUz -aap -aeu -aeu -aeu -aeu -aeu -aeU -pST -dLr -pST -aeu -aeu -aeu -aeu -aeu -aeu -aeu -vjh -pVz -bAX -eWP -eWP -ugC -fKA -tlU -gqR -wYR -xFE -tWn -juL -hlb -aAP -mtV -rPU -dHL -oEy -lbK -eBM -cVq -pXL -eMR -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -iTq -tKt -vKM -iMA -xad -aDQ -cBD -kNf -fDT -pmd -hYY -jri -unv -mLe -bGx -ffo -lXL -qJR -gPA -tCU -ovm -cgU -hcP -jks -gPA -gAp -fjw -jHR -uUS -aeu -aeU -aeU -aeU -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(61,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -bVv -aeU -aeU -aeU -lUq -bbO -mAc -wQN -sOI -wXa -wXa -qci -wXa -siH -dEX -iSO -dEX -siH -wYA -wgA -piu -tnr -iYb -cvi -uOd -vSG -vSG -kpS -aaa -acm -acm -acm -acm -acm -acm -acm -acm -acm -acm -aaa -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -tDC -fzd -dSJ -fzd -fzd -aeu -aeu -aeu -aeu -aeu -aeu -aeu -pVz -ijG -bZY -eWP -gSk -gqR -tlU -bcY -mtV -mtV -hBJ -mtV -mtV -mtV -mtV -gRr -uJZ -dor -llJ -cJV -gtd -gtd -ccw -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -iTq -tKt -lhT -iMA -xad -cnM -xad -sJD -lix -uRg -nOR -mOb -bdH -hPG -rRW -vvn -tSN -cuR -bvR -ubC -qRD -jZd -kYI -rBd -tCU -eGW -mui -uJg -kMe -aUz -aaa -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(62,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aUz -aap -aeU -lUq -bbO -bbO -rNx -mZS -bAs -wXa -foB -ing -fty -tOH -eqD -ebU -vDf -yhr -csL -gPC -cGP -vSG -vSG -vSG -woz -lge -aaa -acm -aaa -aaa -acm -aaa -aaa -aaa -aaa -acm -aaa -aeu -aeu -aeu -aUz -cui -aeu -aeu -aeu -aeu -aeu -aeu -fzd -vdJ -pcl -hkV -tDC -aeu -aeu -pVz -xBI -pVz -xBI -pVz -pVz -kFw -hyq -esG -rFL -nrS -nsl -mxh -mtV -dBg -vjh -pGj -mYX -nLZ -llr -vDU -tSY -tPC -nCS -oWP -nLk -vVX -eMR -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -iTq -srR -uny -iMA -xad -cnQ -aeu -mxf -krk -sqs -mZF -lGV -jtl -bUl -pZM -qnc -qKI -qJR -wNf -tCU -tCU -tSP -cIg -gPA -tCU -ftX -xlk -cpC -xKP -cmU -acm -acm -acm -acm -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(63,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -gnh -gnh -tiv -jYX -tiv -gnh -pcc -ikx -kwm -vTV -aoL -cGP -cGP -aoL -aoL -lsE -lsE -lsE -lge -acK -acm -acm -acm -acm -acK -acm -acm -acm -acm -acK -aeU -aeu -aeu -aeu -aap -aeU -aeU -aeu -aeu -aeu -aeu -aeu -tDC -mUp -gtj -vkJ -fzd -aeu -aeu -pVz -kyU -dcJ -tGV -dRc -ikX -tYd -kCm -eWP -cGo -fKA -nnp -xlr -mtV -vBi -uOz -dBg -kGI -jGt -vjh -jjP -woV -fRz -lbK -mzt -btN -vdK -eMR -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -iza -tKt -heU -pqD -aeu -cnR -aeu -mMy -ceh -hHm -aor -akV -iQn -eJm -irO -cuR -cuR -cuR -eEh -nMD -tCU -tmU -tCU -tCU -cuR -kuL -hOh -cuR -kMe -aeU -coy -aaa -aaa -aaa -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(64,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -gnh -oye -pXi -sYM -rNx -psC -hOm -psC -eOs -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -agt -aeU -aeU -aeu -aeu -aeu -aeu -aUz -aeu -aeu -pVz -xBI -pVz -eWP -wEM -vOT -tOo -esG -pVz -pVz -pVz -maN -dxz -aRS -sNx -hBm -vFH -pVz -eWP -sbZ -qxQ -pDT -szL -hBJ -dBg -qXJ -nSy -uwX -vjh -ycx -ycx -vjh -vjh -tVM -tVM -tVM -tVM -tVM -vjh -npr -npr -wrI -npr -npr -wrI -npr -npr -pqD -pqD -cZh -pqD -pqD -aeu -cog -cBN -mMy -biR -xvF -aat -cuR -cuR -cuR -qJR -qJR -iVH -seW -kYL -bIR -tmp -bzo -eTG -mij -pFl -ibU -bzo -tCU -aeu -aeu -aeU -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(65,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -rNx -rNx -jet -gnh -gnh -aeu -mbC -dKZ -unx -unx -unx -unx -unx -unx -kkc -kkc -kkc -kkc -kkc -kkc -kkc -kkc -kkc -kkc -kkc -kkc -kkc -kkc -kkc -unx -lBP -aeu -aeu -aeu -aeu -aeu -aeu -aeu -pVz -pbY -tpY -esG -eWP -kGj -hkO -eWP -jUa -aTg -xBI -rfD -dxz -dIQ -dnz -pmA -mMJ -iqN -eWP -mtV -vPr -kac -vPr -mtV -qRr -hPp -tOr -ozZ -dhz -qFN -fix -iLT -vjh -csa -csa -csa -csa -csa -vjh -rdM -sRr -trf -oLa -xnJ -trf -hHt -tsn -pqD -nWR -tKt -iYj -iza -aeu -aeu -cBD -add -wDz -eIl -tEX -cuR -meU -tbs -rhy -uwp -hKE -iBi -fnL -iBi -hlS -tSP -uey -mWV -vek -kJs -sKb -tCU -gPA -tCU -tCU -ecY -pxe -beK -sRm -acy -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(66,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aaa -aaa -rBj -cUc -vlM -gNI -opV -aaa -acm -aaa -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -acm -cmU -exA -aeu -aeu -aeu -aeu -aeu -aeu -aeu -xBI -tfY -qzJ -uiR -xBI -uHY -dGD -bsa -rrs -ukc -xBI -pVz -pVz -njL -xBI -wrz -kmC -mBX -qlg -uvT -sNR -gey -wQV -neJ -oFf -seB -bRJ -gPH -oVz -dBg -mrC -spX -vjh -csa -csa -csa -csa -csa -vjh -tSk -meO -uFp -qSC -lch -nUP -ceM -djZ -pqD -iza -srR -mtw -pqD -pqD -iza -iMA -pqD -pqD -icU -uGB -kgc -tsY -dMd -gLT -tCU -tCU -tCU -gPA -tCU -ycs -tCU -tCU -tCU -tCU -qzD -mWg -pQi -nYD -pQi -aaa -aaa -aaa -cry -aoe -afI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(67,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -acm -acm -cev -acm -aaa -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -acm -aaa -exA -aeu -aeu -aeu -aeu -aeu -aeu -aeu -pVz -ijz -bkS -pCu -mEj -xzc -gbL -pVz -hPY -obi -nKv -jXi -odA -pqS -mUs -hTj -pmq -fsJ -eWP -hBJ -mtV -fEj -mtV -mtV -hBJ -vjh -vjh -xHU -vjh -vjh -kex -jVD -eNQ -csa -csa -csa -csa -csa -eNQ -aPj -deZ -qvz -eYu -ezZ -psf -jzo -sOX -pqD -vWU -kho -shZ -xNq -mlB -vWU -gzh -dbR -kgc -kNe -qSB -gPA -pQi -pPZ -pQi -tCU -tZD -oCr -nuz -rdb -kio -xgM -hpW -tzL -tCU -eEX -gDy -hOU -aHz -kZK -gKV -aaa -aaa -cry -cCX -cmJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(68,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -aeU -aeU -aUz -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -acm -acm -acm -acm -acK -acm -acm -acm -acm -acK -acm -acm -acm -acm -acK -acm -exA -aeU -aeu -aeu -aeu -aeu -aeu -pVz -xBI -pVz -kKE -pVz -pVz -pyk -frb -pVz -xBI -wrz -lLY -cBO -rwW -eWP -eWP -esG -eWP -eWP -esG -gUP -qbq -eUs -vRU -vRN -gNq -jop -xau -jhX -myd -ycx -kex -jfy -vjh -csa -csa -csa -csa -lNe -tYx -oXa -mZO -xOu -kUX -gcL -mOK -jnj -rha -xPy -lQB -htJ -nJQ -pqD -kzh -uZr -rnW -bRo -wDz -hfP -lEQ -cuR -iaY -nhz -qRS -gPA -bvk -hkA -tzY -vpV -iEi -vlg -hwJ -osT -wzK -bIR -pXh -pQi -gDy -pQi -aaa -aaa -aaa -cry -aoe -afI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(69,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aUz -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bRh -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -acm -aaa -exA -aeu -aeu -aeu -aeu -aeu -aeu -pVz -mWj -rMJ -cUT -uHW -ejc -bZY -bzp -dtA -sbB -tat -qOT -lcF -eWP -esG -acD -sKm -cwR -aHQ -qGK -tzN -iFK -igg -fne -ayc -pKf -mPM -kHw -oMJ -tEt -vjh -hpY -wVb -eNQ -csa -csa -csa -csa -csa -eNQ -wyX -fzH -gBN -voo -gNJ -uMc -sOy -pjC -pqD -kzl -bXS -stu -kTK -wDz -wDz -wDz -kTK -wDz -vGn -oXe -cuR -cuR -qJR -cuR -tCU -aIw -qRf -mnR -xtu -oHe -cjq -hwJ -aYU -tCU -gPA -cuR -cuR -qJR -cuR -cuR -ecY -pxe -aeZ -pmM -acy -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(70,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qJs -jyr -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bRh -aaa -aaa -acm -aaa -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -acm -aeU -exA -aeu -aeu -aeu -aeu -aeu -aeu -pVz -mkI -uHc -eyl -jQR -hCV -xAK -jeT -pVz -pVz -ikr -xBI -pVz -eWP -jfK -sBO -bjN -jzB -pDY -iGI -thG -taW -ktA -cFn -kSx -ruU -jop -tAx -pTc -qGK -vjh -wFG -ycx -vjh -csa -csa -csa -csa -csa -vjh -syZ -deZ -fyD -hsL -iXx -wII -jbf -lWJ -pqD -ruW -dfK -jJN -sQw -wuo -dwx -plj -mrB -rMl -pon -vMb -rbz -iFU -urx -nAa -ijl -gWb -qRf -pCb -dpw -sxn -dUE -hwJ -rqs -ilv -bzc -vWY -frP -mtI -lwp -aUz -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(71,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -mzI -aaa -acm -aaa -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -cmU -aeU -exA -aeu -aeu -aeu -aeu -aeu -aeu -xBI -eBQ -tOq -sjk -jQR -hCV -jcj -mvD -pVz -oxp -qbO -xfZ -tyA -xNc -wsg -dfW -tXR -tWd -xST -mfs -vpD -eDu -wcC -myz -lRq -fzG -jop -mMa -bBe -qGK -cDJ -eSu -iRJ -vjh -csa -csa -csa -csa -csa -vjh -ukV -peJ -rfX -jXX -mzB -ova -pJK -weW -iza -ckJ -wuT -iza -pqD -hCr -kLW -xrp -cbf -xYK -qEh -gVi -gVi -uMD -gVi -gVi -sWV -kcW -kBF -pNe -vYs -dYB -dUE -hwJ -vUt -rmT -sgC -umJ -lAW -kUV -lwp -aaa -aaa -aaa -aaa -aeo -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(72,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -cuj -aeU -aap -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bRh -acm -aaa -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -aUz -aeU -exA -aeu -aeu -aeu -aeu -aeu -aeu -pVz -ijz -nqX -caL -pVz -wdn -pLO -xtt -xBI -uiu -noO -dHg -kkC -tCv -buJ -kAR -gbB -jBx -lUM -qGK -jiE -tPX -xQq -rHc -sxM -sJM -sJM -rSi -sJM -sJM -vXf -pwF -ufU -vjh -vjh -eNQ -eNQ -eNQ -eNQ -vjh -xju -eKU -jiR -mle -hQg -xFM -dny -joS -pqD -fNy -bMY -eEe -pqD -cXh -cXh -cXh -cXh -wlS -pns -wFJ -nzW -kZP -ylu -nzW -xpa -aiN -ebW -pNe -dpw -xdl -dUE -aVI -oKW -joh -mDJ -afL -afL -afL -joh -acm -acm -acm -acm -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(73,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acn -acm -acm -acm -acm -acK -acm -acm -acm -cmU -aeU -aeU -exA -aeu -aeu -aeu -pVz -xBI -pVz -pVz -xBI -xBI -pVz -pVz -xBI -pVz -qKx -pVz -fFH -ugc -jVZ -xmI -tCv -sMI -khj -pYZ -wKa -uJs -mfs -eWd -eWd -qGK -gQo -qyo -gbf -nBZ -gbd -woB -sJM -ibL -cdD -rnJ -xLd -hpv -aDQ -ecF -xcR -uiX -xDc -xDc -xDc -xDc -vqr -ilJ -oYc -fkL -xDc -iza -fKJ -guJ -yfc -ofx -iNZ -dwx -plj -mjG -crk -mxH -gLn -kxG -lwu -lwu -lTf -oKW -tUV -uZC -pNe -esn -pZI -pUA -gFD -oKW -mlv -qCZ -etB -pya -lsS -afL -afL -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(74,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -mzI -aaa -aaa -aaa -acm -aaa -aaa -aaa -aeU -aeU -aeU -exA -aeu -aeu -pVz -xBI -fzp -fmh -tDA -tya -nPS -brA -xBI -pVz -pVP -ami -pVz -vsJ -xFt -kUp -itZ -xxk -wSU -hEI -muN -rhs -tZc -eQb -jBO -hHg -qGK -iZm -sXE -sJM -tBh -nGC -hjh -sJM -qTY -pwF -kJH -srx -ubJ -add -ecF -acW -aaO -aDQ -vsh -fsu -jiU -tIk -wIu -kzP -njf -aCp -uHG -bjz -oce -yfc -ofx -rtD -guu -uhy -cbf -xYK -mxH -lTf -wNT -sEs -xMM -hsB -tjO -vBS -uZC -pNe -tWa -qBR -mLP -qyQ -jaW -lsb -xSn -pUH -tZf -tZf -wnX -afL -aeU -aaa -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(75,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bRh -aaa -aaa -acm -aaa -aaa -aaa -aaa -aeU -aeU -exA -aeu -aeu -pVz -uLS -wjj -jhv -kwf -xOg -hRg -eRC -ixi -pVz -dYM -eyj -xBI -iMr -iMr -qUJ -iMr -xxk -kwI -mrl -kwI -mrl -tZc -sXB -dhY -nKV -sbJ -wue -vFv -gbf -wVD -wGE -ouD -rSi -rzB -jMa -suQ -raS -ubJ -aaO -ecF -dyu -bKl -add -osy -uNO -uNO -bDV -sDD -hOH -uNO -osy -pqD -ofz -fNy -gJC -pqD -cXh -skC -cXh -cXh -vVt -vtf -jgv -rjg -uCd -ago -rNJ -veN -iHP -hgf -kiZ -vBI -nqh -meS -cjN -oKW -nvA -jco -pUH -kjl -tZf -nPo -qbB -aeU -aeU -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(76,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aUz -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bRh -aaa -acm -aaa -aaa -aaa -aaa -aeU -aeU -exA -aeu -xBI -pVz -mBW -hNF -jQh -gNE -nJV -gjD -qku -tmd -xBI -oRz -pVz -pVz -nWW -lCa -qez -eUN -gsy -clH -bXe -huR -bXe -gsy -srg -uZT -gKd -pMj -dKa -wCR -sJM -sJM -oKJ -fth -sJM -hpv -htS -rKk -hpv -fYw -nKC -nKC -dEF -acZ -adf -qhR -lOZ -iun -uBo -dHi -xsX -qSN -iiQ -bPY -tZX -bjz -yfc -ofx -wpg -dwx -plj -sOi -crk -jmw -kxG -rEi -flt -fPQ -kTe -ijl -lmA -oRT -eqA -oKW -oKW -dKK -xpa -oKW -afL -dMH -crh -vwH -ijd -viu -qbB -aeU -aUz -aeU -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(77,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -mzI -acm -aaa -aaa -aaa -aaa -aeU -aeU -exA -aeu -xBI -hkr -fMB -vnC -oFc -aqr -vks -ike -rKa -iQN -mCk -liY -pVz -bul -lFN -lBU -hpQ -eUN -pJr -lrc -sPK -kaT -ekB -gsy -uCa -hPV -fph -bsR -mKo -hDX -lTu -rSi -cuU -gbf -sJM -qSO -gbk -dQx -sHn -gkv -jUi -xIQ -dEF -nKC -nKC -dEF -osy -uNO -dDp -sDD -awW -uNO -uNO -pqD -oce -guJ -yfc -ofx -rtD -fUf -lmh -gYl -wms -wHh -lGs -lGs -lGs -ciY -lGs -oKW -ijl -sWV -ijl -oKW -var -mVf -pSG -gpM -cFO -jco -pUH -wYW -tZf -vba -qbB -aeU -aeU -aeu -cke -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(78,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acn -acm -acm -acm -acm -acm -cmU -nxx -lBP -irQ -ccW -iIl -nNV -dGo -dGo -dGo -dGo -eRC -tlJ -pVz -mMP -xBI -wtF -fWL -kEC -wtP -rwr -wOy -aQQ -tSc -gPS -buq -gsy -mEt -anI -son -xiC -eOi -wMl -lHX -nBD -qYv -ubw -pdR -wOk -uGU -omi -eBH -tXm -vvf -geO -ivK -dAB -qlw -dEF -tYi -nXC -cWQ -hDC -jXd -lrP -eRy -qId -fNy -ofz -hVl -iza -cXh -cXh -cXh -cXh -xex -mfd -ciY -tyk -mlj -nvK -yjW -vMg -lDV -vtf -veu -mun -aqq -sqh -thy -oHm -kAt -nuZ -mTK -xPY -nYa -uQj -uZg -aeU -aeU -aeU -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(79,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bRh -aaa -aaa -aaa -aaa -aeU -aeU -wbG -fbr -hkr -seo -fSS -hWD -kMw -gWT -kMw -ntb -qLO -qEs -yiN -xBI -rEM -jIg -pdI -cUk -fcv -paU -tdB -wcN -vkq -wJy -lQK -dea -tpy -utF -wFm -dzQ -qrS -oOU -xev -cHz -cvF -blU -gPa -eHO -rvR -aDo -gkv -fjn -hGm -ivK -iju -unz -hkp -xMN -uQE -qHu -mqU -qEJ -rhN -esq -pqD -pqD -fKJ -yfc -ofx -hph -bwB -plj -qKS -wDs -lmF -pAQ -hCd -xmD -jck -dzy -sCJ -ocz -dZA -lYX -ijl -abj -lzg -nKr -lvP -cFO -lZr -jPG -sYu -mIR -vOZ -afL -aeu -aeU -aeU -aeU -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(80,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -mzI -aaa -aaa -aaa -aeU -aeU -wbG -pVz -xBI -ucP -mFE -jJJ -uyd -mQk -mQk -xgV -lCV -pVz -iTZ -pVz -hOY -eWH -rxa -xzA -eUN -ugq -iCV -gPS -kDw -kCZ -jTu -wEJ -kRu -rFt -sSJ -lAu -sSJ -rFt -owm -jrs -cMT -fVF -vUs -lBB -sRZ -cjS -gkv -oca -iYf -iyI -eMW -uqF -dEF -rhN -obM -wij -fDB -lsX -rhN -jPq -peZ -iuC -bjz -yfc -ofx -hSa -kLW -iFe -cbf -xYK -jmw -vMg -tVS -esK -ctv -eqK -vMg -jJs -dGp -spw -ijl -lVi -lzg -fNw -aka -aka -aka -amX -bnU -aka -amX -aka -aeu -aeu -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(81,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bRh -aaa -aaa -aaa -aeu -wbG -aeu -pVz -xBI -lON -hgW -ijL -rdI -fSE -sSP -pVz -xBI -iSx -pVz -pVz -jUU -dkh -jUU -dkh -gsy -aHC -uko -gsr -knL -qbk -bjk -rZE -rFt -ddS -fYU -bdM -vkE -mpv -opL -kHG -ofg -ofg -nlR -uBX -iyI -dEF -iYW -wEw -dUn -fMn -udI -dEF -nZZ -rNo -xOq -uHv -vgm -tSI -cYv -xds -iuC -fKJ -cuD -pqD -cXh -cXh -cXh -cXh -omQ -jmw -fEe -clN -dup -dkI -hJp -lGs -xex -dSv -gjg -oKW -aHD -lzg -icQ -aka -psn -azo -alv -cez -sVP -qWZ -anG -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(82,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aeU -aeU -aeU -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bRh -aaa -aaa -aaa -vEC -fYf -hUW -pVz -pVz -xBI -xBI -pVz -pVz -xBI -pVz -lVe -ocS -ogg -qLB -phH -vJg -pri -eMB -xvW -xvW -nbg -qvi -xvW -nbg -mbc -rUP -sSJ -lfQ -mHm -rVp -rFt -iIF -xJN -fPc -qnT -pIT -iyI -rot -bAQ -nvH -gSC -gjx -jHS -pOb -veV -hkp -lqM -rNo -vPX -dQC -uAF -rhN -rhN -rhN -iza -guJ -yfc -ofx -dnL -bwB -plj -nKu -yld -jmw -vMg -cSX -mpd -lAk -eKT -abB -wVc -eWu -smR -ijl -tfG -lzg -fPP -aka -akC -cHL -cbp -alQ -amr -vaP -amX -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(83,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aaa -aaa -aeU -aeU -aeU -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aba -acm -acm -acm -vku -wbG -aeu -aeu -aeu -aeu -pVz -iGG -nLm -rhf -jcj -pAB -eRp -idY -xjI -yhI -eby -gtK -xvW -bKU -uUm -oWQ -fxx -pBd -cTI -gAO -rFt -lJL -ozt -xJn -rFt -itr -yaZ -tVu -aTe -pcG -mnG -uEX -nCU -llY -iBm -qZS -egU -fpx -obU -dEF -kzz -iYa -bCO -uHv -nQX -rhN -hfF -vea -jWD -bHP -yfc -ofx -hSa -kqe -skA -cbf -xYK -xaZ -lGs -ons -tgx -gqz -uOA -vMg -joP -dZA -lYX -ijl -mkq -jhg -umj -hkR -caO -tnH -alx -aCz -ams -kSn -aka -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(84,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -bRh -aaa -aaa -acm -wbG -aeu -aeu -aeu -aeu -xBI -xBI -pWo -pVz -sRL -cVn -pVz -xBI -jKQ -gGR -fgB -axp -pBd -gVg -rQx -xwO -cvL -xvW -dng -wIi -rFt -sSJ -sSJ -sSJ -rFt -ofg -cSl -lkl -jMU -jJd -iyI -iYA -hih -iyI -lyr -oYu -aLC -jVf -uYJ -hkp -fzk -nKh -jDs -uHv -vgm -gdL -cYv -hri -jWD -oce -wQI -pqD -skC -cXh -cXh -cXh -ieg -uKO -lGs -vMg -vMg -iBy -vMg -lGs -sJW -dZA -wVE -oKW -cIk -yhw -jaM -swZ -ctt -ibJ -aly -alS -ams -hZg -aka -aeu -aeu -aeu -cke -jbV -aaa -aaa -aaa -aaa -aaa -aaa -vku -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -tgU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(85,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qJs -jyr -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -acm -bRh -aaa -cmU -vEC -fYf -fYf -fYf -fYf -urA -oaO -bod -xBI -xBI -cvV -pVz -pVz -uRf -vxZ -tLh -lHy -xvW -xvW -rRZ -pbk -qpP -wzW -pFq -kSr -naC -xKr -xKr -xKr -xhi -gIF -vbT -etY -nri -wNQ -iyI -iyI -nKC -iyI -qjM -ffa -hkp -dEF -dEF -dEF -rhN -bkT -jTc -hoE -rhN -esq -rhN -cee -pqD -fNy -yfc -ofx -iXM -bwB -plj -rcJ -iTM -rxi -dSv -pXU -qDX -bJm -qbY -qbv -mdp -ycF -oNH -kJq -jUJ -rFh -iYq -aka -vCk -cup -pDd -cxP -czv -vJA -amX -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aaa -aaa -aaa -acm -qVM -aaa -aaa -aaa -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(86,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -acm -rBj -eFE -rvD -rvD -eFE -rvD -rvD -aIH -wmZ -ooR -eTt -hxf -ovN -edU -nki -fOt -dbK -pDs -geV -wbf -mCg -sTZ -foP -lnc -pqw -eYH -xEm -gxN -tCd -uHg -cel -vsR -kHG -kji -fxt -fbK -rtr -eDr -nlR -jHo -rBS -wFs -oJH -iyI -gbh -umL -bwW -qzu -nCs -pEu -ikE -vgm -dZk -quy -lJA -iza -ofz -yfc -ofx -rtD -uZL -sFW -icp -ydh -uXL -aPF -tiY -nzW -wPK -eDx -srf -veu -dZA -rrY -aEO -yaE -jtL -sQI -iPa -alP -oMr -cdF -ceE -wPO -scR -aka -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -vkY -acm -nTo -qVM -cok -aUz -aeu -aeu -aeu -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(87,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -acm -cmU -cmU -aeU -aeU -aeU -aeU -gLp -gcb -dDO -fbm -uOB -uOB -glY -cXZ -uTT -pYb -phL -tHv -fXZ -dkh -pFY -ciA -krM -qaR -jam -fgy -qht -msL -jhr -dQG -phY -xUE -vQD -erH -gaE -uNK -qCj -nKC -xoK -evD -gZI -ofB -sij -als -vnL -rhN -cVI -nKh -nkd -tDs -xTt -rhN -czz -amn -pqD -ckJ -siS -wDz -kTK -wDz -wDz -cXh -lqn -oQz -cXh -cXh -lqn -bUJ -cXh -cXh -xap -wMe -ktu -dzS -moz -mgC -mop -aka -aka -iPa -ujN -nqF -aka -aka -aka -aeu -aeu -aeu -cke -aeu -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aUz -acm -nTo -mZT -aUz -aeU -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(88,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -acm -cmU -aUz -aeU -aeu -aeu -agt -efG -mZR -qlC -rIl -aUW -fPh -nki -dkh -jUU -ifX -xef -xwU -dkh -fyw -vUr -xxz -xvW -fXm -nes -uTM -eyA -eIW -jJW -vss -lLf -xzS -ouK -fKf -fyZ -qNL -iyI -evD -ear -qip -nlR -iyI -tqG -cZT -rhN -hXY -nKh -iku -ikE -uwG -rhN -esq -rhN -pqD -llI -ncj -cUY -fGz -dPR -wDz -nem -gME -dXz -ura -skC -gvx -ate -jeR -cXh -shC -sFF -wqZ -dzS -bHv -dtt -nrF -wSq -wmj -ojW -sLf -kbx -btg -rkG -aeu -aeu -aUz -aeU -acm -aaa -aaa -aaa -aaa -aaa -aaa -aeu -kCk -kCk -oOW -gJK -oOW -gJK -oOW -mLN -mLN -aeu -aeu -aeu -aeU -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(89,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cmU -vku -aeu -aeu -aeu -aeu -aeu -aeu -efG -xLX -efG -yeY -eFR -fVJ -oLs -nax -dkh -jUU -nqm -dkh -dkh -iYY -cjG -msM -pBd -mlz -gOh -nes -tjv -mYV -aBN -fdY -ofg -qRE -ofg -ksd -cXM -ksd -iyI -iyI -iyI -iyI -iyI -bKc -lCz -ryK -esq -qrP -nKh -fEc -ikE -vgm -lqP -uhE -rPx -pqD -pqD -iza -kzl -xav -qVR -kTK -iHT -sSd -aLi -jVA -cXh -jgy -fGC -iVV -skC -gJL -odc -eoM -ksM -rFK -qVs -anz -xRL -vLm -xRL -fjz -kir -jIV -moz -aeU -aeU -aeU -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -mLN -kCk -sDv -sDv -mrz -fCe -gin -qjv -aGd -kCk -kCk -aeu -aeu -aeU -aeU -aeu -icx -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(90,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -efG -dHc -qlC -tbn -lLp -aWI -lYv -nCA -cXZ -kxU -oiq -emx -nki -oic -mFQ -wQc -cXZ -hdo -hdo -tWe -sCa -hdo -qic -jQE -bDj -gFY -jQE -dSG -oIg -nHT -jQE -ivm -idQ -wzA -jQE -jQE -pEt -jQE -rhN -rhN -fmy -fti -aBF -bJU -rhN -gDe -pXN -iza -kFB -iza -sQZ -tZG -ukT -wDz -rqx -oJs -dxk -rmd -cXh -lwn -wDF -qXX -cXh -mdE -aUw -vyl -moz -rFK -aJF -nZM -qbf -qbf -qJO -qbf -fQM -csM -rhd -hmO -xgs -kem -acm -qJs -aaa -aaa -aaa -aaa -aaa -qJs -wWW -dMR -sZV -xfV -sZV -sZV -nBd -vYm -sZV -gyV -wWW -aeu -aeU -aeU -kmK -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(91,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -efG -ofr -efG -xIS -eFR -aWI -mjc -hsJ -cXZ -krg -qMA -sby -oAN -gQd -gQd -pAq -nki -uWO -wWp -tsg -imM -nbU -kTJ -qbJ -ewW -kLo -cAU -kLo -hkI -vuy -cnn -eJE -mWq -qox -sJY -hdj -qCX -rVA -pZO -eQE -otS -uAA -otb -lXe -rhN -rhN -rhN -pqD -jqI -hWw -jqI -kUR -vWU -wDz -gCu -fRP -aLi -myc -cXh -lYG -lOY -weR -hAP -xmO -sFF -war -rhd -lbD -hCl -kbV -vvB -wHQ -fDi -bpg -gBi -oZE -oZE -vuM -brK -xgs -xgs -qkf -aaa -aaa -aaa -aaa -aaa -acm -mLN -efS -vis -arU -uVU -nec -moK -vYx -sVS -eJH -mLN -aeu -aeu -aeU -aeU -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(92,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -hsW -aeu -qlC -ehY -qlC -fSY -eFR -vxf -aSX -kPf -euc -hHL -dUQ -aSX -aSX -aSX -xDP -kPf -qOv -uQI -bHB -gBJ -jLK -fjX -vpY -lrI -ryW -oAo -ryW -ryW -ryW -oAo -ryW -vKa -gXG -byS -ofp -ryW -ryW -qNh -gFR -uqc -jgr -djl -jWw -uAA -dLk -uAA -uwR -pqD -kPk -pqD -sDq -xav -iwo -wDz -bDu -tXX -nBE -rRY -kvl -hAP -hAP -hAP -hAP -dOk -rVE -hna -rhd -rhd -rkG -rhd -rkG -rhd -jSE -rkG -rhd -oZE -awi -sMe -lRJ -fJs -lIr -rRb -aaa -aaa -aaa -aaa -aaa -acm -oOW -phF -gyV -dfk -eOt -eAu -pTL -qKR -gyV -pBh -oOW -aeU -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(93,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -qlC -qlC -efG -efG -efG -ehY -qlC -sLD -dfV -not -fcM -dxB -xjv -nvE -mog -mog -mog -mog -mog -bSM -rER -vzZ -iXd -ffI -xDb -yfA -piQ -uqW -fTr -rky -fKi -ngg -ngg -ksr -rbk -azg -gtq -oZX -igR -vUu -pJz -fvX -tFb -pzm -bZg -iHG -afQ -apv -ouM -apv -hoK -vkC -scE -pqD -iza -iNc -ueO -kTK -wDz -jRR -wDz -wDz -jXN -aSo -xSC -xYY -usF -ruB -xLH -sYn -ntE -naw -ttn -psP -igC -iwL -ntR -iYS -xgs -fTQ -bum -hKc -jvl -xgs -xgs -xgs -aaa -aaa -aaa -aaa -aaa -acm -mLN -tAX -gyV -mQB -vHZ -cPw -bwN -qDE -oNr -gyV -mLN -aeu -aeu -hzC -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(94,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -paf -efG -qKE -aUU -efG -loI -qOz -qlC -uqN -vTD -wdD -kEz -kMs -fmQ -huc -vxb -kEz -kEz -dcl -vxb -dUa -nkQ -fPp -pxu -qQj -lbO -cml -lbO -igl -kKm -igl -cml -lbO -cml -lbO -tdk -tdk -xZi -rqq -plX -jCm -cXT -jCm -jCm -qnK -cXT -qZf -pHD -kcE -qSg -mkQ -apv -apv -hoK -gOo -pqD -pqD -fob -oWx -iza -hsr -jHy -pqD -jLy -dOk -jMK -xLH -qcv -xLH -xoI -erN -oBq -nJj -oBq -fWX -boE -kgE -qwi -iZv -gpy -fiR -uap -lnU -riB -hmO -acm -qJs -aaa -aaa -aaa -aaa -aaa -qJs -wWW -tth -oNr -eOt -gbY -mQW -mdX -oNr -pBh -rAA -mLN -mLN -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(95,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -efG -vtt -fSW -qlC -sdT -tpr -efG -qlC -efG -bJM -qlC -efG -qlC -uZq -pkE -nEV -pkE -afB -nEV -wjG -ovv -xjO -yeo -qbh -cml -nOc -fIx -raY -jzh -wxj -otF -msf -bDF -fxM -plX -fFW -qhC -hsO -vqs -jCm -iEu -ayo -ror -tBJ -jCm -rhT -sqg -rhT -rxJ -ssx -qSg -mkQ -hHM -vNS -vfF -pqD -pqD -ofa -tZG -tZG -kUR -gdA -kbl -xCh -weh -weh -weh -xLU -gXJ -vgU -coz -gVv -ePe -wmr -lyd -tjE -gmG -gmG -gmG -sow -mbP -sgA -mGG -xgs -xgs -xgs -aaa -aaa -aaa -aaa -aaa -acm -mLN -phF -arU -xGy -eEY -ewt -rNk -gyV -eOt -eOt -eOt -mLN -aeu -aeu -aeu -cry -aaa -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(96,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -qlC -aNg -two -efG -efG -bxG -efG -aLK -pvA -llj -ktc -izv -efG -ibi -gjL -cWy -vto -klK -iai -iai -rEV -nIx -pTR -gBx -igl -cyv -uiN -fhv -eOl -oJV -rzr -rYK -hRZ -xcJ -krw -fgo -egs -vxa -hZS -bdF -qHV -rTu -tVC -era -cXT -lam -aia -unQ -rxJ -rxJ -rxJ -sgh -apv -apv -hoK -hkC -pqD -iza -pqD -kwK -hpg -pqD -hNI -hSG -hSG -jqb -jqb -sMa -oBq -nXW -ekM -vJk -mCm -gmG -gmG -pDM -xJK -qlD -gtU -nZE -tOB -plp -lzs -gOq -lIr -fdC -oSK -aaa -aaa -aaa -aaa -acm -oOW -lGa -arU -arU -gyV -gyV -jvQ -pBh -arU -gyV -wso -mLN -aeu -yma -yma -sYw -yma -nie -acm -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(97,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeu -aeu -aeu -aeu -efG -dSe -exJ -tgJ -qlC -kHI -efG -efG -qVk -efG -qlC -qlC -efG -ize -lqy -dfD -gfz -dXI -dkA -ovv -ovv -nIx -ell -ocO -eAl -rYf -wqF -vMN -aPR -gnN -ixN -fST -hee -oTt -plX -ttt -kQH -lZK -bHj -jCm -eri -lcN -ngF -dgW -jCm -qpx -lwW -liS -snW -hEw -rxJ -uLJ -rky -xNJ -apv -jcd -hhX -pqD -gqD -jqI -pqD -pqD -vCf -lDS -xfe -prK -jqb -ayY -oBq -wWm -kIz -wgr -nFe -cmc -nPT -gmn -nPT -xun -tjE -tOa -xPc -cRG -rIq -xgs -xgs -qkf -aaa -aaa -aaa -aaa -aaa -acm -kCk -pLC -vJH -arU -arU -jvQ -gyV -gyV -qsv -jvQ -vHP -gJK -pNg -iSQ -xbk -vKm -vKm -wPy -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(98,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -qlC -gbU -emo -bpp -vtl -gYV -cKW -ydV -ydV -ydV -efG -yfS -sOS -fSK -pDP -oQe -jdl -oQe -lqy -rEV -ugp -nIx -pqB -fPj -igl -cyv -oCI -kHR -kHR -riQ -lbO -cml -cml -lbO -cXT -cXT -jCm -cXT -jCm -cXT -jCm -jCm -wbo -jCm -cXT -pzA -tKB -foU -gFO -cvm -aeG -xCq -izM -rJJ -rFx -qhf -hKB -pqD -iza -pvs -pqD -tpl -duM -cZW -duM -vlJ -srW -hkq -nOI -buU -mCm -caS -ruo -gmG -gmG -pDM -pDM -gmG -gmG -hmO -kem -hmO -kem -hmO -acm -qJs -aaa -aaa -aaa -aaa -aaa -qJs -wWW -nhc -vuZ -dqF -gyV -gyV -gyV -gyV -vac -jvQ -tPz -dZS -vKm -uAt -vKm -vKm -vKm -wPy -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(99,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aUz -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -efG -ukd -uDt -ykB -bAi -ueY -pGS -sTO -efG -gUZ -qlC -oMZ -xcj -dXI -cqE -oQe -odE -oQe -slh -ovv -jtk -nIx -uLj -fPj -lbO -jcN -oKV -vFD -iFI -fcs -lbO -mHe -xkP -dcr -jCm -cYZ -cjp -cXT -hmn -ylP -cXT -oUc -qHV -xHn -jCm -qnL -spE -wmM -ojs -iIX -rhT -jQE -uVx -jQE -jus -nNM -nam -vkh -lep -ylM -xvG -kqs -ikT -glX -nlA -vdT -taU -ayY -oBq -xym -gmG -gmG -pDM -gmG -rTi -rTi -rTi -gva -rTi -rTi -rTi -rTi -rTi -gva -gva -rTi -rTi -aaa -aaa -aaa -aaa -kCk -mLN -jFZ -pBh -iTs -iTs -iTs -mjR -mjR -rqV -eOt -tBR -gJK -pNg -iSQ -qyR -vKm -vKm -wPy -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(100,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -qlC -tUr -gGq -nZC -qlC -nNT -nrh -efG -efG -hOt -efG -mKP -sOS -fSK -lEI -oQe -pPD -oQe -dmU -rEV -jiJ -nIx -pxu -sLb -cml -mgx -vCA -xZO -qLb -lte -aZi -ipI -oUH -bsJ -jCm -xVz -jVG -yaC -dAU -mkB -bEe -qrU -rTu -jCm -cXT -ulS -nex -ulS -ulS -jPB -ulS -rUD -xpv -ulS -cGQ -duW -uEs -vkh -elg -ach -jqb -rRx -lYa -ykO -oaz -nDS -taU -kay -qvJ -njT -gmG -xUQ -nPT -pDM -rTi -ddb -wRM -wRM -rTi -buk -jqW -jqW -rTi -qmZ -iMX -iMX -rTi -jAp -aaa -aaa -aaa -kCk -qqJ -krr -fla -gcy -cqA -wGG -dIg -gab -ubz -pPC -qHy -kCk -acm -yma -yma -sYw -yma -nie -acm -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(101,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -qlC -efG -qlC -efG -efG -uTG -fuX -vlv -qlC -sEK -qlC -vbc -efG -vrd -dfD -olv -vGs -aTb -ciW -dSB -mlC -ffi -veW -baE -lbO -wwf -xlB -guK -fIw -bdk -cml -cml -cml -lbO -cXT -gLP -cgT -qjr -hlP -gDW -cXT -auS -nrJ -cXT -dsw -bNz -nbJ -sxC -goY -aNH -rdV -rfM -wYi -uTt -fyc -fNe -rqW -vkh -jqb -gHD -jqb -vCG -rbH -ppy -gdP -uNI -bnY -aIl -suo -lYT -gmG -gmG -pRP -gmG -gva -wRM -qXA -gos -rTi -jqW -jeS -dmC -rTi -iMX -uWz -gTD -rTi -agt -vku -bzb -kCk -kCk -dyC -qAx -wzY -ouE -qoi -xCy -vWe -tnC -jCP -ygO -xWh -lqC -hEU -aaa -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(102,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aUz -aeu -aeu -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -efG -skR -pxl -dED -lAC -jqV -sLG -qfu -qlC -qlC -hTK -ufc -fwM -spV -waI -rEV -eBx -nIx -pxu -oCJ -cml -lbO -cml -lbO -lbO -cml -lbO -ybm -hoz -jNW -jCm -cXT -cXT -cXT -jCm -cXT -jCm -fPN -lSY -cXT -dVb -uyl -uxz -ose -nps -uwl -nQs -uHF -eRx -lUD -tzI -fNe -cRq -btI -jqb -jqb -hNI -jqb -jqb -jqb -hNI -jqb -jqb -ncB -sHD -rXp -gmG -pRP -nIh -pDM -rTi -oeS -dyD -rbn -gva -dtg -ptu -ulg -rTi -luP -hwY -pfc -gva -acm -acm -acm -oOW -bzy -vhi -mcs -eNV -fmA -fEb -jyS -brE -wzr -lNp -oix -sAV -kCk -acm -acm -aeo -aeo -acm -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(103,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -agt -acM -vku -aeu -coy -aUz -aeu -vku -acm -aaQ -aeo -aeo -aeo -acm -vku -acm -aaQ -aeo -aeo -aeo -aeo -acm -vku -aeu -aeu -aeu -aeu -aeu -aeu -qlC -drp -aZh -btK -lAC -iLj -amG -gGs -tpr -efG -quG -qlC -efG -qlC -efG -efG -efG -wkC -pxu -sLb -jlw -vJT -dZe -fcX -hAF -jlw -pwx -ebK -iaH -fCM -fTW -cXT -gVp -yjq -kLa -xwt -sbX -qwx -wGp -jCm -jiT -mNT -uXe -xMC -xOP -pIa -cLL -hPR -kQI -lUD -gDv -hQF -fNe -tuF -fmo -qKX -koE -peT -oNo -ekM -juj -doj -ekM -vGJ -tdv -rRA -eeq -fhw -sDe -gmG -gva -fLZ -xLM -wGd -rTi -fLZ -xLM -awG -rTi -uhp -xLM -uhp -rTi -acm -osW -vqj -mLN -isO -ePm -bfA -fdp -mLN -vqj -nmo -gxi -qmR -tAN -upW -lts -yma -aaa -acm -aaa -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(104,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -cmU -cmU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -acm -aaa -acm -aaa -acm -aaa -acm -aaa -aaa -aeo -aaa -aaa -acm -aUz -coy -aeu -aeu -aeu -aeu -efG -hVZ -gPZ -dpe -nNT -pms -qlC -rfo -hne -efV -hne -ehY -gMK -uDt -ehY -tlL -vjY -scN -guC -sFg -dBw -xYz -hxb -vew -ias -dBw -wnc -usX -oPh -wAn -iTy -cXT -ekY -cgj -rVw -jCm -jCm -eeC -jCm -cXT -ulS -rNN -vze -dYQ -iBV -kiG -pUk -elS -mfG -lUD -lUD -tzI -gWw -tuF -kNO -ekM -bza -cTi -ipg -eiY -cTi -uqT -bBr -rvj -nsQ -gDJ -gmG -fgb -deI -pDM -sSZ -cVb -vdS -rrS -kVN -oDt -kVN -rrS -kVN -sRi -kVN -oaK -oLp -tvH -osW -oNr -mLN -nqn -nDX -bfA -vCV -mLN -ekp -dtb -uJp -yma -yma -kPK -ijr -crz -ehx -acm -acm -acm -cow -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(105,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -sZw -aeu -aeu -aeu -aeu -ceF -ceF -ceF -ceG -ceF -ceF -ceF -acm -aaa -acm -aaa -aeo -aaa -aaa -acm -aaa -aaa -acm -aaa -aaa -cmU -aUz -aeu -efG -qlC -efG -efG -qlC -efG -ehY -vTt -keP -hfl -oiJ -tPD -tPD -vbi -tPD -tPD -uAS -efG -aDO -cQV -lnD -jlw -lVx -scT -jsc -ePf -jlw -vou -jRx -jEp -xnC -sKV -cXT -txi -ndS -vcL -cXT -niy -nOp -lre -vne -jPB -vCO -hKQ -uFh -djC -rAB -oTU -sVi -evt -eRx -lUD -tzI -fNe -uok -vkh -ekM -tBT -drC -kbv -uXZ -pNV -eAa -ekM -hBx -xLH -xXz -gmG -kNz -gmG -mjh -jwV -esZ -vId -eTh -xAI -mSf -msS -aYu -osW -eAs -oup -hSv -wRU -wRU -acF -aWF -kCk -eyx -qsv -bfA -drk -mLN -bjJ -dtb -laf -pOG -wRr -nim -cMV -yma -aaa -aaa -cow -aaa -cow -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(106,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -asZ -asZ -aAg -asZ -asZ -aAg -aAg -asZ -asZ -ceG -ceF -xbZ -twg -dHw -caN -ceG -ceF -ceF -ceF -aaa -acm -aaa -aaa -aaQ -aaa -aaa -acm -aaa -aaa -acm -aeU -aeU -qlC -mFa -cfu -gKC -mLE -ydV -xVu -qfu -sME -dja -tPD -uxN -ifu -hjD -nSq -tPD -tPD -efG -tCY -pVd -gwV -dBw -hjZ -jlw -jlw -mNz -dBw -dBw -jlw -sVh -pFT -eCd -cXT -jCm -gNy -iUM -jCm -jJx -ljy -gHc -sIO -eMC -pog -bUV -fyf -xCA -joK -oBT -fsZ -aHq -oyP -sWN -rTv -fNe -wgX -uQN -ekM -ekM -ekM -ekM -ekM -ekM -ekM -ekM -ayY -ojG -wWm -gmG -mRV -rrO -cfL -ajo -wiR -hmK -mJP -fVl -bAc -kSs -kbw -qoo -sfV -cEu -dCX -eBi -vWC -hxi -vJZ -vNB -eEz -vhV -clL -qOG -mLN -acK -yma -tur -yma -yma -kix -yma -yma -aaa -aaa -cow -aaa -cow -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(107,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeu -aeu -aeu -aAg -asZ -asZ -asZ -aAg -asZ -asZ -asZ -asZ -aAg -ceF -ciT -sVj -pfM -pYO -mQS -adR -qvc -aak -oVl -cHu -cHu -aeS -aeS -cHu -aeS -aeS -cHu -aeS -aeS -cHu -cHu -cHu -bWI -pnK -bbl -naY -pGM -efG -qlC -fbm -fbm -efG -vbi -rLy -nIq -qlk -mfD -gkb -pvb -jdY -wor -yip -nwE -jlw -tmV -jlw -fOd -fBF -sJd -ovw -kqG -eCd -hwZ -wqd -ugG -fWB -rNX -eJc -sVh -mKv -trj -vCa -wNo -irj -caj -gFF -aKA -xcp -tDu -dRr -qxI -pEA -eZx -ulS -uST -hQF -ygA -nrv -spi -tGQ -qcI -bLR -htP -knR -eYB -knR -rNg -xLH -rqm -gmG -rtc -uwP -mjh -ofA -hGa -dKT -kFR -tDT -sFG -wGx -oIq -tZs -oIu -wLY -oZT -qEL -cNP -lsf -vQt -mLN -cud -fLu -oGO -mLN -mLN -acK -yma -eRK -nkg -goi -lfE -uNv -iyd -aaa -aaa -cow -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(108,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -asZ -asZ -aAg -aAg -asZ -asZ -xCY -asZ -asZ -aAg -asZ -ceF -jBT -auf -xQU -nAe -fpk -peu -chO -iyi -ceF -aaa -acm -aaa -aaa -acm -aaa -aaa -acm -aaa -aaa -acm -aaa -aaa -efG -efG -qlC -blA -wJj -qlC -aaO -aDQ -aDQ -acW -uxN -jqt -skB -taM -hjE -uCR -hJy -cyp -gFA -kbY -lAA -dBw -jlw -iMN -vUY -rna -mma -oSD -lvy -fEE -oPz -eiz -cIC -dkH -nvP -jyI -ehF -kca -qAc -qAc -xms -ulS -jPB -ulS -nby -nby -gLO -nby -mqa -nby -nby -ulS -ulS -mbp -ffh -bVR -uPM -suo -kqI -vWH -fZk -xLH -xLH -xLH -xLH -xLH -gip -pDM -gmG -qDI -cfL -irG -utk -cLu -vbx -sCY -hFm -rCH -dgE -vum -aAQ -ouX -nDi -dnO -unr -sni -pBh -mLN -mSm -vEt -gsB -oOW -aaa -acK -yma -eni -kno -yma -oOW -yma -yma -aaa -aaa -cow -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(109,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -asZ -asZ -wBs -raM -qUO -alz -ceg -bGE -cdf -pIy -asZ -adg -azv -grQ -azv -adg -veZ -chD -chD -chD -chI -aaa -acm -acm -acm -acm -aaQ -aeo -vku -aaQ -aeo -aeo -acm -aeo -vku -acm -qlC -tmt -efG -efG -aDQ -adf -add -abJ -uxN -vKc -xRE -pDF -jQW -qXc -qPH -vKN -gIz -pxu -pji -hRf -dBw -tZK -xCa -kUZ -dUe -iBz -mKw -sVh -ygV -vzr -ohq -wzG -xBi -luK -eCd -fNG -xhl -lRd -woj -qmx -twV -mAf -nby -mwy -wzk -hxQ -lrO -cVH -pxE -olN -ufE -tmZ -efe -mWR -olz -aig -rNP -fHj -cWu -vnJ -pjZ -naK -naK -vkr -ajH -gmG -nIh -uzQ -rBE -kZz -bBE -srX -kPv -hoI -aSv -wjP -ajv -wSL -ajv -uDQ -pED -xsZ -dxq -jkB -bjJ -kCk -kCk -kCk -mLN -mLN -aaa -aaa -yma -yma -emU -yma -aaa -acm -aaa -aaa -aaa -acm -acm -cow -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(110,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -asZ -aAg -asZ -cIb -tzU -cdV -cdV -cdX -ceD -cdV -hbf -mtA -tSx -mha -cgp -tqQ -adg -eXj -yiF -iGD -lTc -mMj -ccP -ccY -bzS -cdt -acm -aaa -aaa -acm -aaa -aaa -acm -aaa -aaa -acm -aaa -fbm -ydV -fbm -aDQ -add -aDQ -bjR -aDQ -uxN -itn -jRQ -wFL -eBZ -uxN -uxN -qNr -vbd -cuW -phK -sXl -jlw -dBw -jlw -lHE -ele -tZB -gbO -vDD -xLk -rnG -xXp -gZl -sSN -bnl -sVh -xkj -sdd -mRo -fqP -qPX -lLv -ewl -gLO -wbT -dod -dki -vvC -lSl -axt -fBI -lcS -kNK -hyl -hXK -hAJ -fqQ -hAJ -dUK -kDR -hAJ -fqQ -woJ -fhs -gmG -jLM -gmG -rRm -aOg -gry -rMi -bDP -inE -fwf -hNy -pkr -nxY -wuK -aLP -jUz -aBi -mnE -gzC -sBm -wRU -acK -rTi -gva -rTi -rTi -rTi -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -cow -cow -cow -acm -aaa -cow -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(111,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -icx -aeu -aAg -asZ -gkD -aaw -uqv -cdY -cdZ -cAJ -cdY -upZ -qKf -xIq -adg -byD -cgJ -kBU -alV -uIs -afw -afU -afw -cit -ciw -bAf -acm -aaa -cev -aaa -aaa -acm -aaa -aaa -acm -aaa -aaa -acm -aaa -efG -fpQ -efG -oSs -tre -jbP -tlM -oSs -sac -uxN -yjd -kut -itn -uxN -qNr -beN -hdy -vuj -oJk -wjD -fNT -ijQ -dCM -vSi -lMf -fCs -lMf -qJf -hja -wEt -add -rnG -hZp -rnG -rnG -hbE -fYh -fYh -hbE -fYh -rKj -fYh -fYh -cEr -lSt -ept -cfC -dPn -axt -mcN -rmI -tzI -ueZ -djW -hAJ -dsH -lWQ -nWG -mBm -eHa -vqM -vVT -vqM -cfL -pRP -gmG -sfI -biP -uHj -uHj -ePy -bDQ -ouC -kHQ -wRU -wRU -sSh -jUz -jUz -jUz -cre -fYm -ndP -uZZ -okk -aGs -hky -gQV -xha -rTi -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -acm -aaa -aaa -aaa -cow -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(112,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ciI -rRJ -asZ -asZ -aac -aay -iBD -cdY -jIX -vFk -ceq -atB -xmB -acu -flL -acx -mIX -aKI -kQQ -adI -xxJ -mld -aed -jsj -aeq -aex -aoE -aoE -aoE -aqv -awb -axk -awb -awb -awb -awb -awb -axk -awb -qsF -vza -qsF -yfq -kZX -yfq -yfq -yfq -ioT -fOf -pll -sCC -rxu -xjR -hRo -sne -tUe -pzC -rOR -tEE -mfJ -bqd -qTC -sHm -ddp -vRO -rsb -aZw -tud -mQN -aDQ -sIf -rLG -uiX -czT -osR -eGh -jKv -mgA -sNe -kYG -oBy -oIv -cEr -dFA -nGJ -soC -cHI -axt -ixO -kqD -dJg -hyl -rsw -hAJ -hJD -vbP -iAX -mBm -brg -vqM -auN -wvj -cfL -pRP -uUO -csk -uUO -ves -cfL -okq -sOn -ouC -iwT -wRU -cWb -daL -cec -rON -xzi -uYw -qfi -nEg -uOC -acT -xLM -fDS -kox -xha -rTi -acK -acm -acm -aaa -acm -cow -cow -cow -cow -acm -cow -cow -cow -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(113,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -anH -aeu -asZ -aAg -bQR -aaI -vPL -cdZ -cdY -iaf -cdY -nhd -wjs -mHq -adg -lxf -nIX -wSY -glG -msW -cij -cio -cio -lJg -ciy -bAf -acm -aaa -chM -aaa -aaa -acm -aaa -aaa -acm -aaa -aaa -acm -aaa -efG -pOW -qlC -phQ -nig -jQV -ssU -poU -emd -inw -qNp -mDb -rIY -qNr -dbD -bjd -uwT -eLp -ukU -dYy -fzL -yej -qTC -dLu -mOj -gpS -bMN -qPv -gNB -mQN -uWQ -czT -czT -hbE -fYh -iyT -hIY -qXv -iJN -iJN -qJB -vyV -iWj -cEr -kMM -nsp -iWy -qbA -cfR -boq -pPe -tmZ -aQs -rsw -hAJ -kIf -rIk -seU -htZ -qYO -uUk -giA -nfN -mjh -xhH -uUO -jSC -nPT -kHr -cfL -dgu -dva -anF -iwT -ikt -ylD -gYK -vqv -cjv -iLQ -lst -pWY -tzF -blX -eQf -fOH -eSl -mCT -xha -rTi -acm -aaa -cow -aaa -cow -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(114,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -asZ -asZ -asZ -hJZ -xaf -abg -abC -abF -abC -abC -tlS -krv -tSx -ixf -ccr -myg -adg -qfq -apx -irE -ill -aSa -ccX -cdl -bzS -cdu -acm -aaa -aaa -acm -aaa -aaa -acm -aaa -aaa -acm -aaa -fbm -aSr -fbm -acW -aaO -hDB -hDB -hDB -qZx -hDB -hDB -qZx -hDB -vqw -vqw -vqw -vqw -vqw -aOc -laB -npo -uke -ijQ -kNw -tgZ -bFw -xke -mMR -nIw -mQN -aDQ -czT -wiM -pFs -tnq -fvT -spQ -sQj -cBW -ftz -wVR -mOz -oBe -cEr -wgS -nTr -oJq -qNJ -bgl -dbi -rqi -kNK -hyl -jjj -fqQ -xCz -rIk -rIk -viM -ifv -dHq -nbH -nwh -cfL -dQM -biP -sfI -vmg -gmG -mjh -vpd -hkL -kuf -dgg -wRU -gvu -qgC -aGM -kbZ -iLQ -lVf -gzC -nCK -osW -vfO -rTi -cCe -rTi -gva -rTi -vku -acm -gGF -acm -gGF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(115,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -asZ -aAg -roV -kbf -lLi -abD -abM -poZ -pKt -egV -asZ -alV -acG -dsI -chV -adg -clm -ciM -chI -chI -chI -aaa -acm -acm -acm -aaQ -aeo -aeo -vku -aeo -aeo -aaQ -aeo -aeo -vku -acm -qlC -ukM -efG -efG -tPD -qZx -klm -pac -bNv -bxx -oTw -oZP -pzP -tLM -jEd -bsc -xDm -vqw -dAZ -oHD -bSC -vSq -qTC -hZt -osA -piB -xSU -pyW -nal -mZW -kLy -dyK -vZv -kNS -faN -pAE -goh -bys -wIR -tMU -kNG -lMZ -eyU -cEr -cEr -qxA -ivG -cEr -hbE -fYh -fYh -utH -hyl -rsw -prX -gBT -hIS -rIk -iqd -mGz -cfL -cfL -mjh -cfL -gmG -biP -gmG -pRP -vpX -mjh -hDV -gIE -kuf -ebp -wRU -ylD -gYK -rah -cjv -iLQ -rov -nPN -pet -uZZ -gkx -aGs -iug -fMF -mvW -rTi -acm -aaa -cow -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(116,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aAg -asZ -asZ -asZ -aAg -asZ -iMJ -asZ -aAg -asZ -asZ -ihg -rLN -fSZ -mHd -kZH -rRw -rRC -ihg -aaa -acm -aaa -aaQ -aaa -aaa -aeo -aaa -aaa -acm -aaa -aaa -acm -aUz -aeu -aeu -aeu -efG -duH -rTp -dbp -tPD -cBG -lun -hLj -hnL -ixc -wAS -ixc -lED -orT -szg -sJJ -pxN -aHW -mXO -uet -ttd -jCl -ejO -uCf -soB -xtG -gKg -dtP -sSA -mQN -cnR -czT -xwk -kNS -pGe -sCK -csj -dZM -qQQ -jXk -gMg -wOB -wtz -gHE -bdo -wHR -vrD -smq -pik -dfi -vfb -fgJ -iQY -dpx -hAJ -kax -hAJ -oqN -hAJ -fqQ -gmG -een -iGg -vKO -aEF -rRU -eEJ -nuo -kuk -cfL -tbk -woc -kuf -riI -vRK -enr -ejX -jUz -cCJ -fdd -ryZ -xrz -kRD -oup -vfO -xLM -vns -trt -mvW -rTi -acK -aaa -cow -gGF -cow -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(117,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -asZ -aAg -aAg -asZ -asZ -aAg -asZ -asZ -aAg -asZ -ihg -fLd -yah -wrp -fJz -fmx -jpX -rZN -acm -aeo -aaa -aeo -aaa -aaa -aeo -aaa -aaa -acm -aaa -aeU -qlC -qlC -efG -efG -qlC -efG -ffY -wnV -pEL -vbi -oou -jBi -vvH -vvH -uKp -bkN -rWg -rsT -orT -aIq -suF -tGZ -wLu -mlw -eDT -fzL -bji -qTC -hNL -hVU -mCs -vYn -eJk -uRG -mQN -sIf -czT -hjn -the -nCI -dsk -jBN -izt -xjr -hGf -wZW -jNe -roT -dOg -eyU -gDR -ipC -ipC -wGQ -eyU -tWL -xEV -fqp -xRB -lcw -wQK -uvi -rDl -uvi -hEE -jQT -acs -lDB -hVj -sxl -gGx -sRV -pDM -sLl -cfL -wRU -tZe -xJs -osW -wRU -wRU -wPh -cUM -qSe -xAW -dkD -kMq -tYZ -blX -eQf -fOH -qWT -wFB -mvW -rTi -acm -aaa -acm -aaa -cow -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(118,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -asZ -aAg -aAg -asZ -asZ -aAg -asZ -aAg -asZ -rZN -ihg -xYa -mAj -mPo -pwa -ihg -ihg -aaa -aeo -aaa -acm -aaa -aaa -aaQ -aaa -aaa -acm -aUz -efG -efG -pGA -vVM -oYV -jCD -efG -qlC -yaN -efG -tPD -sLU -uWU -nYp -mLJ -jBi -vvH -dRF -mIq -myS -nms -uMf -rLh -vqw -oqu -eAn -tjA -xoT -wiw -ikR -ikR -rxe -bvN -fiY -kzG -mQN -rLG -czT -vZa -axE -lEi -yjV -iLz -eVT -qQQ -hGf -bXj -fqG -tZk -lGF -xPO -vRP -bqy -qoT -vJB -dLh -tWL -tmZ -inF -lwV -qsb -uvi -qHe -czj -qsb -qsb -cfL -eOG -uNY -vlq -gmG -qYr -ttR -gmG -pLl -sOV -knv -xIB -rvk -iKX -oat -hAc -iZB -hRj -lsW -nWU -ugr -gzC -gSz -wRU -vfO -rTi -tHs -gva -rTi -rTi -icx -acm -cow -acm -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(119,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -coy -aUz -aeU -aeu -vku -aeu -aUz -dVd -aeu -aeu -aeu -aeu -ihg -rZN -ihg -ihg -ihg -rZN -ihg -acm -acm -vku -aaQ -aeo -aeo -aeo -acm -acm -aaQ -vku -aeu -qlC -rtx -aIv -ngW -tlb -bSA -kFG -qAK -xag -dBs -tPD -uKi -jEC -krN -krN -ipb -tRw -jEC -rsT -orT -pDK -dsc -aFn -vqw -rQl -jzt -fzL -hjJ -qTC -nHG -wOb -jDy -tDW -inT -diG -mZW -sIf -dyK -bXb -jRe -pgQ -fnu -eqE -jpF -fZy -njd -cEr -swY -eyU -cEr -cEr -hNR -cEr -ivG -cEr -fYh -fYh -xNk -hyl -qvG -kTq -kxH -rAr -rFg -xYE -eqV -mjh -csW -olP -pDM -kDy -nEe -nbn -vlq -liK -qNH -tcg -wcP -yhW -kOx -eEB -ujT -ccQ -slu -lAV -mST -uoN -rDX -pet -uZZ -gkx -aGs -gpe -tJa -lNn -rTi -acm -aaa -cow -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(120,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -ciI -cmU -cmU -cmU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -ccz -aeu -aeu -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -aaa -aUz -aeU -aeu -aeu -efG -kWK -cvT -aNw -rDO -leF -vUo -elw -wnV -emB -tPD -sMO -iBH -ley -mug -nGK -azw -ixc -xrm -orT -xGh -cVg -eQG -vqw -twc -qks -nCv -hdz -ijQ -fnZ -wgO -iOb -hbH -uHN -dhT -mQN -abJ -czT -gvM -wSi -kql -dzL -nRO -iVl -pab -jcK -pkK -nEQ -yaM -cEr -itw -uWM -mwA -cMr -xEZ -wIE -nnV -vMM -hyl -nCc -lYi -rKN -lyT -wjm -wjm -dvu -cfL -huS -yem -lvS -llu -cfL -tUm -mjh -dIN -cfL -wRU -oup -vhp -wLM -wLM -wRU -xjB -eyv -ufG -jia -mOg -euh -nwN -oup -vfO -xLM -oYN -qms -lNn -rTi -acK -acm -cow -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(121,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -anH -aeu -aeu -aeU -amq -aeu -aeu -aeu -aeu -aeu -aeu -aeu -vku -acm -aaQ -aeo -acm -vku -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -efG -xZr -dDO -yhh -gSL -jas -bed -lrp -xag -irJ -lZi -lZi -lae -kLR -xpJ -hQP -tdt -fzJ -shk -orT -aQB -mfU -vqw -vqw -imo -tEE -fzL -nTG -qTC -nqZ -bRV -vYI -lYE -mfw -pNk -mQN -jJh -czT -czT -hbE -fYh -oZS -mKA -qXv -iJN -iJN -mBS -qVC -pSj -ivG -ath -cxO -fLx -kXN -ntC -oUL -eon -tmZ -hyl -ojZ -kTq -eMc -rFc -jKz -toZ -bSi -kBd -llu -rRm -gmG -qVA -cfL -gXX -pgA -wJD -unS -wRU -jzm -vXI -dof -wgq -osW -eKA -bdU -jYc -tNB -cUA -aal -gZm -aeL -eQf -fOH -gyn -qpI -lNn -rTi -acm -grK -gGF -aaa -cmU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(122,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aUz -aeu -aeu -aeU -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -acm -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -efG -qlC -iMG -izL -pIK -tRO -lRk -fvU -iyF -lRk -stA -iUT -lZi -iUT -lZi -lZi -hDB -hDB -qZx -hPW -vqw -vqw -vqw -epA -xxP -wqE -wuh -tzl -qTC -gHi -jLq -shP -evs -ykb -siI -mQN -aDQ -sIf -cnR -nfR -czT -nep -fez -fMs -pXt -nbu -mzp -cqO -lPm -cEr -aPq -efP -exz -wfk -fgA -ieI -nnV -wpD -vKQ -xGw -fXS -oBA -pqb -lTM -pqb -tdW -cfL -llu -cfL -cfL -mjh -cfL -pvi -giU -nny -hkK -wRU -bcQ -nhO -dof -pvu -lqU -uuK -qRp -jrR -hBk -coj -ero -vSp -lqU -vfO -rTi -cCe -rTi -rTi -gva -cke -acm -cmU -aUz -cke -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(123,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeU -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aaa -aeu -aeu -aeu -cIU -cIU -cIV -cIU -cIU -efG -efG -qlC -efG -efG -fvU -gwa -wrR -cnW -fRw -fRw -fRw -jyF -jNR -fvU -kfh -sZe -ffu -icJ -siF -lac -gba -cDH -maW -cWl -dqa -dCM -ijQ -wEI -lJd -vbo -lJd -hNL -fUP -wEt -wqu -tXg -niQ -tXg -dvk -fYh -mMc -rzE -rcM -lpt -rcM -xML -rcM -rcM -bBS -grq -wVA -dJd -jmj -fvb -vDO -kPo -hyl -xRB -kTq -rDe -whm -iSG -pcO -fkB -cfL -kDy -cfL -kUB -gTc -jLS -pNZ -mSM -kZU -tnp -ikt -baC -fse -ouk -blw -bSg -pJJ -eaw -fts -hnb -aYN -tUc -sGV -uUA -gkx -aGs -wae -vIE -hEV -rTi -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(124,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aeU -aeu -aeu -aeu -cIU -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -fvU -lRk -lRk -fvU -fvU -lRk -lRk -weK -gMp -lRk -hvj -jOA -tXZ -kRd -uBO -kwe -kxS -uxw -cDf -bpj -jds -jds -ios -nZk -wJt -oOT -qRy -qUj -bDr -dvk -niQ -dvk -fpG -gbs -tXg -cEr -bgn -jwi -rcM -scg -vuF -eib -eDg -eRD -bBS -pOd -pjm -kOJ -lfU -iuP -nnV -mmF -hyl -iaw -qsb -qsb -qsb -uvi -qHe -qsb -cfL -wpI -mjh -mCE -nZF -eQj -wbH -sIx -vaz -oYd -wRU -vly -jbg -iNm -mZb -lqU -tZz -eFn -clt -owT -uPX -cPp -vxr -tKi -vfO -xLM -vVP -dlS -hEV -gva -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(125,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -aaa -aUz -aeu -aeu -aeu -cIV -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -lRk -qPU -kOb -jBy -sdm -cES -fvU -fRw -sWA -lRk -gyx -vXa -exN -byy -jKt -sBz -hEa -sIq -ePU -jds -ios -dOL -qbV -hxw -vWE -ndT -ezV -cTk -kcx -xPk -mej -sNo -bXX -pEc -wcV -tmD -fbF -wnJ -mHc -qxh -iOD -dKN -vOH -sHf -bBS -bBS -bhk -tqz -jlh -jlh -bBS -wNs -kVv -nrv -sPP -tGQ -mMz -rkT -uSk -hrY -luO -lig -jEO -rKm -xcE -vvE -fEu -qFb -jzw -mHa -sMf -wRO -uCS -twu -iTB -vVx -vzt -oqW -dwB -rtF -ipJ -fxB -bks -uAE -bEa -vZy -qaZ -hEV -hEV -gva -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(126,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aeo -aeU -aeu -aeu -aeu -aeu -cIU -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -lRk -fvJ -fOI -vFU -exP -wlm -lRk -wrR -fvU -lRk -aOG -fCH -kGD -ubt -bHK -kVY -spZ -waL -dom -jds -fby -aPg -etD -iWm -dKo -uew -uew -teH -eHu -pyJ -gka -bRb -nAE -fiy -hMZ -ygj -wMt -gRP -lpt -lTZ -bvA -ssr -vSa -ulp -xUy -ezl -rAQ -wmn -gpz -hfp -vkh -tJX -hyl -nbR -uPM -suo -kqI -oBq -oBq -rwh -oBq -jSM -jEO -hXL -qvV -oKp -sZz -unE -hoV -kEQ -wRU -vRX -iAU -rnP -oJr -tKi -eaQ -sZb -kyR -ikh -lhG -tpw -jYT -pLs -ygU -rTi -rTi -gva -rTi -rTi -aeu -agt -aEg -cko -cko -cke -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(127,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aeU -aeu -aeu -aeu -aeu -cIU -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -fvU -plG -yeH -yaY -iBv -wxI -lRk -wpf -aVn -fvU -vOM -gxe -sAZ -mLb -puB -lac -idF -bpR -sFg -ios -buD -qBC -fxP -nSh -pFS -elD -vAw -bXz -ekL -xPk -sWI -xPk -ppl -pfV -tXg -dvk -wFl -dKJ -wFl -swA -lBj -qaF -xUk -pOS -rcM -jlh -qgu -rZU -pQr -hfp -adi -pVQ -mJo -wBJ -hkw -aig -mAa -irM -dEl -prP -rFi -sSg -aWD -aWD -rWT -qPf -fMt -vbj -knh -pRO -jBs -fGu -chS -kep -npR -gwk -pVF -xMs -tJK -sLW -hEY -gXh -uSB -pLs -ygU -aDT -clX -clY -clX -clz -clz -clz -clz -clz -clz -aEs -aeu -agt -aeu -aUz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(128,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vku -aeu -aeu -aeu -aeu -aeu -cIV -cIX -cIX -cIX -cIX -cJo -cIX -cIX -cIX -cIX -fvU -muR -iVF -elc -hIs -jre -rsZ -qaI -nrN -lRk -lRk -fvU -xsO -eQO -oLR -lRk -nbU -cQV -bZE -jds -qeT -tuT -ufD -hxt -jds -bXz -ekL -bXz -pVS -dCW -mXM -sWI -fHw -pdq -xyp -tXg -aVH -joL -wFl -tGS -aYv -qaF -teb -bJR -dmD -tqz -fxd -civ -rNZ -fLy -oYi -ufy -nfa -nJA -ekM -ekM -rtT -exH -ekM -ofq -xLH -xoh -qRv -mGj -mSu -ohj -fvQ -mVo -vPU -xnZ -jBs -lPh -sqM -sFv -dIX -jBs -pLs -pLs -sDy -pLs -pLs -pal -pLs -pLs -ygU -aDU -aDY -aEd -aEi -aEm -aEk -aEf -aEr -aEf -aEr -aEt -aeU -ckf -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(129,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -cIU -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -lRk -kur -kNJ -mOa -qbc -pjV -lRk -hbT -pjE -aEU -wmJ -fvz -knk -fQx -fQx -oXx -iKy -eMf -oHh -jds -srk -tBj -uQS -iWm -luh -vMW -ghp -qeZ -oGo -pBU -wny -obq -urE -pWj -vTs -dvk -sbz -fun -hUy -oPr -lrk -cau -otP -otP -bTe -jlh -lme -soL -tRL -hfp -mXI -fNe -jiq -bax -kPO -bax -bax -bax -bax -mnO -nJj -glM -kBs -mwn -xeq -xeq -nwY -fbB -gEo -kJf -nOg -wcg -bVp -tgd -wHW -jBs -sXQ -fVB -rSe -xEB -ekm -qEM -gpL -eHf -ozk -aDU -aDZ -aEe -aEj -aEn -aEp -aEf -aEj -aEf -aEj -aEu -aeU -ckf -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(130,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aap -aeu -aeu -aeu -cIV -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -fvU -xlG -tVh -pvH -lRk -fvU -lRk -fvU -kzT -lRk -lRk -oyu -lRk -fvU -lRk -lRk -xgC -umq -kMt -ios -ftG -wRs -pLB -hxw -irL -bXz -hdm -dMp -eBu -jDF -rzV -jgB -rPo -kjK -rOX -dvk -uZN -qRK -dKJ -yeA -fiQ -jfV -rxt -vrf -pBy -jlh -aVx -vKp -ewe -hfp -ixo -gWw -jhz -scX -deG -gkr -pmu -wRE -gng -xsJ -xLH -mMC -bSX -ddI -jMo -hpz -hTB -tGz -vMk -ipf -jYd -usp -ljb -sPG -kPS -jBs -qTg -oWX -puS -cvI -twN -vBt -ekm -clX -cHN -aDV -aEa -aEf -aEj -aEm -aEq -aEf -aEj -aEf -aEj -aEt -aeU -ckf -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(131,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aUz -aeu -aeu -aeU -aeu -aeu -aeu -cIV -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -lRk -fvU -lRk -twR -fvU -fhH -vpi -lRk -apC -lRk -iJf -npi -vvd -luQ -uLA -lby -gsu -sIq -tlW -jds -jds -kZx -ibd -mwe -ios -bXz -bXz -wIL -ffv -kUy -dyX -xPk -laE -tnc -rPo -tXg -wFl -dKJ -wFl -rcM -lpt -rcM -rcM -rcM -lpt -jlh -owG -jlh -hfp -ivF -pVQ -rHz -aMa -yiK -nFm -nHd -oIy -cWS -nFu -qPz -cLq -bld -dwL -mxx -qMC -cYt -gev -vrq -uuC -bxE -jBs -fGu -chS -oIS -qUU -jBs -bty -sHQ -kQd -fKg -twN -bJi -ekm -gFQ -twN -ekm -gFQ -ekm -aEk -aEn -aEi -aEf -aEr -aEf -aEr -aEu -aeU -vku -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(132,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeU -cui -aeU -aeu -aeu -cIU -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -fvU -kLS -sOD -hYu -pQx -xVo -xVo -prY -bpz -fvU -iPw -onc -aTR -hqr -eji -omH -ijF -umq -nGt -hat -nol -lox -ocZ -oFC -lbj -ipo -wxq -wxq -hat -wxq -hat -xPk -sWI -xPk -kbc -niQ -ejQ -yaG -kEm -cTh -gjc -sHh -kvo -wfD -pmI -yaG -nuL -aGZ -kFl -iLS -lVj -aCi -szY -scX -hJz -iHq -rbT -dtS -scX -xsJ -iuH -jFS -tWM -mGj -see -cjl -rlx -uFb -vZu -mDM -fSt -icw -tKS -kXS -nUZ -ekm -teU -izf -dQK -ekm -ekm -oUj -mBL -pSW -ocx -gHd -ntf -twN -aEl -aEo -aEo -aEo -aEo -aEo -aEo -aEv -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(133,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aap -aeu -aUz -aeu -aeu -cIV -cIU -oQg -hib -cIY -cIV -cIY -hib -cnc -cIU -lRk -lRk -fvU -fvU -lRk -kDE -hqS -bot -ttB -lRk -kll -ejU -jLT -pqm -tPn -omH -ijF -bjB -tWg -cSj -ipL -omN -omN -xTI -uGD -ejP -fUZ -hJm -qSa -eeb -gTA -jHT -mzs -xPk -ycr -niQ -dch -slo -qHT -lzv -reT -vRQ -vRh -bNM -ioK -slo -jTk -aGZ -nam -bis -nNM -nam -bax -bax -eoT -qgE -rOS -eQq -scX -xsJ -lRl -wjz -xOI -xOI -qkm -uHD -qkm -tpF -ewK -qkm -tPP -bsT -enS -toi -jvh -ekm -vUC -kCK -kCK -ftS -mfE -pSE -lmb -dzt -hRY -hRY -roy -bWE -rea -rea -ekm -twN -cko -cpY -ckr -cke -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(134,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -cIV -fBX -ajs -cJk -aDF -tAI -ctx -ipQ -cIV -vhf -lRk -mmu -giJ -jOn -vTA -stA -jNR -fhY -xKW -piX -uVe -xbH -iGK -klp -omH -ijF -sIq -tWg -oEc -rYx -udF -rSN -xHP -fLv -rbO -lsZ -wLC -pxH -vJN -hat -qvh -sRh -qXn -tnc -niQ -kPt -slo -cfK -vcm -hHP -ftl -uiE -crR -xRv -slo -oUA -skM -ufX -tPS -cVS -pZx -scX -iGT -nYo -rvZ -rdp -nEs -scX -rXv -oBq -pRw -rwD -ixj -ggF -ils -qsA -aYW -hmr -hnD -kUS -kyT -fqN -smn -ceW -rea -wYx -lxu -qfg -qfg -ulF -abq -ffQ -qfg -vHa -qAo -kLx -lmC -dyw -cQt -gGp -ekm -twN -agt -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(135,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -cIU -vBv -ake -reJ -ckp -cld -ahH -gjF -cIU -lRk -fvU -onm -irg -qeJ -oHj -fvU -peC -dqg -lRk -uFl -qZl -wwv -jMZ -eYw -lby -dEc -umq -tWg -oIx -jrr -cAu -ppH -xHP -lMh -rbO -acj -cAu -cXg -bQb -aMe -mfF -fKS -qmg -urE -niQ -cSq -slo -rmL -wLX -reT -lLl -wDh -ssg -ycd -slo -iqk -skM -sex -sYd -lAr -iio -uuu -ahz -rxQ -sDW -emz -iJg -vDZ -vCn -gaR -nbI -rwD -pwo -hZT -lNK -lNK -rvU -pLu -lbq -kUS -qOi -feD -ydw -mmE -dLN -oDG -tCp -qOq -cqc -lOX -xOX -dOH -qDj -okp -cgb -sCV -fgH -kZY -dES -uTY -bKM -ekm -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(136,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -coy -aUz -aeu -fvU -lRk -lRk -aeu -cIV -ugA -cJh -otr -lGS -cJv -ahJ -pLV -cIV -mbW -lRk -mRi -fIB -fvU -lBO -fuY -bpz -iUT -lZi -bBF -sTA -yjj -sTA -sTA -bBF -dpJ -hLS -wuE -wjI -rLs -lFt -rJS -xHP -fLv -dfU -lJJ -cAu -wGA -xvj -aMe -oNk -kbT -sWI -jCZ -niQ -abJ -yaG -xWm -eON -jRF -dsC -aAq -nDK -vPz -yaG -acm -skM -nKn -sYd -qur -jtJ -scX -vwe -ffC -dmp -sZB -kvJ -bax -oCt -fmn -aek -xOI -hON -wcX -hwN -hlJ -utf -oBP -ocQ -gTr -iEG -qVN -rEW -goG -pHy -vxC -iQT -qOq -tkO -okp -uvG -piZ -vzQ -lOX -hqW -jbZ -rea -tiz -tiz -tiz -tiz -ekm -aeu -aeu -aeu -aeU -aUz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(137,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -fWZ -fvU -oqa -fvU -lRk -lRk -fvU -pBN -fyA -nqs -cJw -ahK -lRk -fvU -rel -lRk -fvU -lRk -lRk -vHh -lRk -enP -lZi -xSO -qiq -dRR -tmf -xvh -lvV -bBF -jdE -sIq -tWg -fYS -rYx -scc -kxf -nAH -fLv -rbO -wYk -qVz -wzp -dcF -hat -gmj -dsJ -xPk -why -niQ -niQ -tXg -tXg -tXg -arl -arl -wRj -arl -arl -arl -skM -vuQ -hqk -tsL -rUO -lkW -kPO -bax -bax -eao -bax -fuB -cuV -cuV -kYU -cuV -xOI -lrU -sHk -tlu -ojj -kGc -mPP -vww -vHH -lQj -gDu -xtc -dKz -rea -wYx -xQL -okp -dPr -cYc -pXs -fOz -pXs -lOX -paN -hNj -piD -uyK -uyK -rKf -vRo -ekm -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(138,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aca -aji -ius -udA -xUP -lRZ -iJu -uFM -qAa -oTE -iJQ -kri -hBD -eeQ -eMX -nqs -pPj -jNR -fRS -gfD -ggI -dGP -xBs -qCI -lZi -mGo -cdH -dlI -tmf -psF -jgn -mWS -baz -sIq -tWg -pku -wHK -dOW -sKA -mKI -hPX -sgj -vGt -eYl -sMi -eYd -fmV -pqu -pjX -sWI -mza -tnc -vwQ -tXg -rQs -tXg -eIP -wwj -gii -arl -arl -nuF -hqT -lOq -xuM -qzv -qur -iNi -jmE -uJV -mQR -elz -lxp -cuV -hyJ -sXJ -sXJ -alL -jjs -aBA -eak -aBA -eHc -jzk -sXP -guS -kUS -whP -jWL -bFv -kgB -twN -eiJ -fKD -cYc -wxx -mMB -aRB -aRB -aRB -okp -flx -kOX -rea -skP -vRo -rYi -iJO -twN -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(139,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeU -aeu -aeu -lZi -lZi -lZi -iUT -lZi -lRk -bpV -liE -pAx -olL -ikH -pAx -ikH -jcp -ikH -kat -olL -nmu -iUT -iUT -lZi -lZi -lZi -lyc -cWV -rqJ -tmf -oyX -nij -bBF -weL -umq -dXN -hat -xuA -hsC -wxq -mqF -aXJ -gql -sVz -wxq -gTN -wFi -hat -wxq -hat -xPk -xPk -nTK -xPk -tXg -tXg -tXg -arl -arl -ipA -arl -jMF -xuM -tpq -vnw -vnw -vnw -ozO -qgz -pZT -mSo -dTd -prW -bMH -cuV -cGm -koc -qZX -qZX -qZX -sxF -xRm -sxF -fvC -vfd -ePY -vfd -iKg -ekm -twN -xqE -exD -ekm -dgo -uqD -kBz -vyN -mda -vyN -dGG -vyN -eVL -gJa -iAE -rea -gPX -rBO -tHO -oLT -ekm -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(140,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -wuc -gpI -oPn -vuI -lZi -aMK -gJz -lZi -lZi -iUT -lZi -lZi -lZi -iUT -lZi -lZi -nhy -nmu -lZi -cPu -fJq -vnH -app -mVL -dBy -rlT -vnZ -nNW -lpH -mWS -baz -sIq -tWg -hat -pZX -hxZ -wxq -oUg -feV -eUT -vme -hat -nzu -iUJ -hat -rQQ -hsx -nYP -jiS -eeo -dke -yhR -xWK -nwI -fIR -puq -cvr -ffm -jso -mTz -vHx -bHl -kuo -eZm -bdX -jNt -lwT -bcb -gwW -bwk -diA -gBC -sXJ -ipO -qZX -kDg -gAq -ctg -dUY -cYk -pIO -evb -tNW -oCo -wnl -doU -eOW -aGR -eEZ -uJN -vUD -quv -lhm -lYb -kvM -mNt -mNt -mNt -dPr -sMY -hSt -rea -tiz -tiz -eIT -fsx -ekm -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(141,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -vJc -qmW -nQx -qmW -lZi -rcN -xXo -lZi -gpI -eWT -vuI -wpw -gpI -dxu -vuI -iUT -fvU -qWJ -lZi -uDT -kLm -hpC -cDZ -nfe -eKG -qyA -irZ -lxw -cJe -amv -pkY -umq -mQY -gDm -bZE -xKO -oyA -rQH -kcX -wyO -czX -qkn -vHS -vHS -fvK -vHS -vHS -iHY -mhi -gCl -jWx -rRu -dON -smi -xUm -uDi -iHC -nWM -qVJ -rUj -tho -tho -qiB -lgv -khe -hNi -etm -qBs -gbp -wmG -hLr -cuV -oQk -vHF -jjs -cwj -cLx -tOF -ueJ -tav -snU -oDh -dJw -jgt -bkn -uvm -dGX -tyI -pSh -rea -mSC -pqH -lOX -uWA -lhm -lGp -xlD -lGp -lOX -hqW -hNj -piD -uyK -uyK -oiS -tiz -ekm -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(142,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -vJc -jhN -qmW -cKd -wpw -ieb -xcf -wpw -vhx -nQx -qmW -uXM -qmW -nQx -vhx -lZi -qdM -nmu -iUT -lhJ -mQu -ggZ -cDZ -sVN -dqw -bla -lGQ -qoF -nJK -moD -oQH -cMj -iDh -xwn -txl -vPd -rOq -nMj -anN -hQL -asu -anN -qnJ -tXz -anN -twG -qXa -cpZ -tXz -anN -eSi -wwJ -aot -xnK -nMQ -ogk -ogk -ogk -sUq -fQf -nmq -yhc -nYP -fVj -gne -sHC -vzy -vzy -vzy -vzy -nHO -cuV -cuV -bhJ -jjs -tzH -sXC -sdp -hRa -cEa -snU -uso -afH -gII -sCr -doU -gKR -mPS -bjb -rea -mSC -kHK -aGQ -oAk -lOX -fCX -cPM -fCX -okp -hqW -lZV -rea -vRo -vRo -vRo -vRo -ekm -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(143,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeu -aeu -aeu -vJc -vJc -vJc -vJc -vJc -vJc -bOR -bOR -bOR -uXM -vzD -xIM -wpw -jhN -qmW -wRn -hZn -jhN -qmW -wRn -lZi -dBV -gmx -lZi -sgW -uJP -dMW -lYg -ylT -lWg -gpP -bLf -mii -vqN -bBF -oAO -maj -aUn -ayh -byK -mCt -lxQ -lBk -wyF -prq -vao -qpJ -fqq -tho -vTx -wxU -lrR -lrR -fkw -hDK -ege -fak -ykP -xcV -gUK -uPL -bMF -bCz -bpn -ihU -xNe -gtC -xNe -qEf -qIv -ykP -vWF -sqK -igo -uFf -uSX -gtI -cuV -pgG -qZX -xjl -vqg -gYS -eYE -dxU -pqF -dpR -eto -uMk -pGE -doU -kaM -mPS -bjb -rea -mSC -naQ -ksp -oAk -lOX -xOX -dOH -xOX -lOX -xwE -oow -rYh -hVH -dES -rKV -gyM -twN -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(144,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -vJc -gpI -qmW -vuI -wuc -jJD -oVc -mwp -lth -wpw -iPY -odd -wpw -ffN -hnw -ffN -wpw -gRg -kXJ -gRg -lZi -tcn -vEW -lZi -lko -oHP -lOb -lYg -jBh -lYg -app -jBh -iNU -jBh -bBF -sxB -kBP -kBP -kBP -vFY -ofs -mnl -gkW -vVw -tBH -tBH -aND -tOx -mee -vZB -xtC -sPd -gcq -aMy -dEw -okJ -liB -liB -hJa -liB -liB -xNe -dRm -teu -ttJ -gXc -uIx -ihU -xHc -vhl -kua -fuq -hnA -sLw -xWw -goc -fYs -uGA -xeh -qZX -qZX -qZX -poK -xin -rja -fvC -xCr -kmo -gMC -vOq -bGY -wTe -inf -eJs -uJN -nHC -iwS -wXM -uYM -sJH -shH -shH -wXM -iEr -boG -oow -iwM -vHe -oQm -juR -ekm -ekm -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(145,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -wuc -egE -oQl -qmW -vJc -lev -gSQ -riN -bEd -pig -prr -mIT -wpw -qEj -okt -boZ -syu -isw -okt -aLS -lZi -rAO -hZP -lZi -tFq -kwV -edj -wsy -xJB -sJU -mDj -cGl -tfV -wWD -wdf -sxB -sQT -vPW -sxB -aND -tBH -rSB -eej -aND -lie -cqm -lDu -kNY -rZV -rZV -oNO -riS -bsB -oNO -tQI -xlf -liB -cBc -hKV -cIW -liB -lpf -cox -eLU -pRu -rEE -upa -xNe -ghO -wUT -tuO -vzy -vyE -toE -bXf -aVC -aJh -fuB -ore -gDM -bRv -jjs -qZX -jjs -qZX -qZX -uSH -dmf -xOB -qZX -qZX -qZX -hjj -jjs -qZX -rKn -lyu -lDb -lyu -vRo -ifB -cfs -qai -rIm -lRS -qzz -ekm -iwM -rea -twN -ekm -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(146,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -vJc -qmW -bXa -qmW -qdR -lev -cQx -bqi -rAD -eZa -luI -rJO -cAz -jFv -vgJ -xta -eJu -shS -epI -rtK -lev -kKw -eiT -frO -oMA -spG -hIq -gVC -gDT -ebV -ngi -lKC -lJU -qDZ -gGf -teE -hsg -nxj -dLA -vHd -hRU -kzK -mhP -hhE -pwy -mGS -lDu -vMo -pqh -vOX -vOO -gsO -nVc -lWW -iVO -mlx -hJa -vNL -jEy -jOi -hJa -sAR -wLp -mPZ -gjP -iCK -pFw -hMo -qRh -ucm -jGW -okP -jHm -mbY -oAS -vzy -kSp -cuV -vHF -cuV -gmB -iFa -cAq -oQk -oQk -cuV -kHs -rbp -nan -cuV -vLG -cuV -sOJ -aov -qZX -xNP -wPU -xtO -rnp -sWj -tIr -vDk -lGq -tIr -qZX -qZX -jjs -sUB -ckk -aEg -joY -oam -joY -joY -oam -joY -oam -vku -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(147,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -wuc -vct -rRz -rFr -tGx -boo -vse -jmM -mQe -jec -oJm -kkP -nKQ -oJm -mQe -dJk -nqE -xgz -xHR -nPl -uYb -rHm -uXI -pnI -mXX -aAy -oyk -ieV -hma -hZr -uYP -tNe -mVm -eog -iUm -eog -eog -riC -qmG -rhK -ffd -iQd -mfY -nFb -nFb -lWw -qwR -dzp -mrt -aMp -viW -fQg -snw -gQJ -xoO -fGI -rfF -sKy -vRl -nnA -qAn -qJi -nIR -jYL -oOC -uov -uIx -uqI -rpN -rqb -drl -pzi -nts -kDC -sLP -qny -uKa -jgf -lyb -jRv -hhn -mFb -qeX -cXQ -cAq -sGW -fuB -cuV -cuV -sGW -aAU -oQk -xBz -gDM -qZX -pKR -fyj -qZX -pKR -qZX -qZX -qZX -ljA -qZX -jjs -baF -cuV -fuB -cuV -cuV -cuV -piW -jSu -jay -tRX -pKM -kHX -acK -acK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(148,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -vJc -qmW -jNb -qmW -uQF -lev -kNI -wAG -fQr -sQx -xFI -nDZ -vys -pNL -kWe -ecf -mPE -oiu -peF -mAH -lev -cHZ -jdp -xSi -yaK -pSe -iBh -rZM -bUx -cKY -mDj -ofM -eHI -eHI -eHI -rPy -fsj -wPp -aYz -lZn -gwO -nvI -wqQ -rwR -gPy -gxu -fbZ -nOJ -bls -hnl -iuE -peY -dcq -ulm -rpD -jhD -liB -nqg -vha -nJv -liB -hEk -ebF -xiA -fDr -rmK -cHG -xNe -eUk -kTk -yiW -vzy -bmu -qZL -lKi -nHO -vxN -cuV -mZz -fuB -qED -jTm -gDM -jxy -jID -qqZ -iHN -mFb -pDm -mwG -xJc -hDy -lue -xJc -uot -scJ -qeX -wTS -mFb -xvM -aiB -ejk -vBR -isD -cFq -aVl -dOF -tJh -dOz -jYe -fuB -qgq -vAl -eLv -oam -sda -joY -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(149,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aUz -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aUz -aeu -aeu -vJc -qmW -oQl -qmW -vJc -lev -nXp -opE -kDe -dmA -hvl -mOt -wpw -wqR -puJ -iKn -ndz -fjh -puJ -eoV -lDu -avo -leB -rST -lDu -nfX -vIR -nfX -gtW -imS -wzI -wzI -unp -wAz -wAz -nEA -jeU -wPp -jSx -vHd -fJR -nvI -vyD -qzA -knu -lNP -oLH -tPN -uoA -rZV -erl -pnl -idM -xXx -aEC -vWA -dyj -hJa -qAn -hJa -liB -uqI -tLo -xNe -xNe -fKx -uIx -ihU -dpT -vWv -oGV -vzy -vWF -jTa -vzy -vzy -vzy -fuB -cuV -cuV -ehc -cuV -fuB -cuV -cuV -cuV -feU -cuV -fuB -cuV -ine -ine -cuV -ine -ine -cuV -fuB -cuV -ckQ -nsM -cuV -gbF -jra -wGD -cuV -fuB -uGm -cuV -gDM -pop -kWz -flH -asY -aGn -bhH -uib -ifw -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(150,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -vJc -jhN -xRZ -wRn -vJc -qld -ulZ -iSS -uLt -wpw -aQl -xNu -uXM -doy -hbe -doy -wpw -iBt -pCa -iBt -lDu -kaW -aeX -jcs -lDu -bQX -xvr -uvP -gtW -sBl -vbu -imS -imS -imS -imS -saE -jeU -wPp -uJE -vHd -sIo -nvI -eot -rKI -dfv -xwJ -lDu -rrK -rZV -rZV -cBP -qek -cBP -dYw -hUw -vlm -lKq -svW -uCi -aII -sAr -wyv -cON -rup -xNe -ihU -gtC -ihU -kWm -rqb -rVj -oSI -jgu -ssV -cXX -rdD -nPV -jSJ -cvM -rgv -aqe -kIQ -uAb -keE -lgb -cuV -cuV -fuB -cHu -bUI -cHu -cHu -cHu -cHu -crG -bUI -cHu -cuV -fuB -cuV -cuV -fuB -hiQ -vGu -cuV -gDM -dqL -tMl -vHF -stx -wuv -tmH -asY -mZK -oam -oam -joY -vku -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(151,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeu -aeu -aeu -vJc -vJc -wuc -wuc -vJc -vJc -agz -agz -agz -wpw -fVM -orY -wpw -gpI -qmW -vuI -hZn -gpI -qmW -vuI -lDu -xZL -vqe -kYB -oLH -jOZ -qhx -lVL -gSW -nzz -gVt -hNk -dlc -hhc -imS -saE -jeU -wPp -lKk -vFY -vFY -bhr -rOJ -vFY -vOX -lDu -lDu -dJS -vOX -bBR -xxQ -lnj -xcU -cBP -tXr -jfc -bfI -vUH -gnB -qxC -udE -ehI -pUj -sZL -hGC -vzL -vXp -lKq -hKg -aaT -rqb -nHy -asU -rqb -xWq -rqb -rqb -gRq -nyw -eCf -fgu -djQ -atc -gBp -tXB -hGX -mkk -aeu -bPP -bUN -bUN -bUN -cll -bUN -bUN -bUN -bUd -aeu -aeu -cKz -oki -oCd -mqK -qGi -cuV -jIR -cuV -kuK -vmP -xca -fuB -hQA -ght -wHu -pbs -joY -oam -gGi -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(152,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -vJc -kdr -qmW -vuI -uXM -hBR -rqu -wpw -qmW -nQx -qmW -wpw -vhx -nQx -qmW -lDu -eJO -ckA -rAL -lDu -rwu -roF -pMT -gtW -hTb -bQn -vTX -mtq -tCh -imS -saE -jeU -pdg -iHL -qGq -qth -awT -aMU -iLX -rZV -jqJ -xZL -xZL -rZV -dRW -hwn -nPk -nEx -yfv -cTX -lJD -eKk -lJD -eKk -lJD -oQL -lJD -fLo -nFy -hfr -xOa -nQO -lKq -lkF -npy -nwf -sNa -fur -gel -hfk -iyM -rDj -tZa -mkk -exV -ozV -fFs -rCi -lxo -dZR -itC -rCi -aeu -fIn -bUN -bUN -bUN -bUN -bUN -bUN -bUN -bUe -aeu -aeu -uvO -fqe -qOQ -rzR -nCf -fuB -cuV -qZX -qpj -mbS -jjs -qZX -cAp -auR -mCV -rNR -pKB -xmQ -gny -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(153,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aeU -aUz -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -vJc -qmW -nQx -qmW -wpw -tpD -aew -uXM -jhN -iNh -wRn -wpw -jhN -iXD -wRn -lDu -xZL -rZV -tMW -lDu -bkK -xLC -tnR -gtW -voa -ncC -kmN -mVh -gQq -imS -wzI -gER -pdg -dvC -cYA -iwB -wAC -nvq -nMB -vOX -uhx -oWm -rZV -vOX -oXw -wyG -qnv -uvj -cBP -iht -drw -baS -eQD -tNj -owA -baS -mlH -rpF -tGb -tOy -tOy -jnp -tOy -wJn -wJn -fBh -cQR -cQR -pIl -pIl -mbE -eHY -nXu -eLm -iSw -eLm -eLm -eLm -mkk -xIm -cvM -mkk -rCi -jEK -bUN -bUN -bUN -bUN -bUN -bUN -bUN -bUk -bUE -aeu -usr -xVm -usr -xeo -jzH -usr -aeu -xTG -qrk -ydW -cGF -xTG -joY -joY -xva -oam -joY -oam -cnf -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(154,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -wuc -jhN -fEC -wRn -lDu -osn -tly -lDu -oLH -lDu -lDu -lDu -lDu -oLH -lDu -lDu -gfe -syF -mKC -lDu -wZZ -ubU -wIo -gtW -iAC -fOu -iRR -hZi -rwy -feZ -wzI -uZR -pmD -bWZ -qGq -lgu -aNa -hfV -nwp -rZV -wPB -wCY -wtt -rZV -aEK -apM -jNA -iNa -cBP -lea -qLi -vgd -eQD -jaR -qdd -lxU -xpS -iko -euX -tOy -akD -shW -bAS -vUp -byb -ozz -uAc -cQR -rDh -eZL -hIm -cPZ -vJh -iWL -hSy -ssi -qjq -eLm -fiZ -wHp -wSM -tbE -rFN -gJj -bUN -bUN -bUN -bUN -bUN -bUN -bUN -bUp -aUz -aeu -usr -uOa -cJf -ijc -uPm -usr -aeu -hwA -diQ -ari -ouQ -xTG -aeu -aeu -aeu -aeu -aeu -aeu -anH -aeu -aUz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(155,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -vku -aeU -aeu -vJc -wuc -vJc -lDu -lDu -eCh -tSD -rZV -mfI -weV -roO -mxo -guT -xAL -rZV -wSv -qZp -vOX -nrB -lDu -oLH -lDu -lDu -lDu -lDu -tjR -nmR -aeJ -egr -fxQ -wzI -giG -hpu -bWZ -mDQ -qGq -qGq -nIg -dty -cqr -lDu -mtN -syF -rZV -dYw -dYw -cBP -yfv -dYw -lmO -orD -gUS -aSZ -aTx -jhH -gQx -xpS -ncH -nPz -tbS -pHE -bmX -dwh -cQR -wJn -pdZ -ecl -wJn -lFB -cQc -wyh -nXu -ttZ -lmi -aXA -gNM -pvF -tCQ -slC -lhx -owX -lAB -lAB -lAB -bUN -bUN -bUN -bUN -bUN -bUN -bUN -cHu -eob -rCi -usr -sVq -jOb -gou -rDi -usr -aeu -xTG -pnE -lQu -oft -hwA -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(156,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aUz -aeu -aeu -aeu -rZV -pOy -mxo -hUD -gmJ -rjR -xZL -sjo -wCY -xZL -xZL -fsp -wCY -wCY -bQD -pio -qpZ -wCY -nDp -vOX -fkP -lDu -lDu -wzI -ovo -qhH -imS -wzI -kOw -wVX -sDd -dty -qfn -tXS -eMr -gBd -xxN -lDu -mrt -xCP -rZV -qkq -eYS -iYI -fRf -mVP -hjL -cXd -wdL -xYx -wdL -iFE -suA -mEH -fOX -iIp -etO -gzv -yaF -pOq -cQR -nTd -hDa -tNa -cQR -rDh -lux -hEQ -beo -qtA -mrI -iKq -iTQ -gQB -ppd -mRf -pvK -lMo -rrm -lAB -bPR -bUN -bUN -bUN -bUN -bUN -bUN -bUN -bUk -aeu -aeu -xVm -tWc -mWn -tds -gJs -xVm -aeu -xTG -xTG -eGL -xTG -xTG -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(157,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acy -aDT -beK -jbt -mmY -rZV -rZV -vOX -rZV -oIp -mrt -fsd -xZL -wCY -rZV -cQJ -iFd -mCF -fML -gxW -oHR -fkP -vKE -ufQ -rZV -qUp -iBY -wCY -gyv -oLH -bWv -xqf -jiO -uLW -kkg -bwA -tNC -rqn -cqr -fyq -onf -vls -xxN -xxN -lDu -tah -rYa -rZV -hgc -oiK -mvm -ncQ -clV -jwu -mIe -kxu -kxu -xVK -kxu -npx -rqp -lgC -pWC -jnp -ixx -bHR -xTH -wJn -lfu -cQR -cQR -eMo -pIl -pIl -mbE -iSw -nXu -eLm -dkL -tCQ -eLm -eLm -dnl -plx -wGe -izU -axd -fIn -bUN -bUN -bUN -bUN -bUN -bUN -bUN -lWC -rCi -rCi -xVm -ibN -wVG -qij -fFh -usr -aeu -aeu -uyX -hYw -uyX -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(158,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeU -aeU -aUz -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afI -aDU -cry -aaa -aaa -aaa -sJS -czH -sJS -kIY -eLx -rZV -rZV -rZV -vOX -rZV -rZV -lcZ -fpz -rZV -vOX -rZV -pJs -npg -vOX -rZV -rZV -fRp -rVY -lDu -ujZ -wdu -mEW -cAl -iKN -bwA -nfI -ciK -vlk -dif -kOt -kpH -uuW -uuW -lDu -tOJ -fyS -vOX -qAR -oUz -wPX -xNN -qAR -qAR -tiK -dWM -oAJ -sPV -eiI -dok -kZq -nFT -tsD -tOy -pLe -yaF -jAl -cQR -bFm -wJn -wpn -cLG -jwn -lFC -oPf -btb -apw -hBf -xSs -krc -rCi -qUb -hUL -sab -pZj -nuh -lAB -bPX -bUN -bUN -bUN -bUN -bUN -bUN -bUN -bUd -aeu -aeu -usr -dxm -lzc -lAs -qqM -usr -aeu -aeu -uyX -sWb -uyX -aeU -aeU -aeu -aeu -aeu -icx -aeu -vku -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(159,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cmJ -anZ -cry -aaa -aaa -bFQ -fRt -oBf -nxa -czH -smb -rZV -aeu -aeu -asj -jtD -ntG -rZK -xeI -tpM -vbe -rZV -rHi -wct -axT -xOF -ucG -mrt -khy -lDu -dIv -wdu -blZ -jiO -tQM -gao -tNC -sXG -oBo -hRG -ceT -sgn -pLJ -pLJ -oLH -wCY -cTN -rZV -qTJ -chT -chT -wrY -tVt -qAR -lKq -hOc -hOc -lmO -wer -tKv -hqm -eXJ -diU -tOy -xcT -tDG -kTD -cQR -gMA -qih -tNQ -dNx -xhJ -sRb -mdl -phX -phX -phX -brz -lxL -fSC -mjU -kPE -pBR -tla -lAB -lAB -lAB -bUN -bUN -bUN -bUN -bUN -bUN -bUN -cHu -eob -rCi -usr -usr -usr -xVm -usr -usr -aeu -aeu -aDS -oAg -bFI -aeU -aUz -aeU -aeu -aeu -acm -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(160,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -afI -aDU -cry -aaa -aaa -aaa -sJS -oBf -sJS -chc -vOX -vOX -aeu -aeu -rpl -iAR -qyn -rSL -iri -ncS -bhm -vOX -kIE -dTW -wmB -aGu -bOD -xZL -rxo -oLH -vJv -hpS -ieu -ron -sxQ -bwA -xRC -aPJ -lHg -lDm -ksg -akH -vCh -reo -lDu -wCY -giT -rZV -oXK -wdx -vuu -rqL -qRm -gKI -acm -aaa -acm -tue -wer -eHJ -fCb -ijH -bib -pmy -eYv -kVD -cQb -cQR -jgI -cQR -hEH -oSX -kdO -oXm -gLK -chg -eAZ -noE -phX -dsh -fSC -hev -cyc -kwM -xbx -cOT -wNr -gJj -bUN -bUN -bUN -bUN -bUN -bUN -bUN -bUy -aeu -aeu -rCi -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aDS -nNb -bFI -rkn -coy -aeU -aeU -aeU -acm -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(161,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acy -aKr -aeZ -jbt -lEs -vOX -rZV -rZV -rZV -vOX -rZV -aeu -aeu -aeu -rpl -rpl -rau -tbb -xTx -gLm -asj -rZV -xtV -vOX -rZV -rZV -rKY -mrt -gyd -nfO -iSC -wxl -nSf -oRK -wua -bwA -dya -nDM -dty -fIu -jYp -qew -sVI -dry -lDu -xZL -xZL -rZV -xPT -hbC -chT -kaX -ohR -oUz -qJs -acK -qJs -lKq -iSb -rNO -lKq -pAr -tey -tOy -etO -etO -tOy -cQR -cQR -cQR -vOW -wJe -sMh -iCW -gLK -vQf -vOW -miM -jYb -sIr -fSC -lia -qYy -vtF -mkk -rCi -mkk -jEK -bUN -bUN -bUN -bUN -bUN -bUN -bUN -bUA -bUF -aeu -rCi -aeu -aeu -aeu -aeU -aeU -aeU -aUz -aDS -nNb -bFI -aeU -aeU -aeU -coy -aeU -aaQ -aeo -aeo -aeo -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(162,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -asj -pSu -esO -pCj -lgl -esO -rou -rZV -syF -rZV -eNy -wCY -xZL -vOX -rZV -lDu -mfh -wwG -mfh -hFy -mfh -ggS -qJQ -psi -dty -kMu -dty -mvz -dty -dty -lDu -lDu -xZL -eJy -izu -iRq -aLI -dVB -kyj -qAR -aaa -aaa -aaa -hOc -hBg -srA -nfd -sls -hLO -hOc -aaa -acm -aaa -acm -wJe -rMI -iSU -jij -wJe -mHu -seN -chg -fOx -noE -tej -wkB -iWT -iOW -mnK -iOW -vOW -aeu -aeu -vFc -bUN -bUN -bUN -bUN -bUN -bUN -bUN -bUk -ctu -aeu -rCi -aeu -aeU -cmU -cmU -cmU -cmU -cmU -aDS -nNb -bFI -cmU -cmU -cmU -cmU -aaa -aaQ -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(163,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -rpl -hkd -eki -rxX -dBe -gVc -xeT -vOX -fhe -dQS -vCc -rZV -cfm -vOX -acm -bmB -lMy -hjk -oTD -loO -oTD -uZX -kFN -uYh -hvz -clw -gfT -oay -dAQ -eGD -rcI -lDu -xZL -rZV -pNY -bRx -rcp -mjW -mQj -qAR -aaa -aaa -aaa -bBV -iSb -dMq -hOc -czy -tey -gkf -jAF -xqQ -jAF -acm -vOW -dSw -qiL -msZ -gHA -oaF -gLK -vQf -vOW -xnU -dSt -eer -cOt -vte -ruc -rsd -sMh -aeu -bPK -bPZ -bUN -bUN -bUN -bUN -bUN -bUN -bUN -bUC -aeU -aeu -rCi -aeu -aUz -cmU -kgD -gix -gix -gix -gix -nNb -kgD -kgD -kgD -kgD -kgD -acm -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(164,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -rpl -rpl -asj -rpl -asj -rpl -rpl -vOX -dJo -mua -adp -kxT -mrt -vsb -acK -bmB -nFN -fLH -apu -pii -iQx -lkB -lkB -lkB -lkB -lkB -lkB -oSf -aMb -djo -cGr -oLH -kxT -rZV -gKI -qAR -oUz -dez -oUz -gKI -qAR -aaa -aaa -aaa -aaa -scQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acK -wJe -hQs -gsl -bHL -wJe -mHu -hVF -chg -qAG -xWJ -cua -eer -hkW -jDU -apl -ivY -sMh -aeu -aeu -bTT -bUO -bUN -bUN -bUN -bUN -bUN -crK -bUD -aeu -aeu -rCi -aeU -aeU -cmU -oAg -oAg -oAg -oAg -oAg -nNb -oAg -oAg -oAg -oAg -oAg -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(165,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -lDu -lDu -lWm -xWS -lDu -xZL -pJs -acm -bmB -vgc -ret -eUM -kYr -eUM -xVN -lfz -lkB -lkB -lkB -lkB -shO -dAQ -rPl -uwq -oLH -wCY -sJS -acm -oUz -twd -hBa -gPO -oUz -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acK -sMh -iZX -lkp -nqx -awt -qjK -evu -seN -iVy -gLK -rZO -qjK -heX -oHG -tBn -yeK -vOW -aeu -aeu -vJm -cic -cic -cic -cos -cic -cic -cic -nZG -aeu -aeu -rCi -aeU -aeU -cmU -kgD -kgD -gix -gix -gix -nNb -kgD -kgD -kgD -gix -gix -acm -aeo -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(166,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -ave -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeU -aeu -aeu -aeu -aeu -aeu -aap -aeu -aeu -aeu -aeu -uVQ -mER -rif -orm -lDu -xZL -rZV -vOX -lDu -oLH -lDu -lDu -wHb -lDu -ldc -bcE -ocv -fHZ -bIm -hMW -tkP -aMb -fqb -lDu -iZa -mrt -sJS -aaQ -oUz -wCe -iVn -xzI -oUz -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acK -wJe -twj -unb -wGh -wJe -otA -uAe -udg -vKj -vCM -hRO -ycy -iOW -sEx -utU -fQb -sMh -rCi -rCi -cVr -bYe -bYe -bYe -bYe -bYe -bYe -bYe -mkk -rCi -rCi -pcC -aeU -cmU -cmU -nNb -ckk -aaa -aaa -ckk -nNb -ckk -aaa -aaa -ckk -nNb -aaa -aaa -aaQ -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(167,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aap -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -cOp -acm -acm -acm -qJs -itR -rLW -itR -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aUz -aap -aeu -aeu -aeu -plm -fjI -sbh -fLD -lDu -xZL -kMV -wCY -wCY -xZL -tQp -gmJ -ued -iZa -lDu -iZa -hBV -rrl -wIY -lkB -rdl -aaA -sWU -lDu -xZL -xZL -rZV -qJs -rLR -oUz -fxY -oUz -fae -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -vOW -wJe -wJe -iCP -pZA -fGM -iOW -cYN -qwa -kQO -iOW -gqn -sMh -fkT -iOW -iOW -vOW -aeu -aeu -acm -acm -acK -acK -acm -acK -acK -acm -acm -aeu -aeu -aeU -aeU -cmU -kgD -kgD -gix -kgD -kgD -nNb -nNb -nNb -kgD -kgD -kgD -kgD -kgD -acm -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(168,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aUz -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -coy -aaa -acm -itR -seP -itR -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeU -aeU -cui -aeu -aeu -aeu -uVQ -lqE -doH -ljJ -oLH -rZV -vOX -rZV -tck -and -mrt -fsd -xZL -wCY -kAj -dEM -mIo -lDu -wGS -ocL -rdl -wYb -oPX -iZa -wCY -rZV -rZV -aaa -aaa -aaa -pBi -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aaa -iOW -lmk -iOW -lmk -iOW -iOW -tbi -iOW -iOW -lmk -iOW -rZb -iOW -acm -aeu -aeu -aUz -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -cmU -aeU -cmU -aUz -cmU -oAg -oAg -oAg -oAg -oAg -nNb -nNb -nNb -oAg -oAg -oAg -oAg -oAg -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(169,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qJs -jyr -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dME -mDD -dME -dME -dME -itR -itR -mDD -mwj -dME -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeU -aeU -aap -aeu -aeu -uVQ -uVQ -mbl -uVQ -uVQ -aeu -aeu -rZV -mrR -nGH -vEU -vOX -dSn -hHj -dhD -vOX -mtc -rrl -urW -sFr -hnU -fBm -vFW -oLH -wCY -sJS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qJs -acm -qJs -iOW -noj -iOW -vuk -iOW -tlA -oVP -juq -iOW -noj -iOW -vuk -iOW -qJs -acm -acm -acm -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qJs -cmU -aaa -acm -aaa -cmU -kgD -kgD -kgD -kgD -gix -nNb -nNb -nNb -gix -gix -kgD -kgD -kgD -acm -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(170,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -cuj -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dME -mDD -fkI -waq -mDD -aKe -qVW -gJF -vAr -sfx -mDD -itR -iEB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aap -coy -aeu -aeu -aeu -aeu -aeu -waT -hjb -waT -aeu -aeu -aeu -rZV -avo -lpp -khy -vOX -sJS -fzn -sJS -rZV -mtc -oLH -oWj -lkB -iaX -eWS -eWS -sRz -xZL -sJS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -iOW -jQy -iOW -jQy -iOW -iOW -tbi -iOW -iOW -jQy -iOW -jQy -iOW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -acm -aaa -acm -aaa -nNb -ckk -aaa -aaa -ckk -nNb -ckk -aaa -aaa -ckk -nNb -aaa -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(171,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dME -gKB -scp -wTy -aqY -lPY -btt -quu -dgD -dkQ -oTg -cWi -oTg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -waT -hdY -waT -aeu -aeu -aeu -rZV -awq -vJP -mff -rZV -xeP -xeP -xeP -vOX -mtc -lDu -doB -fJo -lkB -xye -gsw -lDu -wCY -rZV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -iOW -wkT -wzy -emb -iOW -qJs -acm -qJs -iOW -emb -wzy -fxw -iOW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -aeo -aeo -aeo -acm -aeo -acm -kgD -kgD -kgD -kgD -kgD -nNb -gix -gix -gix -kgD -kgD -acm -aeo -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(172,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -aeU -aUz -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dME -wlO -wAv -qgV -itR -qUZ -fSD -ibm -sTy -tZh -mdB -nOL -suj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aDS -uFL -bFI -aeu -aeu -aeu -vOX -rZV -pLw -kVk -vOX -sJS -kYy -sJS -rZV -mtc -lDu -lOh -eIb -seG -cMD -drm -oLH -wCY -rZV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bRQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aeo -aaa -oAg -oAg -lLc -oAg -oAg -nNb -oAg -oAg -oAg -oAg -oAg -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(173,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -mDD -lgh -xxM -iyB -jBR -wWB -eCy -iay -gzx -eqx -lSE -pQM -lSE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aDS -uFL -bFI -aeU -aeu -aeu -aeu -rZV -rZV -vOX -vOX -aaa -ccg -aaa -rZV -mtc -oLH -lDu -lDu -sJS -lDu -yad -lDu -wCY -rZV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -aeo -acm -aeo -acm -kgD -kgD -kgD -kgD -kgD -oAg -kgD -kgD -kgD -kgD -kgD -acm -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(174,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -mDD -lxG -gFt -mSq -lLH -wUU -cnq -oNI -hOs -lXP -dME -itR -dgw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vku -aeu -aeU -aUz -coy -aeU -rkn -aDS -uFL -bFI -aeU -aUz -aeU -fYy -aeu -aeu -aeu -mmY -aaa -aaa -aaa -lEs -mtc -mtc -dWj -fyp -hOE -pnA -ubM -daG -wCY -vOX -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -aaa -aaa -acm -aaa -acm -aaa -oAg -aaa -acm -aaa -acm -aaa -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(175,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dME -itR -mDD -itR -dME -gIw -fGG -eNb -sTy -ulJ -itR -acm -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -aeU -cmU -cmU -cmU -cmU -cmU -aDS -qzg -bFI -cmU -cmU -cmU -cmU -cmU -aeu -aeu -jbt -aaa -aaa -aaa -jbt -sJS -sJS -jNn -fFE -tqZ -mmt -aYI -exg -kMP -rZV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aeo -aeo -aeo -aeo -acm -acm -xck -acm -aaQ -acm -aeo -aeo -aeo -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(176,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -mDD -dME -uCQ -mis -ipE -mDD -eXZ -ngl -lhf -sTy -uQt -itR -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aeU -cmU -pyg -pyg -pyg -pyg -pyg -qzg -pyg -pyg -pyg -pyg -pyg -cmU -aeU -aeu -aDU -aaa -aaa -aaa -aoe -aeU -aeU -vOX -vOX -sJS -rZV -smo -vOX -fIl -rZV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -acm -aaa -aaa -aaa -aeo -aaa -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(177,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dME -iUV -pQT -rZi -oLG -vfL -wYC -lqp -gUT -ihD -uQt -dME -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -cmU -uFL -dnt -uFL -uFL -uFL -qzg -uFL -uFL -uFL -uFL -uFL -cmU -aeU -aof -qJs -acK -wIb -acK -qJs -aeu -aeU -aUz -aaa -aaa -acm -acm -rZV -xrA -rZV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aeo -aeo -aeo -acm -acm -aeo -aeo -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(178,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dME -hBG -rZi -wpu -amU -dsD -heD -wGs -dME -uZS -itR -mDD -dME -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -acm -cmU -pyg -pyg -pyg -pyg -pyg -qzg -pyg -pyg -pyg -pyg -pyg -cmU -aeU -aeU -aaQ -aaa -aaa -aaa -acm -aeu -aeu -aeU -aeU -acm -aeo -aaa -acm -acK -acm -acm -qJs -acm -acK -acK -acK -acm -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(179,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -mDD -cdI -ozw -tNY -xvP -bhR -lFr -jGU -itR -nuf -iQK -jSF -dME -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aeo -aaa -aaa -qzg -ckk -aaa -aaa -ckk -qzg -ckk -aaa -aaa -ckk -qzg -cmU -cmU -aUz -vku -aeo -aeo -aaQ -vku -aeu -aeu -aeu -vku -acm -acm -aaa -acK -qDp -acm -acm -aaQ -aeo -aeo -acm -aeo -aeo -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -aeo -aeo -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(180,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dME -mDD -rRD -itR -pCF -dME -mob -gau -vfL -ocg -fdA -wxF -itR -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -acm -acm -aaQ -pyg -pyg -pyg -pyg -pyg -qzg -qzg -qzg -pyg -pyg -pyg -pyg -pyg -cmU -aeU -aaQ -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -acm -aaa -acm -eiW -cry -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(181,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dME -qoW -hKA -rrG -mDD -hzO -cbF -mDD -mWZ -jSF -lds -itR -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aeo -aaa -uFL -uFL -uFL -uFL -uFL -qzg -qzg -qzg -uFL -uFL -uFL -uFL -uFL -cmU -aeU -aeo -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -acm -acK -aaa -acm -viq -aaQ -aeo -aeo -acm -aeo -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(182,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dME -jvR -fII -cjI -dME -mDD -dME -dME -rvz -rVt -gDS -mDD -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -aaa -aeo -acm -pyg -pyg -pyg -pyg -pyg -qzg -qzg -qzg -pyg -pyg -pyg -pyg -pyg -cmU -aeU -aeo -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -acm -aaa -acm -viq -cry -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(183,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dME -hbr -xqm -rsY -dME -aeu -aeu -dME -mDD -dME -dME -dME -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -aaa -aaa -qzg -ckk -aaa -aaa -ckk -qzg -ckk -aaa -aaa -ckk -qzg -cmU -cmU -aeU -acm -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -acm -aaa -acm -acK -aeo -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(184,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -ult -ogA -ogA -ogA -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -acm -aaQ -aeo -acm -pyg -pyg -pyg -pyg -pyg -qzg -pyg -pyg -pyg -pyg -pyg -cmU -aeU -aeU -vku -acm -aaQ -aeo -acm -vku -aeu -aeu -vku -acm -acm -cry -acm -acK -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(185,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -dvN -dvN -ogA -cNZ -ogA -dvN -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aeo -aaa -uFL -uFL -uFL -uFL -uFL -qzg -uFL -uFL -uFL -uFL -uFL -cmU -coy -aof -aeu -aeu -aaa -aaa -aaa -aeu -aeu -aeU -aUz -aaa -aeo -cmJ -acm -acK -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(186,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aUz -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dvN -wDI -dvN -qvq -dvN -dvN -aap -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aeU -aeU -aUz -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -acm -aaQ -acm -pyg -pyg -pyg -pyg -pyg -uFL -pyg -pyg -pyg -pyg -pyg -cmU -aUz -aeu -aeu -aeu -aeU -aaa -aaa -aeu -aeu -aeU -aaa -aaa -aeo -aaa -acm -qDp -cry -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(187,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aap -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dvN -dvN -dvN -ycp -dvN -dvN -dvN -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aeo -aaa -aaa -acm -aaa -acm -aaa -uFL -aaa -cmU -cmU -cmU -cmU -cmU -aeu -aeu -aeu -aeu -aUz -aeU -aaa -aeu -aaa -aaa -aaa -aaa -acm -aaa -acK -eiW -aeo -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(188,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dvN -arz -dvN -dvN -dvN -dvN -wDI -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aeo -aeo -aaQ -aeo -aeo -aaQ -vLR -acm -acm -acm -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aaa -aaa -aaa -aaa -aaa -aaa -acK -aaa -aeo -acK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(189,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -cui -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dvN -dvN -dvN -dvN -aoz -dvN -dvN -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aaa -aeo -aaa -acm -aaa -aUz -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aeo -acK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(190,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dvN -dvN -wDI -apm -dvN -dvN -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -aeo -aeo -acm -acm -acm -aeo -acm -vku -aeu -aeu -aeu -aeU -aap -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aeo -viq -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(191,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qJs -jyr -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -aeU -aeU -aUz -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dvN -dvN -aoz -bQN -dvN -aap -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -aaa -aaa -aaa -aeu -aeu -aeu -aUz -amq -aeU -aeu -aeu -vku -acm -aaQ -aeo -aeo -aeo -aaQ -aeo -acm -acK -acm -acK -acK -aaQ -aeo -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(192,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -aoz -thU -dvN -dvN -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aaa -aeu -aeu -aeu -aeu -aap -aeu -aUz -aeu -aeu -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -acm -lGO -acK -acK -acK -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(193,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dvN -dvN -wDI -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -aeo -aeo -acm -aaQ -vku -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aeo -acm -dwz -iBc -iBc -dwz -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(194,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dvN -bRy -dvN -dvN -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aeU -aeu -aeu -aaa -aaa -aeu -aeu -aeu -aaa -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aeo -aaa -iBc -tmv -qKH -iBc -viq -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(195,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -dvN -dvN -aoz -aap -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -aaa -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aaQ -aaa -iBc -wqL -fAI -iBc -viq -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(196,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aUz -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dvN -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aap -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aeo -aaa -iBc -oVY -qlX -iBc -viq -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(197,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aUz -aeU -aeU -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -acm -acm -dwz -iBc -iBc -dwz -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(198,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aaa -aaa -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -acm -aaa -aaa -acK -acK -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(199,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aeo -acm -aaQ -aeo -aeo -aeo -acm -acm -acm -vku -aeu -vku -acm -aeo -aeo -aaQ -aeo -aeo -aeo -acm -acK -acm -acK -acm -aeo -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(200,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aUz -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(201,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -coy -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -coy -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(202,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -jyr -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -acm -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(203,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qJs -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(204,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aUz -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aeu -vku -aeU -aUz -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aeo -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(205,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -coy -aeU -aeU -aeU -aeU -aeU -aeU -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -coy -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aUz -aeU -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -acm -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(206,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -aeU -aeU -aeU -aeU -aUz -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -cuj -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -acm -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(207,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeU -aUz -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -vku -aaQ -aeo -aeo -acm -acK -acm -acK -acm -aeo -aeo -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(208,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -acm -aaa -aaa -aaa -aaa -acm -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(209,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -acm -aaa -aaa -aaa -aaa -aaQ -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(210,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaQ -aaa -aaa -aaa -aaa -aaQ -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(211,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aeo -aaa -aaa -aaa -aaa -aeo -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(212,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aeo -aaa -aaa -aaa -aaa -aeo -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(213,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aeo -aaa -aaa -aaa -aaa -aeo -aaa -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(214,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aUz -aeu -aeu -aeu -aaa -aaa -acm -aaa -aaa -aaa -aaa -acm -aaa -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(215,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aeU -coy -aeU -aeu -aeu -aeu -aeu -aeu -aaa -aeo -aaa -aaa -aaa -aaa -acK -acm -acK -acm -aeo -aaa -aaa -aaa -aeU -aUz -aeU -aeu -icx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(216,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aeo -aaa -aaa -aaa -aaa -aaQ -aaa -acm -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(217,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -acm -aaa -aaa -aaa -aaa -acm -aaa -acm -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(218,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -coy -cmU -icx -acm -aeo -aaQ -acm -aaa -acm -acm -aaQ -aeo -icx -aeu -aeu -aeu -aeU -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(219,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -acm -aaa -acm -nkN -ddW -nkN -aeu -aeu -aeu -aeu -aeu -aeu -aeu -coy -aaa -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(220,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aeu -aeu -aeu -cmU -aeu -bcs -nkN -dix -nkN -jOI -aeu -aeu -aeu -aeu -aeu -aUz -aeU -aaa -aeU -aeU -aUz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(221,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -jyr -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aUz -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -nkN -nkN -iTL -wqi -vBE -nkN -nkN -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(222,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qJs -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -coy -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -rdc -rdc -jca -kPQ -xVC -kDG -vxL -rdc -nkN -aeu -aeu -aeu -aeu -aeU -aUz -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(223,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -nkN -oTM -jgz -xVC -bxs -xVC -mol -oGU -nkN -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(224,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aUz -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -nkN -rdc -vjm -fWq -ijN -iTW -tNk -nkN -rdc -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(225,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aUz -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -nkN -nkN -gwI -yef -wpM -nkN -nkN -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(226,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -amq -aeU -coy -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dJp -nkN -glI -nkN -rko -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(227,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aUz -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aeU -aeU -aap -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -nkN -rdc -nkN -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(228,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aaa -aeu -aeu -aeu -aeu -aeu -jyr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aUz -aeu -aeu -aeu -aap -aeu -aeu -aap -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(229,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(230,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -coy -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(231,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(232,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(233,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aUz -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(234,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(235,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(236,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -jyr -aaa -aaa -aaa -aaa -aaa -aaa -jyr -aeu -aaa -aaa -aeu -aeu -aeu -aaa -aeu -aeu -aeu -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(237,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qJs -aaa -aaa -aaa -aaa -aaa -aaa -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeU -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeU -aUz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(238,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -jyr -aUz -aeU -aeu -aeu -jyr -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(239,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qJs -aaa -aaa -aaa -aaa -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(240,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(241,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(242,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(243,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(244,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(245,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(246,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(247,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(248,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(249,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(250,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(251,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(252,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(253,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(254,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(255,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} diff --git a/_maps/map_files/Map_Reset/Skyrat_Map_Reset.dmm b/_maps/map_files/Map_Reset/Skyrat_Map_Reset.dmm index 81745b26e15..d45700c4792 100644 --- a/_maps/map_files/Map_Reset/Skyrat_Map_Reset.dmm +++ b/_maps/map_files/Map_Reset/Skyrat_Map_Reset.dmm @@ -32,12 +32,10 @@ /turf/closed/wall, /area/station/maintenance/fore) "ad" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/chair/plastic, /obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/greater) +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "ae" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -58,7 +56,7 @@ id = "barbershopcurtains" }, /turf/open/floor/plating, -/area/service/salon) +/area/station/service/salon) "ag" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured, @@ -103,14 +101,8 @@ /turf/open/space/basic, /area/space) "am" = ( -/obj/machinery/door/window/brigdoor{ - id = "scicell"; - name = "Science Holding Cell"; - req_access = list("brig_entrance") - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) +/turf/closed/wall, +/area/station/commons/storage/primary) "an" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -121,13 +113,9 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "ao" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 6 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "ap" = ( /obj/machinery/cryopod{ dir = 4 @@ -176,20 +164,6 @@ }, /turf/open/floor/iron, /area/station/common/cryopods) -"au" = ( -/obj/structure/closet/secure_closet/security/engine, -/obj/machinery/airalarm/directional/east, -/obj/machinery/requests_console/directional/south{ - department = "Security"; - departmentType = 5; - name = "Security Requests Console" - }, -/obj/machinery/firealarm/directional/south{ - pixel_x = 26 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) "av" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -209,30 +183,9 @@ /turf/closed/wall/r_wall, /area/station/ai_monitored/security/armory) "ax" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 8; - pixel_x = 28 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/red{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "ay" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -258,7 +211,7 @@ }, /obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, -/area/service/salon) +/area/station/service/salon) "aB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -279,20 +232,16 @@ }, /obj/effect/turf_decal/tile/purple, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "aF" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 5 }, -/obj/item/kirbyplants/random, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/machinery/light/small/directional/east, /obj/structure/cable, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/siding/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, -/area/station/security/checkpoint/science) +/area/station/hallway/primary/central) "aG" = ( /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)."; @@ -450,7 +399,7 @@ name = "Massage Parlour Drapes" }, /turf/open/floor/plating, -/area/service/salon) +/area/station/service/salon) "aT" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ @@ -530,25 +479,19 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"aY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/research) "aZ" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 +/obj/effect/turf_decal/siding/wood{ + dir = 4 }, -/obj/item/pen, -/obj/item/radio/off, -/obj/effect/turf_decal/tile/red{ - dir = 8 +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"ba" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/shuttle/arrivals/recall{ + dir = 1 }, -/obj/effect/turf_decal/tile/red, /turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) +/area/station/hallway/secondary/entry) "bb" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ @@ -655,14 +598,6 @@ }, /turf/open/space/openspace, /area/space) -"bm" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/orderly, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) "bn" = ( /obj/machinery/status_display/evac/directional/north, /obj/effect/turf_decal/stripes/line{ @@ -685,7 +620,7 @@ pixel_y = 10 }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "bp" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -736,32 +671,21 @@ }, /area/station/maintenance/fore) "bv" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "medsecprivacy"; - name = "Privacy Shutter" - }, -/obj/machinery/door/window/brigdoor/right/directional/east{ - name = "Orderly Office's Desk"; - req_access = list("brig_entrance") - }, -/turf/open/floor/plating, -/area/station/security/checkpoint/medical) +/obj/machinery/light/directional/east, +/turf/open/misc/asteroid/snow/icemoon, +/area/mine/storage) "bw" = ( /obj/item/soap/nanotrasen, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/freezer, /area/station/security/prison/shower) "bx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Custom Agent's Office Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/customs, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) +/obj/structure/disposalpipe/junction/flip, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "by" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -771,15 +695,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"bz" = ( -/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, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) "bA" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -858,9 +773,12 @@ }, /area/station/security/prison) "bH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/station/security/checkpoint/engineering) +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "bI" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -879,7 +797,7 @@ }, /obj/effect/turf_decal/tile/purple, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "bK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -1013,20 +931,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"cc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Science Guard's Office" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/sci_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) "cd" = ( /obj/effect/turf_decal/stripes/end{ dir = 4 @@ -1043,7 +947,7 @@ /obj/structure/table/reinforced/rglass, /obj/item/hairbrush, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "cf" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -1113,15 +1017,17 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "cm" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, /obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, +/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/central/greater) +"cn" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/small/directional/west, /turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/area/station/hallway/secondary/entry) "cp" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/reagent_dispensers/watertank, @@ -1151,7 +1057,7 @@ }, /obj/effect/turf_decal/tile/purple, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "cw" = ( /turf/open/floor/iron, /area/station/hallway/secondary/entry) @@ -1189,25 +1095,6 @@ icon_state = "panelscorched" }, /area/station/maintenance/fore) -"cC" = ( -/obj/machinery/door/window/brigdoor{ - dir = 8; - id = "engcell"; - name = "Engineering Holding Cell"; - req_access = list("brig_entrance") - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) "cD" = ( /obj/structure/transit_tube, /obj/effect/turf_decal/sand/plating, @@ -1230,30 +1117,13 @@ /turf/open/floor/iron/white/corner, /area/station/hallway/secondary/entry) "cG" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) "cH" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = 9; - pixel_y = 4 - }, -/obj/item/radio{ - pixel_x = -6; - pixel_y = -3 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) +/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/central/greater) "cI" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/corner{ @@ -1288,22 +1158,11 @@ /turf/open/floor/plating, /area/station/ai_monitored/security/armory) "cM" = ( -/obj/structure/cable, -/obj/structure/table/reinforced, -/obj/machinery/recharger{ - pixel_x = 8; - pixel_y = 8 +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 }, -/obj/structure/extinguisher_cabinet/directional/south{ - pixel_x = 32 - }, -/obj/structure/reagent_dispensers/wall/peppertank/directional/east, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/radio, /turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/area/station/commons/storage/primary) "cN" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -1314,24 +1173,6 @@ icon_state = "platingdmg1" }, /area/station/hallway/primary/fore) -"cO" = ( -/obj/structure/table, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/item/geiger_counter{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/radio/off{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) "cP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -1349,17 +1190,6 @@ /obj/structure/transit_tube/diagonal/crossing/topleft, /turf/open/space/basic, /area/space/nearstation) -"cS" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/table, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/item/radio/off, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) "cT" = ( /turf/closed/wall, /area/station/construction/mining/aux_base) @@ -1382,16 +1212,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, -/area/service/salon) -"cW" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) +/area/station/service/salon) "cX" = ( /obj/structure/closet{ name = "maid locker" @@ -1415,12 +1236,16 @@ /turf/closed/wall/r_wall, /area/station/ai_monitored/command/storage/eva) "cZ" = ( -/obj/machinery/computer/secure_data{ - dir = 8 +/obj/structure/table/wood, +/obj/item/camera_film{ + pixel_x = 6 }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) +/obj/item/camera_film{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) "da" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 5 @@ -1452,15 +1277,13 @@ /turf/open/floor/plating, /area/station/security/prison/mess) "df" = ( -/obj/structure/chair{ +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood{ dir = 4 }, -/obj/effect/landmark/start/engineering_guard, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "dg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, @@ -1481,16 +1304,6 @@ }, /turf/open/floor/iron/dark/textured, /area/station/ai_monitored/security/armory) -"dk" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start/science_guard, -/obj/machinery/light/directional/south, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) "dl" = ( /obj/structure/lattice/catwalk, /obj/structure/marker_beacon/burgundy, @@ -1499,14 +1312,6 @@ }, /turf/open/space/basic, /area/space/nearstation) -"dm" = ( -/turf/closed/wall, -/area/station/security/checkpoint/medical) -"dn" = ( -/turf/closed/wall/rock{ - name = "KILO 144, 112" - }, -/area/space) "do" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -1518,19 +1323,6 @@ dir = 8 }, /area/station/security/prison) -"dp" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "dq" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -1551,6 +1343,19 @@ }, /turf/open/floor/iron/white, /area/station/security/medical) +"ds" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/sign/poster/contraband/random/directional/south, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) "dt" = ( /obj/machinery/airalarm/directional/north, /obj/machinery/cryopod{ @@ -1676,11 +1481,11 @@ /turf/closed/wall, /area/station/commons/fitness/recreation) "dK" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/obj/effect/spawner/structure/window/reinforced, /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/security/checkpoint/engineering) +/area/station/maintenance/central/greater) "dL" = ( /obj/structure/table, /obj/machinery/camera/autoname{ @@ -1701,7 +1506,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/firedoor, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "dN" = ( /obj/machinery/washing_machine, /obj/structure/cable, @@ -1730,22 +1535,8 @@ /turf/open/space/basic, /area/space/nearstation) "dQ" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) +/turf/open/genturf/alternative, +/area/icemoon/underground/unexplored/rivers/deep/shoreline) "dR" = ( /turf/closed/wall, /area/station/security/courtroom) @@ -1770,7 +1561,11 @@ req_access = list("maint_tunnels") }, /turf/open/floor/plating, -/area/service/salon) +/area/station/service/salon) +"dU" = ( +/obj/effect/turf_decal/tile/red, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) "dV" = ( /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -1792,41 +1587,20 @@ }, /turf/open/floor/iron/dark, /area/station/maintenance/fore) -"dY" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/iron/white/corner{ +"dZ" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ dir = 1 }, -/area/station/engineering/atmos/storage/gas) -"dZ" = ( -/obj/machinery/door_timer{ - id = "medcell"; - name = "Medical Cell"; - pixel_x = -32; - pixel_y = -32 +/obj/machinery/newscaster/directional/north, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/camera{ + c_tag = "Hallway - Top Right Service"; + dir = 9 }, -/obj/machinery/camera/directional/west{ - c_tag = "Security Post - Medbay" - }, -/obj/structure/cable, -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central) "ea" = ( /turf/closed/wall/r_wall, /area/station/security/medical) @@ -1872,29 +1646,19 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"ei" = ( -/obj/structure/table, -/obj/machinery/computer/security/telescreen/research, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) "ej" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/side, /area/station/security/prison) "ek" = ( -/obj/structure/closet/secure_closet/security/med, -/obj/machinery/firealarm/directional/south, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/effect/turf_decal/tile/red/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/medical) +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen/fountain, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) "el" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ @@ -1910,7 +1674,7 @@ /obj/effect/turf_decal/tile/purple, /obj/item/kirbyplants/random, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "en" = ( /turf/open/floor/iron/dark, /area/station/hallway/primary/central) @@ -1924,11 +1688,6 @@ "ep" = ( /turf/closed/wall, /area/station/security/prison/safe) -"eq" = ( -/turf/closed/wall/rock{ - name = "BOX 90, 110" - }, -/area/space) "er" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron, @@ -2034,12 +1793,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"eE" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/station/security/checkpoint/engineering) "eF" = ( /obj/structure/closet/secure_closet/freezer/fridge{ req_access = null @@ -2069,18 +1822,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/station/security/prison/mess) -"eG" = ( -/obj/machinery/light_switch/directional/south, -/obj/structure/closet/secure_closet/security/cargo, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "eH" = ( /obj/machinery/door/poddoor/shutters{ id = "armory"; @@ -2109,17 +1850,11 @@ /turf/open/floor/iron/dark, /area/station/ai_monitored/security/armory) "eM" = ( -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Science Guard's Office" +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + 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/science/sci_guard, /turf/open/floor/iron, -/area/station/security/checkpoint/science) +/area/station/commons/storage/primary) "eN" = ( /obj/structure/chair{ dir = 8 @@ -2140,9 +1875,6 @@ /obj/structure/sign/warning/vacuum/directional/west, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"eQ" = ( -/turf/closed/wall, -/area/station/security/checkpoint/science/research) "eR" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood{ @@ -2206,20 +1938,19 @@ /turf/open/floor/iron/dark, /area/station/ai_monitored/security/armory) "eW" = ( -/obj/structure/closet/secure_closet/brig{ - id = "cargocell"; - name = "Cargo Cell Locker" - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ +/obj/structure/chair/office{ dir = 1 }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/nanotrasen_consultant, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "eX" = ( -/turf/closed/wall/rock{ - name = "META 71, 155" - }, -/area/space) +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/storage/primary) "eY" = ( /obj/structure/rack, /obj/item/clothing/suit/armor/bulletproof{ @@ -2252,20 +1983,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/ai_monitored/security/armory) -"eZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/flasher/directional/north{ - id = "engcell" - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) "fa" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -2280,15 +1997,12 @@ /turf/closed/wall, /area/station/maintenance/port/fore) "fc" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/directional/west, +/obj/structure/sign/poster/official/random/directional/north, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "fd" = ( /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ @@ -2308,10 +2022,27 @@ /turf/open/floor/iron, /area/station/security/prison/mess) "ff" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/camera/directional/south{ + c_tag = "NT Consultant's Office"; + name = "command camera" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"fg" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron, -/area/station/security/checkpoint/medical) +/area/station/hallway/secondary/entry) "fh" = ( /obj/item/trash/candy, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -2376,7 +2107,7 @@ }, /obj/structure/closet/secure_closet/barber, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "fq" = ( /obj/structure/bed, /obj/item/bedsheet/purple, @@ -2429,25 +2160,11 @@ /turf/open/floor/iron/dark/textured, /area/station/security/prison/work) "fv" = ( -/obj/structure/chair/office, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/engineering_guard, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"fw" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 }, -/obj/effect/turf_decal/siding/red{ - dir = 6 - }, -/obj/effect/landmark/start/science_guard, /turf/open/floor/iron, -/area/station/security/checkpoint/science) +/area/station/hallway/primary/central) "fx" = ( /obj/structure/railing, /obj/structure/rack, @@ -2469,9 +2186,11 @@ /turf/open/floor/iron/dark, /area/station/ai_monitored/security/armory) "fz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/station/security/checkpoint/engineering) +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) "fA" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 4 @@ -2559,16 +2278,12 @@ }, /area/station/security/prison) "fK" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/reagent_dispensers/wall/peppertank/directional/east, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/obj/effect/turf_decal/bot, +/obj/machinery/vending/coffee, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central/fore) "fL" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -2608,25 +2323,9 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "fP" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/machinery/light/directional/south, -/obj/structure/cable, -/obj/machinery/requests_console/directional/south{ - department = "Security"; - departmentType = 5; - name = "Security Requests Console" - }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = 9; - pixel_y = 4 - }, -/obj/item/radio{ - pixel_x = -6; - pixel_y = -3 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) +/obj/structure/filingcabinet/employment, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) "fQ" = ( /obj/machinery/camera{ c_tag = " Prison - Central"; @@ -2670,14 +2369,13 @@ /turf/open/floor/iron/white/corner, /area/station/hallway/secondary/entry) "fY" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/status_display/ai/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "fZ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -2697,28 +2395,14 @@ }, /obj/machinery/door/firedoor, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "gb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/siding/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/landmark/start/engineering_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/obj/structure/closet/secure_closet/nanotrasen_consultant/station, +/obj/item/storage/briefcase, +/obj/item/assembly/flash/handheld, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/captain/private/nt_rep) "gc" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/stripes/line{ @@ -2762,7 +2446,7 @@ dir = 4 }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "gi" = ( /obj/effect/turf_decal/tile/purple{ dir = 1 @@ -2770,7 +2454,7 @@ /obj/effect/turf_decal/tile/purple, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "gj" = ( /obj/effect/spawner/structure/window/hollow/reinforced/directional{ dir = 9 @@ -2842,11 +2526,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/station/hallway/secondary/entry) -"gs" = ( -/turf/closed/wall/rock{ - name = "BOX 150, 122" - }, -/area/space) "gt" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -2874,7 +2553,7 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/camera/directional/west, /turf/open/floor/iron/cafeteria, -/area/service/salon) +/area/station/service/salon) "gw" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -2964,19 +2643,7 @@ pixel_x = 6 }, /turf/open/floor/iron, -/area/service/salon) -"gH" = ( -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 8 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/area/station/service/salon) "gI" = ( /obj/docking_port/stationary/random{ dir = 4; @@ -3024,37 +2691,26 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "gO" = ( -/obj/effect/turf_decal/tile/red{ +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 1 }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - 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/showroomfloor, -/area/station/security/checkpoint/science/research) +/turf/open/floor/iron, +/area/station/commons/storage/primary) "gP" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, /obj/machinery/portable_atmospherics/pump, /turf/open/floor/plating, /area/station/security/prison/upper) "gQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/port) "gR" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -3072,7 +2728,7 @@ dir = 4 }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "gT" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -3108,27 +2764,9 @@ }, /area/station/hallway/primary/fore) "gX" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"gY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) +/obj/effect/spawner/random/engineering/atmospherics_portable, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "ha" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -3187,7 +2825,7 @@ dir = 1 }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "hh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -3202,7 +2840,7 @@ }, /obj/effect/spawner/structure/window, /turf/open/floor/plating, -/area/service/salon) +/area/station/service/salon) "hj" = ( /obj/effect/turf_decal/delivery, /obj/structure/closet/secure_closet/brigoff, @@ -3250,16 +2888,12 @@ /turf/open/floor/plating, /area/station/ai_monitored/security/armory) "hp" = ( -/obj/effect/turf_decal/trimline/red/arrow_cw{ - dir = 8 - }, -/obj/effect/landmark/start/customs_agent, -/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/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "hq" = ( /obj/structure/fluff/metalpole{ dir = 1 @@ -3315,18 +2949,30 @@ /turf/open/floor/grass, /area/station/common/cryopods) "hx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + name = "Privacy Shutter"; + id = "nt_rep_priv" }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron, -/area/station/engineering/atmos) +/turf/open/floor/plating, +/area/command/heads_quarters/captain/private/nt_rep) "hy" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) +"hz" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 1; + height = 13; + id = "arrivals_stationary"; + name = "arrivals"; + width = 5 + }, +/turf/open/floor/plating/airless, +/area/space) "hA" = ( /obj/structure/grille, /obj/structure/window/reinforced/tinted, @@ -3338,18 +2984,17 @@ /turf/open/floor/plating, /area/station/security/prison/work) "hC" = ( -/turf/closed/wall/rust, -/area/station/security/checkpoint/engineering) +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "hD" = ( /turf/closed/wall/r_wall, /area/station/security/prison/work) -"hE" = ( -/obj/effect/landmark/start/customs_agent, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "hF" = ( /obj/effect/turf_decal/siding/white{ dir = 8 @@ -3371,23 +3016,17 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "hH" = ( -/obj/structure/closet/secure_closet/security/science, -/obj/item/crowbar, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/siding/wood{ dir = 8 }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 +/obj/machinery/camera/directional/south{ + c_tag = "NT Consultant's Office"; + name = "command camera" }, -/obj/machinery/light_switch/directional/west{ - pixel_y = 26 - }, -/obj/effect/turf_decal/delivery, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science/research) +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "hI" = ( /obj/item/kirbyplants{ icon_state = "plant-18" @@ -3435,14 +3074,7 @@ "hO" = ( /obj/structure/disposalpipe/segment, /turf/closed/wall, -/area/service/salon) -"hP" = ( -/obj/effect/landmark/start/customs_agent, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/area/station/service/salon) "hQ" = ( /obj/structure/table/wood, /obj/item/storage/box/seccarts{ @@ -3474,13 +3106,10 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "hT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) +/obj/item/kirbyplants/random, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "hU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ @@ -3621,21 +3250,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/ai_monitored/security/armory) -"if" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/closet/secure_closet/security/science, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science/research) "ig" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -3805,18 +3419,14 @@ /turf/open/floor/plating, /area/station/hallway/secondary/entry) "is" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/effect/turf_decal/siding/red{ - dir = 4 - }, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "it" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ dir = 5 @@ -3831,7 +3441,7 @@ id = "barbershopcurtains" }, /turf/open/floor/plating, -/area/service/salon) +/area/station/service/salon) "iv" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -3876,7 +3486,7 @@ /obj/item/lipstick/random, /obj/structure/table/wood, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "iA" = ( /obj/structure/rack, /obj/machinery/light/directional/west, @@ -3907,10 +3517,10 @@ /turf/open/floor/iron/dark, /area/station/ai_monitored/security/armory) "iB" = ( -/turf/closed/wall/rock{ - name = "META 92, 107" - }, -/area/space) +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "iC" = ( /obj/machinery/plate_press{ pixel_y = -3 @@ -3926,13 +3536,16 @@ /turf/open/floor/iron, /area/station/hallway/primary/fore) "iE" = ( -/obj/structure/filingcabinet, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 +/obj/effect/turf_decal/tile/neutral{ + dir = 8 }, +/obj/machinery/camera/directional/south{ + c_tag = "Port Primary Hallway - Mining Shuttle" + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/firealarm/directional/south, /turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/area/station/hallway/primary/port) "iF" = ( /obj/effect/turf_decal/tile/purple/opposingcorners{ dir = 8 @@ -3940,7 +3553,7 @@ /obj/machinery/vending/barbervend, /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/cafeteria, -/area/service/salon) +/area/station/service/salon) "iG" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -3949,30 +3562,21 @@ /area/station/hallway/secondary/entry) "iH" = ( /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/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "iI" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/common/cryopods) "iJ" = ( -/obj/machinery/door_timer{ - id = "engcell"; - name = "Engineering Cell"; - pixel_x = -32 +/obj/structure/chair/office{ + dir = 4 }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/obj/effect/landmark/start/nanotrasen_consultant, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) "iK" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/tile/purple{ @@ -3980,7 +3584,7 @@ }, /obj/effect/turf_decal/tile/purple, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "iL" = ( /obj/structure/closet/secure_closet/freezer/meat{ req_access = null @@ -4029,17 +3633,6 @@ /obj/effect/landmark/start/brigoff, /turf/open/floor/iron/dark/blue, /area/brigofficer) -"iP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Engineering Guard's Office" - }, -/obj/effect/turf_decal/siding/red/corner{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engie_guard, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) "iQ" = ( /obj/machinery/light/floor, /obj/effect/turf_decal/bot, @@ -4059,7 +3652,7 @@ dir = 1 }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "iT" = ( /obj/machinery/light/directional/east, /obj/effect/turf_decal/tile/blue{ @@ -4108,11 +3701,21 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"jd" = ( +"jc" = ( /turf/closed/wall/rock{ - name = "TRAM 160, 125, 2" + name = "KILO 151, 80" }, /area/space) +"jd" = ( +/obj/structure/sign/directions/engineering, +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/obj/structure/sign/directions/science{ + pixel_y = 8 + }, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/captain/private/nt_rep) "je" = ( /obj/machinery/light/directional/north, /obj/machinery/firealarm/directional/north, @@ -4138,24 +3741,11 @@ }, /turf/open/floor/plating, /area/station/security/prison/garden) -"jg" = ( -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/obj/structure/closet/secure_closet/security/cargo, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "jh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security/glass{ - name = "Research Security Post" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/sci_guard, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science/research) +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/structure/girder, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "ji" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -4222,37 +3812,11 @@ dir = 1 }, /area/brigofficer) -"jt" = ( -/obj/structure/cable, -/obj/structure/closet/secure_closet/security/engine, -/obj/machinery/camera/directional/east{ - c_tag = "Security Post - Engineering" - }, -/obj/item/radio/intercom/directional/east, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/machinery/button/door/directional/north{ - id = "engdoor"; - name = "Engineering Cell Control"; - normaldoorcontrol = 1; - pixel_y = 37; - req_access = list("brig_entrance") - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"ju" = ( -/turf/closed/wall/rock{ - name = "TRAM 133, 107, 2" - }, -/area/space) "jv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/three, /turf/open/floor/plating, -/area/station/security/checkpoint/medical) +/area/station/maintenance/central/greater) "jw" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -4265,7 +3829,7 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark, -/area/service/salon) +/area/station/service/salon) "jx" = ( /obj/machinery/cryopod, /obj/effect/turf_decal/siding/white, @@ -4293,7 +3857,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "jA" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -4321,24 +3885,31 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "jC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/t_scanner, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, /turf/open/floor/iron, -/area/station/security/checkpoint/medical) +/area/station/commons/storage/primary) "jD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/kitchen, /area/station/security/prison/mess) "jE" = ( -/obj/structure/closet/secure_closet/security/engine, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ + dir = 4 }, -/obj/item/clothing/mask/whistle, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/obj/effect/landmark/start/nanotrasen_consultant, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "jF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -4359,9 +3930,6 @@ /obj/structure/sign/warning/electric_shock/directional/south, /turf/open/floor/iron/dark, /area/station/maintenance/port/greater) -"jI" = ( -/turf/closed/wall, -/area/station/maintenance/department/medical) "jJ" = ( /obj/structure/rack, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -4421,8 +3989,9 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "jO" = ( -/turf/closed/wall, -/area/station/security/checkpoint/engineering) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/storage/primary) "jP" = ( /obj/effect/turf_decal/stripes/white/line{ color = "#52B4E9"; @@ -4469,32 +4038,20 @@ /turf/open/floor/iron/showroomfloor, /area/station/ai_monitored/security/armory) "jS" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"jT" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/computer/secure_data{ +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"jT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "jV" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -4505,9 +4062,23 @@ /turf/closed/wall/rust, /area/station/security/prison/mess) "jY" = ( -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron, -/area/station/engineering/main) +/obj/structure/sign/poster/official/random/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/table/wood, +/obj/item/folder/yellow{ + pixel_x = 4 + }, +/obj/item/folder/white, +/obj/item/folder/red{ + pixel_x = -4 + }, +/obj/item/folder/blue{ + pixel_x = -8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "jZ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ @@ -4605,19 +4176,6 @@ icon_state = "panelscorched" }, /area/station/maintenance/fore) -"kn" = ( -/obj/machinery/door/poddoor/preopen{ - id = "medsecprivacy"; - name = "Privacy Shutter" - }, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor/right/directional/north{ - name = "Orderly Office's Desk"; - req_access = list("brig_entrance") - }, -/turf/open/floor/plating, -/area/station/security/checkpoint/medical) "ko" = ( /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ @@ -4655,23 +4213,11 @@ /obj/effect/turf_decal/tile/purple, /obj/effect/landmark/start/hangover, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "ks" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/security/prison/work) -"kt" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/door_timer{ - id = "scicell"; - name = "Science Cell"; - pixel_y = 32 - }, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) "ku" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -4692,22 +4238,9 @@ /turf/open/floor/plating, /area/station/hallway/secondary/entry) "kw" = ( -/obj/machinery/door/airlock/security{ - name = "Engineering Guard's Office" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engie_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/obj/machinery/light/directional/north, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) "kx" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -4723,45 +4256,17 @@ /turf/open/space, /area/space) "kz" = ( -/obj/structure/reagent_dispensers/wall/peppertank/directional/west, -/obj/machinery/airalarm/directional/north, -/obj/structure/closet/secure_closet/security/science, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) -"kA" = ( -/obj/machinery/door_timer{ - id = "scicell"; - name = "Science Cell"; - pixel_x = -32; - pixel_y = -32 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/machinery/button/door/directional/west{ - id = "scidoor"; - name = "Science Cell Control"; - normaldoorcontrol = 1; - pixel_y = -12; - req_access = list("brig_entrance") - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 +/obj/machinery/button/door/directional/south{ + pixel_x = 8; + id = "nt_rep_priv"; + name = "Privacy Shutters Control" }, /obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "kB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -4770,11 +4275,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/kitchen, /area/station/security/prison/mess) -"kC" = ( -/turf/closed/wall/rock{ - name = "TRAM 180, 102, 2" - }, -/area/space) "kD" = ( /obj/structure/window/spawner, /obj/structure/flora/bush/flowers_yw/style_random, @@ -4855,13 +4355,8 @@ /turf/open/floor/plating, /area/space) "kO" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) +/turf/open/genturf, +/area/icemoon/underground/unexplored/rivers) "kP" = ( /obj/effect/turf_decal/bot, /obj/structure/frame/computer{ @@ -4916,7 +4411,7 @@ }, /obj/effect/landmark/start/barber, /turf/open/floor/iron/dark, -/area/service/salon) +/area/station/service/salon) "kV" = ( /obj/machinery/light/directional/east, /obj/machinery/power/apc/auto_name/directional/north, @@ -4987,7 +4482,7 @@ }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/service/salon) +/area/station/service/salon) "ld" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/blue{ @@ -5017,22 +4512,6 @@ /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/station/ai_monitored/security/armory) -"lg" = ( -/obj/item/pen, -/obj/structure/table/reinforced, -/obj/structure/reagent_dispensers/wall/peppertank/directional/east, -/obj/item/folder/red, -/obj/machinery/newscaster/directional/north, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/item/radio/off, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) "lh" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 1 @@ -5059,34 +4538,12 @@ dir = 6 }, /area/station/security/prison) -"lj" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/newscaster/directional/south, -/obj/effect/landmark/start/engineering_guard, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) "ll" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor/right/directional/south{ - dir = 8; - name = "Security Desk"; - req_access = list("security") - }, -/obj/machinery/door/window/right/directional/north{ - dir = 4; - name = "Security Desk" - }, -/obj/item/folder/red, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "ln" = ( /obj/structure/closet/secure_closet/contraband/armory, /obj/effect/spawner/random/contraband/armory, @@ -5156,14 +4613,14 @@ /turf/open/floor/iron, /area/station/commons/dorms) "lu" = ( -/turf/closed/wall/rock{ - name = "TRAM 160, 128, 1" +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 }, -/area/space) -"lv" = ( -/obj/structure/stairs/south, -/turf/open/floor/iron/stairs/medium, -/area/station/security/checkpoint/supply) +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/station/commons/storage/primary) "lw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -5193,15 +4650,6 @@ icon_state = "platingdmg1" }, /area/station/maintenance/fore/lesser) -"lz" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/pumproom) -"lA" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/neutral/filled/warning, -/obj/effect/turf_decal/siding/thinplating, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "lB" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/grimy, @@ -5219,13 +4667,14 @@ dir = 8 }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "lD" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 10 +/obj/machinery/status_display/ai/directional/south, +/obj/machinery/modular_computer/console/preset/command{ + dir = 1 }, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/pumproom) +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) "lE" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ @@ -5234,9 +4683,9 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "lF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/r_wall, -/area/station/maintenance/department/cargo) +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port) "lG" = ( /obj/structure/window/reinforced{ dir = 1 @@ -5258,16 +4707,16 @@ /turf/open/floor/iron, /area/station/security/prison/visit) "lI" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ +/obj/machinery/door/airlock/corporate{ + name = "NT Consultant's Office" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/item/radio/intercom/directional/east, -/obj/machinery/computer/secure_data{ - dir = 8 - }, +/obj/effect/mapping_helpers/airlock/access/all/cent_com/rep_door, +/obj/machinery/door/firedoor, /turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/area/command/heads_quarters/captain/private/nt_rep) "lJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -5285,12 +4734,9 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "lL" = ( -/obj/machinery/computer/security{ - dir = 8 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "lM" = ( /obj/structure/table/reinforced/rglass, /obj/item/hairbrush, @@ -5303,7 +4749,7 @@ c_tag = "Salon - Massage Parlour" }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "lN" = ( /obj/structure/chair/sofa/bench{ dir = 8 @@ -5364,11 +4810,6 @@ }, /turf/open/floor/iron, /area/station/security/execution/transfer) -"lW" = ( -/obj/item/radio/intercom/directional/west, -/obj/structure/closet/secure_closet/security/science, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) "lX" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -5398,13 +4839,12 @@ /turf/open/floor/iron/dark/textured, /area/station/ai_monitored/security/armory) "ma" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 +/obj/effect/turf_decal/tile/neutral{ + dir = 8 }, -/obj/effect/landmark/start/customs_agent, +/obj/machinery/airalarm/directional/south, /turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/area/station/hallway/primary/port) "mb" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -5421,27 +4861,6 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/primary/fore) -"md" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - 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/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/siding/red{ - dir = 9 - }, -/obj/effect/landmark/start/customs_agent, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "me" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -5499,16 +4918,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/ai_monitored/security/armory) -"mk" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/item/radio/off, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) "ml" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 4 @@ -5518,6 +4927,12 @@ }, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/nospawn) +"mm" = ( +/obj/structure/sign/warning/secure_area{ + name = "EMERGENCY STORAGE" + }, +/turf/closed/wall, +/area/station/hallway/secondary/entry) "mn" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery/red, @@ -5549,13 +4964,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"mq" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) "mr" = ( /obj/structure/window/spawner, /obj/structure/flora/bush/flowers_pp/style_random, @@ -5685,28 +5093,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/security/prison/upper) -"mF" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Security Post - Science"; - network = list("ss13","rd") - }, -/obj/machinery/newscaster/directional/west, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/closet/secure_closet/security/science, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) -"mG" = ( -/obj/machinery/computer/mecha{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) "mI" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -5717,20 +5103,7 @@ }, /obj/machinery/door/firedoor, /turf/open/floor/iron, -/area/service/salon) -"mJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science/research) +/area/station/service/salon) "mK" = ( /obj/machinery/iv_drip, /turf/open/floor/plating, @@ -5757,10 +5130,6 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"mO" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/station/security/checkpoint/engineering) "mQ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -5838,7 +5207,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/landmark/start/barber, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "mY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/contraband/narcotics, @@ -5855,25 +5224,6 @@ }, /turf/open/floor/plating, /area/station/security/prison/garden) -"na" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/restraints/handcuffs, -/obj/machinery/light/small/directional/west, -/obj/machinery/light_switch/directional/west{ - pixel_y = -4 - }, -/obj/machinery/button/door/directional/west{ - id = "rdrnd"; - name = "Research and Development Containment Control"; - pixel_y = 6; - req_access = list("brig_entrance") - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) "nb" = ( /obj/structure/lattice, /obj/structure/grille, @@ -5902,26 +5252,15 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "nf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ +/obj/effect/turf_decal/siding/wood{ dir = 1 }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/siding/red{ +/obj/structure/chair/comfy{ dir = 1 }, -/obj/effect/landmark/start/engineering_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/obj/effect/landmark/start/nanotrasen_consultant, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "ng" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -5934,7 +5273,7 @@ }, /obj/item/lipstick/random, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "ni" = ( /obj/structure/chair/sofa/bench/right{ dir = 8 @@ -5958,25 +5297,16 @@ }, /area/station/maintenance/port/fore) "nk" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ +/obj/effect/turf_decal/siding/wood/corner{ dir = 8 }, -/obj/effect/turf_decal/siding/red{ +/obj/effect/turf_decal/siding/wood{ dir = 1 }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "nl" = ( /obj/effect/decal/cleanable/dirt, /obj/item/clothing/under/rank/prisoner/classic, @@ -5995,8 +5325,9 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "nn" = ( -/turf/closed/wall/r_wall, -/area/station/security/checkpoint/supply) +/obj/machinery/modular_computer/console/preset/command, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "no" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -6020,8 +5351,10 @@ /area/station/security/prison) "nr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/supply) +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/structure/girder, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "nt" = ( /obj/structure/chair{ dir = 8 @@ -6081,13 +5414,11 @@ /turf/closed/wall, /area/station/hallway/primary/central) "ny" = ( +/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/engineering_guard, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "nz" = ( /obj/machinery/light/small/directional/west, /obj/effect/decal/cleanable/dirt, @@ -6099,11 +5430,6 @@ dir = 8 }, /area/station/security/prison) -"nC" = ( -/turf/closed/wall/rock{ - name = "META 164, 131" - }, -/area/space) "nD" = ( /obj/structure/chair/sofa/bench/left{ dir = 8 @@ -6115,17 +5441,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/security/prison/visit) -"nF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Custom Agent's Office" - }, -/obj/effect/turf_decal/siding/red/corner{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/customs, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/supply) "nG" = ( /obj/structure/cable, /obj/machinery/portable_atmospherics/canister/air, @@ -6228,50 +5543,44 @@ }, /area/space) "nT" = ( -/obj/machinery/door/airlock/security{ - name = "Custom Agent's Office" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/item/kirbyplants/random, /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/access/all/supply/customs, +/obj/machinery/airalarm/directional/north, /turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/area/station/hallway/primary/central) "nU" = ( -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 +/obj/structure/chair/office{ + dir = 8 }, -/obj/machinery/light_switch/directional/south, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/obj/effect/landmark/start/nanotrasen_consultant, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) "nV" = ( -/obj/structure/table, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the RD's goons from the safety of his office."; - dir = 1; - name = "Research Monitor"; - network = list("rd") +/obj/effect/turf_decal/siding/wood{ + dir = 1 }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science/research) +/obj/structure/table/wood, +/obj/item/taperecorder{ + pixel_y = 5; + pixel_x = 5 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "nW" = ( /turf/closed/wall/r_wall, /area/station/security/execution) "nX" = ( -/obj/structure/reagent_dispensers/wall/peppertank/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/customs_agent, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, /turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/area/station/commons/storage/primary) "nY" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -6285,7 +5594,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, -/area/service/salon) +/area/station/service/salon) "nZ" = ( /obj/effect/turf_decal/tile/neutral, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -6294,7 +5603,7 @@ }, /obj/effect/turf_decal/tile/purple, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "oa" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood{ @@ -6354,8 +5663,10 @@ /turf/open/floor/iron, /area/station/security/execution/transfer) "oh" = ( -/turf/closed/wall/r_wall, -/area/station/security/checkpoint/science) +/turf/closed/wall/rock{ + name = "META 56, 119" + }, +/area/space) "oi" = ( /obj/effect/turf_decal/bot, /obj/structure/frame/computer{ @@ -6418,14 +5729,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/side, /area/station/security/prison) -"oo" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/item/radio/intercom/directional/south, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) "op" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ dir = 1 @@ -6457,17 +5760,20 @@ /turf/open/floor/iron/dark, /area/station/security/execution) "or" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Orderly's Office" +/obj/machinery/button/door/directional/west{ + id = "nt_rep_priv"; + name = "Privacy Shutters Control"; + pixel_y = 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/tile/red/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/medical, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/camera/directional/west{ + name = "command camera"; + c_tag = "NT Consultant's Office" + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "os" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -6525,20 +5831,24 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) +"ox" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) "oy" = ( -/obj/machinery/computer/crew{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) +/obj/machinery/firealarm/directional/south, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "oz" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -6548,18 +5858,6 @@ }, /turf/open/floor/iron/white/corner, /area/station/hallway/secondary/entry) -"oA" = ( -/obj/machinery/door/airlock/security{ - name = "Orderly's 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, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/mapping_helpers/airlock/access/all/medical/orderly, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/medical) "oB" = ( /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ @@ -6582,19 +5880,10 @@ /turf/open/floor/plating, /area/station/maintenance/fore/lesser) "oE" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/security/telescreen{ - dir = 4; - name = "Cargo Camera Monitor"; - network = list("ss13","cargo") - }, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "oF" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -6635,28 +5924,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/security/execution/transfer) -"oJ" = ( -/obj/machinery/light/directional/east, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 8; - pixel_x = 26 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/obj/structure/closet/secure_closet/security/engine, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"oK" = ( -/obj/structure/closet/secure_closet/brig{ - id = "medcell"; - name = "Medical Cell Locker" - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) "oL" = ( /obj/structure/curtain/cloth/fancy/mechanical{ icon_state = "bounty-open"; @@ -6668,12 +5935,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/security/prison/safe) -"oM" = ( -/obj/machinery/airalarm/directional/west, -/obj/structure/closet/secure_closet/security/med, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) "oN" = ( /obj/effect/spawner/structure/window/hollow/reinforced/directional{ dir = 4 @@ -6706,7 +5967,7 @@ }, /obj/machinery/vending/barbervend, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "oR" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/blue/opposingcorners{ @@ -6752,7 +6013,7 @@ dir = 1 }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "oX" = ( /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ @@ -6782,11 +6043,7 @@ pixel_y = -6 }, /turf/open/floor/iron, -/area/service/salon) -"pa" = ( -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) +/area/station/service/salon) "pb" = ( /obj/structure/transit_tube/diagonal/crossing/topleft, /turf/open/misc/asteroid/airless, @@ -6837,14 +6094,6 @@ /obj/structure/fence/corner, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/nospawn) -"pi" = ( -/obj/effect/landmark/start/engineering_guard, -/obj/structure/chair/office, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/engineering) "pk" = ( /obj/structure/window/reinforced/spawner/north, /obj/structure/cable, @@ -6863,12 +6112,6 @@ }, /turf/open/floor/iron, /area/station/ai_monitored/security/armory) -"pn" = ( -/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/security/checkpoint/medical) "po" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/caution/stand_clear{ @@ -6877,19 +6120,6 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"pp" = ( -/obj/structure/sign/poster/official/here_for_your_safety{ - pixel_y = -32 - }, -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -7 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "pq" = ( /obj/structure/table, /obj/effect/turf_decal/stripes/line{ @@ -6918,19 +6148,13 @@ /turf/open/floor/glass/reinforced, /area/station/ai_monitored/security/armory/upper) "pt" = ( -/obj/item/radio/intercom/directional/west, -/obj/machinery/computer/secure_data{ - dir = 4 +/obj/structure/chair/sofa/bench/right{ + dir = 1 }, -/obj/machinery/button/door/directional/west{ - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - normaldoorcontrol = 1; - pixel_y = -9 - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "pw" = ( /turf/open/floor/iron/dark/red/side{ dir = 10 @@ -6958,20 +6182,8 @@ /turf/open/floor/iron/dark, /area/station/security/prison) "pC" = ( -/obj/structure/closet/secure_closet/security/science, -/obj/machinery/status_display/evac/directional/north, -/obj/structure/extinguisher_cabinet/directional/north{ - pixel_x = -32 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/light_switch/directional/west{ - pixel_x = -38 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, /turf/open/floor/iron, -/area/station/security/checkpoint/science/research) +/area/station/commons/storage/primary) "pD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/decal/cleanable/dirt, @@ -6999,18 +6211,14 @@ /turf/open/floor/iron, /area/station/security/prison/visit) "pH" = ( -/obj/machinery/door/poddoor/preopen{ - id = "medsecprivacy"; - name = "Privacy Shutter" +/obj/effect/turf_decal/siding/wood{ + dir = 1 }, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor/left/directional/north{ - name = "Orderly Office's Desk"; - req_access = list("brig_entrance") +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 }, -/turf/open/floor/plating, -/area/station/security/checkpoint/medical) +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "pI" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -7066,12 +6274,8 @@ }, /area/station/security/prison/safe) "pN" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "pO" = ( /obj/structure/curtain/cloth, /obj/structure/cable, @@ -7119,12 +6323,9 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "pW" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/landmark/start/orderly, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "pX" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -7168,37 +6369,10 @@ /obj/item/clothing/under/rank/prisoner/skirt, /turf/open/floor/iron, /area/station/security/prison) -"qc" = ( -/obj/machinery/door/window/brigdoor/right/directional/east{ - id = "medcell"; - name = "Medical Holding Cell"; - req_access = list("brig_entrance") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) "qd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security/glass{ - id_tag = "engdoor"; - name = "Engineering Holding Cell" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engie_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/obj/structure/flora/rock/icy/style_random, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) "qe" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 9 @@ -7218,11 +6392,6 @@ /obj/effect/turf_decal/stripes/corner, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"qg" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) "qh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 9 @@ -7233,15 +6402,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"qi" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "qj" = ( /obj/structure/closet{ name = "Evidence Closet 3" @@ -7265,12 +6425,6 @@ }, /turf/open/floor/plating, /area/station/security/prison/safe) -"ql" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "qm" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -7293,18 +6447,24 @@ dir = 8 }, /area/station/hallway/primary/fore) +"qp" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/stripes/line, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) "qq" = ( /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, /area/station/hallway/secondary/entry) -"qr" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) "qs" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ @@ -7351,13 +6511,14 @@ /turf/open/floor/iron/white, /area/station/security/medical) "qx" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 }, -/obj/machinery/light/directional/north, -/obj/effect/landmark/start/orderly, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) +/obj/structure/cable, +/obj/effect/landmark/start/nanotrasen_consultant, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "qy" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -7378,14 +6539,12 @@ /turf/open/floor/plating/airless, /area/space/nearstation) "qB" = ( -/obj/structure/chair{ - dir = 1 +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "qD" = ( /obj/effect/turf_decal/stripes/corner, /obj/effect/turf_decal/stripes/corner{ @@ -7400,22 +6559,16 @@ /turf/open/floor/iron, /area/station/common/cryopods) "qF" = ( -/obj/machinery/light/directional/north, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 +/obj/structure/table/wood, +/obj/item/taperecorder{ + pixel_y = 5; + pixel_x = 5 }, -/obj/structure/closet/secure_closet/security/science, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) -"qG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Engineering Guard's Office" +/obj/item/camera{ + pixel_x = -4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engie_guard, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "qH" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -7449,7 +6602,7 @@ }, /obj/effect/turf_decal/tile/purple, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "qN" = ( /obj/effect/turf_decal/sand/plating, /obj/structure/disposalpipe/segment{ @@ -7472,6 +6625,10 @@ dir = 6 }, /area/station/security/prison/safe) +"qQ" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) "qR" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/purple{ @@ -7479,7 +6636,7 @@ }, /obj/effect/turf_decal/tile/purple, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "qS" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -7490,11 +6647,39 @@ /obj/structure/closet/wardrobe/white, /turf/open/floor/iron/cafeteria, /area/station/commons/dorms/laundry) +"qU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) "qV" = ( /obj/machinery/light/directional/south, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/side, /area/station/security/prison) +"qW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) "qX" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt, @@ -7527,15 +6712,17 @@ /turf/open/floor/plating, /area/station/security/prison) "rd" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Public Mining Storage"; + opacity = 0 }, -/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, -/area/station/security/checkpoint/science) +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "rf" = ( /obj/structure/bookcase/random/nonfiction, /obj/effect/decal/cleanable/dirt, @@ -7587,16 +6774,9 @@ /turf/open/floor/plating, /area/station/maintenance/fore) "rk" = ( -/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/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "rl" = ( /obj/structure/curtain/bounty, /obj/structure/cable, @@ -7623,11 +6803,11 @@ /turf/closed/wall, /area/station/security/execution) "rq" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/cable, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, /turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/area/station/commons/storage/primary) "rr" = ( /obj/effect/decal/cleanable/dirt, /obj/item/radio/intercom/directional/east, @@ -7716,15 +6896,14 @@ /turf/open/floor/iron/dark, /area/station/ai_monitored/security/armory) "rz" = ( -/obj/machinery/door/airlock/security{ - name = "Science Guard's Office" +/obj/effect/turf_decal/bot, +/obj/machinery/vending/cigarette, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 }, -/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/science/sci_guard, -/turf/open/floor/iron/white, -/area/station/security/checkpoint/science) +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central/fore) "rA" = ( /obj/structure/railing{ dir = 8 @@ -7749,16 +6928,9 @@ /turf/open/floor/iron/dark, /area/station/security/execution/transfer) "rD" = ( -/obj/structure/closet/secure_closet/brig{ - id = "medcell"; - name = "Medical Cell Locker" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) +/obj/structure/flora/rock/pile/icy/style_random, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) "rE" = ( /turf/closed/wall, /area/station/maintenance/fore) @@ -7797,7 +6969,7 @@ name = "Barbershop" }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "rJ" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, @@ -7905,21 +7077,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"rV" = ( -/obj/machinery/status_display/ai/directional/north, -/obj/machinery/firealarm/directional/east, -/obj/machinery/light_switch/directional/east{ - pixel_x = 38 - }, -/obj/structure/extinguisher_cabinet/directional/north{ - pixel_x = 32 - }, -/obj/structure/closet/secure_closet/security/cargo, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "rW" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -7928,18 +7085,9 @@ /turf/open/floor/iron/dark/side, /area/station/security/prison) "rX" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/machinery/requests_console/directional/south{ - department = "Security"; - departmentType = 5; - name = "Security Requests Console" - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science/research) +/obj/structure/sign/warning, +/turf/closed/wall/r_wall, +/area/mine/storage) "rY" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -7969,23 +7117,12 @@ /turf/open/floor/plating, /area/station/security/prison/upper) "sb" = ( -/obj/structure/table, -/obj/item/radio{ - pixel_x = -6; - pixel_y = -3 +/obj/machinery/light/directional/west, +/obj/machinery/modular_computer/console/preset/command{ + dir = 4 }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = 9; - pixel_y = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/machinery/firealarm/directional/west{ - pixel_y = 5 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "sc" = ( /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ @@ -8024,11 +7161,18 @@ /turf/open/floor/iron/dark, /area/station/maintenance/fore) "sg" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 +/obj/structure/table/wood, +/obj/item/stamp{ + pixel_x = -6 }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) +/obj/item/stamp/denied{ + pixel_x = 6 + }, +/obj/item/stamp/centcom{ + pixel_y = 8 + }, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) "sh" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ @@ -8051,13 +7195,6 @@ }, /turf/open/floor/plating, /area/station/hallway/secondary/entry) -"sk" = ( -/obj/machinery/computer/secure_data, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) "sl" = ( /obj/structure/window/reinforced, /obj/effect/turf_decal/tile/neutral, @@ -8089,18 +7226,10 @@ icon_state = "wood-broken6" }, /area/station/security/prison) -"so" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "sp" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/checkpoint/supply) +/obj/structure/ore_box, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) "sq" = ( /obj/effect/turf_decal/stripes{ dir = 10 @@ -8108,13 +7237,10 @@ /turf/open/floor/plating, /area/space) "sr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) "ss" = ( /obj/structure/railing{ dir = 10 @@ -8178,25 +7304,10 @@ dir = 4 }, /area/station/commons/fitness/recreation) -"sz" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) "sA" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/chair, -/obj/effect/landmark/start/science_guard, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, -/area/station/security/checkpoint/science) +/area/station/hallway/primary/central) "sB" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -8289,17 +7400,8 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "sL" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "medsecprivacy"; - name = "Privacy Shutter" - }, -/obj/machinery/door/window/brigdoor/left/directional/east{ - name = "Orderly Office's Desk"; - req_access = list("brig_entrance") - }, -/turf/open/floor/plating, -/area/station/security/checkpoint/medical) +/turf/closed/mineral/random/snow, +/area/icemoon/underground/explored) "sN" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -8310,40 +7412,25 @@ /turf/open/floor/iron, /area/station/common/cryopods) "sO" = ( -/obj/structure/chair{ - dir = 4 +/obj/structure/table/wood, +/obj/item/folder/yellow, +/obj/item/folder/white{ + pixel_y = 3 }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 +/obj/item/folder/red{ + pixel_y = 6 }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) +/obj/item/folder/blue{ + pixel_y = 9 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "sP" = ( /obj/structure/disposalpipe/segment, /obj/structure/window/reinforced/spawner/north, /turf/open/floor/plating, /area/station/maintenance/fore/lesser) -"sQ" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/landmark/start/orderly, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) -"sR" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/item/radio/off{ - pixel_x = -11; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "sS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -8366,15 +7453,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/security/prison) -"sU" = ( -/obj/machinery/computer/mecha{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) "sV" = ( /obj/machinery/cryopod{ dir = 8 @@ -8394,7 +7472,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "sX" = ( /obj/docking_port/stationary{ dir = 4; @@ -8472,7 +7550,7 @@ /obj/effect/turf_decal/tile/purple, /obj/item/lipstick/random, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "te" = ( /obj/effect/landmark/start/hangover, /obj/structure/table, @@ -8537,20 +7615,6 @@ dir = 1 }, /area/station/security/prison) -"tm" = ( -/obj/structure/filingcabinet, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/sign/poster/official/space_cops{ - pixel_x = -32 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) "tn" = ( /obj/machinery/shower{ dir = 8 @@ -8568,20 +7632,6 @@ dir = 8 }, /area/station/security/prison) -"tp" = ( -/obj/machinery/door_timer{ - id = "crgcell"; - name = "Cargo Cell"; - pixel_x = 32 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "tq" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -8590,15 +7640,13 @@ /turf/open/floor/iron, /area/station/hallway/primary/fore) "tr" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/poster/official/random/directional/south, /obj/structure/chair/office{ dir = 8 }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/customs_agent, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/obj/effect/landmark/start/nanotrasen_consultant, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "ts" = ( /obj/machinery/light_switch/directional/south, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -8608,10 +7656,6 @@ dir = 6 }, /area/station/security/execution) -"tt" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/closed/wall, -/area/station/security/checkpoint/engineering) "tu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -8621,23 +7665,13 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "tv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 +/obj/structure/chair/sofa/bench{ + dir = 1 }, -/obj/effect/landmark/start/engineering_guard, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "tw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -8692,7 +7726,7 @@ /obj/structure/bed/pod, /obj/structure/window, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "tC" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 9 @@ -8700,11 +7734,6 @@ /obj/item/radio/intercom/directional/south, /turf/open/floor/iron/dark/smooth_large, /area/station/hallway/secondary/entry) -"tD" = ( -/obj/structure/cable, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) "tE" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -8783,31 +7812,26 @@ pixel_y = -26 }, /turf/open/floor/iron/dark, -/area/service/salon) +/area/station/service/salon) "tM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) +/obj/structure/flora/grass/green/style_2, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) "tN" = ( -/obj/structure/closet/secure_closet/security/engine, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 +/obj/structure/table/wood, +/obj/item/stamp/centcom{ + pixel_x = -6; + pixel_y = 8 }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 +/obj/item/stamp/denied{ + pixel_x = -6; + pixel_y = 4 }, -/obj/machinery/light/directional/south, -/obj/structure/reagent_dispensers/wall/peppertank/directional/south, -/obj/item/crowbar, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) +/obj/item/stamp{ + pixel_x = -6 + }, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) "tO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -8906,30 +7930,16 @@ }, /turf/open/floor/plating, /area/station/security/prison/upper) -"uc" = ( -/obj/machinery/computer/security/mining{ - dir = 4 - }, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "ud" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/security/prison/garden) "ue" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 +/obj/structure/marker_beacon/burgundy{ + name = "landing marker" }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/landmark/start/orderly, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) +/turf/open/floor/plating/snowed/smoothed/icemoon, +/area/icemoon/underground/explored) "uf" = ( /obj/machinery/light/directional/north, /obj/structure/rack/gunrack, @@ -9039,10 +8049,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/hallway/primary/fore) -"uu" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/checkpoint/supply) "uv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -9082,10 +8088,15 @@ /turf/open/floor/wood, /area/station/security/prison) "uA" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/station/security/checkpoint/engineering) +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "uB" = ( /obj/machinery/door/airlock/external{ name = "Escape Pod 3"; @@ -9119,7 +8130,7 @@ /obj/effect/turf_decal/tile/purple, /obj/machinery/holopad, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "uF" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/light/directional/north, @@ -9175,25 +8186,14 @@ /turf/open/floor/iron/dark, /area/station/maintenance/port/fore) "uK" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/structure/reagent_dispensers/wall/peppertank/directional/east, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "uL" = ( -/obj/machinery/computer/security/telescreen/engine{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Security Post - Engineering" - }, -/obj/structure/cable, /obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "uM" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -9260,15 +8260,6 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron, /area/station/hallway/primary/fore) -"uV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/engineering_guard, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) "uW" = ( /mob/living/simple_animal/bot/secbot/beepsky/armsky, /turf/open/floor/iron/dark/textured, @@ -9285,21 +8276,13 @@ dir = 8 }, /turf/open/floor/iron/cafeteria, -/area/service/salon) +/area/station/service/salon) "uZ" = ( /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/secondary/entry) -"va" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/structure/closet/secure_closet/security/cargo, -/obj/item/clothing/mask/whistle, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "vb" = ( /obj/structure/fence{ dir = 4 @@ -9307,9 +8290,6 @@ /obj/effect/turf_decal/weather/snow/corner, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/nospawn) -"vc" = ( -/turf/closed/wall, -/area/station/security/checkpoint/science) "vd" = ( /obj/machinery/camera/directional/north{ c_tag = "Arrivals - Aft Arm - Bay" @@ -9395,14 +8375,11 @@ /turf/open/floor/iron/dark, /area/station/common/cryopods) "vn" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/computer/secure_data{ +/obj/structure/chair/plastic{ dir = 1 }, -/obj/structure/reagent_dispensers/wall/peppertank/directional/south, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "vo" = ( /obj/structure/chair/stool/directional/south, /turf/open/floor/iron, @@ -9552,9 +8529,6 @@ /obj/machinery/status_display/evac/directional, /turf/closed/wall, /area/station/hallway/secondary/entry) -"vE" = ( -/turf/closed/wall/r_wall, -/area/station/science/ordnance/storage) "vF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -9588,11 +8562,7 @@ pixel_y = 24 }, /turf/open/floor/iron, -/area/service/salon) -"vJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/checkpoint/science) +/area/station/service/salon) "vK" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/stripes/line{ @@ -9625,7 +8595,7 @@ id = "barbershopcurtains" }, /turf/open/floor/plating, -/area/service/salon) +/area/station/service/salon) "vN" = ( /obj/structure/bed, /obj/item/bedsheet/brown, @@ -9648,9 +8618,20 @@ /turf/open/floor/plating, /area/space) "vQ" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/station/security/checkpoint/medical) +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Public Mining Storage"; + opacity = 0 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/sign/warning/gas_mask/directional/south{ + desc = "A sign that warns of dangerous gasses in the air, instructing you to wear internals." + }, +/obj/structure/sign/warning/cold_temp/directional/north, +/turf/open/floor/iron/dark, +/area/mine/storage) "vR" = ( /obj/structure/railing{ dir = 4 @@ -9672,7 +8653,7 @@ pixel_y = -24 }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "vT" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -9733,16 +8714,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/station/security/prison) -"wd" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/orderly, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) "we" = ( /obj/machinery/light_switch/directional/west, /obj/effect/turf_decal/tile/purple{ @@ -9755,7 +8726,7 @@ pixel_y = -6 }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "wf" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -9765,31 +8736,11 @@ /turf/open/floor/iron/dark, /area/station/ai_monitored/security/armory) "wg" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ +/obj/effect/turf_decal/siding/wood{ dir = 8 }, -/obj/structure/closet/emcloset, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/port) -"wh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "wi" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/directional/west, @@ -9860,19 +8811,6 @@ dir = 8 }, /area/station/security/prison) -"ws" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "wt" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -9904,11 +8842,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/freezer, /area/station/security/prison/shower) -"ww" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/checkpoint/supply) "wx" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 @@ -9969,6 +8902,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/primary/fore) +"wD" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) "wE" = ( /obj/structure/table, /obj/machinery/door/poddoor/shutters{ @@ -10018,34 +8961,9 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/iron/grimy, /area/station/hallway/primary/fore) -"wJ" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"wK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/engineering_guard, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) "wL" = ( -/obj/structure/cable, -/obj/effect/landmark/start/customs_agent, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/turf/closed/wall, +/area/command/heads_quarters/captain/private/nt_rep) "wM" = ( /obj/structure/chair/comfy/brown{ dir = 8 @@ -10154,6 +9072,12 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron/dark, /area/station/maintenance/port/fore) +"wV" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/flora/bush/pale/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) "wW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -10190,7 +9114,7 @@ dir = 1 }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "xb" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/stripes/corner{ @@ -10219,6 +9143,14 @@ }, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/nospawn) +"xe" = ( +/obj/machinery/door/airlock/external{ + name = "Arrival Shuttle Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) "xf" = ( /obj/machinery/washing_machine, /obj/machinery/camera{ @@ -10272,11 +9204,10 @@ /turf/open/floor/iron/dark, /area/station/security/prison) "xj" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/closet/secure_closet/security/science, -/obj/item/clothing/mask/whistle, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "xk" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -10304,14 +9235,6 @@ /obj/item/gun/grenadelauncher, /turf/open/floor/iron/dark, /area/station/ai_monitored/security/armory) -"xn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) "xo" = ( /obj/item/storage/secure/safe/directional/south, /obj/machinery/light/directional/south, @@ -10327,7 +9250,7 @@ }, /obj/structure/closet/secure_closet/barber, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "xp" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -10342,22 +9265,19 @@ /turf/open/floor/wood, /area/station/maintenance/port/fore) "xq" = ( -/obj/structure/chair/office{ +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"xr" = ( +/obj/structure/chair/sofa/bench/left{ dir = 1 }, -/obj/effect/landmark/start/customs_agent, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/assistant, /turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"xr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Science Guard's Office" - }, -/obj/effect/turf_decal/siding/red/corner, -/obj/effect/mapping_helpers/airlock/access/all/science/sci_guard, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science/research) +/area/station/hallway/primary/central) "xs" = ( /obj/structure/table, /obj/structure/bedsheetbin, @@ -10373,10 +9293,9 @@ }, /area/station/security/prison) "xt" = ( -/turf/closed/wall/rock{ - name = "BOX 170, 110" - }, -/area/space) +/obj/structure/sign/warning/directional/north, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) "xu" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -10395,19 +9314,6 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/dark/side, /area/station/security/prison) -"xw" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Science - Security Outpost"; - network = list("ss13","rd","Security") - }, -/obj/effect/landmark/start/science_guard, -/obj/structure/reagent_dispensers/wall/peppertank/directional/south, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) "xx" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, @@ -10449,20 +9355,6 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"xD" = ( -/obj/structure/chair, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/flasher/directional/north{ - id = "crgcell" - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "xE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -10483,26 +9375,13 @@ pixel_y = 24 }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "xG" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/flasher/directional/east{ - id = "scicell" - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/cent_com/rep_door, +/turf/open/floor/plating, +/area/station/maintenance/port) "xH" = ( /obj/machinery/door/airlock/freezer, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -10522,12 +9401,7 @@ }, /obj/effect/landmark/start/barber, /turf/open/floor/iron/dark, -/area/service/salon) -"xJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/lobby) +/area/station/service/salon) "xK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -10555,13 +9429,20 @@ /turf/closed/wall, /area/station/security/prison/upper) "xO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/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/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/area/station/hallway/primary/port) "xP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile, @@ -10596,14 +9477,12 @@ }, /area/station/security/prison/upper) "xT" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 5 - }, -/obj/effect/landmark/start/hangover/closet, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/tram/right) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "xU" = ( /obj/structure/falsewall, /turf/open/floor/plating, @@ -10621,13 +9500,9 @@ /turf/open/floor/iron/showroomfloor, /area/station/ai_monitored/security/armory) "xW" = ( -/obj/structure/closet/secure_closet/security/cargo, -/obj/item/clothing/mask/whistle, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, +/obj/effect/spawner/random/vending/colavend, /turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/area/station/hallway/primary/port) "xX" = ( /obj/machinery/newscaster/directional/north, /obj/effect/turf_decal/tile/purple{ @@ -10644,7 +9519,7 @@ c_tag = "Salon" }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "xY" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -10684,10 +9559,8 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "yd" = ( -/turf/closed/wall/rock{ - name = "TRAM 120, 92, 1" - }, -/area/space) +/turf/closed/wall/r_wall, +/area/station/commons/storage/primary) "yf" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -10707,17 +9580,24 @@ /turf/open/floor/iron/dark/textured, /area/station/security/office) "yh" = ( -/obj/structure/closet/secure_closet/brig{ - id = "scicell"; - name = "Science Cell Locker" +/obj/structure/table/wood, +/obj/item/taperecorder{ + pixel_y = 5; + pixel_x = 5 }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 +/obj/item/camera_film{ + pixel_x = 6 }, -/obj/effect/turf_decal/trimline/red/corner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) +/obj/item/camera_film{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/camera{ + pixel_x = -4 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) "yi" = ( /obj/effect/turf_decal/tile/purple{ dir = 1 @@ -10725,7 +9605,7 @@ /obj/effect/turf_decal/tile/purple, /obj/item/kirbyplants/random, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "yj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/stripes/line{ @@ -10775,7 +9655,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/cafeteria, -/area/service/salon) +/area/station/service/salon) "yp" = ( /turf/closed/wall, /area/station/maintenance/port) @@ -10791,25 +9671,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/common/cryopods) -"ys" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - 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/science_guard, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) -"yt" = ( -/obj/effect/turf_decal/trimline/red/arrow_cw, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) "yu" = ( /obj/machinery/door/airlock{ name = "Port Emergency Storage" @@ -10961,37 +9822,6 @@ }, /turf/open/floor/iron, /area/station/commons/fitness/recreation) -"yM" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/engineering/atmos/storage/gas) -"yN" = ( -/obj/effect/turf_decal/bot, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_x = -5 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/item/crowbar, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) "yO" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -11039,32 +9869,19 @@ /turf/open/floor/iron/showroomfloor, /area/station/ai_monitored/security/armory) "yS" = ( -/turf/closed/wall/rust, -/area/station/security/checkpoint/medical) +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + name = "Supply multi deck pipe adapter" + }, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + name = "Scrubbers multi deck pipe adapter" + }, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "yT" = ( /turf/closed/wall, /area/station/security/prison/work) -"yU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/machinery/holopad, -/obj/effect/landmark/start/orderly, -/obj/machinery/button/door/directional/west{ - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - normaldoorcontrol = 1; - pixel_x = -35; - pixel_y = -56 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/medical) "yV" = ( /obj/machinery/light/directional/east, /obj/effect/decal/cleanable/dirt, @@ -11091,17 +9908,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"yY" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/closet/secure_closet/brig{ - id = "engcell"; - name = "Engineering Cell Locker" - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) "yZ" = ( /turf/closed/wall, /area/station/security/prison/mess) @@ -11117,23 +9923,6 @@ icon_state = "platingdmg3" }, /area/station/maintenance/fore) -"zc" = ( -/obj/structure/table/reinforced, -/obj/machinery/camera{ - c_tag = "Security Post - Medbay"; - dir = 9; - network = list("ss13","medbay") - }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/machinery/newscaster/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/full, -/obj/item/screwdriver, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/medical) "ze" = ( /obj/effect/turf_decal/stripes/white/line{ color = "#52B4E9"; @@ -11145,13 +9934,6 @@ dir = 8 }, /area/station/security/prison) -"zf" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) "zg" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -11169,10 +9951,7 @@ dir = 1 }, /turf/open/floor/iron, -/area/service/salon) -"zh" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/transit_tube) +/area/station/service/salon) "zi" = ( /obj/machinery/light/directional/east, /obj/effect/turf_decal/tile/blue{ @@ -11187,33 +9966,6 @@ /mob/living/simple_animal/bot/secbot/beepsky/armsky, /turf/open/floor/iron, /area/station/ai_monitored/security/armory) -"zk" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - 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/customs_agent, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/supply) -"zm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/security{ - name = "Orderly's Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/orderly, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) "zn" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -11304,15 +10056,6 @@ /obj/effect/turf_decal/delivery/red, /turf/open/floor/iron/smooth, /area/station/ai_monitored/security/armory) -"zw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/customs_agent, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "zy" = ( /obj/machinery/airalarm/directional/east, /obj/structure/water_source{ @@ -11387,7 +10130,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/door/firedoor, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "zJ" = ( /obj/machinery/computer/cryopod{ dir = 8; @@ -11416,6 +10159,16 @@ /obj/effect/turf_decal/box, /turf/open/floor/iron/dark, /area/station/ai_monitored/security/armory) +"zM" = ( +/obj/machinery/door/airlock/external{ + name = "Arrival Shuttle Airlock"; + space_dir = 2 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) "zN" = ( /obj/effect/turf_decal/stripes{ dir = 8 @@ -11548,15 +10301,11 @@ /obj/item/hairbrush, /obj/item/lipstick/random, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "zY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/station/maintenance/port) "zZ" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/blood/old, @@ -11587,7 +10336,7 @@ }, /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, -/area/service/salon) +/area/station/service/salon) "Ad" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/stripes/line, @@ -11598,25 +10347,17 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "Ae" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 +/obj/structure/table/wood, +/obj/item/stamp/denied{ + pixel_x = 8; + pixel_y = 6 }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 +/obj/item/stamp{ + pixel_y = 6; + pixel_x = -2 }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/newscaster/directional/south, -/obj/machinery/recharger, -/obj/machinery/camera/directional/south{ - c_tag = "Engineering Security Post"; - name = "engineering camera" - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) "Af" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark/corner{ @@ -11625,20 +10366,12 @@ /area/station/security/prison) "Ag" = ( /obj/structure/cable, -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 }, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, /turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"Ah" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) +/area/station/maintenance/port/fore) "Ai" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -11668,25 +10401,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"An" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/brig{ - id = "engcell"; - name = "Engineering Cell Locker" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) "Ao" = ( /obj/structure/bed, /obj/item/clothing/suit/straight_jacket, @@ -11742,7 +10456,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "At" = ( /obj/structure/table, /obj/machinery/microwave{ @@ -11760,14 +10474,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/security/prison/upper) -"Aw" = ( -/obj/machinery/computer/security{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) "Ax" = ( /obj/effect/landmark/start/assistant, /obj/effect/turf_decal/tile/yellow{ @@ -11785,7 +10491,7 @@ /obj/machinery/light/warm/directional/north, /obj/item/kirbyplants/random, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "Az" = ( /obj/item/radio/intercom/directional/south, /turf/open/floor/iron/dark, @@ -11827,23 +10533,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/showroomfloor, /area/station/ai_monitored/security/armory) -"AG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/button/door/directional/south{ - id = "engielock"; - name = "Engineering Lockdown Control"; - pixel_x = -6; - req_access = list("engineering") - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) "AH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, @@ -11871,17 +10560,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/commons/fitness/recreation) -"AK" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/directional/west, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron, -/area/station/engineering/atmos) "AL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -11904,14 +10582,6 @@ /obj/structure/cable, /turf/open/floor/iron/white/corner, /area/station/hallway/secondary/entry) -"AN" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/customs_agent, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "AO" = ( /obj/machinery/button/curtain{ id = "prisoncell8"; @@ -11962,7 +10632,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/firedoor, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "AT" = ( /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ @@ -11973,14 +10643,9 @@ /turf/open/floor/iron, /area/station/security/prison/mess) "AU" = ( -/obj/effect/landmark/start/engineering_guard, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central) "AV" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -12041,7 +10706,7 @@ dir = 1 }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "Ba" = ( /obj/structure/curtain/cloth/fancy, /turf/open/floor/wood/tile, @@ -12070,56 +10735,8 @@ }, /area/station/security/medical) "Bd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/checkpoint/science) -"Be" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/radio{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/pen, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) -"Bf" = ( -/obj/machinery/door/airlock/security{ - name = "Science Guard's Office" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - 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, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/sci_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"Bg" = ( -/obj/effect/landmark/start/engineering_guard, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/engineering) +/turf/closed/wall/r_wall, +/area/station/maintenance/port) "Bh" = ( /obj/effect/turf_decal/tile, /obj/effect/turf_decal/tile/yellow{ @@ -12145,23 +10762,10 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "Bj" = ( -/obj/structure/chair/office/light, -/obj/effect/landmark/start/orderly, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/checkpoint/medical) +/obj/structure/cable, +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "Bk" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -12173,24 +10777,10 @@ dir = 1 }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "Bl" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) +/turf/open/floor/plating, +/area/station/maintenance/port) "Bm" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/blue{ @@ -12217,22 +10807,19 @@ name = "BOX 116, 142" }, /area/space) +"Bp" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) "Bq" = ( /obj/effect/landmark/carpspawn, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/surface/outdoors/nospawn) "Br" = ( -/obj/machinery/door/airlock/security{ - name = "Engineering Guard's Office" - }, -/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/effect/turf_decal/tile/red/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engie_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/turf/closed/wall, +/area/station/maintenance/central/greater) "Bs" = ( /obj/structure/toilet{ dir = 8 @@ -12269,7 +10856,7 @@ pixel_x = -12 }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "Bw" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -12277,23 +10864,14 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/ai_monitored/security/armory) -"Bx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security{ - name = "Engineering Guard's Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engie_guard, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) "By" = ( -/obj/effect/landmark/start/engineering_guard, -/obj/structure/chair/office, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/obj/machinery/door/poddoor/preopen{ + name = "Privacy Shutter"; + id = "nt_rep_priv" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/command/heads_quarters/captain/private/nt_rep) "Bz" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -12310,30 +10888,16 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "BC" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, +/obj/machinery/holopad, /obj/structure/cable, -/obj/machinery/camera/directional/east{ - c_tag = "Security Post - Research Division"; - network = list("ss13","rd") - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "BD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/start/customs_agent, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, +/obj/structure/fireplace, +/obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/security/checkpoint/supply) +/area/command/heads_quarters/captain/private/nt_rep) "BE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, @@ -12349,7 +10913,7 @@ }, /obj/effect/landmark/start/hangover, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "BI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/lattice/catwalk, @@ -12410,13 +10974,7 @@ }, /obj/structure/cable, /turf/open/floor/plating, -/area/service/salon) -"BR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/checkpoint/engineering) +/area/station/service/salon) "BS" = ( /obj/structure/chair/office/light{ dir = 4 @@ -12431,7 +10989,7 @@ pixel_y = 24 }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "BT" = ( /obj/structure/cable, /obj/structure/grille, @@ -12453,19 +11011,6 @@ icon = 'icons/turf/floors.dmi' }, /area/station/security/prison/upper) -"BV" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Engineering Guard's Office" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engie_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) "BW" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/red, @@ -12481,14 +11026,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"BY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "BZ" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -12519,15 +11056,12 @@ /turf/open/floor/plating, /area/station/hallway/secondary/entry) "Ce" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/security{ - name = "Orderly's Office" +/obj/effect/turf_decal/tile/neutral{ + dir = 8 }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/medical, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/port) "Cf" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -12644,24 +11178,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/security/prison) -"Cr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Science Guard's Office" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/science/sci_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) "Cs" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -12723,14 +11239,6 @@ /obj/effect/spawner/random/contraband/prison, /turf/open/floor/plating, /area/station/security/prison/work) -"Cz" = ( -/obj/effect/landmark/start/customs_agent, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/structure/chair, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "CA" = ( /turf/closed/wall, /area/station/security/prison/garden) @@ -12741,7 +11249,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/service/salon) +/area/station/service/salon) "CE" = ( /obj/structure/transit_tube/crossing, /obj/effect/turf_decal/sand/plating, @@ -12769,14 +11277,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"CH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/engineering_guard, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) "CI" = ( /obj/machinery/light/directional/south, /obj/effect/turf_decal/tile/red{ @@ -12787,49 +11287,10 @@ /obj/item/radio/intercom/directional/south, /turf/open/floor/iron, /area/station/security/execution/transfer) -"CJ" = ( -/obj/structure/reagent_dispensers/wall/peppertank/directional/east, -/obj/machinery/newscaster/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Security Post - Cargo" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/computer/security/mining{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "CK" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/structure/reagent_dispensers/wall/peppertank/directional/west, -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/radio, -/obj/machinery/button/door/directional/north{ - id = "meddoor"; - name = "Medical Cell Control"; - normaldoorcontrol = 1; - pixel_x = -36; - req_access = list("brig_entrance") - }, -/obj/machinery/button/door/directional/north{ - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - normaldoorcontrol = 1; - pixel_x = -24; - req_access = list("brig_entrance") - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) +/obj/machinery/firealarm/directional/east, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) "CL" = ( /obj/structure/bookcase/random/fiction, /obj/effect/decal/cleanable/dirt, @@ -12854,18 +11315,12 @@ /turf/open/floor/iron/dark, /area/station/hallway/primary/fore) "CO" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/computer/security/labor, -/obj/machinery/requests_console/directional/north{ - department = "Security"; - departmentType = 3; - name = "Security Requests Console" +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 }, -/obj/machinery/light/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/supply) +/obj/machinery/light/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "CP" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -12924,30 +11379,21 @@ /turf/open/floor/iron/dark, /area/station/security/prison) "CS" = ( -/obj/structure/closet/secure_closet/security/cargo, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"CT" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/structure/reagent_dispensers/wall/peppertank/directional/west, -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/radio, -/obj/machinery/button/door/directional/west{ - id = "cardoor"; - name = "Cargo Cell Control"; - normaldoorcontrol = 1; - pixel_x = -34; - pixel_y = -6; - req_access = list("brig_entrance") +/obj/structure/table/wood, +/obj/item/camera_film{ + pixel_x = 6 }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 +/obj/item/camera_film{ + pixel_x = 6; + pixel_y = 4 }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/obj/item/camera{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/captain/private/nt_rep) "CU" = ( /obj/structure/table, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -12957,13 +11403,13 @@ }, /area/station/security/prison/safe) "CW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ dir = 4 }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "CX" = ( /obj/effect/turf_decal/stripes{ dir = 5 @@ -12993,10 +11439,12 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "Db" = ( -/turf/closed/wall/rock{ - name = "KILO 127, 78" +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 }, -/area/space) +/obj/item/radio/intercom/directional/south, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "Dc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ @@ -13047,9 +11495,9 @@ /turf/open/floor/iron/dark, /area/station/ai_monitored/security/armory) "Dh" = ( -/obj/structure/cable, -/turf/closed/wall, -/area/station/security/checkpoint/medical) +/obj/structure/cable/multilayer/multiz, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "Di" = ( /obj/structure/extinguisher_cabinet/directional/east, /obj/machinery/camera{ @@ -13117,13 +11565,17 @@ /turf/open/floor/plating, /area/station/security/prison/safe) "Dn" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 6 }, -/obj/structure/cable, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"Do" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) "Dp" = ( /obj/structure/chair{ dir = 1 @@ -13152,16 +11604,30 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "Du" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 +/obj/machinery/button/door/directional/west{ + id = "nt_rep_priv"; + name = "Privacy Shutters Control"; + pixel_y = 8 }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 +/obj/structure/table/wood, +/obj/item/folder/yellow{ + pixel_x = 8; + pixel_y = -1 }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/folder/red{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/item/folder/blue{ + pixel_y = 6; + pixel_x = -2 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "Dv" = ( /obj/machinery/flasher/portable, /obj/effect/turf_decal/tile/red/half, @@ -13216,13 +11682,6 @@ }, /turf/open/floor/iron/stairs, /area/station/hallway/secondary/entry) -"DF" = ( -/obj/item/radio/off, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/landmark/start/customs_agent, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "DG" = ( /obj/machinery/firealarm/directional/west, /obj/machinery/hydroponics/soil{ @@ -13235,40 +11694,6 @@ }, /turf/open/floor/plating, /area/station/security/prison/garden) -"DH" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Cargo - Security Outpost"; - network = list("ss13","Security","cargo") - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/button/door/directional/west{ - id = "crgdoor"; - name = "Cargo Cell Control"; - normaldoorcontrol = 1; - req_access = list("brig_entrance") - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"DI" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - 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, -/area/station/security/checkpoint/supply) "DJ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -13313,39 +11738,20 @@ /turf/open/floor/plating, /area/station/security/prison/garden) "DN" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 +/obj/machinery/door/airlock/corporate{ + name = "NT Consultant's Office" }, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/computer/security/telescreen{ - dir = 1; - name = "Science Camera Monitor"; - network = list("ss13","rd"); - pixel_y = -28 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"DO" = ( /obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/cent_com/rep_door, +/obj/machinery/door/firedoor, /turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"DP" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/structure/reagent_dispensers/wall/peppertank/directional/west, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/area/command/heads_quarters/captain/private/nt_rep) +"DO" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "DQ" = ( /obj/effect/turf_decal/bot, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ @@ -13356,25 +11762,10 @@ /turf/open/floor/iron/dark, /area/station/ai_monitored/security/armory) "DR" = ( -/obj/structure/closet/secure_closet/security/med, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/showroomfloor, -/area/station/security/checkpoint/medical) +/obj/effect/spawner/random/trash/hobo_squat, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "DS" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ @@ -13404,21 +11795,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/brig) -"DV" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "DW" = ( /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ @@ -13437,16 +11813,7 @@ /obj/item/book/fish_catalog, /obj/structure/table/wood, /turf/open/floor/iron, -/area/service/salon) -"DY" = ( -/obj/machinery/light/directional/north, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/structure/closet/secure_closet/security/med, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) +/area/station/service/salon) "DZ" = ( /obj/structure/chair/comfy{ color = "#596479"; @@ -13455,17 +11822,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/station/security/prison) -"Eb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/red, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science/research) "Ec" = ( /turf/open/floor/plating{ icon_state = "platingdmg3" @@ -13518,25 +11874,10 @@ }, /turf/open/floor/iron/stairs, /area/station/hallway/secondary/entry) -"El" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot, -/obj/structure/closet/firecloset, -/obj/structure/sign/poster/official/random/directional/west, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/port) "Em" = ( /obj/structure/marker_beacon/burgundy, /turf/open/floor/plating/airless, /area/space/nearstation) -"En" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) "Eo" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -13561,17 +11902,6 @@ /obj/effect/turf_decal/caution/stand_clear, /turf/open/floor/iron/dark, /area/station/hallway/primary/fore) -"Er" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 10 - }, -/obj/structure/chair/comfy{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit) "Es" = ( /obj/structure/table, /obj/item/reagent_containers/glass/rag, @@ -13603,16 +11933,12 @@ /turf/open/floor/iron, /area/station/security/prison/mess) "Eu" = ( -/turf/closed/wall/rock{ - name = "KILO 151, 129" +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 }, -/area/space) -"Ev" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/engineering_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "Ex" = ( /obj/docking_port/stationary{ dheight = 3; @@ -13632,26 +11958,15 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "Ez" = ( -/obj/machinery/computer/secure_data{ - dir = 4 +/turf/closed/wall/rock{ + name = "DELTA 123, 143" }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) +/area/space) "EA" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark/red/side, /area/station/security/execution) -"EB" = ( -/obj/item/kirbyplants/random, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) "EC" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/binary/pump/layer4{ @@ -13660,17 +11975,11 @@ /turf/open/floor/plating, /area/station/security/prison/upper) "ED" = ( -/obj/machinery/door/window/brigdoor{ - id = "medcell"; - name = "Medical Cell"; - req_access = list("brig_entrance") - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/east, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "EE" = ( /obj/structure/railing, /obj/machinery/flasher/portable, @@ -13682,11 +11991,9 @@ /turf/open/floor/iron/dark/textured, /area/station/ai_monitored/security/armory/upper) "EF" = ( -/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/engineering) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "EG" = ( /obj/effect/landmark/event_spawn, /obj/structure/cable, @@ -13732,24 +12039,13 @@ /turf/open/floor/iron/dark/blue/side, /area/brigofficer) "EN" = ( -/obj/machinery/computer/cargo{ - dir = 4 +/obj/structure/table, +/obj/item/trash/candle{ + pixel_y = 4 }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"EO" = ( -/obj/structure/cable, -/obj/machinery/light/directional/south, -/obj/machinery/computer/security{ - dir = 1 - }, -/obj/machinery/newscaster/directional/south, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "EP" = ( /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)."; @@ -13764,34 +12060,10 @@ /turf/open/floor/iron/white/corner, /area/station/hallway/secondary/entry) "EQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/window/brigdoor{ - dir = 1; - id = "scicell"; - name = "Science Holding Cell"; - req_access = list("brig_entrance") - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"ER" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/chair, -/obj/structure/cable, -/obj/effect/turf_decal/siding/red/corner, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "ES" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/directional/south, @@ -13862,7 +12134,7 @@ /obj/effect/turf_decal/tile/purple, /obj/machinery/light_switch/directional/south, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "Fb" = ( /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ @@ -13948,11 +12220,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/ai_monitored/security/armory) -"Fh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) "Fi" = ( /obj/effect/turf_decal/stripes/white/line{ color = "#52B4E9"; @@ -13977,25 +12244,9 @@ /turf/open/floor/glass/reinforced, /area/station/ai_monitored/security/armory/upper) "Fl" = ( -/obj/machinery/door/airlock/security{ - name = "Science Guard's Office" - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/science/sci_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/primary/central) "Fm" = ( /obj/structure/bed/roller, /turf/open/floor/plating, @@ -14029,8 +12280,11 @@ /turf/open/floor/iron/dark, /area/station/security/prison) "Fq" = ( -/turf/closed/wall, -/area/station/command/heads_quarters/rd) +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "Fr" = ( /obj/structure/transit_tube/diagonal/topleft, /turf/open/misc/asteroid/airless, @@ -14082,21 +12336,18 @@ }, /area/station/hallway/secondary/entry) "Fx" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/turf_decal/siding/red{ - dir = 8 - }, -/obj/effect/landmark/start/customs_agent, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/cent_com/rep_door, /turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/area/station/maintenance/port/fore) "Fy" = ( /obj/effect/turf_decal/tile/red/half{ dir = 4 @@ -14116,7 +12367,7 @@ /obj/structure/chair/sofa/bench/left, /obj/structure/cable, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "FB" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -14129,12 +12380,12 @@ /turf/open/floor/iron/cafeteria, /area/station/commons/dorms/laundry) "FC" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/obj/structure/closet/secure_closet/nanotrasen_consultant/station, +/obj/item/assembly/flash/handheld, +/obj/machinery/light/directional/west, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) "FD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -14220,18 +12471,10 @@ /turf/open/floor/iron/dark, /area/station/ai_monitored/security/armory) "FK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/area/station/maintenance/port) "FL" = ( /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ @@ -14252,48 +12495,18 @@ /obj/structure/sign/poster/official/random/directional/south, /turf/open/floor/iron/dark, /area/station/hallway/primary/fore) -"FN" = ( -/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/orderly, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) "FO" = ( -/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/orderly, -/obj/machinery/light_switch/directional/south{ - pixel_x = -21; - pixel_y = -25 +/turf/closed/wall/rock{ + name = "TRAM 132, 149, 2" }, -/obj/effect/turf_decal/tile/red/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/medical) +/area/space) "FP" = ( /obj/machinery/light/directional/east, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"FQ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/closed/wall, -/area/station/security/checkpoint/engineering) "FR" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/corner, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/turf/closed/wall/ice, +/area/icemoon/underground/explored) "FS" = ( /obj/effect/turf_decal/sand/plating, /obj/structure/disposalpipe/segment{ @@ -14370,26 +12583,14 @@ /turf/open/floor/iron/dark, /area/station/security/execution) "Gd" = ( -/obj/structure/reagent_dispensers/wall/peppertank/directional/south, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 9 }, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) +/obj/machinery/light_switch/directional/west, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/iron, +/area/station/commons/storage/primary) "Ge" = ( /obj/effect/spawner/structure/window, /obj/structure/curtain/cloth/fancy/mechanical{ @@ -14451,6 +12652,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/common/cryopods) +"Gl" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/clothing, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) "Gm" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -14467,20 +12673,9 @@ /turf/open/floor/iron/dark, /area/station/maintenance/port/fore) "Gn" = ( -/obj/structure/table/reinforced, -/obj/item/radio/off{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/machinery/light/directional/north, -/obj/item/radio/intercom/directional/north, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/red/full, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/medical) +/obj/effect/landmark/start/nanotrasen_consultant, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) "Go" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -14489,28 +12684,15 @@ /turf/open/floor/iron/white, /area/station/security/medical) "Gp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 5 }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/firealarm/directional/south{ - pixel_x = -32 - }, -/obj/item/radio/intercom/directional/south, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/closet/secure_closet/security/engine, -/obj/item/book/manual/wiki/security_space_law, +/obj/item/kirbyplants/random, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) +/area/station/hallway/primary/central) "Gq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/blood/old, @@ -14542,19 +12724,6 @@ /obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"Gv" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Cargo - Lower Security Outpost"; - dir = 6; - network = list("ss13","Security","cargo") - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "Gw" = ( /obj/item/storage/box/teargas{ pixel_x = 3; @@ -14673,6 +12842,9 @@ /obj/effect/mapping_helpers/airlock/access/all/security/general, /turf/open/floor/iron, /area/station/security/execution/transfer) +"GI" = ( +/turf/open/floor/plating/airless, +/area/space) "GJ" = ( /obj/effect/turf_decal/tile/purple{ dir = 1 @@ -14681,7 +12853,7 @@ /obj/structure/closet/secure_closet/barber, /obj/machinery/airalarm/directional/west, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "GK" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -14689,12 +12861,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"GL" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) "GM" = ( /obj/structure/bed, /obj/item/clothing/suit/straight_jacket, @@ -14765,12 +12931,6 @@ temperature = 2.7 }, /area/station/security/execution/transfer) -"GV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) "GW" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -14779,16 +12939,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/primary/fore) -"GX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/effect/landmark/start/orderly, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/medical) "GY" = ( /obj/structure/rack, /obj/item/storage/barricade{ @@ -14811,14 +12961,15 @@ /turf/open/floor/iron/dark, /area/station/ai_monitored/security/armory) "GZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/red/arrow_cw{ - dir = 1 +/obj/structure/table/wood, +/obj/item/stamp/denied{ + pixel_x = -6 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) +/obj/item/stamp{ + pixel_x = 6 + }, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) "Ha" = ( /obj/machinery/camera{ c_tag = "Prison - Visition (Visitor)"; @@ -14899,23 +13050,15 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "Ho" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/corner{ +/obj/machinery/light_switch/directional/north, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 +/obj/effect/turf_decal/siding/wood{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"Hp" = ( -/obj/machinery/computer/med_data, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/medical) +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "Hr" = ( /obj/structure/rack, /obj/item/clothing/head/helmet/sec{ @@ -14954,9 +13097,6 @@ /obj/structure/fluff/metalpole/end, /turf/open/space/basic, /area/space/nearstation) -"Hu" = ( -/turf/closed/wall/r_wall, -/area/station/hallway/primary/tram/right) "Hv" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -14966,15 +13106,10 @@ /turf/open/floor/iron/kitchen, /area/station/security/prison/mess) "Hw" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "Hx" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/textured, @@ -14986,6 +13121,9 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) +"Hz" = ( +/turf/closed/wall/rust, +/area/station/hallway/secondary/entry) "HA" = ( /obj/machinery/light/directional/west, /turf/open/floor/iron, @@ -15000,13 +13138,9 @@ /turf/open/floor/iron/dark, /area/station/security/prison/mess) "HC" = ( -/obj/effect/turf_decal/trimline/red/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, -/area/station/security/checkpoint/supply) +/obj/machinery/airalarm/directional/east, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) "HE" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -15061,21 +13195,12 @@ /turf/open/floor/plating, /area/station/security/prison/safe) "HL" = ( -/obj/structure/closet/secure_closet/security/cargo, -/obj/effect/turf_decal/delivery, -/obj/item/crowbar, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/supply) +/turf/open/floor/iron, +/area/station/hallway/primary/port) "HM" = ( /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ @@ -15123,7 +13248,7 @@ /obj/machinery/firealarm/directional/north, /obj/machinery/camera/directional/west, /turf/open/floor/iron/dark, -/area/service/salon) +/area/station/service/salon) "HS" = ( /turf/closed/wall, /area/station/security/checkpoint) @@ -15144,10 +13269,9 @@ /turf/open/floor/iron/dark, /area/station/ai_monitored/security/armory) "HW" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/landmark/start/orderly, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/commons/storage/primary) "HX" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ @@ -15189,45 +13313,16 @@ /obj/effect/turf_decal/tile, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"Ib" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/orderly, -/obj/structure/extinguisher_cabinet/directional/south{ - pixel_x = 26 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"Ic" = ( -/turf/closed/wall/rock{ - name = "DELTA 172, 92" - }, -/area/space) "Id" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 }, -/obj/machinery/light_switch/directional/north{ - pixel_x = -22 - }, -/obj/machinery/button/door/directional/north{ - id = "scidoor"; - name = "Science Cell Control"; - normaldoorcontrol = 1; - pixel_x = -24; - pixel_y = 36; - req_access = list("brig_entrance") - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"Ie" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ +/obj/effect/turf_decal/siding/wood{ dir = 1 }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "If" = ( /obj/structure/chair/sofa/corp/right{ dir = 1 @@ -15238,18 +13333,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"Ig" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) "Ih" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -15259,9 +13342,13 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "Ii" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, -/area/station/hallway/secondary/exit) +/area/station/hallway/primary/port) "Ij" = ( /obj/structure/table, /obj/machinery/light/small/directional/north, @@ -15276,33 +13363,20 @@ /obj/effect/turf_decal/siding/white, /turf/open/floor/iron/dark, /area/station/common/cryopods) -"Il" = ( -/turf/closed/wall/rock{ - name = "BOX 115, 93" - }, -/area/space) "Im" = ( -/obj/machinery/light_switch/directional/north{ - pixel_x = 4 +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Public Mining Storage"; + opacity = 0 }, -/obj/effect/turf_decal/tile/red{ - dir = 1 +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/start/science_guard, -/obj/machinery/button/door/directional/north{ - id = "Biohazard"; - name = "Biohazard Shutter Control"; - pixel_x = -6; - req_access = list("brig_entrance") - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/structure/sign/warning/gas_mask/directional/south, +/obj/structure/sign/warning/cold_temp/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "In" = ( /obj/machinery/light/directional/north, /obj/effect/turf_decal/siding/white{ @@ -15312,20 +13386,13 @@ /turf/open/floor/iron/dark, /area/station/hallway/primary/fore) "Io" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Orderly's Office" +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 4 }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/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/medical/orderly, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) +/obj/item/pen/fountain, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) "Ip" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -15364,27 +13431,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"Iu" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) -"Iv" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/machinery/airalarm/directional/south, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) "Iw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -15411,7 +13457,7 @@ /obj/effect/turf_decal/tile/purple, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "Iz" = ( /obj/structure/chair, /obj/effect/landmark/start/assistant, @@ -15490,22 +13536,9 @@ /turf/open/floor/iron/dark, /area/station/hallway/primary/central) "IF" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/siding/red{ - dir = 4 - }, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "IG" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -15539,10 +13572,11 @@ /turf/open/floor/plating, /area/space) "IM" = ( -/obj/effect/spawner/structure/window/reinforced, +/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/security/checkpoint/science/research) +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "IN" = ( /obj/structure/table, /obj/item/stack/license_plates/empty/fifty, @@ -15579,37 +13613,18 @@ /obj/effect/mapping_helpers/airlock/access/all/service/janitor, /turf/open/floor/iron/dark, /area/station/maintenance/fore) -"IR" = ( -/obj/machinery/door_timer{ - id = "medcell"; - name = "Medical Cell"; - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Medical - Security Checkpoint"; - network = list("ss13","medbay","Security") - }, -/obj/structure/closet/secure_closet/security/med, -/obj/item/clothing/mask/whistle, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) "IS" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, /turf/open/floor/iron, /area/station/hallway/primary/fore) -"IT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/lab) "IU" = ( -/turf/closed/wall, -/area/station/security/checkpoint/supply) +/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) "IV" = ( /obj/effect/turf_decal/delivery, /obj/machinery/computer/shuttle/arrivals/recall{ @@ -15618,20 +13633,15 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "IW" = ( -/obj/effect/turf_decal/tile/red{ +/obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 1 }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, +/obj/structure/disposalpipe/segment, /obj/structure/cable, -/obj/effect/landmark/start/customs_agent, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/area/station/hallway/primary/central) "IX" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -15655,18 +13665,6 @@ }, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/nospawn) -"IZ" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/engineering_guard, -/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/iron, -/area/station/security/checkpoint/engineering) "Ja" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -15706,10 +13704,6 @@ dir = 10 }, /area/station/security/prison/safe) -"Jf" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/checkpoint/science/research) "Jg" = ( /obj/effect/spawner/structure/window/reinforced, /obj/effect/spawner/structure/window/reinforced, @@ -15737,34 +13731,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"Jj" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - id_tag = "cardoor"; - name = "Cargo Holding Cell" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/customs, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"Jk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table, -/obj/machinery/requests_console/directional/west{ - department = "Security"; - departmentType = 5; - name = "Security Requests Console" - }, -/obj/machinery/light_switch/directional/north, -/obj/machinery/computer/security/telescreen/engine, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) "Jl" = ( /obj/structure/sign/warning/docking/directional/north, /turf/open/misc/asteroid/snow/icemoon, @@ -15790,12 +13756,6 @@ dir = 10 }, /area/station/security/prison/safe) -"Jp" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/computer/security/qm, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/supply) "Jq" = ( /obj/structure/table/glass, /obj/effect/landmark/start/hangover, @@ -15809,13 +13769,12 @@ /turf/open/floor/iron/dark, /area/station/ai_monitored/security/armory) "Jt" = ( -/obj/structure/cable, -/obj/machinery/computer/security{ - dir = 4 +/obj/machinery/camera/directional/west{ + name = "command camera"; + c_tag = "NT Consultant's Office" }, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "Ju" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -15865,7 +13824,7 @@ dir = 1 }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "JA" = ( /obj/structure/lattice, /turf/open/openspace/airless/planetary, @@ -15985,17 +13944,7 @@ /obj/effect/turf_decal/tile/purple, /obj/structure/chair/sofa/bench/left, /turf/open/floor/iron, -/area/service/salon) -"JO" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/landmark/start/orderly, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) +/area/station/service/salon) "JP" = ( /obj/machinery/airalarm/directional/east, /obj/machinery/light_switch/directional/north, @@ -16021,16 +13970,6 @@ /obj/effect/turf_decal/stripes/asteroid/box, /turf/open/floor/plating/airless, /area/mine/explored) -"JT" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Security Post - Cargo" - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "JU" = ( /obj/structure/chair/comfy{ color = "#596479"; @@ -16057,32 +13996,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/common/cryopods) -"JX" = ( -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "JY" = ( -/obj/machinery/computer/security/mining{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "JZ" = ( /obj/effect/spawner/structure/window, /obj/structure/curtain/cloth/fancy/mechanical{ @@ -16163,17 +14082,6 @@ dir = 4 }, /area/station/security/prison) -"Ki" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/supply) "Kj" = ( /obj/docking_port/stationary{ dir = 2; @@ -16185,17 +14093,6 @@ }, /turf/open/space/openspace, /area/space) -"Kk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"Kl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/checkpoint/engineering) "Km" = ( /turf/closed/wall, /area/station/command/teleporter) @@ -16232,6 +14129,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/textured, /area/station/security/prison/work) +"Ks" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) "Kt" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -16319,16 +14221,7 @@ dir = 8 }, /turf/open/floor/iron, -/area/service/salon) -"KG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) +/area/station/service/salon) "KH" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -16393,7 +14286,7 @@ dir = 4 }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "KO" = ( /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ @@ -16417,54 +14310,35 @@ /obj/effect/turf_decal/tile/purple, /obj/structure/chair/sofa/bench/right, /turf/open/floor/iron, -/area/service/salon) -"KQ" = ( -/obj/effect/turf_decal/siding/thinplating, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/neutral/filled/warning, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"KR" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/radio, -/obj/machinery/status_display/ai/directional/north, -/obj/structure/reagent_dispensers/wall/peppertank/directional/east, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) +/area/station/service/salon) "KS" = ( /obj/effect/turf_decal/tile/green, /turf/open/floor/iron/dark/corner, /area/station/hallway/primary/fore) "KT" = ( -/turf/closed/wall/rock{ - name = "DELTA 132, 93" +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "NT Consultant's Hallway" }, -/area/space) +/turf/open/floor/iron, +/area/station/hallway/primary/central) "KU" = ( /obj/effect/spawner/structure/window, /obj/structure/curtain/cloth/fancy/mechanical{ id = "barbershopcurtains1" }, /turf/open/floor/plating, -/area/service/salon) +/area/station/service/salon) "KV" = ( -/obj/effect/landmark/start/engineering_guard, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/engineering) +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "KW" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/obj/structure/rack, +/obj/effect/spawner/random/engineering/tool, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "KX" = ( /turf/closed/wall/rock{ name = "META 101, 170" @@ -16532,14 +14406,9 @@ /turf/closed/wall/r_wall, /area/station/command/heads_quarters/hos) "Li" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/siding/red, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) +/obj/structure/fireplace, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/captain/private/nt_rep) "Lj" = ( /obj/structure/rack, /obj/item/shield/riot{ @@ -16572,23 +14441,15 @@ }, /area/station/security/prison/safe) "Lm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/station/security/checkpoint/engineering) -"Lo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"Lp" = ( -/obj/machinery/computer/secure_data, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 +/obj/structure/table, +/obj/item/crowbar, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 }, /turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/area/station/commons/storage/primary) "Lq" = ( /obj/effect/spawner/structure/window/hollow/reinforced/middle, /obj/structure/transit_tube, @@ -16624,31 +14485,23 @@ dir = 4 }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "Lu" = ( /obj/structure/rack, /obj/item/storage/box, /turf/open/floor/plating, /area/station/maintenance/port) "Lv" = ( -/obj/machinery/requests_console/directional/north{ - department = "Security"; - departmentType = 3; - name = "Security Requests Console" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/closet/secure_closet/security/med, -/turf/open/floor/iron/showroomfloor, -/area/station/security/checkpoint/medical) +/obj/effect/turf_decal/bot, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central/fore) "Lw" = ( /obj/structure/cable, /obj/machinery/computer/cryopod{ @@ -16717,7 +14570,7 @@ /obj/item/book/fish_catalog, /obj/structure/table/wood, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "LH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 9 @@ -16741,16 +14594,6 @@ dir = 4 }, /area/station/hallway/primary/fore) -"LJ" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/red, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) "LK" = ( /obj/item/restraints/legcuffs/beartrap, /obj/effect/decal/cleanable/dirt, @@ -16792,6 +14635,13 @@ }, /turf/open/floor/plating, /area/space) +"LP" = ( +/obj/machinery/door/airlock/external{ + name = "Arrival Shuttle Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) "LQ" = ( /obj/machinery/bluespace_vendor/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -16804,6 +14654,22 @@ /obj/effect/turf_decal/caution/stand_clear, /turf/open/floor/iron/dark, /area/station/hallway/primary/fore) +"LR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/bluespace_vendor/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) "LS" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/cardboard, @@ -16856,11 +14722,8 @@ }, /area/station/maintenance/port/fore) "LY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/red, -/turf/open/floor/iron/showroomfloor, -/area/station/security/checkpoint/science/research) +/turf/open/floor/iron/dark, +/area/mine/storage) "LZ" = ( /obj/structure/table/reinforced/rglass, /obj/effect/turf_decal/tile/purple{ @@ -16875,7 +14738,7 @@ pixel_x = -6 }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "Ma" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -16899,16 +14762,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port) -"Md" = ( -/obj/structure/cable, -/obj/machinery/light/directional/north, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/structure/closet/secure_closet/security/cargo, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "Me" = ( /obj/effect/spawner/random/vending/colavend, /obj/effect/turf_decal/tile/blue{ @@ -16989,7 +14842,7 @@ dir = 1 }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "Mp" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/stripes/line, @@ -17045,25 +14898,23 @@ }, /area/station/maintenance/fore) "Mu" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 +/obj/structure/table/wood, +/obj/item/taperecorder{ + pixel_y = 14; + pixel_x = 10 }, -/obj/structure/table, -/obj/machinery/button/door/directional/north{ - id = "atmos"; - name = "Atmospherics Lockdown"; +/obj/item/camera_film{ + pixel_x = -6 + }, +/obj/item/camera_film{ pixel_x = -6; - req_access = list("brig_entrance") + pixel_y = 4 }, -/obj/machinery/button/door/directional/north{ - desc = "A door remote control switch for the engineering security airlocks."; - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_x = 6; - req_access = list("brig_entrance") +/obj/item/camera{ + pixel_x = 8 }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "Mv" = ( /obj/structure/sign/warning/vacuum/directional/north, /turf/open/floor/iron/dark/red/side{ @@ -17074,16 +14925,6 @@ /obj/structure/sign/warning/docking, /turf/closed/wall, /area/station/hallway/secondary/entry) -"Mx" = ( -/obj/machinery/door/airlock/security{ - name = "Custom Agent's Office" - }, -/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/access/all/supply/customs, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "My" = ( /obj/machinery/button/curtain{ id = "prisoncell10"; @@ -17097,16 +14938,6 @@ dir = 1 }, /area/station/security/prison/safe) -"MA" = ( -/obj/structure/cable, -/obj/machinery/door/window/brigdoor{ - id = "cargocell"; - name = "Cargo Holding Cell"; - req_access = list("brig_entrance") - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "MB" = ( /turf/open/floor/iron, /area/station/hallway/primary/fore) @@ -17159,13 +14990,10 @@ /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/nospawn) "MG" = ( -/obj/structure/cable, -/obj/structure/chair, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "MH" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -17236,12 +15064,6 @@ "MO" = ( /turf/closed/wall, /area/station/maintenance/fore/lesser) -"MP" = ( -/obj/effect/turf_decal/trimline/brown/corner, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) "MQ" = ( /obj/structure/cable, /turf/open/floor/iron/dark/textured, @@ -17277,9 +15099,6 @@ dir = 1 }, /area/station/security/execution) -"MW" = ( -/turf/closed/wall/r_wall, -/area/station/security/checkpoint/science/research) "MX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/old, @@ -17332,41 +15151,17 @@ /turf/open/floor/plating, /area/station/security/prison/upper) "Nd" = ( -/obj/structure/chair/office{ +/obj/effect/turf_decal/siding/wood{ dir = 1 }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/newscaster/directional/east, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"Ne" = ( -/turf/closed/wall, -/area/station/hallway/primary/tram/right) -"Nf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/landmark/start/orderly, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron/showroomfloor, -/area/station/security/checkpoint/medical) +/obj/item/radio/intercom/directional/east, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "Ng" = ( -/turf/closed/wall/rock{ - name = "DELTA 161, 163" - }, -/area/space) +/obj/effect/spawner/random/structure/crate_empty, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "Nh" = ( /obj/docking_port/stationary{ dwidth = 1; @@ -17403,31 +15198,21 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "Nl" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/red{ - dir = 8 +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 }, /turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/area/station/hallway/primary/central) "Nm" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/rust, /area/station/maintenance/fore) "Nn" = ( -/turf/closed/wall/rock{ - name = "META 123, 95" - }, -/area/space) +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/item/kitchen/fork, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "No" = ( /obj/effect/turf_decal/tile/purple{ dir = 1 @@ -17435,7 +15220,7 @@ /obj/effect/turf_decal/tile/purple, /obj/effect/landmark/start/barber, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "Np" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate/trashcart/filled, @@ -17490,7 +15275,7 @@ }, /obj/machinery/light_switch/directional/west, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "Nu" = ( /turf/open/floor/iron, /area/station/hallway/primary/central) @@ -17508,11 +15293,6 @@ /obj/effect/spawner/random/engineering/flashlight, /turf/open/floor/plating, /area/station/maintenance/port) -"Nx" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/lab) "Ny" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -17569,29 +15349,24 @@ /turf/open/floor/iron, /area/station/security/brig) "ND" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 5 }, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/effect/landmark/start/orderly, /turf/open/floor/iron, -/area/station/security/checkpoint/medical) +/area/station/commons/storage/primary) "NE" = ( /obj/machinery/griddle, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/kitchen, /area/station/security/prison/mess) "NF" = ( -/obj/effect/turf_decal/siding/thinplating/corner, -/obj/structure/railing/corner, -/obj/effect/turf_decal/trimline/red/corner, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/area/station/hallway/primary/port) "NG" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -17608,16 +15383,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/textured, /area/station/security/prison/work) -"NJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/landmark/start/orderly, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) "NK" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, @@ -17631,19 +15396,6 @@ /obj/structure/sign/poster/contraband/random/directional/north, /turf/open/floor/plating, /area/station/maintenance/port) -"NN" = ( -/obj/machinery/light/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Security Post - Science"; - network = list("ss13","rd") - }, -/obj/structure/cable, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) "NO" = ( /obj/machinery/light/small/directional/east, /obj/effect/turf_decal/stripes/line{ @@ -17685,26 +15437,6 @@ dir = 1 }, /area/station/hallway/secondary/entry) -"NS" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/red/full, -/obj/machinery/requests_console/directional/east{ - anon_tips_receiver = 1; - assistance_requestable = 1; - department = "Security"; - departmentType = 5; - name = "Security Requests Console" - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring medbay to ensure patient safety."; - dir = 8; - name = "Medbay Monitor"; - network = list("medbay"); - pixel_y = 4 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/medical) "NT" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -17729,16 +15461,6 @@ "NW" = ( /turf/closed/wall/ice, /area/space) -"NX" = ( -/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/engineering_guard, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) "NZ" = ( /obj/structure/table, /obj/effect/spawner/random/decoration/ornament, @@ -17770,8 +15492,8 @@ }, /area/station/security/prison) "Oc" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/lobby) +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) "Od" = ( /obj/machinery/light/directional/north, /obj/structure/chair/sofa/bench/right, @@ -17820,33 +15542,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/security/prison/mess) -"Ol" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/customs_agent, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "Om" = ( /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/nospawn) "On" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) +/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, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "Oo" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/turf/closed/wall/r_wall, +/area/command/heads_quarters/captain/private/nt_rep) "Op" = ( /obj/effect/spawner/structure/window/hollow/reinforced/directional{ dir = 10 @@ -17918,25 +15627,17 @@ pixel_y = 14 }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "Ox" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/holopad, -/obj/effect/landmark/start/orderly, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) +/obj/machinery/light/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "Oy" = ( -/obj/structure/chair{ +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, /turf/open/floor/iron, -/area/station/security/checkpoint/science/research) +/area/station/hallway/primary/central) "Oz" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -17964,10 +15665,11 @@ /turf/open/floor/iron/dark, /area/station/security/prison) "OC" = ( -/obj/structure/cable, -/obj/structure/closet/secure_closet/security/science, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) +/obj/structure/closet/secure_closet/nanotrasen_consultant/station, +/obj/item/assembly/flash/handheld, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) "OD" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/purple{ @@ -17979,11 +15681,18 @@ dir = 8 }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "OE" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/checkpoint/engineering) +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) "OF" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/effect/spawner/random/maintenance, @@ -17996,17 +15705,11 @@ /turf/open/floor/plating, /area/station/maintenance/port) "OH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ +/obj/effect/spawner/structure/window/hollow/reinforced/middle{ dir = 1 }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/filingcabinet, -/obj/machinery/requests_console/directional/south{ - department = "Security"; - departmentType = 5 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/turf/open/floor/plating, +/area/mine/storage) "OI" = ( /obj/machinery/door/airlock/external{ name = "Auxiliary Airlock"; @@ -18018,14 +15721,10 @@ /turf/open/floor/plating, /area/station/hallway/secondary/entry) "OJ" = ( -/obj/machinery/computer/secure_data{ - dir = 4 +/turf/closed/wall/rock{ + name = "BOX 92, 118, 2" }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/area/space) "OM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -18117,17 +15816,13 @@ /turf/open/floor/iron/dark/smooth_large, /area/station/security/prison) "OW" = ( -/obj/structure/closet/secure_closet/brig{ - id = "crgcell"; - name = "Cargo Cell Locker" +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + name = "Wildlife Observation Shutters"; + id = "nt_rep_wild" }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/turf/open/floor/plating, +/area/command/heads_quarters/captain/private/nt_rep) "OX" = ( /obj/structure/rack, /obj/item/gun/energy/ionrifle, @@ -18145,19 +15840,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron, /area/station/hallway/primary/central) -"Pc" = ( -/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{ - dir = 1; - id = "engcell"; - name = "Engineering Holding Cell"; - req_access = list("brig_entrance") - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) "Pd" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -18191,15 +15873,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/kitchen, /area/station/security/prison/mess) -"Pi" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) "Pj" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -18248,44 +15921,14 @@ }, /area/station/maintenance/fore) "Po" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Engineering - Security Outpost"; - network = list("ss13","engineering","Security") - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"Pp" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_x = -5 - }, -/obj/machinery/light_switch/directional/south{ - pixel_x = 10 - }, -/obj/structure/reagent_dispensers/wall/peppertank/directional/west, -/obj/item/screwdriver, -/obj/machinery/firealarm/directional/south{ - pixel_x = -3 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Cargo Checkpoint Post"; - name = "cargo camera"; - network = list("ss13","qm") - }, -/obj/item/radio{ - pixel_x = 6; - pixel_y = 4 - }, +/obj/effect/spawner/random/vending/colavend, /turf/open/floor/iron/dark, -/area/station/security/checkpoint/supply) +/area/station/hallway/primary/central) +"Pp" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/captain/private/nt_rep) "Pq" = ( /obj/structure/weightmachine/weightlifter, /obj/effect/decal/cleanable/dirt, @@ -18341,35 +15984,27 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/primary/fore) -"Py" = ( -/obj/structure/cable, +"Pz" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Primary Tool Storage" + }, +/obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/checkpoint/supply) -"Pz" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/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, -/obj/structure/cable, /turf/open/floor/iron, -/area/station/security/checkpoint/science) +/area/station/commons/storage/primary) "PA" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 +/obj/structure/table/wood, +/obj/item/stamp/centcom{ + pixel_x = 8 }, -/obj/machinery/newscaster/directional/south, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) "PB" = ( /turf/closed/wall, /area/station/hallway/primary/fore) @@ -18479,16 +16114,6 @@ }, /turf/open/space/basic, /area/space/nearstation) -"PS" = ( -/obj/machinery/door/airlock/security{ - name = "Custom Agent's Office" - }, -/obj/machinery/door/firedoor, -/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/supply/customs, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "PT" = ( /obj/item/kirbyplants{ icon_state = "plant-21" @@ -18627,28 +16252,16 @@ /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/surface/outdoors/nospawn) "Qj" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/south, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "Qk" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/engineering_guard, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, +/obj/structure/disposalpipe/segment, +/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/security/checkpoint/engineering) +/area/station/hallway/primary/central) "Ql" = ( /obj/effect/spawner/structure/window, /obj/structure/curtain/cloth/fancy/mechanical{ @@ -18656,15 +16269,12 @@ name = "Barber Shop Drapes" }, /turf/open/floor/plating, -/area/service/salon) +/area/station/service/salon) "Qm" = ( /obj/structure/loom, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/textured, /area/station/security/prison/work) -"Qn" = ( -/turf/closed/wall/r_wall, -/area/station/security/checkpoint/engineering) "Qo" = ( /obj/effect/turf_decal/tile/purple{ dir = 1 @@ -18679,23 +16289,7 @@ dir = 4 }, /turf/open/floor/iron, -/area/service/salon) -"Qq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science/research) +/area/station/service/salon) "Qr" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -18703,22 +16297,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/smooth, /area/station/hallway/secondary/entry) -"Qs" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/table, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "Qt" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -18795,9 +16373,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/security/prison/mess) -"QB" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/department/cargo) "QC" = ( /obj/structure/fence/corner{ dir = 9 @@ -18812,21 +16387,9 @@ /turf/open/floor/iron/grimy, /area/station/hallway/secondary/entry) "QF" = ( -/obj/machinery/requests_console/directional/north{ - department = "Security"; - departmentType = 3; - name = "Security Requests Console" - }, -/obj/machinery/light/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Security Post - Medbay"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/structure/closet/secure_closet/security/med, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) +/obj/structure/ladder, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "QG" = ( /obj/structure/fence{ dir = 4 @@ -18848,13 +16411,6 @@ }, /turf/open/floor/iron, /area/station/security/prison/visit) -"QI" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/effect/landmark/start/orderly, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) "QJ" = ( /obj/machinery/light/floor, /obj/effect/turf_decal/bot, @@ -18871,32 +16427,10 @@ }, /turf/open/floor/plating, /area/station/hallway/secondary/entry) -"QL" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/structure/cable, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) "QM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/landmark/start/orderly, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "QN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -18954,6 +16488,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/commons/fitness/recreation) +"QT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) "QU" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/effect/decal/cleanable/dirt, @@ -18973,25 +16512,6 @@ "QX" = ( /turf/closed/wall/r_wall, /area/station/security/brig) -"QY" = ( -/obj/machinery/requests_console/directional/south{ - anon_tips_receiver = 1; - assistance_requestable = 1; - department = "Security"; - departmentType = 5; - name = "Security Requests Console" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/landmark/start/customs_agent, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "QZ" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/stripes/line{ @@ -19009,16 +16529,27 @@ /area/station/security/prison/garden) "Rb" = ( /turf/closed/wall, -/area/service/salon) +/area/station/service/salon) "Rc" = ( -/obj/structure/closet/secure_closet/security/engine, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 +/obj/structure/table/wood, +/obj/item/folder/yellow{ + pixel_x = 8; + pixel_y = -1 }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) +/obj/item/folder/red{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/folder/blue{ + pixel_y = 6; + pixel_x = -2 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "Rd" = ( /obj/structure/mirror/directional/west, /obj/structure/table/reinforced/rglass, @@ -19029,20 +16560,12 @@ pixel_x = 6 }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "Re" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/plating, /area/station/security/prison/upper) -"Rf" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/medical) "Rg" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -19086,7 +16609,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "Rk" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -19103,7 +16626,7 @@ pixel_x = 9 }, /turf/open/floor/iron/dark, -/area/service/salon) +/area/station/service/salon) "Rm" = ( /turf/open/floor/iron/dark, /area/station/hallway/primary/fore) @@ -19112,34 +16635,29 @@ /turf/open/floor/plating, /area/station/hallway/primary/fore) "Ro" = ( -/obj/structure/cable, -/obj/machinery/firealarm/directional/south{ - pixel_x = -32 +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 2; + pixel_y = -2 }, -/obj/machinery/light_switch/directional/south{ - pixel_x = -20 +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ +/obj/item/screwdriver{ + pixel_y = 16 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 8 }, +/obj/machinery/firealarm/directional/west, +/obj/item/storage/belt/utility, /turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/area/station/commons/storage/primary) "Rp" = ( -/obj/structure/closet/secure_closet/security/engine, -/obj/machinery/requests_console/directional/north{ - anon_tips_receiver = 1; - assistance_requestable = 1; - department = "Security"; - departmentType = 5; - name = "Security Requests Console" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "Rq" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 1 @@ -19147,17 +16665,6 @@ /obj/structure/fence/door, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/nospawn) -"Rr" = ( -/obj/structure/closet/secure_closet/brig{ - id = "scicell"; - name = "Science Cell Locker" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) "Rs" = ( /obj/structure/fence/corner{ dir = 4 @@ -19194,15 +16701,10 @@ }, /area/station/security/prison) "Rv" = ( -/obj/structure/chair/office, -/obj/machinery/requests_console/directional/north{ - department = "Security"; - departmentType = 3; - name = "Security Requests Console" - }, -/obj/effect/landmark/start/customs_agent, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/light/directional/east, /turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/area/station/hallway/primary/central) "Rw" = ( /obj/structure/table/reinforced, /obj/machinery/recharger, @@ -19217,21 +16719,16 @@ /obj/item/key/security, /turf/open/floor/iron/dark, /area/station/ai_monitored/security/armory) +"Rx" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) "Ry" = ( -/obj/effect/turf_decal/bot, -/obj/structure/table, -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring medbay to ensure patient safety."; - dir = 1; - name = "Medbay Monitor"; - network = list("medical") - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/reagent_dispensers/wall/peppertank/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) +/obj/machinery/newscaster/directional/north, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) "Rz" = ( /obj/structure/extinguisher_cabinet/directional/east, /obj/machinery/light/directional/east, @@ -19291,7 +16788,7 @@ pixel_y = -6 }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "RF" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/sign/warning/gas_mask/directional/south, @@ -19306,14 +16803,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"RH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/customs_agent, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "RI" = ( /obj/structure/window/reinforced{ dir = 1 @@ -19358,7 +16847,7 @@ }, /obj/item/clothing/gloves/color/latex, /turf/open/floor/iron/dark, -/area/service/salon) +/area/station/service/salon) "RN" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral, @@ -19378,18 +16867,6 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/iron/dark, /area/station/maintenance/fore) -"RO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) "RP" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -19421,15 +16898,6 @@ /obj/structure/sign/warning/gas_mask/directional/north, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"RT" = ( -/obj/structure/cable, -/obj/machinery/computer/station_alert{ - dir = 1 - }, -/obj/machinery/status_display/ai/directional/south, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) "RU" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -19468,11 +16936,6 @@ /obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/station/security/prison/visit) -"RZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "Sa" = ( /turf/closed/wall, /area/station/security/prison/shower) @@ -19484,11 +16947,16 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "Sd" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Public Mining Storage"; + opacity = 0 }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/mine/storage) "Se" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -19516,36 +16984,26 @@ /turf/open/floor/plating, /area/station/security/prison/safe) "Sh" = ( +/obj/machinery/newscaster/directional/west, /obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/railing{ dir = 4 }, -/obj/effect/landmark/start/customs_agent, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/machinery/requests_console/directional/north{ - department = "Security"; - departmentType = 5 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/obj/effect/landmark/start/nanotrasen_consultant, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) "Si" = ( -/obj/structure/chair, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/corner, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/directional/east, +/obj/structure/closet/secure_closet/nanotrasen_consultant/station, +/obj/item/assembly/flash/handheld, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) "Sj" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/greater) +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "Sk" = ( /obj/structure/closet/crate/bin, /obj/machinery/camera/directional/north, @@ -19664,18 +17122,10 @@ /area/station/hallway/secondary/entry) "Sz" = ( /obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/checkpoint/engineering) -"SA" = ( -/obj/structure/closet/secure_closet/security/med, -/obj/item/clothing/mask/whistle, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "SB" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -19703,11 +17153,6 @@ "SE" = ( /turf/closed/wall/r_wall, /area/station/hallway/secondary/entry) -"SG" = ( -/obj/effect/turf_decal/tile/red/full, -/obj/structure/closet/secure_closet/security/med, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/medical) "SH" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -19731,7 +17176,7 @@ /obj/machinery/newscaster/directional/west, /obj/effect/landmark/start/barber, /turf/open/floor/iron/dark, -/area/service/salon) +/area/station/service/salon) "SK" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -19774,8 +17219,9 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "SS" = ( -/turf/closed/wall/rust, -/area/station/security/checkpoint/supply) +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "SU" = ( /obj/machinery/door/poddoor/preopen{ id = "brigprison"; @@ -19816,12 +17262,6 @@ dir = 4 }, /area/station/security/prison) -"SZ" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "Ta" = ( /obj/effect/turf_decal/trimline/neutral/filled/corner{ dir = 8 @@ -19832,13 +17272,8 @@ /turf/open/floor/iron/dark, /area/station/ai_monitored/security/armory) "Tb" = ( -/obj/machinery/computer/security{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "Tc" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/poddoor/shutters{ @@ -19876,20 +17311,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"Tj" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/red, -/turf/open/floor/iron/showroomfloor, -/area/station/security/checkpoint/science/research) "Tk" = ( /turf/closed/wall, /area/station/maintenance/port/aft) @@ -19921,29 +17342,12 @@ /turf/open/floor/iron, /area/station/commons/dorms) "Tn" = ( -/obj/effect/turf_decal/tile/neutral{ +/obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 8 }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/secure_closet/security/cargo, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/supply) -"To" = ( -/obj/effect/landmark/start/orderly, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/obj/structure/cable, +/obj/structure/disposalpipe/segment, /turf/open/floor/iron, -/area/station/security/checkpoint/medical) +/area/station/commons/storage/primary) "Tp" = ( /obj/machinery/light/small/directional/north, /obj/effect/landmark/blobstart, @@ -20010,18 +17414,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"Tw" = ( -/obj/structure/chair/office/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/science_guard, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science/research) "Tx" = ( /obj/machinery/light/directional/north, /obj/effect/turf_decal/stripes/line{ @@ -20044,16 +17436,6 @@ }, /turf/open/floor/plating/airless, /area/space/nearstation) -"TA" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/effect/landmark/start/orderly, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) "TB" = ( /obj/structure/closet/secure_closet/injection, /obj/machinery/newscaster/directional/north, @@ -20061,18 +17443,6 @@ dir = 5 }, /area/station/security/execution) -"TC" = ( -/obj/structure/filingcabinet, -/obj/machinery/airalarm/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) "TD" = ( /obj/structure/sign/warning/docking, /turf/closed/wall/r_wall, @@ -20150,19 +17520,6 @@ /obj/structure/chair/stool/directional/north, /turf/open/floor/iron, /area/station/security/prison/visit) -"TO" = ( -/obj/machinery/door/airlock/security{ - name = "Custom Agent's Office" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/customs, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "TP" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -20213,7 +17570,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/cafeteria, -/area/service/salon) +/area/station/service/salon) "TU" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/maintenance, @@ -20260,35 +17617,16 @@ /turf/open/floor/iron, /area/station/ai_monitored/security/armory) "Ua" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 9 - }, -/obj/effect/landmark/start/hangover/closet, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/tram/right) +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "Ub" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/curtain/cloth/fancy/mechanical{ id = "barbershopcurtains" }, /turf/open/floor/plating, -/area/service/salon) -"Uc" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/area/station/service/salon) "Ud" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -20303,18 +17641,9 @@ /turf/open/floor/iron/freezer, /area/station/security/prison/shower) "Ug" = ( -/obj/machinery/camera/autoname{ - dir = 5 - }, /obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/landmark/start/engineering_guard, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/turf/open/floor/plating, +/area/station/maintenance/port/fore) "Uh" = ( /obj/structure/fluff/metalpole{ dir = 10 @@ -20355,13 +17684,6 @@ dir = 10 }, /area/station/security/prison/safe) -"Um" = ( -/obj/effect/landmark/start/orderly, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) "Un" = ( /obj/effect/spawner/structure/window, /obj/structure/curtain/cloth/fancy/mechanical{ @@ -20437,17 +17759,6 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron, /area/station/common/cryopods) -"Ux" = ( -/obj/machinery/flasher/directional/east{ - id = "medcell" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) "Uy" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -20479,7 +17790,7 @@ /area/station/security/prison/mess) "UC" = ( /turf/closed/wall/rust, -/area/service/salon) +/area/station/service/salon) "UD" = ( /obj/structure/chair/stool/bar/directional/east, /obj/effect/turf_decal/trimline/neutral/filled/line{ @@ -20508,9 +17819,6 @@ dir = 10 }, /area/brigofficer) -"UG" = ( -/turf/closed/wall/r_wall, -/area/station/hallway/secondary/exit) "UH" = ( /obj/structure/cable, /obj/item/storage/toolbox/drone, @@ -20557,17 +17865,6 @@ }, /turf/open/floor/iron/smooth, /area/station/hallway/secondary/entry) -"UN" = ( -/obj/machinery/button/door/directional/east{ - id = "medsecprivacy"; - name = "Privacy Shutters Control"; - req_access = list("brig_entrance") - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) "UO" = ( /obj/structure/rack, /obj/item/storage/box/teargas{ @@ -20607,7 +17904,7 @@ /obj/effect/decal/cleanable/cobweb, /obj/machinery/light_switch/directional/north, /turf/open/floor/iron/cafeteria, -/area/service/salon) +/area/station/service/salon) "US" = ( /obj/effect/turf_decal/stripes{ dir = 9 @@ -20673,8 +17970,10 @@ /turf/open/floor/iron, /area/station/security/prison/visit) "UZ" = ( -/turf/open/openspace, -/area/station/security/checkpoint/supply) +/obj/machinery/vending/sustenance, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "Va" = ( /obj/effect/turf_decal/tile/purple/opposingcorners{ dir = 8 @@ -20682,7 +17981,7 @@ /obj/machinery/airalarm/directional/west, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/cafeteria, -/area/service/salon) +/area/station/service/salon) "Vb" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -20696,9 +17995,6 @@ }, /turf/open/floor/iron/dark, /area/station/maintenance/port/fore) -"Vc" = ( -/turf/closed/wall, -/area/station/science/lab) "Vd" = ( /obj/item/radio/intercom/directional/east, /obj/machinery/light/directional/east, @@ -20711,13 +18007,15 @@ }, /area/brigofficer) "Ve" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/engineering_guard, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 6 }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/area/station/hallway/primary/port) "Vf" = ( /obj/machinery/light/directional/north, /obj/effect/turf_decal/tile/blue{ @@ -20729,17 +18027,6 @@ dir = 1 }, /area/station/hallway/secondary/entry) -"Vg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security{ - name = "Custom Agent's Office" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/supply/customs, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/supply) "Vi" = ( /obj/machinery/camera{ c_tag = " Prison - Library"; @@ -20782,13 +18069,11 @@ /turf/open/floor/plating, /area/station/hallway/secondary/entry) "Vm" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ +/obj/structure/chair/office{ dir = 8 }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) "Vn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, @@ -20825,22 +18110,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/security/prison/mess) -"Vs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Custom Agent's Office" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/customs, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "Vt" = ( /obj/structure/window/reinforced/spawner/north, /obj/structure/transit_tube/crossing, @@ -20868,15 +18137,9 @@ /turf/open/floor/plating, /area/station/security/prison/upper) "Vx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/effect/landmark/start/orderly, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/medical) +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "Vy" = ( /obj/structure/table, /obj/machinery/chem_dispenser/drinks/beer{ @@ -20886,16 +18149,12 @@ /turf/open/floor/iron/dark, /area/station/security/prison/mess) "Vz" = ( -/obj/machinery/door/airlock/security{ - name = "Engineering Guard's Office" +/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, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engie_guard, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "VA" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -20906,13 +18165,6 @@ /obj/item/radio/intercom/directional/south, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"VB" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) "VD" = ( /obj/machinery/door/airlock/maintenance/external{ name = "Transit Intersection" @@ -20946,9 +18198,9 @@ /turf/closed/wall, /area/station/commons/dorms/laundry) "VH" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/checkpoint/medical) +/obj/structure/filingcabinet/employment, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "VI" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -20972,32 +18224,14 @@ /turf/open/floor/iron/white/corner, /area/station/hallway/secondary/entry) "VK" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring medbay to ensure patient safety."; - dir = 4; - name = "Medbay Monitor"; - network = list("medbay"); - pixel_x = -32 +/obj/effect/turf_decal/siding/wood{ + dir = 1 }, -/obj/machinery/light_switch/directional/west{ - pixel_x = -20 - }, -/obj/machinery/computer/med_data{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "VL" = ( -/obj/structure/cable, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/obj/structure/closet/secure_closet/security/engine, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) +/turf/open/floor/plating/snowed/smoothed/icemoon, +/area/icemoon/underground/explored) "VM" = ( /obj/effect/spawner/random/trash/food_packaging, /obj/effect/decal/cleanable/dirt, @@ -21005,16 +18239,6 @@ dir = 1 }, /area/station/security/prison) -"VN" = ( -/obj/structure/closet/secure_closet/security/cargo, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "VO" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -21032,14 +18256,6 @@ dir = 4 }, /area/station/hallway/primary/fore) -"VP" = ( -/obj/structure/cable, -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) "VQ" = ( /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ @@ -21081,7 +18297,7 @@ /obj/effect/turf_decal/tile/purple, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "VV" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -21095,21 +18311,21 @@ /turf/open/floor/iron, /area/station/hallway/primary/fore) "VY" = ( -/obj/machinery/door/airlock/security{ - name = "Orderly's Office" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ +/obj/machinery/modular_computer/console/preset/command{ dir = 4 }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 +/obj/machinery/button/door/directional/west{ + pixel_y = 8; + id = "nt_rep_priv"; + name = "Privacy Shutters Control" }, -/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/medical/orderly, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) +/obj/machinery/button/door/directional/west{ + id = "nt_rep_wild"; + name = "Wildlife Observation Shutters Control"; + pixel_y = -8 + }, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) "VZ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -21117,18 +18333,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/side, /area/station/security/prison) -"Wa" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/item/clothing/suit/hooded/wintercoat/engineering, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/engineering/main) "Wb" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -21155,18 +18359,16 @@ /turf/open/floor/iron/dark, /area/station/ai_monitored/security/armory) "We" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 +/obj/machinery/door/airlock/corporate{ + name = "NT Consultant's Office" }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/siding/red/corner{ - dir = 1 - }, -/obj/effect/landmark/start/engineering_guard, +/obj/effect/mapping_helpers/airlock/access/all/cent_com/rep_door, +/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, -/area/station/security/checkpoint/engineering) +/area/command/heads_quarters/captain/private/nt_rep) "Wf" = ( /obj/machinery/door/airlock/maintenance, /obj/effect/mapping_helpers/airlock/abandoned, @@ -21187,9 +18389,15 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "Wh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/cargo) +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/nanotrasen_consultant, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "Wi" = ( /obj/machinery/status_display/evac/directional/west, /obj/machinery/light/directional/west, @@ -21222,6 +18430,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/hallway/primary/fore) +"Wn" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) "Wo" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -21232,23 +18451,13 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/showroomfloor, /area/station/ai_monitored/security/armory) -"Wp" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/airalarm/directional/south, -/obj/structure/closet/secure_closet/security/science, -/obj/item/clothing/mask/whistle, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) "Wq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 +/obj/effect/turf_decal/siding/wood{ + dir = 1 }, -/obj/effect/landmark/start/customs_agent, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/obj/effect/landmark/start/nanotrasen_consultant, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "Wr" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -21290,21 +18499,17 @@ /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/nospawn) "Wv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/comfy/black{ + dir = 1 + }, /obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/effect/landmark/start/orderly, -/obj/machinery/button/door/directional/east{ - id = "medsecprivacy"; - name = "Privacy Shutters Control"; - pixel_x = -32; - pixel_y = 56; - req_access = list("brig_entrance") - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/security/checkpoint/medical) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/nanotrasen_consultant, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "Ww" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -21327,24 +18532,6 @@ }, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/nospawn) -"WA" = ( -/obj/structure/closet/secure_closet/security/engine, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/item/clothing/mask/whistle, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"WB" = ( -/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/tile/red/half/contrasted{ - dir = 8 - }, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) "WC" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, @@ -21551,7 +18738,7 @@ /obj/structure/bed/pod, /obj/effect/landmark/start/hangover, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "Xc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -21576,7 +18763,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "Xf" = ( /obj/machinery/light/directional/south, /obj/effect/turf_decal/tile/blue{ @@ -21643,7 +18830,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "Xm" = ( /obj/machinery/light/directional/west, /obj/machinery/camera/motion/directional/south{ @@ -21660,57 +18847,39 @@ }, /obj/structure/cable, /turf/open/floor/iron, -/area/service/salon) -"Xo" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/machinery/requests_console/directional/south{ - anon_tips_receiver = 1; - assistance_requestable = 1; - department = "Security"; - departmentType = 5; - name = "Security Requests Console" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) +/area/station/service/salon) "Xp" = ( -/obj/effect/turf_decal/trimline/red/arrow_cw{ +/obj/effect/turf_decal/siding/wood{ dir = 4 }, -/obj/effect/landmark/start/customs_agent, -/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/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/champagne{ + pixel_y = 18; + pixel_x = -5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "Xq" = ( -/turf/closed/wall, -/area/station/medical/morgue) +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) "Xr" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/camera/directional/south{ - c_tag = "Security Post - Cargo" - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/turf/closed/wall/r_wall, +/area/mine/storage) "Xs" = ( /obj/machinery/button/curtain{ id = "prisoncell11"; @@ -21773,15 +18942,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/hallway/primary/fore) -"XB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "medsecprivacy"; - name = "Privacy Shutter" - }, -/turf/open/floor/plating, -/area/station/security/checkpoint/medical) "XC" = ( /obj/structure/fluff/metalpole{ dir = 1 @@ -21797,20 +18957,6 @@ /obj/item/storage/toolbox/drone, /turf/open/floor/iron, /area/station/ai_monitored/security/armory) -"XE" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) "XF" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -21820,7 +18966,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "XG" = ( /obj/item/trash/popcorn, /obj/effect/decal/cleanable/dirt, @@ -21854,7 +19000,7 @@ id = "barbershopcurtains" }, /turf/open/floor/plating, -/area/service/salon) +/area/station/service/salon) "XJ" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 8 @@ -21863,68 +19009,36 @@ /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/nospawn) "XK" = ( -/obj/effect/landmark/start/customs_agent, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/chair, -/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/area/station/hallway/primary/central) "XL" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/sign/warning/cold_temp/directional/south, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"XM" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/corner{ +"XO" = ( +/obj/machinery/vending/modularpc, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 4 }, -/obj/machinery/airalarm/directional/east, -/obj/structure/reagent_dispensers/wall/peppertank/directional/south, -/obj/machinery/camera/directional/east{ - c_tag = "Science Security Post"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/machinery/button/door/directional/south{ - id = "Biohazard"; - name = "Emergency Research Lockdown"; - pixel_x = 24; - req_access = list("brig_entrance") - }, -/obj/machinery/recharger{ - pixel_x = -3 - }, -/obj/item/radio{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science/research) -"XO" = ( -/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) +/turf/open/floor/iron, +/area/station/commons/storage/primary) "XP" = ( /obj/structure/lattice/catwalk, /obj/structure/marker_beacon/burgundy, /turf/open/space/basic, /area/space/nearstation) "XQ" = ( -/turf/closed/wall/rock{ - name = "KILO 80, 131" - }, -/area/space) +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "XR" = ( /obj/docking_port/stationary{ dheight = 3; @@ -21967,15 +19081,6 @@ name = "KILO 59, 118" }, /area/space) -"XW" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) "XY" = ( /obj/structure/rack, /obj/item/gun/energy/ionrifle{ @@ -22029,8 +19134,17 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "Ye" = ( -/turf/closed/wall, -/area/station/science/research) +/obj/machinery/vending/tool, +/obj/machinery/airalarm/directional/east, +/obj/machinery/camera{ + c_tag = "Civilian - Primary Tool Storage"; + dir = 6 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) "Yf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/poster/official/random/directional/east, @@ -22061,10 +19175,9 @@ /turf/open/floor/plating, /area/station/hallway/secondary/entry) "Yj" = ( -/turf/closed/wall/rock{ - name = "DELTA 103, 128" - }, -/area/space) +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/captain/private/nt_rep) "Yk" = ( /obj/structure/closet/crate, /obj/item/reagent_containers/glass/bowl, @@ -22099,34 +19212,10 @@ /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plating, /area/station/maintenance/fore) -"Yn" = ( -/obj/structure/cable, -/obj/item/kirbyplants/random, -/obj/machinery/door_timer{ - id = "engcell"; - name = "Engineering Cell"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) "Yo" = ( -/obj/machinery/status_display/ai/directional/north, -/obj/machinery/light_switch/directional/east{ - pixel_x = 38 - }, -/obj/structure/closet/secure_closet/security/med, -/obj/machinery/airalarm/directional/north{ - pixel_x = 32 - }, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, +/obj/structure/stairs/north, /turf/open/floor/iron, -/area/station/security/checkpoint/medical) +/area/station/hallway/primary/central) "Yp" = ( /obj/structure/closet/bombcloset/security, /obj/effect/turf_decal/bot_blue, @@ -22164,10 +19253,11 @@ /turf/open/floor/plating, /area/station/hallway/secondary/entry) "Yt" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/science/research) +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "Yu" = ( /obj/effect/turf_decal/siding/white{ dir = 4 @@ -22188,9 +19278,6 @@ /obj/structure/sign/nanotrasen, /turf/closed/wall/r_wall/rust, /area/station/ai_monitored/security/armory) -"Yx" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/port/greater) "Yy" = ( /obj/structure/closet/firecloset, /turf/open/floor/plating, @@ -22253,7 +19340,7 @@ /obj/effect/turf_decal/tile/purple, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "YG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/stripes/line{ @@ -22269,7 +19356,7 @@ dir = 1 }, /turf/open/floor/iron, -/area/service/salon) +/area/station/service/salon) "YJ" = ( /obj/structure/table, /obj/item/clothing/suit/straight_jacket, @@ -22327,17 +19414,6 @@ name = "DELTA 189, 154" }, /area/space) -"YQ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) "YR" = ( /obj/structure/table, /obj/machinery/recharger, @@ -22345,9 +19421,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/ai_monitored/security/armory) -"YS" = ( -/turf/closed/wall, -/area/station/maintenance/department/cargo) "YT" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ @@ -22374,20 +19447,9 @@ /turf/open/floor/plating, /area/station/security/prison/upper) "YW" = ( -/obj/machinery/door_timer{ - id = "cargocell"; - name = "Cargo Cell"; - pixel_x = -32; - pixel_y = -32 - }, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/obj/structure/flora/grass/green/style_random, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) "YX" = ( /obj/effect/turf_decal/siding/thinplating_new{ dir = 1 @@ -22401,37 +19463,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"YZ" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/pen, -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring the engine."; - dir = 8; - name = "Engine Monitor"; - network = list("engine"); - pixel_x = 26 - }, -/obj/machinery/button/door/directional/east{ - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_y = 16; - req_access = list("brig_entrance") - }, -/obj/machinery/button/door/directional/east{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_y = 24; - req_access = list("brig_entrance") - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) "Za" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/red, @@ -22641,14 +19672,13 @@ /turf/open/floor/iron, /area/station/hallway/secondary/entry) "Zy" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood{ + dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/cargo) +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "Zz" = ( /obj/structure/window/reinforced, /obj/structure/lattice, @@ -22661,27 +19691,16 @@ /turf/open/floor/iron, /area/station/hallway/primary/fore) "ZB" = ( -/obj/machinery/door/window/brigdoor{ - dir = 4; - id = "crgcell"; - name = "Cargo Holding Cell"; - req_access = list("brig_entrance") - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 +/obj/machinery/door/airlock/corporate{ + name = "NT Consultant's Office" }, +/obj/machinery/door/firedoor, /obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) +/obj/effect/mapping_helpers/airlock/access/all/cent_com/rep_door, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) "ZC" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -22743,9 +19762,6 @@ "ZI" = ( /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/surface/outdoors/nospawn) -"ZJ" = ( -/turf/closed/wall/r_wall, -/area/station/science/server) "ZK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -22762,16 +19778,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/cafeteria, -/area/service/salon) +/area/station/service/salon) "ZM" = ( /turf/closed/wall, /area/station/hallway/secondary/entry) -"ZN" = ( -/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, -/area/station/security/checkpoint/science) "ZO" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -22856,20 +19866,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"ZY" = ( -/obj/machinery/door/airlock/security{ - name = "Science Guard's Office" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/red{ - dir = 4 - }, -/obj/machinery/door/firedoor/heavy, -/obj/effect/mapping_helpers/airlock/access/all/science/sci_guard, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science/research) "ZZ" = ( /obj/structure/curtain/cloth/fancy/mechanical{ icon_state = "bounty-open"; @@ -34232,23 +31228,10 @@ Zt Zt Zt Zt -XQ +Zt +XV gy -Zt -Zt -Zt -Zt -Zt -Zt -Eu gy -Zt -Zt -Zt -Zt -Zt -Zt -dn gy Zt Zt @@ -34257,7 +31240,20 @@ Zt Zt Zt Zt -Db +Zt +Zt +jc +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy gy gy gy @@ -34529,37 +31525,37 @@ NW gy gy Zt -dm -VH -Ce -VH -dm +jH +ov +ov +ov +ov +ov Zt gy -Zt -Vc -Vc -xr -IT -Vc -Zt +gy gy Zt -IU -IU -uu -IU -IU +ds +Hz +hb +Do +GI +GI +GI +GI Zt gy -Zt -Qn -jO -OE -iP -fz -tt -Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy gy gy gy @@ -34831,37 +31827,37 @@ NW gy gy Zt -dm -yN -NJ -Ry -yS +Fj +UT +sm +YO +qE +dv Zt gy -Zt -Jf -hH -Tj -mJ -nV -Zt +gy gy Zt -IU -CO -nr -Pp -IU +Wn +ZM +hb +Bp +GI +hz +GI +GI Zt gy -Zt -Qn -Jk -jT -gb -Gp -Qn -Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy gy gy gy @@ -35133,37 +32129,37 @@ NW gy gy Zt -VH -DR -Nf -oy -dm +Wt +ZW +wp +Hm +Hm +at Zt gy -Zt -jh -gO -LY -Tw -rX -Zt +gy gy Zt -uu -Jp -BD -Ki -uu +mm +Hz +ZM +Mw +GI +GI +GI +GI Zt gy -Zt -Kl -Be -tv -nf -tN -Qn -Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy gy gy gy @@ -35435,37 +32431,37 @@ NW gy gy Zt -dm -Lv -Bj -Qj -dm +oi +gB +yr +JW +hs +dv Zt gy -Zt -Jf -if -Eb -Qq -XM -Zt +gy gy Zt -Vg -zk -md -Fx -nF +LR +LP +cn +zM +GI +GI +GI +GI Zt gy -Zt -Bx -ax -Nl -We -Ae -Qn -Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy gy gy gy @@ -35737,37 +32733,37 @@ NW gy gy Zt -dm -VH -VH -VH -dm +LM +UT +jx +TR +MD +dv Zt gy -Zt -MW -Jf -Jf -ZY -vE -Zt +gy gy Zt -IU -HL -nk -Tn -IU +wD +Zu +Zu +Zu +GI +GI +GI +GI Zt gy -Zt -Qn -jO -OE -qG -hC -Qn -Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy gy gy gy @@ -36039,37 +33035,37 @@ NW gy gy Zt -Zt -Zt -Zt -Zt -Zt +LE +ov +ov +ov +ov +ov Zt gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt +gy gy Zt -SS -uu -nF -uu -IU +ox +qU +Zu +wV +GI +GI +GI +GI Zt gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy gy gy gy @@ -36340,22 +33336,6 @@ gy NW gy gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy Zt Zt Zt @@ -36363,6 +33343,22 @@ Zt Zt Zt Zt +Zt +gy +gy +gy +Zt +qW +Gl +QT +Bp +GI +GI +GI +GI +Zt +gy +gy gy gy gy @@ -36602,11 +33598,15 @@ Zt Zt Zt Zt +nS +gy Zt Zt Zt Zt -KT +Zt +Zt +vi gy Zt Zt @@ -36618,22 +33618,18 @@ Zt Zt Zt Zt -Ic -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy +Zt +pP gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Ez gy gy gy @@ -36642,27 +33638,27 @@ gy NW gy gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy Zt +dU +Ks +Zu +qQ +GI +GI +GI +GI Zt -Zt -Zt -Zt -Zt -Zt -XV -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy gy gy gy @@ -36698,8 +33694,7 @@ Zt Zt Zt Zt -Zt -iB +zV gy Zt Zt @@ -36708,25 +33703,26 @@ Zt Zt Zt Zt -Zt -Nn +HG +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -nC gy -Zt -Zt -Zt -Zt -Zt -Zt -eX gy gy gy @@ -36898,44 +33894,44 @@ NW gy gy Zt -Yx -eQ -IM -Cr -IM -eQ -eQ -IM -IM -eQ +cY +cY +cY +cY +cY +cY Zt gy Zt -dm -jv -jv -jv -dm -dm -jv -jv -vQ +UA +sy +rs +MI +dJ Zt gy +Zt +fT +fT +Pd +Pd +fT +Pd +OR +aK +vO +fT +Zt gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy +Zt +fb +Ug +Oo +Oo +Oo +Oo +Oo +Zt gy gy gy @@ -36945,26 +33941,26 @@ NW gy gy Zt -jH -ov -ov -ov -ov -ov Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +NH gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy +Zt +dU +ba +Zu +Bp +GI +GI +GI +GI +Zt gy gy gy @@ -36994,41 +33990,41 @@ NW gy gy Zt -dm -dm -dm -or -dm -dm -dm +WJ +WJ +Km +Km +Km +WJ Zt gy Zt -Vc -vc -eM -Bd -Bd -vc -Ye +ov +dv +dv +dv +ov +dJ Zt gy -Zt -Kl -Kl -Br -Kl -jO -FQ -Zt gy -Zt -IU -IU -ww -ww -EB -Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy gy gy gy @@ -37200,73 +34196,73 @@ NW gy gy Zt -MW -pC -gY -WB -En -kA -IM -Oy -cW -IM +lc +BS +oZ +Qo +bJ +Rb Zt gy Zt -CK -Pi -Tb -fY -dZ -jv -sO -sz -jv -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -Fj -UT -sm -YO -qE +ov dv +yB +dv +ov +Zt +gy +Zt +fT +rg +rg +rg +Sq +kp +fy +FT +Rw +fT +Zt +gy +Zt +Ag +sr +Oo +fc +Sh +lD +Oo Zt gy gy gy gy gy +NW gy gy +Zt +fT +fT +fT +DB +eL +fT +DB +fT +Zt gy -gy -gy -gy -gy -gy +Zt +fg +Zu +Zu +Zu +GI +GI +GI +GI +Zt gy gy gy @@ -37296,41 +34292,41 @@ NW gy gy Zt -dm -oM -JO -bz -VK -pt -dm +lc +BS +oZ +Qo +bJ +Rb Zt gy Zt -Nx -na -rd -pN -Li -lW -aY +ov +dt +FI +FI +dv +fo Zt gy -Zt -Kl -cO -NX -df -lj -FQ -Zt gy -Zt -IU -JY -cm -ww -ww -Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy gy gy gy @@ -37502,34 +34498,83 @@ NW gy gy Zt -MW -qF -qg -XW -mq -Yt -am +Rb +kr +mX +cV +cv +hi +Zt +gy +Zt +dv +NV +IP +Sl +dv +Zt +gy +Zt +fT +nv +Al +uM +uM +uM +ve +FT +wf +Fs +Zt +gy +Zt +Oo +Oo +Oo +Hw sg -pa -IM -Zt -gy -Zt -DY -pW -wd -bm -FN -ED -pn -iH Io +Oo Zt gy gy gy gy gy +NW +gy +gy +Zt +fT +FJ +eY +vr +ul +Fg +kK +Yw +Zt +gy +Zt +qp +xe +Rx +zM +GI +GI +GI +GI +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy gy gy gy @@ -37549,24 +34594,22 @@ NW gy gy Zt -Wt -ZW -wp -Hm -Hm -at +Rb +kr +mX +cV +cv +hi Zt gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy +Zt +ov +Lw +ay +Ud +sN +Uo +Zt gy gy gy @@ -37598,67 +34641,15 @@ NW gy gy Zt -dm -QF -Ox -Vm -sQ -TA -pH -Zt -gy -Zt -Nx -sA -rd -wJ -LJ -OC -aY -Zt -gy -Zt -Kl -Lp -IZ -Ev -Ug -eE -Zt -gy -Zt -fb -Rv -ma -sR -ww -Zt -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy Zt Zt Zt Zt Zt Zt -yd -gy Zt Zt -Zt -Zt -Zt -Zt -ju +vv gy Zt Zt @@ -37669,7 +34660,12 @@ Zt Zt Zt Zt -kC +YM +gy +gy +gy +gy +gy gy gy gy @@ -37804,61 +34800,73 @@ NW gy gy Zt -MW -KR -cZ -Aw -sU -NN -IM -Rr -Ah -IM +hi +lM +yi +Rj +td +Rb Zt gy Zt -Yo -To -Um -To -Ib -jv -oK -ff -jv -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -oi -gB -yr -JW -hs +dv +Ik +iI +Sl dv Zt gy +Zt +fT +yD +VV +aW +DQ +bq +BM +EG +Vo +gT +Zt +gy +Zt +Oo +Sz +VH +lL +Vm +Vm +Oo +Zt +gy +gy +gy +gy +gy +NW +gy +gy +Zt +fT +CP +QZ +xB +TP +xV +mx +DB +Zt +gy +Zt +Hz +ZM +Hz +Mw +GI +GI +GI +GI +Zt gy gy gy @@ -37884,6 +34892,41 @@ gy gy gy gy +NW +gy +gy +Zt +hi +lM +yi +Rj +td +Rb +Zt +gy +Zt +ov +mM +mB +lq +dv +fo +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy gy gy gy @@ -37900,40 +34943,25 @@ NW gy gy Zt -dm -lg -UN -xn -ue -QI -kn +Rb +Rb +Rb +Rb +Rb +Rb +Rb +dR Zt gy Zt -Nx -ER -is -IF -fw -fP -Ye -Zt -gy -Zt -Kl -fK -YZ -oJ -au -lD -Zt -gy -Zt -fb -jg -Ol -Xr -IU +HS +ov +ov +ov +ov +ov +ov +aO Zt gy gy @@ -37943,38 +34971,6 @@ gy gy gy gy -NW -gy -gy -Zt -Qn -dK -Kl -Qn -jY -Zt -gy -Zt -jI -VH -VH -dm -dm -Zt -gy -Zt -oh -oh -oh -oh -vJ -Bf -vJ -ZJ -Zt -gy -gy -gy gy gy gy @@ -38106,868 +35102,45 @@ NW gy gy Zt -MW -MW -IM -IM -IM -MW -MW -IM -cc -eQ +Rb +Rb +Rb +ga +Rb +Rb Zt gy Zt -dm -jv -dm -jv -VY -dm -Dh -jv -vQ -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -LM -UT -jx -TR -MD +dv +vm +zJ +Sm dv Zt gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -dm -dm -dm -XB -XB -XB -dm -Zt -gy -Zt -Vc -aF -uK -lL -mG -BC -aY -Zt -gy -Zt -zh -zh -zh -zh -zh -lz -Zt -gy -Zt -fb -CS -AN -nX -PS -Zt -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -Qn -FR -An -Qn -Wa -Zt -gy -Zt -jI -Ez -Hw -sb -VH -Zt -gy -Zt -vJ -yh -jS -vJ -Id -Pz -oo -ZJ -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(52,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -gs -gy -Zt -Zt -Zt -Zt -Zt -Zt -xt -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Il -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -LE -ov -ov -ov -ov -ov -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -gy -Zt -fb -fb -fb -fb -fb -Zt -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -Qn -eZ -FK -Qn -Qn -Zt -gy -Zt -jI -ND -jC -QM -zm -Zt -gy -Zt -Fl -yt -GZ -EQ -rk -ZN -xw -ZJ -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(53,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -dm -XO -sL -bv -XO -dm -Zt -gy -Zt -vc -kz -mF -tm -Fq -Zt -gy -Zt -yM -dY -Qn -Kl -Kl -Qn -Oc -Zt -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy Zt -Qn -Kl -cC -Qn -Qn +fT +sw +RD +Sf +Sf +Sf +Sf +Zw +zS +fT Zt gy Zt -jI +Oo +jE qx -Fh -HW -VH +is +Zy +hH +Oo Zt gy -Zt -vJ -XE -xG -vJ -VB -Lo -dk -ZJ -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(54,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy gy gy gy @@ -38976,813 +35149,25 @@ NW gy gy Zt -dm -Hp -Vx -GX -Rf -dm -Zt -gy -Zt -vc -Im -tD -Ig -Fq -Zt -gy -Zt -uA -Lm -Qn -TC -fc -Gd -Oc -Zt -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Yj -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Ng -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -zV -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -HG -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -Kl -GL -gQ -iJ -Qn -Zt -gy -Zt -jI -IR -tM -SA -Xq -Zt -gy -Zt -oh -oh -oh -oh -kt -GV -xj -ZJ -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(55,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -dm -zc -Wv -yU -FO -oA -Zt -gy -Zt -rz -ys -qr -Iu -Fq -Zt -gy -Zt -Qn -Rp -KV -Bg -pi -aZ -xJ -Zt -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -AG -jO -jO -Sz -Sz -Sz -jO -Zt -gy -Zt -rE -sp -sp -sp -IU -IU -sp -Py -IU -Zt -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -pP -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -WJ -WJ -Km -Km -Km -WJ -Zt -gy -Zt -ov -dv -dv -dv -ov -dJ -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -kw -RO -CH -OH -Qn -Zt -gy -Zt -jI -VH -qc -VH -Xq -Zt -gy -Zt -On -Er -oh -cH -Sd -Dn -Wp -ZJ -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(56,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -dm -Gn -NS -SG -ek -dm -Zt -gy -Zt -vJ -ei -zf -Xo -Fq -Zt -gy -Zt -Qn -Rc -EF -uL -CW -QL -xJ -Zt -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -qd -Qn -Qn -Yn -KW -Ro -BV -Zt -gy -Zt -CT -OJ -Jt -EN -YW -sp -eW -YQ -sp -Zt -gy -Zt -fT -fT -Pd -Pd -fT -Pd -OR -aK -vO +rR +av +AE +jR +Ny +Wo +Pu fT Zt gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy Zt -lc -BS -oZ -Qo -bJ -Rb Zt -gy Zt -ov -dt -FI -FI -dv -fo Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy Zt -Kl -cS -By -vn -Qn Zt -gy Zt -jI -rD -Du -qB -Xq Zt -gy Zt -Ii -ao -oh -sk -Nd -kO -DN -ZJ Zt gy gy @@ -39793,811 +35178,6 @@ gy gy gy gy -"} -(57,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -dm -dm -dm -dm -dm -dm -Zt -gy -Zt -vJ -Bl -mk -dQ -Fq -Zt -gy -Zt -Qn -Kl -Vz -Qn -Kl -Oc -Oc -Zt -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -xO -sr -Pc -wK -Qk -RT -Qn -Zt -gy -Zt -Md -Wq -tr -RH -zY -MA -Ie -BY -Jj -Zt -gy -Zt -fT -rg -rg -rg -Sq -kp -fy -FT -Rw -fT -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -Rb -kr -mX -cV -cv -hi -Zt -gy -Zt -ov -Lw -ay -Ud -sN -Uo -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -Qn -Po -AU -Iv -Qn -Zt -gy -Zt -jI -hT -Ux -KG -Xq -Zt -gy -Zt -MP -UG -oh -oh -oh -oh -oh -ZJ -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(58,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -gy -Zt -vJ -vJ -vJ -vJ -Fq -Zt -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -MG -DO -Sz -uV -fv -EO -Qn -Zt -gy -Zt -rV -zw -wL -hE -JT -sp -qi -Ag -sp -Zt -gy -Zt -fT -nv -Al -uM -uM -uM -ve -FT -wf -Fs -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -hi -lM -yi -Rj -td -Rb -Zt -gy -Zt -ov -mM -mB -lq -dv -fo -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -Qn -Mu -rq -bH -bH -Zt -gy -Zt -jI -jI -jI -jI -Xq -Zt -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(59,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -yY -FC -Sz -ny -Ve -VP -Sz -Zt -gy -Zt -IU -Vs -sp -ll -IU -IU -sp -Py -IU -Zt -gy -Zt -fT -yD -VV -aW -DQ -bq -BM -EG -Vo -gT -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy gy gy gy @@ -40665,1532 +35245,25 @@ NW gy gy Zt -Qn -jE -WA -bH -AK -Zt -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(60,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -Zt -Zt -Zt -Zt -Zt -eq -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -mO -Qn -Qn -jt -VL -cM -Qn -Zt -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -gy -Zt -fT -sw -RD -Sf -Sf -Sf -Sf -Zw -zS -fT -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt Rb -xF -GJ -Rj -Nt -af -Zt -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -bH -BR -BR -bH -hx -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(61,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -IU -uu -Mx -uu -IU -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -wg -El -Qn -Qn -Qn -Qn -Qn -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -fT -xm -rN -jJ -IA -ry -OX -zo -Qy -fT -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -rI -qR -qR -Xe -iS -af -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(62,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -uu -Qs -IW -eG -Tk -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -fT -fT -fT -fT -fT -fT -fT -fT -fT -fT -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -Rb -KP -DX -As -EZ -Rb -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(63,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -uu -JX -DF -VN -Tk -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -NH -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -af -JN -iz -jz -Rj -zH -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -jd -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -lu -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(64,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -uu -ws -xq -QY -Tk -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -nS -gy -Zt -Zt -Zt -Zt -Zt -Zt -vi -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -fT -fT -fT -DB -eL -fT -DB -fT -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -af +Ow +nh +Rd +Bv aE -Iy -VU -aE -Rb -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -lF -lF -lF -lF -Wh -YS +we +dR Zt gy Zt -Sj -nn -nn -nn -nn -nn -nn +HS +hw +kD +Kg +Pk +Xk +ng +Oj Zt gy gy @@ -42206,1219 +35279,8 @@ gy gy gy gy -gy -gy -gy "} -(65,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -uu -dp -lI -CJ -Tk -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -cY -cY -cY -cY -cY -cY -Zt -gy -Zt -UA -sy -rs -MI -dJ -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -fT -FJ -eY -vr -ul -Fg -kK -Yw -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -Rb -Lt -OD -gh -aE -af -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -QB -oE -PA -QB -Wh -Zy -Zt -gy -Zt -Sj -cG -uc -DP -xW -va -nn -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(66,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -IU -IU -IU -IU -Tk -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -lc -BS -oZ -Qo -bJ -Rb -Zt -gy -Zt -ov -dv -yB -dv -ov -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -fT -CP -QZ -xB -TP -xV -mx -DB -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -Ub -bo -gG -LZ -em -af -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -QB -Sh -Uc -QB -QB -QB -Zt -gy -Zt -Sj -ql -hP -Kk -NF -Oo -nn -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(67,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -Rb -kr -mX -cV -cv -hi -Zt -gy -Zt -dv -NV -IP -Sl -dv -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -rR -av -AE -jR -Ny -Wo -Pu -fT -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -IJ -ro -ro -ro -ro -IJ -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -QB -UZ -gX -DH -nU -nn -Zt -gy -Zt -bx -wh -RZ -RZ -KQ -lv -Sj -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(68,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -hi -lM -yi -Rj -td -Rb -Zt -gy -Zt -dv -Ik -iI -Sl -dv -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -tY -gw -vs -aP -JD -Wo -lS -fT -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -nn -UZ -DI -HC -tp -TO -Zt -gy -Zt -Sj -iE -Gv -so -lA -lv -Sj -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(69,1,1) = {" +(52,1,1) = {" gy gy gy @@ -43543,60 +35405,60 @@ gy gy Zt Rb -Rb -Rb -ga -Rb -Rb +xF +GJ +Rj +vS +af Zt gy Zt -dv -vm -zJ -Sm -dv +ov +ov +ov +ov +ov Zt gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy Zt fT -lb -RU -qy -uS -lf -la -DB +xm +rN +jJ +IA +ry +OX +zo +Qy +fT +Zt +gy +Zt +Oo +gb +Wq +pN +oE +IM +Fx +Zt +gy +gy +gy +gy +gy +NW +gy +gy +Zt +tY +gw +vs +aP +JD +Wo +lS +fT Zt gy gy @@ -43637,23 +35499,23 @@ gy NW gy gy +Zt +Rb +xF +GJ +Rj +Nt +af +Zt gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt gy gy gy @@ -43685,22 +35547,25 @@ NW gy gy Zt -nn -uu -ZB -uu -nn -Hu +Rb +KF +No +BH +aE +oW +gS +dR Zt gy Zt -Sj -Sj -Sj -XK -gH -DV -Sj +HS +Kb +mr +JW +JW +Lf +VI +AJ Zt gy gy @@ -43716,11 +35581,8 @@ gy gy gy gy -gy -gy -gy "} -(70,1,1) = {" +(53,1,1) = {" gy gy gy @@ -43844,63 +35706,63 @@ NW gy gy Zt -Rb -xF -GJ -Rj -vS +rI +aE +gi +Xe +aE af Zt gy Zt -ov -ov -ov -ov -ov +Zt +Zt +Zt +Zt +Zt Zt gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy Zt -aw -zL -NQ -pI -yR -XY -Gw +fT +fT +fT +fT +fT +fT +fT +fT +fT fT Zt gy +Zt +Oo +BD +nf +pN +pN +oy +Oo +Zt +gy +gy +gy +gy +gy +NW +gy +gy +Zt +fT +lb +RU +qy +uS +lf +la +DB +Zt +gy gy gy gy @@ -43940,16 +35802,16 @@ NW gy gy Zt +rI +qR +qR +Xe +iS +af Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -KX +gy +gy +gy gy gy gy @@ -43987,22 +35849,25 @@ NW gy gy Zt -nn -Si -Xp -Ho -nn -Ua +Rb +Ay +iK +qM +nZ +Jz +KN +dR Zt gy Zt -ad -ad -Sj -Cz -SZ -pp -Sj +HS +kq +Hs +dz +Lz +hF +ng +JJ Zt gy gy @@ -44018,11 +35883,8 @@ gy gy gy gy -gy -gy -gy "} -(71,1,1) = {" +(54,1,1) = {" gy gy gy @@ -44146,20 +36008,12 @@ NW gy gy Zt -rI -aE -gi -Xe -aE -af -Zt -gy -Zt -Zt -Zt -Zt -Zt -Zt +Rb +KP +LG +As +EZ +Rb Zt gy gy @@ -44170,20 +36024,28 @@ gy gy gy gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy +Zt +Oo +CS +nV +uL +Dn +jY +Oo +Zt gy gy gy @@ -44193,13 +36055,13 @@ NW gy gy Zt -fT -fT aw -cL -Tc -fT -fT +zL +NQ +pI +yR +XY +Gw fT Zt gy @@ -44242,15 +36104,12 @@ NW gy gy Zt -QX -qj -Qb -Mq -fL -fT -fT -Pd -fT +Rb +KP +DX +As +EZ +Rb Zt gy gy @@ -44285,30 +36144,33 @@ gy gy gy gy +gy +gy +gy NW gy gy Zt -nn -xD -hp -OW -nn -xT +Rb +xX +aE +lC +oW +hf +xo +dR Zt gy Zt +HS +VG +VG +SB +SB +VG +VG +QS Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -gy -gy -gy gy gy gy @@ -44324,7 +36186,7 @@ gy gy gy "} -(72,1,1) = {" +(55,1,1) = {" gy gy gy @@ -44448,169 +36310,169 @@ NW gy gy Zt +BQ +FA +iz +jz +Rj +zH +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +Oo +Oo +Oo +Oo +Ho +kz +Oo +Zt +gy +gy +gy +gy +gy +NW +gy +gy +Zt +fT +fT +aw +cL +Tc +fT +fT +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +af +JN +iz +jz +Rj +zH +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt Rb -KP -LG -As -EZ -Rb +Xb +uD +tB +oW +YH +xa +dR Zt gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy Zt +HS +xY +qK +hX +hX +hX +OS +zr Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -QX -Tp -dV -kM -YK -Pd -iA -BO -gz -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -nn -uu -nT -uu -nn -Ne -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy gy gy gy @@ -44626,7 +36488,7 @@ gy gy gy "} -(73,1,1) = {" +(56,1,1) = {" gy gy gy @@ -44750,12 +36612,61 @@ NW gy gy Zt -BQ -FA -iz -jz +iu Rj -zH +sW +Rj +aE +Rb +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +fK +rz +Lv +jd +lI +hx +Oo +Zt +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt Zt gy gy @@ -44796,16 +36707,14 @@ gy NW gy gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy +Zt +af +aE +Iy +VU +aE +Rb +Zt gy gy gy @@ -44846,73 +36755,26 @@ NW gy gy Zt -QX -DU -Lc -MY -jK -fT -ic -BO -gz +Rb +ce +vI +zX +aE +oW +AZ +dR Zt gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy Zt +HS +rv +FB +yO +yO +SH +SK +yL Zt -Zt -Zt -Zt -Zt -Zt -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy gy gy gy @@ -44928,7 +36790,7 @@ gy gy gy "} -(74,1,1) = {" +(57,1,1) = {" gy gy gy @@ -45052,12 +36914,12 @@ NW gy gy Zt -iu -Rj -sW -Rj -aE Rb +Lt +OD +gh +aE +af Zt gy gy @@ -45081,15 +36943,15 @@ gy gy gy gy -gy -gy -gy -gy -gy -gy -gy -gy -gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt gy gy gy @@ -45148,15 +37010,12 @@ NW gy gy Zt -fT -fT -fT -fT -fT -fT -Lj -kQ -fT +Rb +Lt +OD +gh +aE +af Zt gy gy @@ -45191,30 +37050,33 @@ gy gy gy gy +gy +gy +gy NW gy gy +Zt +Rb +Rb +Rb +Rb +af +mI +vM +dR +Zt gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy +Zt +HS +VG +wA +sZ +qS +Rg +VG +UD +Zt gy gy gy @@ -45230,7 +37092,7 @@ gy gy gy "} -(75,1,1) = {" +(58,1,1) = {" gy gy gy @@ -45354,11 +37216,11 @@ NW gy gy Zt -Rb -Lt -OD -gh -aE +Ub +bo +gG +LZ +em af Zt gy @@ -45450,15 +37312,12 @@ NW gy gy Zt -fT -Xd -eV -zq -hR -Co -pS -pR -fT +Ub +bo +gG +LZ +em +af Zt gy gy @@ -45493,30 +37352,33 @@ gy gy gy gy +gy +gy +gy NW gy gy Zt +Fz +Fz +Fz +nx +vB +jq +JH +od Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -vv gy Zt +HS +VG +VG +VG +VG +VG +VG +cz Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -YM gy gy gy @@ -45532,7 +37394,7 @@ gy gy gy "} -(76,1,1) = {" +(59,1,1) = {" gy gy gy @@ -45656,12 +37518,12 @@ NW gy gy Zt -Ub -bo -gG -LZ -em -af +IJ +IJ +IJ +IJ +IJ +IJ Zt gy gy @@ -45752,15 +37614,12 @@ NW gy gy Zt -fT -HF -yA -oC -zz -oC -zz -zp -BN +IJ +ro +ro +ro +ro +IJ Zt gy gy @@ -45795,29 +37654,32 @@ gy gy gy gy +gy +gy +gy NW gy gy Zt -Rb -Rb -Rb -Rb -Rb -Rb -Rb -dR +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt Zt gy Zt -HS -ov -ov -ov -ov -ov -ov -aO +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt Zt gy gy @@ -45834,7 +37696,7 @@ gy gy gy "} -(77,1,1) = {" +(60,1,1) = {" gy gy gy @@ -45958,12 +37820,12 @@ NW gy gy Zt -IJ -IJ -IJ -IJ -IJ -IJ +Zt +Zt +Zt +Zt +Zt +Zt Zt gy gy @@ -46054,16 +37916,16 @@ NW gy gy Zt -fT -zv -Ta -Hj -vL -UQ -pZ -lh -YT Zt +Zt +Zt +Zt +Zt +Zt +Zt +gy +gy +gy gy gy gy @@ -46100,27 +37962,27 @@ gy NW gy gy -Zt -Rb -Ow -nh -Rd -Bv -aE -we -dR -Zt gy -Zt -HS -hw -kD -Kg -Pk -Xk -ng -Oj -Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy gy gy gy @@ -46136,7 +37998,7 @@ gy gy gy "} -(78,1,1) = {" +(61,1,1) = {" gy gy gy @@ -46259,14 +38121,14 @@ gy NW gy gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt +gy +gy +gy +gy +gy +gy +gy +gy gy gy gy @@ -46355,17 +38217,17 @@ gy NW gy gy -Zt -fT -ch -eV -HV -yE -Jr -xQ -ug -Pd -Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy gy gy gy @@ -46403,32 +38265,32 @@ NW gy gy Zt -Rb -KF -No -BH -aE -oW -gS -dR Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +zE gy Zt -HS -Kb -mr -JW -JW -Lf -VI -AJ Zt -gy -gy -gy -gy -gy -gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +FO gy gy gy @@ -46438,7 +38300,7 @@ gy gy gy "} -(79,1,1) = {" +(62,1,1) = {" gy gy gy @@ -46561,308 +38423,6 @@ gy NW gy gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -cj -fT -Pd -Pd -fT -fT -fT -fT -fT -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -Zt -Rb -Ay -iK -qM -nZ -Jz -KN -dR -Zt -gy -Zt -HS -kq -Hs -dz -Lz -hF -ng -JJ -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(80,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -NW -gy -gy Zt Zt Zt @@ -46969,6 +38529,308 @@ Zt Zt Zt Zt +KX +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Hf +Hf +Hf +Hf +fT +fT +fT +fT +fT +JP +Og +Zt +gy +Zt +Fz +Fz +nx +dZ +IW +Qk +xT +XK +bx +xT +xT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +"} +(63,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +QQ +QQ +QQ +gy +QQ +QQ +QQ +QQ +QQ +QQ +gy +gy +gy +Oh +gy +Oh +Oh +Oh +Oh +gy +gy +gy +gy +gy +gy +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +QX +qj +Qb +Mq +fL +fT +fT +Pd +fT Zt gy gy @@ -47007,25 +38869,31 @@ NW gy gy Zt -Rb -xX -aE -lC -oW -hf -xo -dR +Fz +Fz +Fz +fT +fT +YR +mj +ln +fT +fT +fT Zt gy Zt -HS -VG -VG -SB -SB -VG -VG -QS +Fz +Fz +nx +Gp +aF +CO +fv +fv +uA +fv +fv Zt gy gy @@ -47035,14 +38903,8 @@ gy gy gy gy -gy -gy -gy -gy -gy -gy "} -(81,1,1) = {" +(64,1,1) = {" gy gy gy @@ -47181,31 +39043,31 @@ gy gy gy gy -QQ -QQ -QQ -gy -QQ -QQ -QQ -QQ -QQ -QQ -gy gy gy Oh gy -Oh -Oh -Oh +gy +gy +gy Oh gy gy gy gy gy +vp +Oh +Oh gy +gy +Oh +gy +gy +QQ +QQ +QQ +QQ Zt gy gy @@ -47261,17 +39123,17 @@ gy NW gy gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy +Zt +QX +Tp +dV +kM +YK +Pd +iA +BO +gz +Zt gy gy gy @@ -47309,25 +39171,31 @@ NW gy gy Zt -Rb -Xb -uD -tB -oW -YH -xa -dR +Fz +Fz +Fz +fT +cg +Bw +Dz +RK +wo +Zg +fT Zt gy Zt -HS -xY -qK -hX -hX -hX -OS -zr +Oo +Oo +Oo +By +We +yd +am +HW +Pz +HW +am Zt gy gy @@ -47337,14 +39205,8 @@ gy gy gy gy -gy -gy -gy -gy -gy -gy "} -(82,1,1) = {" +(65,1,1) = {" gy gy gy @@ -47497,17 +39359,17 @@ gy gy gy vp +gy Oh +gy +gy Oh gy gy Oh gy gy -QQ -QQ -QQ -QQ +Oh Zt gy gy @@ -47563,17 +39425,17 @@ gy NW gy gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy +Zt +QX +DU +Lc +MY +jK +fT +ic +BO +gz +Zt gy gy gy @@ -47611,25 +39473,31 @@ NW gy gy Zt -Rb -ce -vI -zX -aE -oW -AZ -dR +fT +fT +fT +fT +ie +JG +Nr +ZO +RK +hK +fT Zt gy Zt -HS -rv -FB -yO -yO -SH -SK -yL +Oo +Rc +or +SS +ny +yd +Gd +Tn +nX +OE +Ro Zt gy gy @@ -47639,14 +39507,8 @@ gy gy gy gy -gy -gy -gy -gy -gy -gy "} -(83,1,1) = {" +(66,1,1) = {" gy gy gy @@ -47778,37 +39640,37 @@ gy gy gy gy -gy -gy -gy -gy -gy -gy -gy -gy -gy +uN +uN +ZZ +uN +uN +sv +uN +uN +oL +uN +uN +zG +uN +uN +bd +uN +uN +uN +hD +hD +hD +hD +hD +hD +hD +hD Oh -gy -gy -gy -gy Oh -gy -gy -gy -gy -gy -vp -gy Oh -gy -gy Oh -gy -gy Oh -gy -gy Oh Zt gy @@ -47865,17 +39727,17 @@ gy NW gy gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy +Zt +fT +fT +fT +fT +fT +fT +Lj +kQ +fT +Zt gy gy gy @@ -47913,25 +39775,31 @@ NW gy gy Zt -Rb -Rb -Rb -Rb -af -mI -vM -dR +fT +rg +rg +rg +WK +TZ +Na +XD +ZO +GY +Pd Zt gy Zt -HS -VG -wA -sZ -qS -Rg -VG -UD +Oo +nn +eW +QM +fY +yd +gO +pC +pC +pC +Lm Zt gy gy @@ -47941,14 +39809,8 @@ gy gy gy gy -gy -gy -gy -gy -gy -gy "} -(84,1,1) = {" +(67,1,1) = {" gy gy gy @@ -48081,37 +39943,37 @@ gy gy gy uN -uN -ZZ -uN -uN -sv -uN -uN -oL -uN -uN -zG -uN -uN -bd -uN -uN -uN -hD -hD -hD -hD -hD -hD -hD +Zs +HI +ep +Zs +HI +ep +Zs +HI +ep +hk +oG +ep +Yc +WV +ep +hk +Jn +yT +Qm +Hx +fu +XH +hA +ET hD +gy +gy +gy Oh -Oh -Oh -Oh -Oh -Oh +gy +ea Zt gy gy @@ -48167,17 +40029,17 @@ gy NW gy gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy +Zt +fT +Xd +eV +zq +hR +Co +pS +pR +fT +Zt gy gy gy @@ -48215,25 +40077,31 @@ NW gy gy Zt -Fz -Fz -Fz -nx -vB -jq -JH -od +fT +RK +RK +RK +BK +fI +vO +xc +zj +RK +ex Zt gy Zt -HS -VG -VG -VG -VG -VG -VG -cz +Oo +Sj +KV +Bj +iH +yd +lu +jO +jO +jO +eX Zt gy gy @@ -48243,14 +40111,8 @@ gy gy gy gy -gy -gy -gy -gy -gy -gy "} -(85,1,1) = {" +(68,1,1) = {" gy gy gy @@ -48370,7 +40232,7 @@ gy gy gy gy -gy +NW gy gy Zt @@ -48378,41 +40240,41 @@ gy gy gy gy -gy -gy -gy -gy +kb +kb +kb +kb uN -Zs -HI +AO +DL ep -Zs -HI +pT +DL ep -Zs -HI +le +JU ep -hk -oG +Ll +eN ep -Yc -WV +bs +eN ep -hk -Jn +uh +be yT -Qm +dL Hx -fu -XH -hA -ET -hD -gy -gy -gy -Oh -gy +NI +IN +yT +rL +ea +ea +Ku +Ku +Ku +ea ea Zt gy @@ -48469,6 +40331,1167 @@ gy NW gy gy +Zt +fT +HF +yA +oC +zz +oC +zz +zp +BN +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +fT +Yh +uG +yn +BK +WH +uP +vU +pm +RK +Pd +Zt +gy +Zt +Oo +Wh +Wh +aZ +Vz +yd +rq +eM +pC +pC +pC +Zt +gy +gy +gy +gy +gy +gy +gy +gy +"} +(69,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +Zt +TV +ps +Fk +Fk +Fk +Fk +AB +Zt +gy +Zt +fT +uf +GQ +ag +VS +Fy +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +kb +bF +Tr +IB +ep +cP +qP +ep +cP +qP +ep +cP +qP +ep +LA +Gf +ep +LA +fq +ep +LA +Fn +yT +uX +Hx +vz +iC +yT +lx +ea +dr +qY +Go +qY +qw +ea +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +fT +zv +Ta +Hj +vL +UQ +pZ +lh +YT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +fT +fT +fT +fT +Dg +xk +qD +pm +RK +vX +fT +Zt +gy +Zt +Oo +ek +PA +GZ +Id +yd +ND +cM +jC +XO +Ye +Zt +gy +gy +gy +gy +gy +gy +gy +gy +"} +(70,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +Zt +TV +Mg +Gb +Fk +Kw +ar +TV +Zt +gy +Zt +fT +Ep +uW +dj +GQ +fW +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +vp +Oh +kb +GF +bw +wv +ep +FD +Ge +ep +FD +Sg +ep +FD +zO +ep +yz +JZ +ep +yz +Un +ep +yz +rh +yT +yT +Kr +vz +IN +aD +ks +ea +RC +dB +iR +dg +aL +ea +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +fT +ch +eV +HV +yE +Jr +xQ +ug +Pd +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Fz +Fz +Fz +fT +Wd +UJ +cd +RK +RK +Jc +fT +Zt +gy +Zt +Oo +yh +nU +HC +pH +yd +am +am +am +am +am +Zt +gy +gy +gy +gy +gy +gy +gy +gy +"} +(71,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +Zt +TV +TV +Ut +MQ +GC +La +TV +Zt +gy +Zt +fT +fT +UO +Hr +ZF +OU +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +vp +gy +vp +gy +kb +Bs +Ue +tn +pO +eb +RP +Ru +wr +UI +hW +wr +RP +UU +wr +RP +mQ +do +RP +wT +wr +RP +DJ +ah +kI +dc +iv +yT +Cy +ea +wQ +Uy +GM +Ao +Bt +ea +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +cj +fT +Pd +Pd +fT +fT +fT +fT +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Lh +Lh +Lh +fT +fT +iM +BK +KB +fT +fT +fT +Zt +gy +Zt +Oo +kw +Oc +Oo +Oo +Oo +Fz +Fz +Fz +Fz +Fz +Zt +gy +gy +gy +gy +gy +gy +gy +gy +"} +(72,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +Zt +yg +TV +TV +sY +za +TV +TV +Zt +gy +Zt +fT +fT +fT +fT +fT +fT +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +vp +Oh +vp +gy +kb +Us +Sa +Sa +Sa +bG +Di +CY +CY +lP +nR +MH +SY +zs +CY +CY +CY +CY +rm +CY +CY +Of +IG +hD +hD +hD +hD +hD +hD +ea +Ku +Bc +ea +ea +ea +ea +Zt +gy +gy +NW +gy +gy +gy +gy gy gy gy @@ -48526,6 +41549,344 @@ Zt Zt Zt Zt +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +bX +hQ +St +Lh +fT +fT +KJ +tG +fT +Uj +ip +Zt +gy +Zt +Oo +OC +fP +Oo +Fz +Fz +Fz +Fz +Fz +Fz +Fz +Zt +gy +gy +gy +gy +gy +gy +gy +gy +"} +(73,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +vp +gy +vp +gy +YC +Xi +ZG +wB +xN +yZ +yZ +yZ +de +zK +de +yZ +yZ +yZ +jP +ze +ze +ze +ze +Cp +Pq +VM +hV +Mk +WE +mf +UF +NG +gy +wX +ke +zt +aT +Qh +Hc +DS +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy gy Zt Zt @@ -48537,6 +41898,3641 @@ Zt Zt Zt Zt +Zt +Zt +Zt +gy +Zt +Oo +Oo +Oo +Oo +Fz +Fz +Fz +Fz +Fz +Fz +Fz +Zt +gy +gy +gy +gy +gy +gy +gy +gy +"} +(74,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +vp +gy +vp +Oh +YC +jr +VT +Rk +gc +yZ +aR +fd +wG +Gz +wG +aR +uI +yZ +fH +eC +eC +eC +eC +SQ +OV +um +VZ +NG +JM +iO +ct +NG +gy +wX +ke +rH +qH +SU +Cf +So +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +oh +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +gy +gy +gy +gy +gy +gy +gy +gy +"} +(75,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +OJ +gy +NW +gy +gy +Zt +vp +gy +vp +gy +YC +VT +Rk +Rk +SD +yZ +Qz +MC +VQ +Gz +HY +my +iq +yZ +ur +pB +eC +eC +eC +SQ +vZ +Xg +VZ +Ww +MS +JE +UH +Mk +Oh +GN +bM +rH +RA +lU +HM +NC +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +iE +yp +FK +gQ +zY +yp +lF +Bl +xq +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(76,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +YW +cG +cG +cG +tM +cG +cG +cG +cG +cG +cG +cG +cG +cG +cG +ue +cG +cG +cG +cG +VL +cG +cG +cG +cG +cG +cG +dQ +cG +VL +Zt +gy +NW +gy +gy +Zt +vp +Oh +vp +gy +YC +xN +xN +xN +xN +yZ +aH +Cm +wG +Gz +wG +om +Cm +yZ +AI +eC +eC +xZ +eC +SQ +OV +um +VZ +NG +js +Yg +EL +NG +gy +wX +ke +rH +GN +GN +sh +gn +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +ma +Bd +Bd +Bd +Bd +Bd +Bd +Bd +Bd +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(77,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +cG +cG +cG +cG +cG +cG +cG +cG +cG +nx +Fl +Fl +Fl +Fl +nx +cG +cG +cG +sL +rD +cG +cG +cG +VL +cG +ue +dQ +dQ +dQ +cG +Zt +gy +NW +gy +gy +Zt +vp +gy +vp +gy +YC +cp +wi +Rk +Np +yZ +SC +Hi +wG +Gz +Vq +DW +Nv +yZ +nJ +Fi +ot +Fi +Fi +Oa +pU +um +nq +Mk +HN +Vd +hj +NG +gy +wX +ke +rH +GN +cU +wj +gn +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +fz +hx +Du +jT +Jt +Fq +qF +sb +Bd +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(78,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +cG +cG +cG +cG +YW +OW +OW +Oo +Oo +Oo +AU +Vx +Nl +Ox +nx +nx +cG +cG +sL +sL +cG +cG +qd +sL +dQ +dQ +dQ +dQ +dQ +ue +Zt +gy +NW +gy +gy +Zt +gy +gy +vp +Oh +YC +mi +EC +gx +op +yZ +dD +qa +qa +oX +Gz +rP +KO +CA +CA +ud +ud +CA +ud +ud +CA +Cq +et +hM +hM +hM +hM +hM +rb +hM +BW +tz +GN +Yp +ou +SX +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +fz +hx +IF +iH +KV +KV +pN +tr +Bd +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(79,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +cG +cG +cG +tM +OW +OW +fP +VY +FC +Oo +Po +Vx +sA +Nu +Yo +nx +cG +cG +cG +sL +sL +VL +sL +sL +dQ +dQ +dQ +dQ +dQ +sL +Zt +gy +NW +gy +gy +Zt +gy +gy +gy +gy +YC +ub +gP +yI +yZ +yZ +jW +ZQ +HH +pq +FL +Fb +Et +CA +Ra +DM +mZ +DG +mZ +mZ +ud +um +VZ +ap +Fp +ap +tV +qb +YJ +hM +kc +of +GN +GN +GN +gn +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +NF +DN +hp +df +hC +hC +qB +Db +Bd +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(80,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +cG +cG +cG +OW +OW +DO +Gn +iJ +Gn +hx +Nu +Nu +sA +Nu +nx +Br +Br +xt +cG +cG +cG +cG +dQ +dQ +dQ +dQ +dQ +dQ +dQ +dQ +Zt +gy +NW +gy +gy +Zt +gy +gy +gy +gy +YC +Rh +YN +YV +Ok +vC +hL +Hv +Ck +gq +AT +rP +oB +CA +dH +Sp +mZ +mZ +mZ +mZ +ud +rw +to +uv +UI +UI +ib +pX +pX +OB +oH +rH +mv +Ba +WR +gn +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Ii +Oo +Oo +cZ +PA +Io +VK +QM +xG +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(81,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +cG +cG +cG +OW +SS +Eu +Oc +tN +Io +hx +Oy +Nu +KT +nx +nx +pW +Br +rd +Br +xt +cG +cG +cG +cG +dQ +dQ +dQ +dQ +dQ +sL +Zt +gy +NW +gy +gy +Zt +gy +gy +gy +gy +YC +xN +xN +BT +yZ +At +KC +Ph +yq +Pg +AT +hY +ko +CM +OT +Sp +mZ +mZ +PU +zR +CA +je +eo +Zf +GD +fQ +tV +fN +zW +hM +Xa +rH +rC +GN +GN +gn +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Ce +xW +Oo +Ry +nU +Ae +VK +hT +Bd +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(82,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +dQ +cG +cG +Oo +Xp +CW +Oc +Vm +Vm +hx +ao +Nu +xr +nx +gX +Ua +Br +Tb +Br +cG +cG +cG +cG +cG +cG +cG +dQ +dQ +sL +sL +Zt +gy +NW +gy +gy +Zt +gy +gy +gy +gy +YC +Ed +nl +xE +yZ +QA +Uq +Es +kL +yZ +yZ +HB +JL +CA +dO +Sp +jL +mZ +mZ +mZ +ud +QU +sD +bP +fJ +CY +uy +vy +zF +Rt +ke +zt +bj +qH +gy +SX +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Ve +HL +Oo +Si +CK +Xq +VK +VH +Bd +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(83,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +dQ +dQ +cG +Oo +Pp +nk +wg +wg +ff +Oo +nT +Nu +tv +nx +gX +Ua +Br +Im +Br +Br +cG +Br +uK +uK +Br +cG +FR +VL +FR +dQ +Zt +gy +NW +gy +gy +Zt +gy +gy +vp +Oh +YC +LS +Nc +JR +yZ +dC +Uq +NE +jD +jQ +yZ +zU +ej +CA +fm +Sp +mZ +jf +mZ +mZ +ud +um +VZ +IH +ix +tT +tV +kV +nO +hM +PV +rH +bY +GN +Oh +gn +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +xO +wL +Oo +Oo +Bd +Bd +Bd +Bd +Bd +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(84,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +kO +dQ +dQ +Oo +Li +Wv +iB +BC +ny +ZB +IU +Nu +pt +nx +Tb +Tb +ax +Tb +ax +Br +Br +Br +Tb +KW +Br +cG +VL +cG +VL +dQ +Zt +gy +NW +gy +gy +Zt +vp +gy +vp +gy +YC +xN +xN +BT +yZ +iV +tO +Zn +kB +lp +QP +Kt +Gs +CA +CA +ii +ii +CA +ii +ii +CA +xi +CR +UK +sI +UK +UK +UK +UK +GN +ke +rH +GN +GN +gy +gn +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(85,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +kO +kO +kO +Oo +Yj +Nd +sO +Mu +ED +Oo +IU +IU +IU +jS +dK +cm +dK +cm +dK +dK +dK +On +dK +QF +Br +Br +FR +VL +FR +dQ +Zt +gy +gy +gy +gy +Zt +vp +Oh +vp +gy +YC +Re +oY +JR +yZ +Yk +gu +zy +Vy +Cw +yZ +tl +JC +tV +Zd +eR +cf +fB +wc +Vi +tV +um +VZ +UK +pG +vo +QH +oO +RY +dE +oH +rH +tx +GN +Oh +gn +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy gy gy gy @@ -48639,83 +45635,83 @@ gy gy gy gy -gy Zt -TV -ps -Fk -Fk -Fk -Fk -AB -Zt -gy -Zt -fT -uf -GQ -ag -VS -Fy -fT +kO +kO +kO +Oo +Oo +Oo +Oo +Oo +Oo +Oo +Rv +sA +bH +nx +Br +Br +Br +Tb +Ua +Tb +Tb +Br +cm +dK +cH +Br +cG +cG +cG +dQ Zt gy gy gy gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy Zt +vp gy +vp gy +lT +vt +sa +xE +yZ +yZ +xH +ep +ep +ep +ep +ew +qV +tV +Ir +rf +Ar +BE +He +DZ +tV +um +Ip +UK +eT +uR +pr +TN +lH +GN +fj +zt +KM +qH gy -gy -kb -kb -kb -kb -uN -AO -DL -ep -pT -DL -ep -le -JU -ep -Ll -eN -ep -bs -eN -ep -uh -be -yT -dL -Hx -NI -IN -yT -rL -ea -ea -Ku -Ku -Ku -ea -ea +gn Zt gy gy @@ -48941,5475 +45937,39 @@ gy gy gy gy -gy Zt -TV -Mg -Gb -Fk -Kw -ar -TV +kO +kO +kO +kO +kO +kO +kO +kO +kO +nx +nx +Yt +nx +nx +Rp +Qj +Br +Br +Ng +Ng +jv +Br +Tb +Dh +yS +Br +cG +cG +cG +dQ Zt gy -Zt -fT -Ep -uW -dj -GQ -fW -fT -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -gy -gy -gy -gy -kb -bF -Tr -IB -ep -cP -qP -ep -cP -qP -ep -cP -qP -ep -LA -Gf -ep -LA -fq -ep -LA -Fn -yT -uX -Hx -vz -iC -yT -lx -ea -dr -qY -Go -qY -qw -ea -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -zE -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(88,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -TV -TV -Ut -MQ -GC -La -TV -Zt -gy -Zt -fT -fT -UO -Hr -ZF -OU -fT -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -gy -gy -vp -Oh -kb -GF -bw -wv -ep -FD -Ge -ep -FD -Sg -ep -FD -zO -ep -yz -JZ -ep -yz -Un -ep -yz -rh -yT -yT -Kr -vz -IN -aD -ks -ea -RC -dB -iR -dg -aL -ea -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -Hf -Hf -Hf -Hf -fT -fT -fT -fT -fT -JP -Og -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(89,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -yg -TV -TV -sY -za -TV -TV -Zt -gy -Zt -fT -fT -fT -fT -fT -fT -fT -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -vp -gy -vp -gy -kb -Bs -Ue -tn -pO -eb -RP -Ru -wr -UI -hW -wr -RP -UU -wr -RP -mQ -do -RP -wT -wr -RP -DJ -ah -kI -dc -iv -yT -Cy -ea -wQ -Uy -GM -Ao -Bt -ea -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -Fz -Fz -Fz -fT -fT -YR -mj -ln -fT -fT -fT -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(90,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -vp -Oh -vp -gy -kb -Us -Sa -Sa -Sa -bG -Di -CY -CY -lP -nR -MH -SY -zs -CY -CY -CY -CY -rm -CY -CY -Of -IG -hD -hD -hD -hD -hD -hD -ea -Ku -Bc -ea -ea -ea -ea -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -Fz -Fz -Fz -fT -cg -Bw -Dz -RK -wo -Zg -fT -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(91,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -vp -gy -vp -gy -YC -Xi -ZG -wB -xN -yZ -yZ -yZ -de -zK -de -yZ -yZ -yZ -jP -ze -ze -ze -ze -Cp -Pq -VM -hV -Mk -WE -mf -UF -NG -gy -wX -ke -zt -aT -Qh -Hc -DS -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -fT -fT -fT -fT -ie -JG -Nr -ZO -RK -hK -fT -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(92,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -vp -gy -vp -Oh -YC -jr -VT -Rk -gc -yZ -aR -fd -wG -Gz -wG -aR -uI -yZ -fH -eC -eC -eC -eC -SQ -OV -um -VZ -NG -JM -iO -ct -NG -gy -wX -ke -rH -qH -SU -Cf -So -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -fT -rg -rg -rg -WK -TZ -Na -XD -ZO -GY -Pd -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(93,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -vp -gy -vp -gy -YC -VT -Rk -Rk -SD -yZ -Qz -MC -VQ -Gz -HY -my -iq -yZ -ur -pB -eC -eC -eC -SQ -vZ -Xg -VZ -Ww -MS -JE -UH -Mk -Oh -GN -bM -rH -RA -lU -HM -NC -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -fT -RK -RK -RK -BK -fI -vO -xc -zj -RK -ex -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(94,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -vp -Oh -vp -gy -YC -xN -xN -xN -xN -yZ -aH -Cm -wG -Gz -wG -om -Cm -yZ -AI -eC -eC -xZ -eC -SQ -OV -um -VZ -NG -js -Yg -EL -NG -gy -wX -ke -rH -GN -GN -sh -gn -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -fT -Yh -uG -yn -BK -WH -uP -vU -pm -RK -Pd -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(95,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -vp -gy -vp -gy -YC -cp -wi -Rk -Np -yZ -SC -Hi -wG -Gz -Vq -DW -Nv -yZ -nJ -Fi -ot -Fi -Fi -Oa -pU -um -nq -Mk -HN -Vd -hj -NG -gy -wX -ke -rH -GN -cU -wj -gn -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -fT -fT -fT -fT -Dg -xk -qD -pm -RK -vX -fT -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(96,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -gy -gy -vp -Oh -YC -mi -EC -gx -op -yZ -dD -qa -qa -oX -Gz -rP -KO -CA -CA -ud -ud -CA -ud -ud -CA -Cq -et -hM -hM -hM -hM -hM -rb -hM -BW -tz -GN -Yp -ou -SX -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -Fz -Fz -Fz -fT -Wd -UJ -cd -RK -RK -Jc -fT -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(97,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -gy -gy -gy -gy -YC -ub -gP -yI -yZ -yZ -jW -ZQ -HH -pq -FL -Fb -Et -CA -Ra -DM -mZ -DG -mZ -mZ -ud -um -VZ -ap -Fp -ap -tV -qb -YJ -hM -kc -of -GN -GN -GN -gn -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -Lh -Lh -Lh -fT -fT -iM -BK -KB -fT -fT -fT -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(98,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -gy -gy -gy -gy -YC -Rh -YN -YV -Ok -vC -hL -Hv -Ck -gq -AT -rP -oB -CA -dH -Sp -mZ -mZ -mZ -mZ -ud -rw -to -uv -UI -UI -ib -pX -pX -OB -oH -rH -mv -Ba -WR -gn -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -bX -hQ -St -Lh -fT -fT -KJ -tG -fT -Uj -ip -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(99,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -gy -gy -gy -gy -YC -xN -xN -BT -yZ -At -KC -Ph -yq -Pg -AT -hY -ko -CM -OT -Sp -mZ -mZ -PU -zR -CA -je -eo -Zf -GD -fQ -tV -fN -zW -hM -Xa -rH -rC -GN -GN -gn -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(100,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -gy -gy -gy -gy -YC -Ed -nl -xE -yZ -QA -Uq -Es -kL -yZ -yZ -HB -JL -CA -dO -Sp -jL -mZ -mZ -mZ -ud -QU -sD -bP -fJ -CY -uy -vy -zF -Rt -ke -zt -bj -qH -gy -SX -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(101,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -gy -gy -vp -Oh -YC -LS -Nc -JR -yZ -dC -Uq -NE -jD -jQ -yZ -zU -ej -CA -fm -Sp -mZ -jf -mZ -mZ -ud -um -VZ -IH -ix -tT -tV -kV -nO -hM -PV -rH -bY -GN -Oh -gn -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(102,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -vp -gy -vp -gy -YC -xN -xN -BT -yZ -iV -tO -Zn -kB -lp -QP -Kt -Gs -CA -CA -ii -ii -CA -ii -ii -CA -xi -CR -UK -sI -UK -UK -UK -UK -GN -ke -rH -GN -GN -gy -gn -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(103,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -vp -Oh -vp -gy -YC -Re -oY -JR -yZ -Yk -gu -zy -Vy -Cw -yZ -tl -JC -tV -Zd -eR -cf -fB -wc -Vi -tV -um -VZ -UK -pG -vo -QH -oO -RY -dE -oH -rH -tx -GN -Oh -gn -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(104,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -Zt -vp -gy -vp -gy -lT -vt -sa -xE -yZ -yZ -xH -ep -ep -ep -ep -ew -qV -tV -Ir -rf -Ar -BE -He -DZ -tV -um -Ip -UK -eT -uR -pr -TN -lH -GN -fj -zt -KM -qH -gy -gn -Zt -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -"} -(105,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy gy gy gy @@ -54592,39 +46152,7 @@ gy gy gy "} -(106,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy +(88,1,1) = {" gy gy gy @@ -54711,6 +46239,38 @@ gy gy gy gy +Zt +kO +kO +kO +kO +kO +kO +kO +kO +kO +Br +XQ +XQ +EF +Tb +XQ +EF +EF +Br +Br +Br +Br +Br +uK +uK +Br +Br +cG +cG +cG +dQ +Zt gy gy gy @@ -54894,39 +46454,7 @@ gy gy gy "} -(107,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy +(89,1,1) = {" gy gy gy @@ -55013,6 +46541,38 @@ gy gy gy gy +Zt +kO +kO +kO +kO +kO +kO +kO +kO +kO +Br +Br +jh +nr +xj +ll +DR +xj +EF +Br +cG +cG +cG +cG +cG +cG +cG +cG +cG +cG +cG +Zt gy gy gy @@ -55196,39 +46756,7 @@ gy gy gy "} -(108,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy +(90,1,1) = {" gy gy gy @@ -55315,6 +46843,38 @@ gy gy gy gy +Zt +kO +kO +kO +kO +kO +kO +kO +kO +kO +kO +Br +Br +MG +Nn +EQ +Ua +rk +Br +Br +dQ +cG +cG +cG +cG +bv +cG +bv +cG +cG +cG +Zt gy gy gy @@ -55498,39 +47058,7 @@ gy gy gy "} -(109,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy +(91,1,1) = {" gy gy gy @@ -55617,6 +47145,38 @@ gy gy gy gy +Zt +kO +kO +kO +kO +kO +kO +kO +kO +kO +kO +kO +Br +Tb +JY +ad +EN +vn +Br +dQ +dQ +dQ +cG +cG +cG +rX +Sd +rX +cG +cG +cG +Zt gy gy gy @@ -55800,39 +47360,7 @@ gy gy gy "} -(110,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy +(92,1,1) = {" gy gy gy @@ -55919,6 +47447,38 @@ gy gy gy gy +Zt +kO +kO +kO +kO +kO +kO +kO +kO +kO +kO +kO +Br +UZ +EF +EF +Br +Br +Br +dQ +dQ +dQ +cG +cG +cG +OH +LY +OH +cG +cG +cG +Zt gy gy gy @@ -56102,39 +47662,7 @@ gy gy gy "} -(111,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy +(93,1,1) = {" gy gy gy @@ -56221,6 +47749,38 @@ gy gy gy gy +Zt +kO +kO +kO +kO +kO +kO +kO +kO +kO +kO +kO +Br +Br +Br +Br +Br +dQ +dQ +dQ +dQ +cG +cG +cG +Xr +Xr +vQ +Xr +Xr +sp +cG +Zt gy gy gy @@ -56404,39 +47964,7 @@ gy gy gy "} -(112,1,1) = {" -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy -gy +(94,1,1) = {" gy gy gy @@ -56523,6 +48051,38 @@ gy gy gy gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt gy gy gy @@ -56706,7 +48266,7 @@ gy gy gy "} -(113,1,1) = {" +(95,1,1) = {" gy gy gy @@ -57008,7 +48568,7 @@ gy gy gy "} -(114,1,1) = {" +(96,1,1) = {" gy gy gy @@ -57310,7 +48870,7 @@ gy gy gy "} -(115,1,1) = {" +(97,1,1) = {" gy gy gy @@ -57612,7 +49172,7 @@ gy gy gy "} -(116,1,1) = {" +(98,1,1) = {" gy gy gy @@ -57914,7 +49474,7 @@ gy gy gy "} -(117,1,1) = {" +(99,1,1) = {" gy gy gy @@ -58216,7 +49776,7 @@ gy gy gy "} -(118,1,1) = {" +(100,1,1) = {" gy gy gy @@ -58518,7 +50078,7 @@ gy gy gy "} -(119,1,1) = {" +(101,1,1) = {" gy gy gy @@ -58820,7 +50380,7 @@ gy gy gy "} -(120,1,1) = {" +(102,1,1) = {" gy gy gy @@ -59122,7 +50682,7 @@ gy gy gy "} -(121,1,1) = {" +(103,1,1) = {" gy gy gy @@ -59424,7 +50984,7 @@ gy gy gy "} -(122,1,1) = {" +(104,1,1) = {" gy gy gy @@ -59726,7 +51286,7 @@ gy gy gy "} -(123,1,1) = {" +(105,1,1) = {" gy gy gy @@ -60028,7 +51588,7 @@ gy gy gy "} -(124,1,1) = {" +(106,1,1) = {" gy gy gy @@ -60330,6 +51890,5442 @@ gy gy gy "} +(107,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(108,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(109,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(110,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(111,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(112,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(113,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(114,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(115,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(116,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(117,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(118,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(119,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(120,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(121,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(122,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(123,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(124,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} (125,1,1) = {" gy gy @@ -60453,48 +57449,48 @@ gy gy gy gy -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt -Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy gy gy gy diff --git a/_maps/map_files/MetaStation/MetaStation_skyrat.dmm b/_maps/map_files/MetaStation/MetaStation_skyrat.dmm deleted file mode 100644 index 56745afcf93..00000000000 --- a/_maps/map_files/MetaStation/MetaStation_skyrat.dmm +++ /dev/null @@ -1,135333 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/turf/open/space/basic, -/area/space) -"aac" = ( -/obj/effect/landmark/carpspawn, -/turf/open/space, -/area/space) -"aaf" = ( -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aag" = ( -/obj/structure/chair/sofa/corp/right{ - desc = "Looks like someone threw it out. Covered in donut crumbs."; - name = "couch" - }, -/turf/open/space/basic, -/area/space) -"aah" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"aal" = ( -/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, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"aan" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Gateway Maintenance" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/command/gateway, -/turf/open/floor/plating, -/area/station/maintenance/central) -"aap" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"aaq" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/spawner/random/engineering/atmospherics_portable, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"aav" = ( -/turf/open/space, -/area/space) -"aaz" = ( -/obj/effect/spawner/random/trash/cigbutt, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/textured, -/area/station/medical/medbay/central) -"aaB" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 10 - }, -/turf/open/floor/iron/checker, -/area/station/science/research) -"aaI" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"abI" = ( -/obj/structure/chair/stool/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"abR" = ( -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"abX" = ( -/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/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"acf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"acj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"ack" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"acs" = ( -/obj/machinery/power/smes/engineering, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"acB" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/station/service/library) -"adp" = ( -/turf/closed/wall, -/area/station/hallway/primary/starboard) -"adC" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdgene2"; - name = "Genetics Lab Shutters"; - dir = 8 - }, -/obj/machinery/door/window/left/directional/west{ - dir = 4; - name = "Genetics Desk"; - req_access = list("genetics") - }, -/obj/item/folder, -/obj/item/pen, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron, -/area/station/science/genetics) -"adD" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"adG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"adS" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/commons/fitness/recreation) -"aef" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/station/solars/port/aft) -"aek" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Medbay Main Hallway- South"; - network = list("ss13","medbay") - }, -/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/medical/medbay/central) -"aeq" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory) -"aeu" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/item/kirbyplants{ - icon_state = "plant-20"; - pixel_y = 3 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/engineering/main) -"aez" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron/dark/textured, -/area/station/medical/cryo) -"afa" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/machinery/keycard_auth/directional/west, -/obj/machinery/requests_console/directional/north{ - announcementConsole = 1; - department = "Head of Security's Desk"; - departmentType = 5; - name = "Head of Security Requests Console" - }, -/obj/machinery/button/door/directional/north{ - id = "hosspace"; - name = "Space Shutters Control"; - pixel_x = -24 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hos) -"afj" = ( -/obj/effect/turf_decal/trimline/red/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, -/area/station/hallway/primary/fore) -"afo" = ( -/obj/structure/chair, -/obj/effect/landmark/start/chaplain, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"aft" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"afz" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"afD" = ( -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/station/holodeck/rec_center) -"afE" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"afZ" = ( -/obj/machinery/vending/coffee, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/research) -"agc" = ( -/obj/effect/turf_decal/bot, -/mob/living/simple_animal/bot/secbot/beepsky/armsky, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"ago" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"agB" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"agN" = ( -/obj/structure/table/glass, -/obj/item/radio/intercom/directional/west, -/obj/structure/microscope, -/obj/machinery/camera/directional/west{ - c_tag = "Xenobiology Lab - Fore"; - network = list("ss13","rd","xeno") - }, -/obj/machinery/light/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"agQ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/left/directional/west{ - dir = 2; - name = "Cargo Desk"; - req_access = list("shipping") - }, -/obj/item/paper_bin{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/paper/crumpled{ - pixel_x = 7 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"agV" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"agZ" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/shower{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/end{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"ahg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/duct, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/structure/cable, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"ahj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/lockers) -"aho" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=9.4-Escape-4"; - location = "9.3-Escape-3" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"ahr" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/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/dark, -/area/station/hallway/primary/central) -"aht" = ( -/obj/machinery/vending/sustenance, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"ahD" = ( -/obj/structure/displaycase/trophy, -/turf/open/floor/wood, -/area/station/service/library) -"ahS" = ( -/obj/structure/toilet/greyscale{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron/white, -/area/station/security/prison/safe) -"ahU" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/department/engine) -"ahV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos) -"ahW" = ( -/turf/closed/wall, -/area/service/salon) -"aib" = ( -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"aid" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"aij" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"air" = ( -/obj/structure/table/reinforced, -/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/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"aiz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/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/kitchen_coldroom/freezerfloor, -/area/station/service/kitchen/coldroom) -"aja" = ( -/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/security/office) -"ajl" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/space, -/area/space/nearstation) -"ajq" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/pen, -/obj/item/storage/box/prisoner, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Prison Hallway Port"; - network = list("ss13","prison") - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"ajI" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/vending/drugs, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) -"ajM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"akh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"aks" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"aku" = ( -/obj/structure/chair/stool/directional/east, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"akG" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"akZ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall, -/area/station/engineering/atmos) -"alg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"alE" = ( -/turf/open/floor/iron, -/area/station/security/courtroom) -"alI" = ( -/obj/machinery/door/window/left/directional/west{ - dir = 4; - name = "Bridge Deliveries"; - req_access = list("command") - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "Bridge Blast Door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/command/bridge) -"alM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "briglockdown"; - name = "Brig Shutters" - }, -/turf/open/floor/plating, -/area/station/security/brig) -"amb" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"amc" = ( -/obj/structure/chair{ - dir = 4; - name = "Prosecution" - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"amj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"amo" = ( -/obj/structure/chair{ - dir = 8; - name = "Defense" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/green/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/courtroom) -"amu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/drinkingglasses, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/spawner/random/structure/crate_empty, -/obj/effect/spawner/random/food_or_drink/donkpockets, -/obj/effect/spawner/random/food_or_drink/cups, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"amy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Fore Primary Hallway" - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"amV" = ( -/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/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"amY" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/light/no_nightlight/directional/north, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/pumproom) -"anl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/ai_monitored/security/armory) -"anL" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/station/maintenance/space_hut) -"anS" = ( -/turf/open/floor/plating/airless, -/area/space/nearstation) -"anT" = ( -/obj/structure/chair/sofa/corp/left{ - desc = "Looks like someone threw it out. Covered in donut crumbs."; - name = "couch" - }, -/turf/open/space/basic, -/area/space) -"aok" = ( -/turf/open/floor/iron, -/area/station/cargo/storage) -"aox" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"aoE" = ( -/obj/machinery/requests_console/directional/east{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge Requests Console" - }, -/obj/machinery/computer/cargo/request, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"apg" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"apq" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/suit/hooded/wintercoat/engineering, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/engineering/main) -"aps" = ( -/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 = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"apt" = ( -/obj/machinery/icecream_vat, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/service/kitchen/coldroom) -"apw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"apz" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"apB" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"apG" = ( -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"apJ" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"apM" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"apS" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/white, -/area/station/science/xenobiology/hallway) -"apT" = ( -/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/starboard/aft) -"aqh" = ( -/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 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"aqt" = ( -/obj/structure/table, -/obj/item/folder/yellow, -/obj/item/storage/medkit/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/obj/item/paper/pamphlet/gateway, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/command/gateway) -"aqu" = ( -/obj/structure/closet/wardrobe/green, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"aqx" = ( -/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/cargo/miningoffice) -"aqN" = ( -/obj/structure/window/reinforced, -/obj/machinery/computer/cargo/request{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"aqS" = ( -/obj/effect/turf_decal/siding/purple/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"ara" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"arg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"ari" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"ark" = ( -/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, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"arl" = ( -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"art" = ( -/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/grimy, -/area/station/tcommsat/computer) -"asz" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/mineral/plasma{ - amount = 35 - }, -/obj/structure/cable, -/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/south, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) -"asB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar, -/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, -/area/station/hallway/primary/central) -"asL" = ( -/obj/structure/table, -/obj/item/assembly/igniter{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/assembly/igniter{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/assembly/igniter{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/assembly/igniter{ - pixel_x = 2; - pixel_y = -1 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Xenobiology Lab - Test Chamber"; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"asM" = ( -/obj/machinery/computer/prisoner/management{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hos) -"asV" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"asX" = ( -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/security/brig) -"atf" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/item/surgical_drapes, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"ati" = ( -/obj/effect/spawner/random/vending/colavend, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"atN" = ( -/obj/structure/cable, -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"atU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/wood, -/area/station/service/bar) -"atV" = ( -/obj/machinery/requests_console/directional/north{ - department = "Security"; - departmentType = 3; - name = "Security Requests Console" - }, -/obj/machinery/light/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Security Post - Medbay"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/structure/closet/secure_closet/security/med, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) -"atW" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 2"; - name = "Cell 2" - }, -/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/red/filled/line, -/turf/open/floor/iron, -/area/station/security/brig) -"auh" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"aum" = ( -/obj/effect/turf_decal/tile/neutral{ - 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, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"aun" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"auw" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin7"; - name = "Cabin 1" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/dorms) -"auH" = ( -/obj/effect/turf_decal/trimline/blue/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/medical/medbay/central) -"auJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"ava" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"avc" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Gateway - Access" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/command/gateway) -"avo" = ( -/obj/machinery/light/directional/east, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/bar, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"avq" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"avr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"avA" = ( -/obj/structure/table/reinforced/rglass, -/obj/item/hairbrush, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/item/lipstick/random, -/turf/open/floor/iron, -/area/service/salon) -"avJ" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"avK" = ( -/turf/closed/wall, -/area/station/maintenance/fore/lesser) -"avU" = ( -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/button/door/directional/east{ - id = "Cabin2"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"awt" = ( -/obj/structure/sign/warning/electric_shock/directional/east, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/obj/item/clothing/head/welding, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"aww" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/office) -"awF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"awO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "rdoffice"; - name = "Research Director's Shutters" - }, -/turf/open/floor/plating, -/area/station/science/server) -"axd" = ( -/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/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"axe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 3"; - name = "Cell 3 Locker" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig) -"axx" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos) -"axK" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - 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/white, -/area/station/security/prison) -"axO" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/structure/disposalpipe/segment, -/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/prison) -"axR" = ( -/obj/machinery/light_switch/directional/east, -/obj/structure/table/wood, -/obj/item/folder/white{ - pixel_x = -14; - pixel_y = 3 - }, -/obj/item/paper_bin/carbon{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/pen, -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"axU" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - 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/starboard) -"axW" = ( -/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/white/side, -/area/station/medical/medbay/lobby) -"aye" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/turf/open/space, -/area/space/nearstation) -"ayg" = ( -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"ayr" = ( -/turf/open/floor/iron, -/area/station/engineering/break_room) -"ays" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1; - sortType = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"ayu" = ( -/obj/effect/spawner/random/structure/musician/piano/random_piano, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/wood, -/area/station/service/theater) -"ayH" = ( -/obj/effect/spawner/random/engineering/atmospherics_portable, -/turf/open/floor/plating, -/area/station/maintenance/port) -"ayO" = ( -/obj/effect/turf_decal/trimline/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, -/area/station/hallway/primary/central) -"ayV" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig) -"azd" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"azg" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"azn" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/locker) -"azo" = ( -/obj/structure/sign/warning/vacuum/external/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"azs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/structure/cable, -/obj/item/kirbyplants/random, -/obj/machinery/camera/directional/east{ - c_tag = "Science - Server Room"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/server) -"azu" = ( -/turf/open/floor/plating/airless, -/area/station/engineering/atmos) -"azv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"azE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"aAb" = ( -/obj/structure/table/wood, -/obj/item/lipstick{ - pixel_y = 5 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Theater - Stage" - }, -/obj/machinery/light/small/directional/east, -/obj/effect/spawner/random/entertainment/musical_instrument, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/wood, -/area/station/service/theater) -"aAg" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/dorms) -"aAs" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"aAB" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"aAK" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/command/gateway) -"aAT" = ( -/obj/machinery/firealarm/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Bridge - Port Access" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"aBJ" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/siding, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron, -/area/station/science/lab) -"aBM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/item/cigbutt{ - pixel_x = -6; - pixel_y = -4 - }, -/obj/machinery/duct, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/random/trash/garbage, -/turf/open/floor/iron, -/area/station/maintenance/starboard/greater) -"aBW" = ( -/obj/machinery/button/ignition/incinerator/atmos, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"aBX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"aCi" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/transmitter, -/obj/item/stock_parts/subspace/transmitter, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/amplifier, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) -"aCn" = ( -/obj/structure/sign/warning/pods/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/brig) -"aCy" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/rods/fifty, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"aCA" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "N2O to Pure" - }, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"aCD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/sorting/mail{ - dir = 2; - sortType = 29 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"aCE" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=10.1-Central-from-Aft"; - location = "10-Aft-To-Central" - }, -/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, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"aCQ" = ( -/obj/effect/turf_decal/trimline/red/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/security/prison) -"aCW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"aCX" = ( -/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; - sortType = 2 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"aDa" = ( -/turf/open/floor/plating, -/area/station/construction/mining/aux_base) -"aDb" = ( -/turf/closed/wall, -/area/station/construction/mining/aux_base) -"aDl" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port) -"aDm" = ( -/obj/structure/closet/firecloset, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/turf/open/floor/iron/checker, -/area/station/science/research) -"aDA" = ( -/obj/machinery/light/small/directional/south, -/obj/item/folder, -/obj/item/folder, -/obj/machinery/camera/directional/south{ - c_tag = "Telecomms - Control Room"; - network = list("ss13","tcomms") - }, -/obj/structure/table/wood, -/obj/item/pen, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"aDK" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/recharge_station, -/obj/effect/landmark/start/hangover, -/obj/effect/spawner/random/trash/graffiti{ - pixel_y = -32; - spawn_loot_chance = 50 - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"aDQ" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"aDR" = ( -/obj/structure/table, -/obj/effect/spawner/random/bureaucracy/folder, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"aDS" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/lab) -"aDU" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"aEj" = ( -/obj/structure/table, -/obj/item/poster/random_official{ - pixel_y = 13 - }, -/obj/item/poster/random_official{ - pixel_y = 5 - }, -/obj/item/poster/random_official, -/turf/open/floor/iron/dark, -/area/station/security/office) -"aEl" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/white, -/area/station/security/prison) -"aEr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"aEH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/construction/storage_wing) -"aEP" = ( -/obj/machinery/light_switch/directional/east, -/obj/structure/dresser, -/obj/item/storage/secure/safe/directional/north, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"aEW" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"aFd" = ( -/obj/effect/landmark/start/shaft_miner, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"aFf" = ( -/obj/effect/turf_decal/loading_area, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"aFv" = ( -/obj/machinery/newscaster/directional/north, -/obj/structure/table/wood, -/obj/effect/spawner/random/bureaucracy/paper, -/turf/open/floor/wood, -/area/station/commons/dorms) -"aGe" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/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 = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"aGm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/office) -"aGo" = ( -/obj/machinery/disposal/bin{ - desc = "A pneumatic waste disposal unit. This one leads to the morgue."; - name = "corpse disposal" - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"aGD" = ( -/obj/structure/closet/crate/coffin, -/obj/machinery/door/window/left/directional/east{ - name = "Coffin Storage"; - req_access = list("chapel_office") - }, -/turf/open/floor/plating, -/area/station/service/chapel/funeral) -"aGG" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/sheet/iron/fifty, -/obj/item/storage/toolbox/emergency, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/effect/spawner/random/engineering/flashlight, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"aGH" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"aGM" = ( -/turf/open/floor/iron, -/area/station/security/range) -"aGQ" = ( -/obj/item/storage/medkit/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"aGS" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/wall, -/area/station/engineering/atmos) -"aGT" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=13.1-Engineering-Enter"; - location = "12-Central-Starboard" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"aHh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"aHi" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ - dir = 6 - }, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"aHt" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"aHH" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"aHM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/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, -/area/station/science/research) -"aHR" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall/r_wall, -/area/station/science/research) -"aIm" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=7.5-Starboard-Aft-Corner"; - location = "7-Command-Starboard" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"aIw" = ( -/turf/open/floor/plating/airless, -/area/station/solars/port/fore) -"aIz" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/sign/warning/electric_shock/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Fore Primary Hallway Cells" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"aIA" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance" - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"aIC" = ( -/obj/effect/turf_decal/stripes/line, -/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/starboard/fore) -"aID" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"aIE" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"aII" = ( -/obj/machinery/hydroponics/soil, -/obj/item/cultivator, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/grass, -/area/station/security/prison/garden) -"aIX" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/light/small/directional/north, -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/turf/open/floor/iron, -/area/station/commons/locker) -"aJa" = ( -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"aJd" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"aJe" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Atmospherics Tank - N2O" - }, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"aJj" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"aJm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/lesser) -"aJn" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/maintenance/starboard/greater) -"aJv" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"aJz" = ( -/obj/structure/table/glass, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -8 - }, -/obj/item/clothing/mask/breath{ - pixel_x = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"aJI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/hallway/secondary/service) -"aJK" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"aJO" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=14.8-Dorms-Lockers"; - location = "14.5-Recreation" - }, -/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/fitness/recreation) -"aJP" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"aJQ" = ( -/obj/machinery/atmospherics/components/unary/passive_vent{ - dir = 4; - name = "killroom vent" - }, -/turf/open/floor/circuit/telecomms, -/area/station/science/xenobiology) -"aJS" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload) -"aJX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"aJY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "QM #1" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"aKa" = ( -/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/grimy, -/area/station/security/detectives_office) -"aKb" = ( -/turf/closed/wall, -/area/station/maintenance/central) -"aKk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/service/hydroponics/garden) -"aKl" = ( -/obj/structure/table, -/obj/machinery/microwave, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"aKz" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/newscaster/directional/south, -/obj/effect/landmark/start/engineering_guard, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"aKO" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"aLk" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/bar) -"aLr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_output{ - dir = 1 - }, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"aLu" = ( -/obj/structure/cable, -/obj/machinery/door/airlock{ - name = "Service Hall" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/general, -/turf/open/floor/iron, -/area/station/maintenance/starboard/greater) -"aLw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Chapel" - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"aLy" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar, -/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) -"aLA" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"aLX" = ( -/obj/effect/spawner/random/vending/colavend, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/secondary/entry) -"aMf" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table/wood, -/obj/item/folder{ - pixel_y = 2 - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"aMq" = ( -/obj/structure/window/reinforced, -/turf/open/space, -/area/space/nearstation) -"aMr" = ( -/obj/structure/window/reinforced, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aMs" = ( -/obj/machinery/light/directional/north, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"aMA" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"aMB" = ( -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"aMW" = ( -/obj/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/security/brig) -"aNa" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"aNe" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"aNf" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"aNw" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"aNB" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Atmospherics Tank - Mix" - }, -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"aNC" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aNG" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Bridge - Starboard Access" - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"aNN" = ( -/obj/machinery/airalarm/directional/south, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"aNO" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"aNP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"aNQ" = ( -/obj/structure/table, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/mesh, -/obj/item/stack/medical/suture, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"aNT" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"aNZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai_upload) -"aOc" = ( -/obj/machinery/holopad/secure, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"aOg" = ( -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"aOn" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdrnd"; - name = "Research and Development Shutters"; - dir = 8 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/lab) -"aOp" = ( -/obj/effect/turf_decal/siding/purple, -/obj/effect/turf_decal/trimline/brown/warning, -/obj/effect/turf_decal/trimline/brown/warning, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"aOA" = ( -/obj/machinery/vending/tool, -/obj/effect/turf_decal/delivery, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/storage_shared) -"aOG" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"aOH" = ( -/obj/structure/table, -/obj/item/clothing/mask/gas/sechailer{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/mask/gas/sechailer{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/assembly/flash/handheld{ - pixel_x = 6; - pixel_y = 13 - }, -/turf/open/floor/iron/dark, -/area/station/security/office) -"aOR" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"aOV" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/space, -/area/space/nearstation) -"aOX" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/space, -/area/space/nearstation) -"aOY" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"aPe" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/defibrillator_mount/directional/south, -/obj/machinery/light/directional/south, -/obj/structure/bed/pod{ - desc = "An old medical bed, just waiting for replacement with something up to date."; - name = "medical bed" - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"aPj" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/security/brig) -"aPk" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"aPm" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/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/white, -/area/station/medical/medbay/central) -"aPq" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Auxilliary Surgery" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"aPs" = ( -/obj/structure/displaycase/captain{ - pixel_y = 5 - }, -/obj/machinery/status_display/evac/directional/north, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"aPv" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"aPw" = ( -/obj/machinery/ai_slipper{ - uses = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"aPF" = ( -/obj/machinery/firealarm/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Starboard Primary Hallway - Auxiliary Tool Storage" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"aPO" = ( -/obj/machinery/light/directional/west, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"aPV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/lounge) -"aPX" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/server) -"aQE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"aQS" = ( -/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/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/department/science/central) -"aRo" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"aRt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"aRz" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"aRI" = ( -/turf/open/floor/circuit/green, -/area/station/science/robotics/mechbay) -"aRS" = ( -/obj/machinery/computer/security/telescreen/ce{ - dir = 1; - pixel_y = -30 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/pdapainter/engineering, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"aRV" = ( -/obj/machinery/porta_turret/ai{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"aRX" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"aSd" = ( -/obj/effect/turf_decal/tile/neutral{ - 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/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"aSe" = ( -/obj/machinery/duct, -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"aSk" = ( -/obj/machinery/light_switch/directional/east, -/obj/machinery/shower{ - dir = 8; - name = "emergency shower" - }, -/obj/structure/sign/warning/secure_area/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"aSm" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"aSD" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"aSG" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/space, -/area/space/nearstation) -"aST" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"aSZ" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor2"; - name = "Supply Dock Loading Door" - }, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"aTi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/destructive_scanner, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"aTD" = ( -/obj/machinery/vending/coffee, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"aTN" = ( -/obj/machinery/light/no_nightlight/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"aTP" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"aTQ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aTU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"aTV" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) -"aUf" = ( -/obj/structure/sign/warning/secure_area/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 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"aUj" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap{ - pixel_y = 2 - }, -/obj/item/stack/package_wrap{ - pixel_y = 5 - }, -/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/trimline/brown/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"aUk" = ( -/obj/effect/turf_decal/delivery, -/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 - }, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"aUm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"aUn" = ( -/obj/effect/spawner/random/structure/grille, -/turf/open/space/basic, -/area/space/nearstation) -"aUt" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"aUx" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) -"aUD" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"aUK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"aUP" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction, -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"aVd" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hop) -"aVk" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"aVl" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"aVn" = ( -/obj/structure/showcase/cyborg/old{ - pixel_y = 20 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"aVr" = ( -/obj/machinery/porta_turret/ai{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"aVX" = ( -/obj/machinery/door/airlock/hatch{ - name = "Telecomms Server Room" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, -/turf/open/floor/iron/dark, -/area/station/tcommsat/server) -"aVZ" = ( -/obj/structure/chair/office, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"aWa" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"aWb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"aWg" = ( -/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/botanist, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"aWl" = ( -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aWp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"aWB" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/item/clothing/head/festive, -/obj/effect/spawner/random/maintenance/two, -/obj/item/clothing/gloves/color/fyellow, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"aWC" = ( -/obj/structure/cable, -/obj/structure/rack, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/box/syringes, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"aWH" = ( -/obj/machinery/telecomms/bus/preset_one, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"aWK" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/turf/open/space, -/area/space/nearstation) -"aWN" = ( -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"aWO" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"aXa" = ( -/turf/closed/wall, -/area/station/security/prison/mess) -"aXm" = ( -/obj/machinery/power/shieldwallgen, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"aXq" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"aXt" = ( -/obj/structure/table/wood, -/obj/item/toy/mecha/honk{ - pixel_y = 12 - }, -/obj/item/toy/dummy, -/obj/item/lipstick/purple{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/lipstick/jade{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/lipstick/black, -/obj/structure/mirror/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/service/theater) -"aXE" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Service Maintenance" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "service-passthrough" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"aXF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/iron, -/area/station/security/brig) -"aXI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos) -"aXK" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"aXL" = ( -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"aYd" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison) -"aYw" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Three"; - space_dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "escape-pod-3" - }, -/turf/open/floor/plating, -/area/station/commons/fitness/recreation) -"aYx" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"aYJ" = ( -/obj/machinery/disposal/bin, -/obj/machinery/firealarm/directional/south{ - pixel_x = 26 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"aYN" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/station/solars/port/fore) -"aYT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aYX" = ( -/obj/machinery/portable_atmospherics/canister/plasma, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"aZq" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/white/smooth_edge, -/area/station/medical/cryo) -"aZr" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/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 = 7; - req_access = list("security") - }, -/obj/machinery/button/flasher{ - id = "secentranceflasher"; - name = "Brig Entrance Flasher"; - pixel_y = -3; - req_access = list("security") - }, -/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 = 7; - req_access = list("security") - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/security/warden) -"aZD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/line, -/turf/open/floor/iron/dark, -/area/station/service/cafeteria) -"aZL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"aZM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"aZR" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L2" - }, -/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) -"bae" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"bau" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"bax" = ( -/obj/effect/turf_decal/trimline/blue/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/white, -/area/station/medical/office) -"baE" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"baW" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"bbd" = ( -/obj/machinery/duct, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"bbi" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"bbk" = ( -/obj/structure/rack, -/obj/item/storage/box/firingpins{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/firingpins, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"bbp" = ( -/obj/structure/fluff/broken_flooring{ - icon_state = "singular" - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"bbt" = ( -/obj/structure/girder, -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"bbO" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "MiniSat Exterior - Starboard Aft"; - network = list("minisat") - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"bbT" = ( -/obj/structure/closet/crate, -/obj/item/stack/cable_coil, -/obj/item/crowbar, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"bcb" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/science/research) -"bcf" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"bcq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/bluespace_vendor/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"bcr" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 10 - }, -/obj/machinery/light/directional/south, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"bcQ" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"bcT" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "Bridge Blast Door" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/cyclelink_helper_multi{ - cycle_id = "bridge-right" - }, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"bdb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"bdy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/surgery/theatre) -"bdP" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"bec" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/evac/directional/east, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"bep" = ( -/obj/machinery/air_sensor/oxygen_tank, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"beq" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/r_wall, -/area/space/nearstation) -"beO" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"beQ" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/restraints/handcuffs, -/obj/machinery/light/small/directional/west, -/obj/machinery/light_switch/directional/west{ - pixel_y = -4 - }, -/obj/machinery/button/door/directional/west{ - id = "rdrnd"; - name = "Research and Development Containment Control"; - pixel_y = 6; - req_access = list("brig_entrance") - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"beZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/iron/white, -/area/station/science/research) -"bfa" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/plasma_input{ - dir = 1 - }, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"bfg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/surgery/aft) -"bfk" = ( -/obj/machinery/door/airlock/external{ - name = "Auxiliary Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "whiteship-dock" - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"bfl" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"bft" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"bfu" = ( -/obj/structure/rack, -/obj/effect/spawner/random/engineering/flashlight, -/turf/open/floor/plating, -/area/station/maintenance/port) -"bfF" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 9 - }, -/turf/open/floor/iron/checker, -/area/station/science/research) -"bfO" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"bgm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"bgn" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/space, -/area/space/nearstation) -"bgo" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/space, -/area/space/nearstation) -"bgs" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" - }, -/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/supermatter/room) -"bgt" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/chemistry) -"bgx" = ( -/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) -"bgS" = ( -/obj/machinery/firealarm/directional/north, -/obj/machinery/camera/directional/west{ - c_tag = "Medbay Clinic"; - network = list("ss13","medbay") - }, -/obj/item/radio/intercom/directional/west, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"bgV" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/engineering_guard, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"bhc" = ( -/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/effect/mapping_helpers/airlock/cyclelink_helper, -/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/command/ai_upload, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bhu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"bhy" = ( -/obj/item/radio/intercom/directional/north, -/obj/machinery/light/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/security/brig) -"bhM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"bhN" = ( -/obj/effect/turf_decal/trimline/red/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/white, -/area/station/security/prison) -"bhS" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/aft/greater) -"bhV" = ( -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"bii" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"bio" = ( -/obj/machinery/camera/directional/south{ - c_tag = "AI Chamber - Aft"; - network = list("aicore") - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"biq" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Visitation" - }, -/turf/open/floor/iron/white, -/area/station/security/prison/visit) -"bix" = ( -/obj/machinery/component_printer, -/turf/open/floor/iron/white, -/area/station/science/explab) -"biA" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"biI" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/table/reinforced, -/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/glass/rag, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"bje" = ( -/obj/structure/closet/emcloset, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"bjB" = ( -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = 8 - }, -/turf/closed/wall, -/area/station/security/courtroom) -"bjD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"bjH" = ( -/obj/machinery/modular_computer/console/preset/cargochat/engineering, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"bjJ" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/research) -"bjP" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"bjQ" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bkl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/warden) -"bkm" = ( -/obj/machinery/computer/scan_consolenew{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"bkF" = ( -/obj/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/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"bkM" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/engine, -/area/station/science/explab) -"bkO" = ( -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"bkT" = ( -/obj/structure/chair/office/light, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"bla" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/wood, -/area/station/service/library) -"blb" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/door/window/left/directional/north{ - dir = 8; - name = "MuleBot Access"; - req_access = list("shipping") - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Medbay" - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"blu" = ( -/obj/structure/table/wood, -/obj/machinery/light/small/directional/west, -/obj/item/radio/off{ - pixel_y = 4 - }, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"blw" = ( -/obj/structure/transit_tube/curved{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"blx" = ( -/turf/closed/wall, -/area/space/nearstation) -"bly" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/space, -/area/space/nearstation) -"blF" = ( -/obj/structure/showcase/cyborg/old{ - pixel_y = 20 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"blG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron, -/area/station/engineering/main) -"bmb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"bmz" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/button/door/directional/west{ - id = "Cabin4"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"bmB" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"bmV" = ( -/obj/machinery/door/airlock/command{ - name = "Emergency Escape" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/any/command/captain, -/turf/open/floor/plating, -/area/station/maintenance/central) -"bmX" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/sink{ - pixel_y = 29 - }, -/mob/living/simple_animal/mouse/brown/tom, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"bno" = ( -/obj/structure/transit_tube/diagonal, -/turf/open/space, -/area/space/nearstation) -"bnr" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/chair/sofa/corp/left{ - dir = 1 - }, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/office) -"bns" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Prison Cafeteria" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"bnv" = ( -/obj/structure/table, -/obj/item/folder/yellow{ - pixel_x = 3; - pixel_y = 1 - }, -/obj/item/folder/yellow{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/folder/yellow{ - pixel_x = 3; - pixel_y = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"bnw" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"bnx" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"bny" = ( -/obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat_interior"; - name = "Antechamber Turret Control"; - pixel_x = 30; - req_access = list("minisat") - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"bnA" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/cargo/storage) -"bnB" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bnD" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bnG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Private Channel" - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"bnH" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Chapel - Funeral Parlour" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/computer/pod/old/mass_driver_controller/chapelgun{ - pixel_x = 24 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"bnQ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"bnU" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/chair/office/light, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"bnX" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"boc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/belt/utility, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"bod" = ( -/obj/structure/closet, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"boD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/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/engineering/atmos) -"boL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"boT" = ( -/obj/structure/bookcase{ - name = "Holy Bookcase" - }, -/turf/open/floor/iron/chapel{ - dir = 4 - }, -/area/station/service/chapel/funeral) -"bpl" = ( -/obj/structure/noticeboard/directional/north{ - desc = "A memorial wall for pinning mementos upon."; - name = "memorial board" - }, -/obj/item/storage/book/bible, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/station/service/chapel/funeral) -"bpu" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) -"bpA" = ( -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/turf/open/floor/iron/dark, -/area/station/science/lab) -"bpD" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/wood, -/area/station/service/library) -"bpG" = ( -/obj/machinery/firealarm/directional/east, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"bpI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdgene"; - name = "Genetics Lab Shutters"; - dir = 1 - }, -/turf/open/floor/plating, -/area/station/science/genetics) -"bpK" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/medical/abandoned) -"bpY" = ( -/obj/machinery/light/small/directional/west, -/obj/item/clothing/mask/animal/horsehead, -/obj/structure/table/wood, -/obj/machinery/airalarm/directional/south, -/obj/item/clothing/mask/cigarette/pipe, -/obj/item/clothing/mask/fakemoustache, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/wood, -/area/station/service/theater) -"bqk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Hypertorus Fusion Reactor" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"bqv" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/turf_decal/siding/purple{ - dir = 6 - }, -/obj/machinery/airalarm/mixingchamber{ - dir = 4; - pixel_x = 25 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/burnchamber) -"bqy" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 6 - }, -/obj/structure/table, -/obj/item/clipboard, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"bqJ" = ( -/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/science/cytology) -"bqX" = ( -/turf/closed/wall/r_wall, -/area/station/medical/chemistry) -"brc" = ( -/obj/structure/table/wood, -/obj/item/paper, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"brA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/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) -"brE" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/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, -/area/station/engineering/main) -"brO" = ( -/obj/structure/transit_tube/diagonal/topleft, -/turf/open/space, -/area/space/nearstation) -"brY" = ( -/obj/machinery/camera/motion/directional/east{ - c_tag = "MiniSat Foyer"; - network = list("minisat") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"bsb" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bsd" = ( -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bse" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/research) -"bsj" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bsl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Dormitories" - }, -/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/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/dorms) -"bsu" = ( -/obj/effect/landmark/start/librarian, -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/service/library) -"bsz" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"bsZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"btt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"btx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"btB" = ( -/obj/machinery/power/terminal, -/obj/machinery/light/small/directional/east, -/obj/item/radio/intercom/directional/east, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"btH" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -4; - pixel_y = 12 - }, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 7; - pixel_y = 12 - }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"btI" = ( -/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/wood, -/area/station/commons/lounge) -"btK" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"btL" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/corner, -/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 = 6 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"buc" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"bug" = ( -/obj/structure/lattice, -/obj/item/tank/internals/oxygen/empty, -/turf/open/space/basic, -/area/space/nearstation) -"buj" = ( -/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/central) -"buk" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall, -/area/station/maintenance/starboard/fore) -"buw" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/orange, -/obj/item/restraints/handcuffs, -/obj/item/reagent_containers/spray/pepper, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"buy" = ( -/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/common/cryopods) -"buH" = ( -/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 = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"buL" = ( -/obj/structure/closet/secure_closet/exile, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/command/gateway) -"buN" = ( -/obj/structure/flora/bush/large/style_random, -/obj/structure/disposalpipe/segment, -/turf/open/floor/grass, -/area/station/medical/treatment_center) -"bvb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"bvN" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"bvY" = ( -/obj/machinery/power/tracker, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/station/solars/port/aft) -"bwb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/explab) -"bwm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/siding/blue/corner{ - dir = 4 - }, -/obj/machinery/pdapainter/research, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"bwr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/central) -"bwE" = ( -/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/iron/dark, -/area/station/engineering/supermatter/room) -"bwN" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"bxf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/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, -/area/station/hallway/primary/aft) -"bxj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/camera/directional/west{ - c_tag = "Science Hallway - Central"; - network = list("ss13","rd") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/science/research) -"bxm" = ( -/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/commons/locker) -"bxE" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Chemistry South"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"byf" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Science Genetics"; - network = list("ss13","rd") - }, -/obj/machinery/newscaster/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"byg" = ( -/obj/item/radio/intercom/directional/north, -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"byl" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"byw" = ( -/obj/effect/landmark/start/lawyer, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"byz" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"byP" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/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/white, -/area/station/science/xenobiology) -"byW" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"bzv" = ( -/obj/effect/spawner/random/entertainment/arcade, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison) -"bzG" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"bzH" = ( -/turf/closed/wall, -/area/station/cargo/sorting) -"bzI" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/theater) -"bzV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig" - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-entrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron, -/area/station/security/brig) -"bAA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/structure/steam_vent, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port) -"bAD" = ( -/obj/structure/dresser, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"bAI" = ( -/obj/structure/table/wood, -/obj/item/paper_bin/carbon{ - pixel_x = -10; - pixel_y = 4 - }, -/obj/item/paper_bin/carbon{ - pixel_x = -10; - pixel_y = 9 - }, -/obj/item/computer_hardware/hard_drive/portable/quartermaster, -/obj/item/computer_hardware/hard_drive/portable/quartermaster, -/obj/item/computer_hardware/hard_drive/portable/quartermaster, -/turf/open/floor/wood, -/area/station/cargo/qm) -"bAR" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L4" - }, -/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) -"bAT" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/turf/open/space, -/area/space/nearstation) -"bBa" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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/machinery/door/firedoor, -/obj/machinery/status_display/evac/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"bBb" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"bBo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"bBK" = ( -/obj/structure/table, -/obj/item/storage/dice, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison) -"bCc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"bCk" = ( -/obj/structure/chair/stool/directional/north, -/obj/machinery/light/directional/east, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/wood, -/area/station/commons/lounge) -"bCo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"bCt" = ( -/obj/machinery/status_display/evac/directional/north, -/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/secondary/command) -"bCE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"bCO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"bCT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"bDp" = ( -/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/secondary/exit/departure_lounge) -"bDq" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/transit_tube) -"bDA" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/station/engineering/supermatter) -"bDN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"bDR" = ( -/obj/machinery/airalarm/directional/east, -/turf/open/floor/wood, -/area/station/commons/lounge) -"bDS" = ( -/obj/structure/lattice, -/obj/structure/sign/warning/electric_shock/directional/south, -/turf/open/space/basic, -/area/space/nearstation) -"bDV" = ( -/obj/structure/window/reinforced, -/obj/item/storage/medkit/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/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 - }, -/obj/structure/table/reinforced, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"bDW" = ( -/turf/closed/wall, -/area/station/maintenance/department/engine) -"bEc" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/security/office) -"bEv" = ( -/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) -"bEL" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"bEQ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchen_counter"; - name = "Kitchen Counter Shutters"; - dir = 1 - }, -/obj/item/holosign_creator/robot_seat/restaurant, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/service/kitchen) -"bEU" = ( -/obj/structure/table, -/obj/item/hand_labeler, -/obj/item/camera, -/obj/item/camera_film, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron, -/area/station/commons/storage/art) -"bFr" = ( -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"bFA" = ( -/obj/structure/window/reinforced, -/obj/machinery/door/window/right/directional/east{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Fitness Ring" - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"bFN" = ( -/obj/machinery/chem_dispenser{ - layer = 2.7 - }, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/machinery/button/door/directional/north{ - id = "pharmacy_shutters"; - name = "pharmacy shutters control"; - pixel_x = 24; - req_access = list("medical") - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"bGj" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/airlock/security/glass{ - name = "Gear Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"bGt" = ( -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"bGC" = ( -/turf/closed/wall, -/area/station/hallway/primary/central) -"bGJ" = ( -/obj/structure/chair/stool/bar/directional/south, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/lounge) -"bGL" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"bGM" = ( -/obj/machinery/door/airlock/mining{ - name = "Mining Office" - }, -/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, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"bGV" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port) -"bHb" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/grass, -/area/station/science/research) -"bHm" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"bHr" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/warden) -"bHt" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/white/line, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"bHD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"bHE" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"bIa" = ( -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"bIo" = ( -/obj/machinery/light_switch/directional/west, -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/paper/guides/jobs/medical/morgue{ - pixel_x = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"bIw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs) -"bIH" = ( -/obj/structure/chair/comfy/beige, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/command/bridge) -"bIO" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"bIU" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"bJc" = ( -/obj/structure/table/wood, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"bJk" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"bJq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"bJQ" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 - }, -/obj/structure/sign/poster/official/random/directional/east, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"bJR" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/qm) -"bJT" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/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, -/turf/open/floor/grass, -/area/station/science/research) -"bJW" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=12-Central-Starboard"; - location = "11.1-Command-Starboard" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"bKj" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light_switch/directional/south, -/obj/effect/spawner/random/vending/colavend, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"bKv" = ( -/obj/item/pen, -/obj/structure/table/reinforced, -/obj/structure/reagent_dispensers/wall/peppertank/directional/east, -/obj/item/folder/red, -/obj/machinery/newscaster/directional/north, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/item/radio/off, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) -"bKz" = ( -/turf/closed/wall/mineral/plastitanium, -/area/station/security/execution/transfer) -"bKB" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"bKT" = ( -/obj/machinery/door/airlock/grunge{ - name = "Prison Forestry" - }, -/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, -/area/station/security/prison/garden) -"bLd" = ( -/turf/closed/wall, -/area/station/maintenance/starboard/aft) -"bLg" = ( -/obj/structure/fireaxecabinet/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Atmospherics - Port" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light/no_nightlight/directional/west, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos) -"bLj" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/effect/turf_decal/trimline/brown/filled/warning, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"bLx" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/plasteel{ - amount = 15 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 5; - pixel_y = 7 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"bLQ" = ( -/turf/closed/wall, -/area/station/medical/coldroom) -"bMa" = ( -/obj/structure/disposaloutlet{ - dir = 4; - name = "Cargo Deliveries" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/green{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"bMp" = ( -/obj/machinery/vending/wardrobe/bar_wardrobe, -/obj/item/radio/intercom/directional/east, -/obj/machinery/light/small/directional/east, -/turf/open/floor/wood, -/area/station/service/bar) -"bMA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/main) -"bMC" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/thermomachine/heater/on{ - dir = 8 - }, -/turf/open/floor/iron/checker, -/area/station/engineering/atmos/pumproom) -"bMM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "executionfireblast" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"bMY" = ( -/turf/closed/wall, -/area/station/medical/office) -"bNf" = ( -/obj/structure/closet/secure_closet/bar, -/obj/machinery/light/small/directional/west, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/wood, -/area/station/service/bar) -"bNh" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/book/manual/wiki/barman_recipes{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/structure/table, -/turf/open/floor/iron, -/area/station/service/bar) -"bNk" = ( -/obj/machinery/photocopier, -/obj/machinery/camera/directional/east{ - c_tag = "Law Office" - }, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"bNl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"bNn" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"bNE" = ( -/obj/machinery/light/directional/east, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"bNP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"bNQ" = ( -/obj/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/hallway/primary/port) -"bNU" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/closet/crate/internals, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"bOk" = ( -/obj/machinery/light/directional/west, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/blue, -/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) -"bOm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"bOr" = ( -/obj/structure/lattice/catwalk, -/obj/item/stack/rods, -/turf/open/space/basic, -/area/station/solars/port/fore) -"bOA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"bOH" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"bPi" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/lab) -"bPk" = ( -/obj/structure/disposalpipe/segment{ - 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, -/area/station/security/brig) -"bPu" = ( -/obj/structure/table, -/obj/machinery/cell_charger{ - pixel_y = 5 - }, -/obj/item/stack/cable_coil, -/obj/item/multitool, -/obj/item/stock_parts/cell/high, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"bPB" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall, -/area/station/maintenance/department/science/xenobiology) -"bPM" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"bQj" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/engine) -"bQk" = ( -/obj/item/bodypart/l_arm, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"bQs" = ( -/obj/structure/flora/bush/flowers_pp/style_random, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/structure/flora/bush/fullgrass/style_random, -/obj/machinery/light/directional/east, -/turf/open/floor/grass, -/area/station/science/ordnance/office) -"bQM" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"bQQ" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/machinery/smartfridge/extract/preloaded, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"bRb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/scientist, -/turf/open/floor/engine, -/area/station/science/explab) -"bRG" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/commons/toilet/auxiliary) -"bRH" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) -"bRT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/no_nightlight/directional/north, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"bRU" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"bSb" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"bSj" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 4 - }, -/obj/item/paper/fluff/ids_for_dummies, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"bSm" = ( -/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/port/fore) -"bSu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"bSY" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"bTj" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"bTl" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/stool/bar/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/lounge) -"bTn" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/medical/abandoned) -"bTq" = ( -/obj/machinery/camera/motion/directional/south{ - c_tag = "ai_upload Chamber - Port"; - network = list("aiupload") - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"bTP" = ( -/obj/machinery/modular_computer/console/preset/research{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"bTQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "roboticsprivacy"; - name = "Robotics Shutters"; - dir = 8 - }, -/turf/open/floor/plating, -/area/station/science/robotics/lab) -"bUc" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"bUm" = ( -/obj/structure/closet/crate, -/obj/machinery/light/small/directional/east, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"bUn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/window/right/directional/south{ - dir = 8; - name = "Jim Norton's Quebecois Coffee"; - req_one_access_txt = list("service","maint_tunnels") - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/line, -/turf/open/floor/iron/dark, -/area/station/service/cafeteria) -"bUC" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/engine) -"bUO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/command/gateway) -"bUT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/circuit/green, -/area/station/science/robotics/mechbay) -"bVk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/storage/belt/utility, -/obj/item/storage/toolbox/electrical, -/obj/item/radio, -/obj/item/hand_labeler, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"bVs" = ( -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"bVz" = ( -/obj/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) -"bVB" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=9.3-Escape-3"; - location = "9.2-Escape-2" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"bVF" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"bVI" = ( -/obj/item/kirbyplants, -/obj/machinery/vending/wallmed/directional/south, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"bVK" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/cyclelink_helper{ - dir = 8 - }, -/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/medical/virology, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"bWt" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"bWM" = ( -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"bWP" = ( -/obj/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/wood, -/area/station/security/office) -"bXk" = ( -/obj/machinery/telecomms/server/presets/command, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"bXn" = ( -/obj/machinery/atmospherics/components/trinary/filter, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"bXs" = ( -/obj/structure/table/glass, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/structure/cable, -/obj/machinery/light_switch/directional/west, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"bXO" = ( -/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) -"bXT" = ( -/obj/machinery/camera/autoname{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/landmark/start/engineering_guard, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"bXX" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - 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 = 6 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"bYm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"bYo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics - Starboard" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "atmoshfr"; - name = "Radiation Shutters Control"; - req_access = list("atmospherics") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"bYp" = ( -/obj/machinery/portable_atmospherics/canister/plasma, -/turf/open/floor/plating, -/area/station/engineering/main) -"bYz" = ( -/turf/open/floor/circuit, -/area/station/maintenance/port/aft) -"bZq" = ( -/obj/machinery/seed_extractor, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"bZB" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"bZW" = ( -/obj/structure/light_construct/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"bZY" = ( -/obj/machinery/firealarm/directional/north, -/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, -/area/station/hallway/primary/port) -"caf" = ( -/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/white, -/area/station/science/xenobiology) -"can" = ( -/obj/effect/turf_decal/tile/neutral/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/dark, -/area/station/engineering/storage/tech) -"cao" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"caC" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/turf/open/floor/iron/kitchen_coldroom, -/area/station/medical/coldroom) -"cbg" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/explab) -"cbi" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Aft Primary Hallway - Fore" - }, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"cbz" = ( -/turf/closed/wall, -/area/station/cargo/storage) -"cce" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 4 - }, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"ccD" = ( -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/station/medical/virology) -"ccK" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ccV" = ( -/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/medbay/central) -"cdp" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/obj/effect/spawner/random/trash/soap{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"cdq" = ( -/obj/machinery/mech_bay_recharge_port{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/plating, -/area/station/science/robotics/mechbay) -"cdv" = ( -/obj/machinery/door/airlock{ - id_tag = "AuxToilet1"; - name = "Unit 1" - }, -/turf/open/floor/iron, -/area/station/commons/toilet/auxiliary) -"cdC" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"cdX" = ( -/turf/closed/wall, -/area/station/engineering/storage/tech) -"cdY" = ( -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/obj/machinery/autolathe, -/turf/open/floor/iron, -/area/station/cargo/storage) -"cem" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"ceo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Cold Loop to Gas" - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"ces" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/machinery/processor/slime, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"cez" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/white/line{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"ceD" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"ceF" = ( -/obj/machinery/blackbox_recorder, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"ceM" = ( -/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, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"ceP" = ( -/obj/structure/transit_tube/curved/flipped{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"ceZ" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"cfb" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"cfe" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=8-Central-to-Aft"; - location = "7.5-Starboard-Aft-Corner" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"cfi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/station/commons/dorms) -"cfv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"cgi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/prison) -"cgF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"cgJ" = ( -/obj/structure/closet/crate/freezer/blood, -/obj/effect/turf_decal/siding/white, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/kitchen_coldroom, -/area/station/medical/coldroom) -"cgL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"cgP" = ( -/obj/machinery/air_sensor/ordnance_burn_chamber, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"cgR" = ( -/obj/machinery/chem_master/condimaster{ - name = "CondiMaster Neo" - }, -/obj/machinery/newscaster/directional/south, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"cha" = ( -/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) -"chb" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"chH" = ( -/obj/structure/chair/stool/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/prison) -"chV" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"chZ" = ( -/obj/structure/sign/directions/engineering{ - dir = 4 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = 8 - }, -/obj/structure/sign/directions/command{ - dir = 8; - pixel_y = -8 - }, -/turf/closed/wall, -/area/station/maintenance/central) -"cii" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"ciq" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"ciG" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/courtroom) -"ciU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cji" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Prison Cell Block 2"; - network = list("ss13","prison") - }, -/turf/open/floor/iron/white, -/area/station/security/prison) -"cjl" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Air to Mix" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cjP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"cke" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/service/salon) -"ckj" = ( -/obj/effect/landmark/event_spawn, -/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) -"ckE" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"ckU" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"ckX" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"clj" = ( -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"clo" = ( -/obj/machinery/door/airlock/security{ - name = "Court Cell" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark, -/area/station/security/holding_cell) -"clp" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/maintenance/port) -"clq" = ( -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"clA" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall, -/area/station/cargo/warehouse) -"clE" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"clQ" = ( -/turf/closed/wall, -/area/station/command/teleporter) -"cml" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"cmw" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"cmB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/garden) -"cmC" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"cmH" = ( -/obj/item/bodypart/l_leg, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"cnc" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/medical/psychology) -"cnk" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"cnn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/iron, -/area/station/security/prison) -"cnu" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/science/explab) -"cnv" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"cnA" = ( -/obj/machinery/status_display/evac/directional/north, -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"cnF" = ( -/obj/structure/cable, -/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/solar_assembly, -/obj/item/stack/sheet/glass/fifty, -/obj/structure/closet/crate/engineering/electrical, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"cnK" = ( -/turf/closed/wall, -/area/station/engineering/main) -"coc" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"coe" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"cok" = ( -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"coJ" = ( -/obj/structure/chair/stool/directional/north, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"coX" = ( -/obj/machinery/light/no_nightlight/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"cpi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/ai_monitored/command/nuke_storage) -"cpj" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/button/door/directional/east{ - id = "bridge blast"; - name = "Bridge Access Blast Door Control"; - req_access = list("command") - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"cpm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "pharmacy_shutters"; - name = "Pharmacy Shutters"; - dir = 4 - }, -/turf/open/floor/plating, -/area/station/medical/pharmacy) -"cpn" = ( -/obj/structure/table, -/obj/machinery/newscaster/directional/north, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/pen, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"cpp" = ( -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"cps" = ( -/turf/open/floor/iron, -/area/station/engineering/atmospherics_engine) -"cpB" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching Prison Wing holding areas."; - dir = 1; - name = "Prison Monitor"; - network = list("prison"); - pixel_y = -30 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"cpH" = ( -/obj/structure/lattice/catwalk, -/obj/structure/marker_beacon/yellow, -/turf/open/space/basic, -/area/space/nearstation) -"cpR" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"cpU" = ( -/obj/structure/girder, -/obj/effect/spawner/random/structure/grille, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"cpW" = ( -/obj/effect/turf_decal/trimline/purple/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"cqk" = ( -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/station/solars/port/aft) -"cqm" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"cqp" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/spawner/random/structure/closet_private, -/obj/item/clothing/under/suit/tan, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"cqv" = ( -/obj/effect/spawner/random/engineering/atmospherics_portable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"cqw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"cqx" = ( -/obj/structure/window/reinforced, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"cqD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) -"cqI" = ( -/obj/effect/landmark/start/bartender, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/service/bar) -"cqL" = ( -/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/aft/lesser) -"cqN" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"crg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/obj/machinery/air_sensor/incinerator_tank, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"crk" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"crl" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/item/radio/intercom/prison/directional/west, -/turf/open/floor/iron/white, -/area/station/security/prison) -"crr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"crL" = ( -/obj/machinery/washing_machine, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms) -"crT" = ( -/obj/structure/closet/emcloset, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"csb" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/white, -/area/station/security/prison) -"cst" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Foyer" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, -/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"csz" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/table, -/obj/item/raw_anomaly_core/random{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/raw_anomaly_core/random{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/raw_anomaly_core/random, -/obj/effect/turf_decal/stripes/white/line, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"csQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Law Office" - }, -/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/service/lawyer, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"csS" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 8 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/requests_console/directional/east{ - announcementConsole = 1; - department = "Captain's Desk"; - departmentType = 5; - name = "Captain's Requests Console" - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"csY" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 24 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"ctn" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"ctq" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"ctL" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"ctN" = ( -/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/aft) -"ctO" = ( -/obj/structure/disposalpipe/segment, -/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/white, -/area/station/medical/medbay/central) -"cuc" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/newscaster/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"cur" = ( -/turf/open/floor/plating, -/area/station/maintenance/fore) -"cuw" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/shower{ - pixel_y = 12 - }, -/obj/structure/curtain, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/captain/private) -"cuB" = ( -/obj/structure/reflector/box/anchored{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"cuR" = ( -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"cuY" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/obj/item/melee/hammer, -/obj/item/melee/hammer, -/obj/item/melee/hammer, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"cuZ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"cve" = ( -/obj/machinery/biogenerator, -/turf/closed/wall, -/area/station/hallway/secondary/service) -"cvm" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/robotics/lab) -"cvn" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/engine, -/area/station/science/cytology) -"cvt" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "starboard-bow-airlock" - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"cvE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"cvF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"cvL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Locker Room" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/navigate_destination, -/turf/open/floor/iron, -/area/station/commons/locker) -"cvO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/obj/machinery/shower{ - pixel_y = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology/hallway) -"cvY" = ( -/turf/open/floor/plating/airless, -/area/station/solars/port/aft) -"cwa" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/reagent_containers/glass/bottle/chloralhydrate, -/obj/item/reagent_containers/glass/bottle/toxin{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/glass/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/machinery/airalarm/directional/west, -/obj/machinery/button/ignition{ - id = "executionburn"; - name = "Justice Ignition Switch"; - pixel_x = -25; - pixel_y = 36 - }, -/obj/item/assembly/signaler{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/machinery/button/flasher{ - id = "justiceflash"; - name = "Justice Flash Control"; - pixel_x = -36; - pixel_y = 36; - req_access = list("security") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/button/door/directional/west{ - id = "executionfireblast"; - name = "Justice Area Lockdown"; - pixel_y = 24; - req_access = list("brig") - }, -/obj/machinery/button/door/directional/west{ - id = "SecJusticeChamber"; - name = "Justice Vent Control"; - pixel_x = -36; - pixel_y = 24; - req_access = list("armory") - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"cwb" = ( -/obj/structure/closet/crate/wooden/toy, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/wood, -/area/station/service/theater) -"cwc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/urinal/directional/west, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/toilet/auxiliary) -"cwq" = ( -/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/iron, -/area/station/science/robotics/lab) -"cwu" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/structure/table/reinforced/rglass, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/item/lipstick/random, -/obj/item/reagent_containers/spray/quantum_hair_dye{ - pixel_x = 6 - }, -/turf/open/floor/iron, -/area/service/salon) -"cwF" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/structure/mirror/directional/east, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"cwM" = ( -/obj/structure/chair/stool/directional/east, -/obj/effect/turf_decal/trimline/red/warning{ - dir = 4 - }, -/obj/machinery/flasher/directional/north{ - id = "visitorflash" - }, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"cwP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"cwS" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"cwW" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/entertainment/cigar, -/turf/open/floor/wood, -/area/station/commons/lounge) -"cwX" = ( -/obj/machinery/door/window/brigdoor{ - name = "Command Desk"; - req_access = list("command") - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"cxi" = ( -/obj/machinery/camera/directional/north, -/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/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, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"cxj" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"cxl" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/turf/open/space, -/area/space/nearstation) -"cxq" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/machinery/button/door/directional/west{ - id = "prison release"; - name = "Labor Camp Shuttle Lockdown"; - req_access = list("brig") - }, -/turf/open/floor/iron, -/area/station/security/brig) -"cxt" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/white, -/area/station/medical/office) -"cxz" = ( -/turf/closed/wall, -/area/station/science/ordnance/bomb) -"cxU" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"cyk" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/telescreen/entertainment/directional/west, -/obj/effect/decal/cleanable/cobweb, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/station/service/library) -"cyG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Aft Primary Hallway" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white/side{ - dir = 4 - }, -/area/station/science/lobby) -"cyR" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/item/chair, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"cyS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"cyU" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/chair/sofa/bench/left{ - 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/service/salon) -"cyW" = ( -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/engineering/atmos) -"cyX" = ( -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/airlock/medical{ - name = "Unfinished Room" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"czs" = ( -/obj/structure/easel, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"czG" = ( -/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, -/area/station/commons/locker) -"czL" = ( -/obj/effect/spawner/random/trash/garbage, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"czP" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/item/poster/random_contraband, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"czQ" = ( -/obj/machinery/telecomms/server/presets/service, -/obj/machinery/light/small/directional/south, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"czT" = ( -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"cAf" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"cAm" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"cAn" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"cAt" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/machinery/requests_console/directional/east{ - department = "Atmospherics"; - departmentType = 3; - name = "Atmospherics Requests Console" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cAw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/camera/directional/north{ - c_tag = "Science Lobby"; - network = list("ss13","rd") - }, -/obj/machinery/vending/modularpc, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"cAB" = ( -/obj/machinery/light/directional/west, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"cAG" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"cAR" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge"; - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"cBc" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"cBd" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cBf" = ( -/turf/closed/wall, -/area/station/commons/locker) -"cBg" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"cBw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"cBy" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/locker) -"cBJ" = ( -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"cBW" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/item/kirbyplants/potty, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/entertainment/directional/south, -/turf/open/floor/iron, -/area/station/commons/lounge) -"cCs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/belt/utility/full, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"cCM" = ( -/obj/structure/lattice/catwalk, -/obj/item/reagent_containers/food/drinks/bottle/rum{ - pixel_x = -7; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/colocup{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/colocup{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/clothing/mask/cigarette/rollie/cannabis{ - pixel_y = -3 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cCN" = ( -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/machinery/airalarm/directional/west, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"cCR" = ( -/obj/item/radio/intercom/directional/east, -/obj/structure/kitchenspike, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/service/kitchen/coldroom) -"cDb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"cDA" = ( -/obj/machinery/dna_scannernew, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"cDD" = ( -/obj/structure/lattice/catwalk, -/obj/item/instrument/guitar, -/turf/open/space/basic, -/area/space/nearstation) -"cDM" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 9 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/pen{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/machinery/light_switch/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"cDP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/engineering/flashlight, -/turf/open/floor/plating, -/area/station/maintenance/central) -"cDQ" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"cEv" = ( -/obj/item/food/grown/wheat, -/obj/item/food/grown/watermelon, -/obj/item/food/grown/citrus/orange, -/obj/item/food/grown/grapes, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/structure/table/glass, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"cFa" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"cFe" = ( -/obj/machinery/oven, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"cFp" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/commons/storage/primary) -"cFu" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter/room) -"cFU" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/reagentgrinder{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/shaker{ - pixel_x = -6 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Bar - Counter" - }, -/obj/structure/table, -/obj/machinery/requests_console/directional/south{ - department = "Bar"; - departmentType = 2; - name = "Bar Requests Console" - }, -/turf/open/floor/iron, -/area/station/service/bar) -"cGc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/firealarm/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Arrivals - Aft Arm - Bay Doors" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"cGj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"cGu" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/brig) -"cGS" = ( -/obj/machinery/airalarm/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Atmospherics - Port-Aft" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light/no_nightlight/directional/west, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos) -"cGV" = ( -/obj/machinery/air_sensor/plasma_tank, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"cGY" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"cHb" = ( -/obj/structure/filingcabinet{ - pixel_x = 3 - }, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"cHj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall, -/area/station/commons/toilet/auxiliary) -"cHE" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"cHN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/customs_agent, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"cHQ" = ( -/obj/machinery/computer/security/mining{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"cIM" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cIP" = ( -/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/aft/greater) -"cIS" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"cIU" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/wood, -/area/station/service/library) -"cIW" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/effect/spawner/random/maintenance/three, -/turf/open/floor/plating, -/area/station/maintenance/port) -"cJj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/brig) -"cJm" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"cJv" = ( -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/machinery/chem_heater/withbuffer, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"cJx" = ( -/obj/machinery/microwave{ - pixel_y = 4 - }, -/obj/structure/table/wood, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"cJL" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall/r_wall, -/area/station/medical/chemistry) -"cJQ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Quartermaster Maintenance" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/qm, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"cKd" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"cKm" = ( -/obj/structure/training_machine, -/turf/open/floor/engine, -/area/station/science/explab) -"cKn" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/station/solars/starboard/aft) -"cKx" = ( -/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) -"cKC" = ( -/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, -/area/station/commons/dorms) -"cLe" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/commons/locker) -"cLj" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"cLk" = ( -/obj/effect/turf_decal/siding/purple/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"cLl" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"cLt" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Atmospherics Tank - Air" - }, -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"cLx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/service/library) -"cLN" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"cMb" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port) -"cMs" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/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, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"cML" = ( -/obj/structure/cable, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/fore) -"cMX" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/door/airlock/medical{ - name = "Psychology" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/medical/psychology, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"cNk" = ( -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"cNm" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"cNA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Bar" - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/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/lounge) -"cNC" = ( -/obj/structure/table/wood, -/obj/item/paicard, -/turf/open/floor/wood, -/area/station/service/library) -"cNS" = ( -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"cOa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"cOl" = ( -/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, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"cOq" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/commons/toilet/auxiliary) -"cOr" = ( -/obj/structure/closet/secure_closet/warden, -/obj/item/gun/energy/laser, -/obj/effect/turf_decal/trimline/dark_red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/warden) -"cOs" = ( -/obj/effect/landmark/start/station_engineer, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"cOB" = ( -/obj/structure/table, -/obj/item/paper_bin/bundlenatural{ - pixel_x = -19; - pixel_y = 5 - }, -/obj/item/paper_bin/bundlenatural{ - pixel_x = -7; - pixel_y = 5 - }, -/obj/item/paper_bin/bundlenatural{ - pixel_x = -19; - pixel_y = 9 - }, -/obj/item/paperplane{ - pixel_x = 9 - }, -/obj/item/paperplane{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"cOQ" = ( -/turf/open/floor/iron/white, -/area/station/science/research) -"cOT" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/ordnance_burn_chamber_input{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"cPQ" = ( -/obj/structure/rack, -/obj/item/clothing/gloves/color/fyellow, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"cPT" = ( -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"cQc" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Space Bridge Access" - }, -/obj/machinery/button/door/directional/north{ - id = "supplybridge"; - name = "Shuttle Bay Space Bridge Control" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"cQd" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"cQr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Science Research"; - network = list("ss13","rd") - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/science/lab) -"cQQ" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cRj" = ( -/obj/machinery/vending/hydronutrients, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"cRo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"cRq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"cRC" = ( -/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/machinery/light_switch/directional/south, -/turf/open/floor/wood, -/area/station/service/theater) -"cRW" = ( -/obj/machinery/light/directional/south, -/obj/machinery/button/door/directional/south{ - id = "roboticsprivacy2"; - name = "Robotics Privacy Control"; - req_access = list("robotics") - }, -/obj/item/mod/core/standard{ - pixel_x = -4 - }, -/obj/item/mod/core/standard{ - pixel_x = 4 - }, -/obj/item/mod/core/standard{ - pixel_y = 4 - }, -/obj/structure/closet/crate/science{ - name = "MOD core crate" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"cSg" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"cSk" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod One"; - space_dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"cSm" = ( -/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/tile/green/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"cSq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/computer/mech_bay_power_console{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"cSt" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cSv" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Departure Lounge Airlock"; - space_dir = 2 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"cSF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/newscaster/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/hallway/primary/port) -"cTj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"cTk" = ( -/obj/machinery/camera/motion/directional/south{ - active_power_usage = 0; - c_tag = "Armory - External"; - network = list("security"); - use_power = 0 - }, -/turf/open/space/basic, -/area/space) -"cTl" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_y = 6 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/security/execution/transfer) -"cTp" = ( -/obj/machinery/space_heater, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"cTq" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 10 - }, -/turf/open/floor/engine, -/area/station/science/cytology) -"cTC" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"cTQ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Disposal Conveyor Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"cTU" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/ai_monitored/command/nuke_storage) -"cUd" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"cUf" = ( -/obj/effect/turf_decal/trimline/red/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/white, -/area/station/security/prison) -"cUo" = ( -/obj/effect/turf_decal/stripes{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"cUw" = ( -/obj/machinery/power/apc/auto_name/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, -/area/station/security/execution/transfer) -"cUD" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"cUH" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"cUI" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "MiniSat Exterior - Space Access"; - network = list("minisat") - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"cUP" = ( -/obj/effect/spawner/random/structure/closet_private, -/obj/item/clothing/under/misc/assistantformal, -/turf/open/floor/wood, -/area/station/commons/dorms) -"cUX" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/light/small/directional/west, -/obj/item/paper/fluff/gateway, -/obj/item/coin/plasma, -/obj/item/melee/chainofcommand, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"cUZ" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 5; - height = 7; - id = "supply_home"; - name = "Cargo Bay"; - width = 12 - }, -/turf/open/space/basic, -/area/space) -"cVj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/turf/open/floor/plating, -/area/station/engineering/atmos/storage/gas) -"cVn" = ( -/obj/effect/spawner/random/vending/snackvend, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"cVx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"cVJ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/station/security/checkpoint/engineering) -"cVL" = ( -/obj/effect/spawner/random/engineering/atmospherics_portable, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"cVP" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"cWr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/service/library) -"cWs" = ( -/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/library) -"cWu" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"cWy" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Distro to Waste" - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/pumproom) -"cWI" = ( -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"cWK" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/construction/mining/aux_base) -"cWM" = ( -/obj/machinery/door/airlock/external{ - name = "Construction Zone" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/all/engineering/aux_base, -/turf/open/floor/plating, -/area/station/construction/mining/aux_base) -"cWT" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"cWW" = ( -/obj/machinery/mass_driver/chapelgun, -/obj/structure/sign/warning/vacuum/external/directional/north, -/obj/machinery/light/small/directional/north, -/obj/item/gps, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"cXc" = ( -/obj/structure/table, -/obj/item/food/grown/poppy/lily, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"cXw" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"cXz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/office) -"cXP" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"cXW" = ( -/turf/open/floor/carpet/green, -/area/station/maintenance/port/aft) -"cYc" = ( -/obj/item/computer_hardware/hard_drive/portable/engineering, -/obj/item/computer_hardware/hard_drive/portable/engineering, -/obj/item/computer_hardware/hard_drive/portable/engineering, -/obj/structure/table/reinforced, -/obj/item/computer_hardware/hard_drive/portable/atmos, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"cYd" = ( -/obj/machinery/airalarm/directional/south, -/obj/machinery/light/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Brig - Hallway - Starboard" - }, -/turf/open/floor/iron, -/area/station/security/brig) -"cYg" = ( -/obj/effect/turf_decal/bot_white, -/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) -"cYt" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/siding/white, -/obj/effect/turf_decal/trimline/brown/warning, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/medbay/lobby) -"cYJ" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 9; - height = 25; - id = "emergency_home"; - name = "MetaStation emergency evac bay"; - width = 29 - }, -/turf/open/space/basic, -/area/space) -"cYL" = ( -/obj/machinery/door/poddoor/shutters{ - id = "aux_base_shutters"; - name = "Auxiliary Base Shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"cYQ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"cYU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/curtain/cloth/fancy/mechanical{ - id = "barbershopcurtains" - }, -/turf/open/floor/plating, -/area/service/salon) -"cYX" = ( -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/security/prison) -"cYY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/east, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port) -"cZm" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"cZq" = ( -/obj/structure/chair/sofa/bench/right, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/secondary/entry) -"cZu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"cZw" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/storage/gas) -"cZF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"cZK" = ( -/turf/closed/wall/r_wall, -/area/station/science/robotics/mechbay) -"cZL" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"cZN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/space_heater, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/storage/gas) -"cZW" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/north, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/transit_tube/horizontal, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"dac" = ( -/obj/effect/turf_decal/stripes/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/white, -/area/station/science/xenobiology) -"daq" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"das" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/engine, -/area/station/engineering/atmospherics_engine) -"daC" = ( -/turf/open/floor/wood, -/area/station/service/lawoffice) -"daO" = ( -/obj/item/grenade/barrier{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/grenade/barrier, -/obj/item/grenade/barrier{ - pixel_x = 3; - pixel_y = -1 - }, -/obj/item/grenade/barrier{ - pixel_x = 6; - pixel_y = -2 - }, -/obj/structure/rack, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"daS" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - 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/kitchen_coldroom/freezerfloor, -/area/station/service/kitchen/coldroom) -"daT" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"dbd" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/machinery/button/door/directional/east{ - id = "rdrnd"; - name = "Primary Research Shutters Control"; - pixel_y = 6; - req_access = list("science") - }, -/obj/machinery/button/door/directional/east{ - id = "rndlab2"; - name = "Secondary Research Shutters Control"; - pixel_y = -6; - req_access = list("science") - }, -/turf/open/floor/iron, -/area/station/science/lab) -"dbh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"dbj" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"dbk" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"dbm" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/food_or_drink/booze{ - spawn_random_offset = 1 - }, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"dbo" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"dbt" = ( -/obj/machinery/door/poddoor/shutters{ - id = "visitation"; - name = "Visitation Shutters"; - dir = 4 - }, -/obj/machinery/door/window/right/directional/south{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"dbH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/wood, -/area/station/service/theater) -"dbX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"dca" = ( -/turf/open/floor/iron/white, -/area/station/medical/office) -"dce" = ( -/obj/structure/chair/wood/wings{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/carpet, -/area/station/service/theater) -"dcF" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/commons/locker) -"dcJ" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/frame/computer{ - anchored = 1; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine/vacuum, -/area/space/nearstation) -"dcN" = ( -/obj/structure/bed, -/obj/item/bedsheet/red, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/airalarm/directional/east, -/obj/machinery/flasher/directional/north{ - id = "IsolationFlash" - }, -/turf/open/floor/iron/white, -/area/station/security/prison/safe) -"dcY" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/bodycontainer/morgue{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/white/full, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"ddc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"ddg" = ( -/obj/machinery/cryopod{ - dir = 8 - }, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/common/cryopods) -"ddl" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/storage/box/lights/mixed, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"ddm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/bridge) -"ddq" = ( -/obj/structure/showcase/cyborg/old{ - pixel_y = 20 - }, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"ddr" = ( -/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/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"ddu" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"ddK" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"ddO" = ( -/obj/effect/turf_decal/trimline/green/filled/corner, -/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) -"ddP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/assembly/timer, -/obj/effect/spawner/random/maintenance, -/obj/item/storage/box/shipping, -/obj/item/storage/toolbox/mechanical, -/obj/item/radio{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/wrench, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"deb" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"ded" = ( -/obj/machinery/deepfryer, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 5 - }, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"deg" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"deD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"deG" = ( -/obj/machinery/vending/wardrobe/law_wardrobe, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"deO" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"deU" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor"; - name = "Supply Dock Loading Door" - }, -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"deX" = ( -/obj/machinery/firealarm/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/service/theater) -"deY" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/station/science/ordnance/burnchamber) -"dfh" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"dfj" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"dfk" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/storage) -"dfl" = ( -/obj/machinery/computer/bank_machine, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"dfp" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/bar) -"dfz" = ( -/obj/structure/sign/warning/vacuum/external/directional/south, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"dfB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/security/prison) -"dfC" = ( -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"dfE" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Brig - Hallway - Entrance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/brig) -"dfL" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/rack, -/obj/machinery/camera/directional/south{ - c_tag = "Brig - Infirmary" - }, -/obj/item/clothing/under/rank/medical/scrubs/purple, -/obj/item/storage/medkit/regular, -/obj/item/healthanalyzer{ - pixel_y = -2 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) -"dfO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/spawner/random/trash/mess, -/obj/structure/chair/stool/bar/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/port) -"dfP" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 10 - }, -/obj/machinery/disposal/bin{ - name = "Jim Norton's Quebecois Coffee disposal unit" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/wood, -/area/station/service/cafeteria) -"dfR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/reagent_dispensers/plumbed, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"dfS" = ( -/obj/effect/turf_decal/box/corners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"dfU" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"dgc" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"dgd" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space, -/area/space/nearstation) -"dge" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space, -/area/space/nearstation) -"dgf" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/turf/open/space, -/area/space/nearstation) -"dgg" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/turf/open/space, -/area/space/nearstation) -"dgh" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/turf/open/space, -/area/space/nearstation) -"dgj" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/turf/open/space, -/area/space/nearstation) -"dgk" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"dgm" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space, -/area/space/nearstation) -"dgt" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"dgu" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space, -/area/space/nearstation) -"dgv" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/turf/open/space, -/area/space/nearstation) -"dgz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/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/xenobiology) -"dgB" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/turf/open/space, -/area/space/nearstation) -"dgD" = ( -/turf/closed/wall, -/area/station/security/range) -"dgS" = ( -/obj/machinery/rnd/production/techfab/department/security, -/turf/open/floor/iron/dark, -/area/station/security/office) -"dhb" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/item/stack/rods/fifty, -/obj/effect/spawner/random/trash/janitor_supplies, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"dhi" = ( -/obj/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/engineering/main) -"dho" = ( -/turf/closed/wall/r_wall, -/area/station/command/bridge) -"dhp" = ( -/obj/machinery/modular_computer/console/preset/engineering, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"dhs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"dhu" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"dhw" = ( -/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 - }, -/turf/open/floor/iron, -/area/station/engineering/atmospherics_engine) -"dhy" = ( -/obj/structure/chair, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"dhF" = ( -/obj/machinery/smartfridge/organ, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"dhN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/range) -"dhP" = ( -/obj/effect/landmark/start/atmospheric_technician, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"dhU" = ( -/obj/effect/turf_decal/tile/neutral, -/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/hallway/primary/central) -"dhW" = ( -/obj/structure/table/reinforced, -/obj/item/kitchen/fork/plastic, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"dhX" = ( -/obj/structure/disposalpipe/segment{ - 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, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"dia" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Chemistry West"; - network = list("ss13","medbay") - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"diq" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/left/directional/south{ - dir = 8; - name = "Maximum Security Test Chamber"; - req_access = list("xenobiology") - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"diC" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Atmospherics Maintenance" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"diE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"diX" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"dja" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/hallway/secondary/entry) -"djG" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"djM" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 1; - height = 13; - id = "arrivals_stationary"; - name = "arrivals"; - roundstart_template = null; - width = 5 - }, -/turf/open/space/basic, -/area/space) -"dka" = ( -/obj/effect/turf_decal/arrows/red{ - dir = 4 - }, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/iron, -/area/station/cargo/storage) -"dks" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"dkx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"dkC" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"dkL" = ( -/obj/structure/fans/tiny/forcefield{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "ert_bay_door" - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"dkO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"dkQ" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/hallway/secondary/entry) -"dkW" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/machinery/newscaster/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"dla" = ( -/obj/structure/chair/stool/directional/west, -/obj/effect/turf_decal/trimline/red/warning{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"dlb" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"dlc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/break_room) -"dli" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"dlr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"dlG" = ( -/obj/structure/cable, -/obj/item/radio/intercom/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"dlH" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"dlO" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall, -/area/station/maintenance/aft/greater) -"dmx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"dmJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Shuttle Airlock" - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/fore) -"dmK" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/command) -"dmO" = ( -/obj/effect/turf_decal/trimline/purple/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"dmP" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/station/engineering/atmospherics_engine) -"dno" = ( -/turf/open/floor/iron/white, -/area/station/medical/virology) -"dnB" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"dnH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "Engineering Security Doors" - }, -/turf/open/floor/plating, -/area/station/engineering/storage_shared) -"dnJ" = ( -/obj/effect/spawner/random/structure/grille, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"dnK" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/machinery/cryopod{ - dir = 8 - }, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/common/cryopods) -"dnV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/light/directional/north, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"dox" = ( -/obj/structure/rack, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/item/hand_labeler, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"doD" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/firecloset, -/obj/item/clothing/glasses/meson/engine, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/engineering/main) -"doM" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/folder/yellow{ - pixel_x = 4 - }, -/obj/machinery/requests_console/directional/west{ - department = "Engineering"; - departmentType = 3; - name = "Engineering Requests Console" - }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"dpn" = ( -/obj/effect/spawner/random/food_or_drink/donkpockets, -/obj/structure/table/glass, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"dps" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=14.9-CrewQuarters-Central"; - location = "14.8-Dorms-Lockers" - }, -/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/commons/dorms) -"dpL" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/folder/blue{ - pixel_y = 2 - }, -/obj/item/folder/blue{ - pixel_y = 2 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"dpN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"dpT" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/machinery/light_switch/directional/north, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs) -"dqc" = ( -/obj/machinery/door/airlock/security/glass{ - name = "N2O Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"dqo" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "garbage" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Disposal Exit"; - name = "Disposal Exit Vent" - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"dqs" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/commons/dorms) -"dqx" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"dqI" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/vending/cigarette, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"dqM" = ( -/obj/item/wrench, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"dqN" = ( -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"dri" = ( -/obj/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/commons/locker) -"drm" = ( -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"drq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"drA" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"drE" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"drW" = ( -/obj/machinery/vending/wardrobe/chem_wardrobe, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"dsb" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L13" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"dsl" = ( -/obj/structure/cable, -/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) -"dsq" = ( -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab" - }, -/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/door/firedoor/heavy, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance_storage, -/turf/open/floor/plating, -/area/station/science/ordnance/storage) -"dss" = ( -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/computer/atmos_control/nocontrol/master{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/storage/gas) -"dsE" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 10 - }, -/obj/item/flashlight/lamp{ - on = 0; - pixel_x = -7; - pixel_y = 18 - }, -/obj/item/kitchen/rollingpin{ - pixel_x = -4 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"dsI" = ( -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"dsQ" = ( -/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) -"dsV" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Distro Staging to Filter" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"dtg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Recreation Area" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/dorms) -"dth" = ( -/obj/structure/table, -/obj/item/storage/secure/briefcase{ - pixel_x = -7; - pixel_y = 12 - }, -/obj/effect/spawner/random/engineering/flashlight, -/turf/open/floor/iron/dark, -/area/station/security/office) -"dtp" = ( -/obj/structure/table, -/obj/item/candle, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"dtB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"dtY" = ( -/obj/machinery/meter/monitored/waste_loop, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/pumproom) -"duw" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"duI" = ( -/turf/closed/wall, -/area/station/command/bridge) -"dvk" = ( -/obj/structure/table, -/obj/machinery/light/directional/west, -/obj/machinery/status_display/ai/directional/west, -/obj/machinery/flasher/directional/south{ - id = "AI" - }, -/obj/item/ai_module/reset{ - pixel_y = 8; - pixel_x = 2 - }, -/obj/item/ai_module/supplied/freeform, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"dvn" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"dvJ" = ( -/obj/structure/tank_dispenser, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"dvP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hos) -"dvR" = ( -/obj/effect/landmark/event_spawn, -/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/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"dvV" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/service/salon) -"dvZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=11-Command-Port"; - location = "10.2-Aft-Port-Corner" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"dwf" = ( -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"dwl" = ( -/obj/structure/flora/bush/jungle/c/style_random, -/obj/machinery/light/directional/east, -/turf/open/floor/grass, -/area/station/medical/virology) -"dwm" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance, -/obj/effect/spawner/random/clothing/costume, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"dwz" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria, -/area/station/engineering/atmos) -"dwA" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"dwJ" = ( -/obj/structure/lattice, -/obj/effect/spawner/random/structure/grille, -/turf/open/space, -/area/space/nearstation) -"dxc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"dxe" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"dxk" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"dxq" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"dxK" = ( -/obj/structure/lattice/catwalk, -/obj/structure/marker_beacon/purple, -/turf/open/space/basic, -/area/space/nearstation) -"dxO" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Arrivals - Fore Arm" - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"dyd" = ( -/obj/machinery/vending/assist, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"dye" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"dyr" = ( -/obj/machinery/door_timer{ - id = "Cell 3"; - name = "Cell 3"; - pixel_x = 32; - pixel_y = -32 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - 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, -/area/station/security/brig) -"dzp" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/item/reagent_containers/food/drinks/britcup{ - pixel_y = 2 - }, -/turf/open/floor/iron, -/area/station/science/research) -"dzq" = ( -/obj/item/radio/intercom/directional/north, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/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, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"dzw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"dzM" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"dzY" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"dAk" = ( -/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/cargo/storage) -"dAn" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/map/left{ - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/starboard) -"dAr" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/common/cryopods) -"dAx" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - 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/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"dBz" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"dBZ" = ( -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light_switch/directional/west, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos) -"dCm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"dCo" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/security/courtroom) -"dCp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"dCx" = ( -/obj/machinery/computer/shuttle/mining{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"dCN" = ( -/obj/effect/turf_decal/trimline/blue/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/medical/medbay/central) -"dDe" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Interrogation" - }, -/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/security/general, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"dDo" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"dDq" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/landmark/start/bartender, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/service/bar) -"dDx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Command Hallway" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"dDE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Locker Room" - }, -/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/commons/locker) -"dDH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock{ - name = "Bar Storage" - }, -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/service/bar, -/turf/open/floor/wood, -/area/station/hallway/secondary/service) -"dDP" = ( -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating/airless, -/area/station/solars/starboard/fore) -"dDZ" = ( -/obj/machinery/door/airlock/external{ - name = "Common Mining Dock" - }, -/obj/effect/landmark/navigate_destination, -/turf/open/floor/plating, -/area/station/hallway/primary/port) -"dEp" = ( -/obj/structure/table/wood, -/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/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"dEt" = ( -/obj/machinery/gravity_generator/main, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"dEx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light_switch/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"dEV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/iron/white, -/area/station/science/research) -"dEX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Quiet Room" - }, -/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, -/area/station/service/library) -"dFo" = ( -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/iron/white, -/area/station/science/xenobiology/hallway) -"dFp" = ( -/obj/effect/landmark/event_spawn, -/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/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"dFz" = ( -/obj/machinery/door/window/left/directional/south{ - name = "Court Cell"; - req_access = list("brig") - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"dFH" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"dFJ" = ( -/obj/machinery/light_switch/directional/east, -/obj/machinery/modular_computer/console/preset/curator{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/library) -"dGq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/stairs/left{ - dir = 1 - }, -/area/station/engineering/atmos) -"dGs" = ( -/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/sorting/mail{ - sortType = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"dGu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Gateway Atrium" - }, -/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, -/obj/effect/mapping_helpers/airlock/access/all/command/gateway, -/turf/open/floor/iron, -/area/station/command/gateway) -"dGv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"dGy" = ( -/obj/structure/cable, -/obj/structure/bed/dogbed/mcgriff, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/machinery/firealarm/directional/west{ - pixel_y = 26 - }, -/mob/living/simple_animal/pet/dog/pug/mcgriff, -/obj/effect/turf_decal/trimline/dark_red/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/security/warden) -"dGD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/green/filled/corner, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"dGW" = ( -/obj/machinery/holopad, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron, -/area/station/security/brig) -"dHa" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - freq = 1400; - location = "Disposals" - }, -/obj/structure/plasticflaps, -/obj/machinery/door/window/right/directional/north{ - dir = 2; - name = "Delivery Door"; - req_access = list("cargo") - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/conveyor{ - dir = 1; - id = "garbage" - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"dHc" = ( -/turf/closed/wall, -/area/station/hallway/primary/port) -"dHg" = ( -/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/tile/neutral/fourcorners, -/obj/machinery/computer/atmos_alert, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"dHG" = ( -/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, -/area/station/engineering/atmospherics_engine) -"dHM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"dHN" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#EFB341" - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/pharmacy) -"dHQ" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/structure/cable, -/obj/item/radio/intercom/prison/directional/north, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"dIy" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/central) -"dIA" = ( -/obj/structure/rack, -/obj/item/wrench/medical, -/obj/effect/turf_decal/siding/white, -/obj/item/food/popsicle/creamsicle_orange, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/kitchen_coldroom, -/area/station/medical/coldroom) -"dIK" = ( -/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/port/aft) -"dIL" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/white/smooth_edge, -/area/station/medical/medbay/central) -"dIO" = ( -/turf/closed/wall, -/area/station/commons/toilet/restrooms) -"dIP" = ( -/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/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"dIV" = ( -/obj/machinery/door/window/right/directional/west, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"dJo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/station/science/explab) -"dJC" = ( -/obj/structure/cable, -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/dark_red/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/warden) -"dJK" = ( -/turf/open/floor/iron/stairs/right{ - dir = 1 - }, -/area/station/engineering/atmos) -"dJN" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space/basic, -/area/space/nearstation) -"dJP" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/paper/monitorkey, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"dJT" = ( -/obj/item/reagent_containers/glass/rag, -/obj/structure/table/wood, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"dJX" = ( -/obj/machinery/newscaster/directional/south, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"dKl" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall/r_wall, -/area/station/maintenance/department/engine) -"dKC" = ( -/turf/closed/wall, -/area/station/maintenance/aft/lesser) -"dKE" = ( -/obj/structure/closet/secure_closet/atmospherics, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"dKG" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"dKK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"dKL" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/storage_shared) -"dKO" = ( -/obj/structure/urinal/directional/north, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"dKX" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"dKY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"dLl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/atmos/glass{ - name = "Hypertorus Fusion Reactor" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"dLm" = ( -/obj/machinery/sparker/directional/north{ - id = "Xenobio" - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"dLs" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/rack, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"dLu" = ( -/obj/machinery/newscaster/directional/north, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"dLy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"dLC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"dLN" = ( -/obj/effect/turf_decal/tile/neutral{ - 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/aft) -"dLO" = ( -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"dLQ" = ( -/obj/item/clothing/suit/hazardvest, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"dLR" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/bluespace_vendor/directional/south, -/turf/open/floor/iron, -/area/station/commons/locker) -"dLU" = ( -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/security/prison/safe) -"dLY" = ( -/obj/structure/table/wood, -/obj/item/clothing/head/sombrero, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/wood, -/area/station/service/theater) -"dMb" = ( -/obj/structure/table, -/obj/item/analyzer, -/obj/item/healthanalyzer, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"dMu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, -/obj/structure/window/reinforced, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"dMv" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"dMz" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/purple/corner{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"dMH" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/safe) -"dMI" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - 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/sorting/mail{ - dir = 1; - sortType = 30 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"dMN" = ( -/obj/effect/landmark/start/paramedic, -/obj/effect/turf_decal/loading_area/white{ - color = "#52B4E9"; - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"dNw" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"dNz" = ( -/obj/effect/turf_decal/tile/blue, -/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) -"dNB" = ( -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"dNX" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"dOg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"dOo" = ( -/obj/structure/safe, -/obj/item/storage/secure/briefcase{ - contents = newlist(/obj/item/clothing/suit/armor/vest,/obj/item/gun/ballistic/automatic/pistol,/obj/item/suppressor,/obj/item/melee/baton/telescopic,/obj/item/clothing/mask/balaclava,/obj/item/bodybag,/obj/item/soap/nanotrasen) - }, -/obj/item/storage/backpack/duffelbag/syndie/hitman, -/obj/item/card/id/advanced/silver/reaper, -/obj/item/lazarus_injector, -/obj/item/gun/energy/disabler, -/obj/item/gun/ballistic/revolver/russian, -/obj/item/ammo_box/a357, -/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/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"dOs" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter/room) -"dOw" = ( -/obj/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/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"dOx" = ( -/obj/structure/rack, -/obj/effect/spawner/random/clothing/costume, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"dOA" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"dON" = ( -/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 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"dOQ" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/delivery, -/obj/item/clothing/glasses/meson/engine, -/turf/open/floor/iron, -/area/station/engineering/main) -"dOS" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/random/trash/janitor_supplies, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"dOY" = ( -/obj/effect/spawner/random/engineering/tank, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"dPa" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/obj/effect/landmark/blobstart, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"dPh" = ( -/obj/machinery/door/airlock/external{ - name = "Auxiliary Airlock"; - space_dir = 2 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "whiteship-dock" - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"dPw" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"dPy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"dPF" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/stripes/red/line, -/turf/open/floor/engine, -/area/station/science/cytology) -"dPJ" = ( -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"dPL" = ( -/obj/structure/filingcabinet/security{ - pixel_x = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"dPQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"dPV" = ( -/obj/machinery/porta_turret/ai, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"dPY" = ( -/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 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/science/central) -"dQa" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "xenobio6"; - layer = 3.3; - name = "Xenobio Pen 6 Blast Doors"; - pixel_y = 1; - req_access = list("xenobiology") - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"dQb" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"dQA" = ( -/obj/machinery/computer/rdservercontrol{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/server) -"dQE" = ( -/obj/structure/table/glass, -/obj/structure/cable, -/obj/item/modular_computer/laptop/preset/civilian{ - pixel_y = 3 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"dQG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/girder, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"dQH" = ( -/obj/machinery/telecomms/processor/preset_three, -/obj/machinery/camera/directional/north{ - c_tag = "Telecomms - Server Room - Fore-Starboard"; - network = list("ss13","tcomms") - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"dQP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"dQT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/random/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"dRp" = ( -/obj/machinery/holopad, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/engineering/main) -"dRq" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/medbay/central) -"dRx" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"dRA" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"dRE" = ( -/obj/structure/chair/office{ - 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/security/execution/education) -"dRF" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"dRH" = ( -/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, -/area/station/hallway/primary/port) -"dRN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"dRY" = ( -/obj/structure/chair/office, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/service/library) -"dRZ" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L4" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"dSB" = ( -/obj/machinery/door/airlock/grunge{ - name = "Cell 3" - }, -/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) -"dSD" = ( -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/paicard, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"dSG" = ( -/obj/structure/closet/wardrobe/miner, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"dSV" = ( -/obj/machinery/light/directional/north, -/obj/structure/sign/warning/secure_area/directional/north, -/obj/structure/table/glass, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/item/book/manual/wiki/engineering_construction{ - pixel_y = 3 - }, -/obj/item/folder/yellow, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"dTi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "holodeck" - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"dTq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Antechamber" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - 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/cable/layer3, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/obj/effect/mapping_helpers/airlock/access/any/command/minisat, -/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"dTr" = ( -/obj/structure/cable, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"dTs" = ( -/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/extinguisher_cabinet/directional/east, -/obj/machinery/light/directional/east, -/obj/machinery/camera/autoname/directional/east, -/obj/structure/table/glass, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"dTv" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/under/misc/assistantformal, -/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/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"dTH" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/rack, -/obj/item/roller, -/obj/item/roller, -/obj/item/toy/figure/md, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"dTQ" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"dTS" = ( -/obj/machinery/computer/security{ - dir = 8 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) -"dTX" = ( -/obj/effect/landmark/start/chemist, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"dTZ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/recharger, -/obj/item/restraints/handcuffs, -/obj/structure/table/glass, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"dUj" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"dUB" = ( -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"dVb" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"dVc" = ( -/obj/machinery/shieldgen, -/obj/machinery/light/small/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Engineering - Secure Storage" - }, -/turf/open/floor/plating, -/area/station/engineering/main) -"dVm" = ( -/obj/effect/landmark/start/cook, -/obj/machinery/duct, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"dVp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"dVt" = ( -/obj/structure/cable, -/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/white, -/area/station/medical/medbay/central) -"dVN" = ( -/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/chemistry) -"dVR" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/computer/security/telescreen/entertainment/directional/east, -/obj/machinery/vending/wardrobe/curator_wardrobe, -/turf/open/floor/engine/cult, -/area/station/service/library) -"dVT" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Pure to Fuel Pipe" - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/atmos) -"dWd" = ( -/obj/effect/turf_decal/stripes/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/secondary/exit/departure_lounge) -"dWf" = ( -/obj/structure/sign/plaques/kiddie{ - pixel_y = 32 - }, -/obj/machinery/camera/directional/north{ - c_tag = "ai_upload Chamber - Fore"; - network = list("aiupload") - }, -/obj/structure/table/wood/fancy/green, -/obj/effect/spawner/random/aimodule/harmless, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) -"dWx" = ( -/obj/structure/sign/warning/vacuum/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/aft/lesser) -"dWA" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/chair/stool/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"dWF" = ( -/obj/machinery/light/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Port Primary Hallway - Middle" - }, -/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, -/area/station/hallway/primary/port) -"dWG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"dWN" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"dXe" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/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 = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"dXg" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"dXj" = ( -/obj/structure/chair{ - pixel_y = -2 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"dXs" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"dXA" = ( -/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, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"dXH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"dXP" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/light/small/directional/west, -/obj/effect/spawner/random/engineering/tank, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"dXQ" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"dXR" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"dXU" = ( -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"dXZ" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"dYa" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"dYb" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"dYg" = ( -/obj/machinery/status_display/evac/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Central Primary Hallway - Starboard - Kitchen" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"dYh" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/security/courtroom) -"dYi" = ( -/obj/structure/table, -/obj/item/stock_parts/micro_laser{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/stock_parts/micro_laser{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/stock_parts/micro_laser{ - pixel_x = 2 - }, -/obj/item/stock_parts/micro_laser{ - pixel_x = 6; - pixel_y = -2 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"dYl" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"dYK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/commons/lounge) -"dYT" = ( -/obj/machinery/rnd/destructive_analyzer, -/obj/effect/turf_decal/siding{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/lab) -"dZm" = ( -/turf/closed/wall, -/area/station/commons/storage/tools) -"dZy" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/storage/box/beakers{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/bodybags, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) -"dZB" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor"; - name = "Supply Dock Loading Door" - }, -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"dZU" = ( -/obj/machinery/door/poddoor/preopen{ - id = "medsecprivacy"; - name = "Privacy Shutter" - }, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor/right/directional/north{ - req_access = list("brig_entrance"); - name = "Orderly Office's Desk" - }, -/turf/open/floor/plating, -/area/station/security/checkpoint/medical) -"dZY" = ( -/obj/machinery/computer/security/telescreen/interrogation{ - dir = 8; - pixel_x = 30 - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/turf/open/floor/iron, -/area/station/security/brig) -"eal" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law{ - pixel_y = 3 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"eax" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"eay" = ( -/obj/structure/disposalpipe/segment{ - 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, -/area/station/security/brig) -"eaF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/bar, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"eaN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"eaP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/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, -/area/station/security/brig) -"ebn" = ( -/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, -/area/station/hallway/primary/port) -"ebr" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=0-SecurityDesk"; - location = "16-Fore" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"ebx" = ( -/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/secondary/command) -"ebC" = ( -/obj/machinery/vending/hydroseeds{ - slogan_delay = 700 - }, -/obj/structure/noticeboard/directional/north, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"ebG" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"ebK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"ebM" = ( -/obj/effect/turf_decal/tile/neutral{ - 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/hallway/primary/central) -"ecp" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"ecz" = ( -/turf/closed/wall, -/area/station/maintenance/solars/port/aft) -"ecA" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"ecB" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/volume_pump{ - dir = 4 - }, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/engineering/atmos) -"ecD" = ( -/obj/item/bot_assembly/floorbot{ - created_name = "FloorDiffBot"; - desc = "Why won't it work?"; - name = "FloorDiffBot" - }, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"ecO" = ( -/turf/open/floor/carpet, -/area/station/service/library) -"edo" = ( -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/item/clipboard, -/obj/item/toy/figure/cmo, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"edu" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/solars/starboard/aft) -"edA" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"edC" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"edH" = ( -/obj/structure/table, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/machinery/computer/med_data/laptop{ - dir = 8; - pixel_y = 1 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"edN" = ( -/obj/effect/spawner/structure/window, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"edP" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"edQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"eeg" = ( -/turf/closed/wall/mineral/plastitanium, -/area/station/hallway/secondary/entry) -"eek" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"eem" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"eew" = ( -/obj/structure/rack, -/obj/item/gun/energy/ionrifle, -/obj/item/gun/energy/temperature/security, -/obj/item/clothing/suit/hooded/ablative, -/obj/item/gun/grenadelauncher, -/obj/item/storage/box/teargas{ - pixel_x = 1; - pixel_y = -2 - }, -/obj/item/storage/box/flashes{ - pixel_x = 3 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"efa" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"efd" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/pumproom) -"efg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Bar" - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/lounge) -"eft" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"efC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"efM" = ( -/turf/closed/wall, -/area/station/common/cryopods) -"efY" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/engineering_guard, -/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/iron, -/area/station/security/checkpoint/engineering) -"efZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"egb" = ( -/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, -/area/station/hallway/primary/central) -"ege" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/textured, -/area/station/medical/medbay/central) -"egg" = ( -/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, -/area/station/security/prison/safe) -"egk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"egs" = ( -/obj/effect/spawner/random/maintenance/two, -/obj/structure/rack, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"egF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"egN" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/engineering/main) -"egO" = ( -/obj/machinery/mineral/stacking_unit_console{ - machinedir = 8; - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"egP" = ( -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/bluespace_sender, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ehg" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"ehn" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"ehs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/science/research) -"ehv" = ( -/obj/structure/chair/stool/directional/west, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"ehB" = ( -/obj/machinery/door/poddoor{ - id = "SecJusticeChamber"; - name = "Justice Vent" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/security/execution/education) -"ehH" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Chapel - Port" - }, -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/iron/chapel{ - dir = 8 - }, -/area/station/service/chapel) -"ehX" = ( -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"ehY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/tcommsat/server) -"ehZ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "prison release"; - name = "Prisoner Processing Blast Door" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/button/door/directional/west{ - id = "prison release"; - name = "Labor Camp Shuttle Lockdown"; - req_access = list("brig") - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"eih" = ( -/mob/living/simple_animal/bot/cleanbot/medbay, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"eio" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall, -/area/station/maintenance/starboard/greater) -"eiq" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"eiO" = ( -/obj/structure/table, -/obj/item/storage/backpack/duffelbag/sec{ - pixel_y = 7 - }, -/obj/item/storage/backpack/duffelbag/sec, -/turf/open/floor/iron/dark, -/area/station/security/office) -"eje" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"ejg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/duct, -/turf/open/floor/iron/dark/smooth_large, -/area/station/medical/storage) -"eji" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/storage/gas) -"ejl" = ( -/obj/structure/chair/stool/directional/north, -/turf/open/floor/iron, -/area/station/commons/dorms) -"ejo" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"ejp" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) -"ejH" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Space Bridge" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "xeno_blastdoor"; - name = "Biohazard Containment Door" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/iron/white, -/area/station/science/research) -"ejP" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"ejQ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/transit_tube/horizontal, -/turf/open/space, -/area/space/nearstation) -"ejR" = ( -/obj/effect/turf_decal/trimline/red/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/white, -/area/station/security/prison) -"ejS" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"ejX" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"ekh" = ( -/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/port/aft) -"ekk" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"ekB" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"ekG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"ekV" = ( -/obj/machinery/mass_driver/ordnance, -/turf/open/floor/plating, -/area/station/science/ordnance/testlab) -"elb" = ( -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"elc" = ( -/obj/effect/spawner/random/engineering/atmospherics_portable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"elm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/sign/warning/electric_shock, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "Xenobio Pen 8 Blast Door" - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"elJ" = ( -/turf/closed/wall/r_wall, -/area/station/science/server) -"elM" = ( -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/structure/table/glass, -/obj/item/book/manual/hydroponics_pod_people, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/requests_console/directional/west{ - department = "Hydroponics"; - departmentType = 2; - name = "Hydroponics Requests Console" - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"elV" = ( -/obj/machinery/airalarm/directional/north, -/obj/item/clothing/under/misc/assistantformal, -/obj/effect/landmark/start/hangover, -/obj/effect/spawner/random/structure/closet_private, -/turf/open/floor/wood, -/area/station/commons/dorms) -"eme" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"emf" = ( -/obj/structure/cable, -/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/medbay/central) -"emh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/purple/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"emN" = ( -/obj/structure/cable, -/obj/structure/sign/warning/vacuum/external/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/port) -"emP" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters{ - id = "abandoned_kitchen"; - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"emY" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/command/bridge) -"enf" = ( -/obj/effect/decal/cleanable/dirt, -/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/starboard/greater) -"enw" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/camera/directional/north{ - c_tag = "Science Research Office"; - network = list("ss13","rd") - }, -/turf/open/floor/iron, -/area/station/science/lab) -"enK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"enO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"enS" = ( -/obj/structure/table, -/obj/structure/cable, -/obj/item/controller, -/obj/item/compact_remote, -/obj/item/compact_remote, -/turf/open/floor/iron/white, -/area/station/science/explab) -"enW" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/stack/spacecash/c1{ - pixel_y = 9 - }, -/obj/item/reagent_containers/glass/rag, -/obj/structure/table/reinforced{ - name = "Jim Norton's Quebecois Coffee table" - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 1 - }, -/obj/structure/desk_bell{ - pixel_x = 7 - }, -/turf/open/floor/iron/dark, -/area/station/service/cafeteria) -"enZ" = ( -/obj/machinery/light/directional/south, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Central Primary Hallway - Aft-Starboard Corner" - }, -/obj/structure/disposalpipe/segment{ - 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/central) -"eoj" = ( -/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) -"eol" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"eov" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"eoC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - 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, -/area/station/command/heads_quarters/rd) -"eoD" = ( -/obj/effect/turf_decal/tile/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/dark, -/area/station/command/bridge) -"eoU" = ( -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"eoZ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"epi" = ( -/obj/structure/window/reinforced/plasma{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/power/energy_accumulator/tesla_coil/anchored, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"epv" = ( -/obj/structure/table, -/obj/item/hand_labeler{ - pixel_y = 11 - }, -/obj/item/stack/package_wrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/package_wrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/hand_labeler_refill{ - pixel_x = -8; - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"epB" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"epF" = ( -/obj/machinery/chem_master/condimaster{ - desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; - name = "SapMaster XP" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera/directional/north{ - c_tag = "Hydroponics - Fore" - }, -/obj/machinery/button/door/directional/north{ - id = "hydro_service"; - name = "Service Shutter Control"; - req_access = list("hydroponics") - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"epH" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"epO" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/bar) -"eqa" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/medbay/central) -"eqc" = ( -/obj/structure/disposalpipe/junction/yjunction, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white/side, -/area/station/medical/medbay/central) -"eqf" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space/basic, -/area/station/solars/port/fore) -"eqt" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"eqz" = ( -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"eqU" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"erh" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"ero" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/transit_tube/curved{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"eru" = ( -/obj/structure/rack, -/obj/item/stack/cable_coil{ - pixel_x = -1; - pixel_y = -3 - }, -/obj/item/wrench, -/obj/item/flashlight/seclite, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"erx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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, -/turf/open/floor/iron, -/area/station/security/brig) -"erF" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/virology/glass{ - name = "Virology Access" - }, -/obj/machinery/door/firedoor, -/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/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"erG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"erS" = ( -/obj/structure/table/wood, -/obj/item/camera_film{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/camera_film{ - pixel_y = 9 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/wood, -/area/station/service/library) -"esd" = ( -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/structure/table/wood, -/obj/structure/light_construct/small/directional/north, -/obj/machinery/newscaster/directional/north, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"ese" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"esk" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/storage/tcomms) -"esv" = ( -/obj/structure/chair/stool/bar/directional/south, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/commons/lounge) -"esH" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/cigbutt{ - pixel_y = 7 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/starboard/greater) -"esL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/ticket_machine/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/hallway/secondary/command) -"esR" = ( -/obj/machinery/button/flasher{ - id = "secentranceflasher"; - name = "Brig Entrance Flasher"; - pixel_x = -6; - pixel_y = -38; - req_access = list("security") - }, -/obj/machinery/button/flasher{ - id = "holdingflash"; - name = "Holding Cell Flasher"; - pixel_x = 6; - pixel_y = -38; - req_access = list("security") - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron, -/area/station/security/brig) -"etn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/plating, -/area/station/maintenance/port) -"ets" = ( -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"etv" = ( -/obj/item/kirbyplants/random, -/obj/structure/light_construct/small/directional/east, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"etA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"etK" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - 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/engineering/atmos) -"etQ" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"euc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/l3closet/janitor, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron, -/area/station/service/janitor) -"eug" = ( -/obj/structure/reagent_dispensers/wall/peppertank/directional/east, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/table, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"euj" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/light_switch/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"euo" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/service/cafeteria) -"eup" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"eur" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"eut" = ( -/turf/closed/wall, -/area/station/science/robotics/lab) -"euQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/white, -/area/station/science/research) -"euX" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/white, -/area/station/security/medical) -"evf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"evD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"evE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/testlab) -"evI" = ( -/obj/machinery/computer/teleporter, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"evY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/landmark/start/orderly, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) -"ewf" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"ewh" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/wrench, -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/science/server) -"ewj" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig) -"ewk" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"ewB" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"ewR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Tech Storage" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"ewT" = ( -/obj/machinery/door/airlock{ - name = "Prison Showers" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"ewU" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Air to Mix" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"exr" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/item/stamp/law, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"exu" = ( -/obj/effect/turf_decal/stripes/line, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"exC" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L3" - }, -/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) -"exN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/command/teleporter) -"eyl" = ( -/obj/structure/closet/crate/freezer/surplus_limbs, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"eyz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"eyX" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/prison) -"ezb" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/filingcabinet{ - pixel_x = 4 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"ezg" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"ezT" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/door/airlock/research{ - name = "Research Division Access" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-entrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron/white, -/area/station/science/research) -"eAe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"eAL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"eBn" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"eBw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance{ - name = "Research Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"eBz" = ( -/obj/structure/table/wood, -/obj/machinery/status_display/ai/directional/north, -/obj/item/flashlight/lamp, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"eBU" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"eCg" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"eCn" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"eCx" = ( -/obj/machinery/light/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, -/area/station/security/execution/transfer) -"eCB" = ( -/obj/machinery/door/airlock/silver{ - name = "Bathroom" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/any/command/captain, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/captain/private) -"eCK" = ( -/obj/machinery/computer/arcade/orion_trail{ - desc = "For gamers only. Casuals need not apply."; - icon_screen = "library"; - icon_state = "oldcomp"; - name = "Gamer Computer" - }, -/obj/structure/sign/poster/contraband/lusty_xenomorph{ - pixel_x = -32 - }, -/obj/item/toy/katana{ - desc = "As seen in your favourite Japanese cartoon."; - name = "anime katana" - }, -/obj/structure/table/wood, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"eCN" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"eCQ" = ( -/obj/structure/chair/wood/wings{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/service/theater) -"eCS" = ( -/obj/machinery/door/airlock/external{ - name = "Space Shack" - }, -/turf/open/floor/plating, -/area/station/maintenance/space_hut) -"eCV" = ( -/obj/machinery/modular_computer/console/preset/id, -/obj/machinery/light/directional/north, -/obj/machinery/requests_console/directional/north{ - department = "Security"; - departmentType = 3; - name = "Security Requests Console" - }, -/obj/machinery/camera/directional/north{ - c_tag = "Customs Checkpoint" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs) -"eDc" = ( -/obj/machinery/door/airlock/atmos{ - name = "Hypertorus Fusion Reactor" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"eDf" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/command/heads_quarters/rd) -"eDi" = ( -/obj/machinery/firealarm/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/cargo/qm) -"eDC" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/entertainment/deck, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"eDL" = ( -/obj/structure/sign/directions/command{ - dir = 1; - pixel_y = -8 - }, -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/captain/private) -"eEb" = ( -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"eEf" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Bar - Backroom" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/mirror/directional/north, -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/bar) -"eEx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"eEH" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/command/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/central) -"eEN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/wood, -/area/station/service/theater) -"eEV" = ( -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/turf/open/floor/iron/kitchen_coldroom, -/area/station/medical/coldroom) -"eFg" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Atmospherics" - }, -/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage/gas) -"eFw" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"eFD" = ( -/obj/machinery/disposal/bin, -/obj/machinery/airalarm/directional/east, -/obj/machinery/light/directional/east, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"eGd" = ( -/obj/machinery/door/window{ - dir = 1; - name = "MiniSat Walkway Access" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"eGm" = ( -/obj/machinery/airalarm/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Aft Primary Hallway - Middle" - }, -/obj/effect/turf_decal/tile/neutral{ - 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 = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"eGC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"eGJ" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/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, -/area/station/medical/medbay/central) -"eGV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"eHf" = ( -/obj/effect/spawner/random/vending/colavend, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"eHR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random/directional/north, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"eIw" = ( -/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/wood, -/area/station/commons/lounge) -"eIy" = ( -/obj/structure/cable, -/obj/machinery/photocopier, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hop) -"eJg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"eJo" = ( -/obj/machinery/firealarm/directional/east, -/obj/structure/table/wood, -/obj/item/camera_film{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/camera_film{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"eJp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"eJy" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-maint-passthrough" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/science/research) -"eJI" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/box, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"eJM" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Atmospherics Tank - CO2" - }, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"eJX" = ( -/turf/open/floor/iron, -/area/station/engineering/atmos) -"eJZ" = ( -/obj/effect/spawner/random/structure/chair_comfy{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"eKr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"eKA" = ( -/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, -/turf/open/floor/iron/white, -/area/station/science/research) -"eKD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"eKK" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/door/window/left/directional/north{ - dir = 2; - name = "Pharmacy Desk"; - req_access = list("pharmacy") - }, -/obj/machinery/door/firedoor, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "pharmacy_shutters"; - name = "Pharmacy Shutters"; - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/structure/desk_bell{ - pixel_x = -8 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"eKP" = ( -/turf/closed/wall/r_wall, -/area/station/science/ordnance/freezerchamber) -"eLb" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"eLd" = ( -/obj/machinery/firealarm/directional/east, -/obj/machinery/light/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"eLh" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"eLk" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"eLv" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - 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, -/area/station/hallway/primary/central) -"eLI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"eLT" = ( -/obj/machinery/light/directional/west, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - 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/aft) -"eLY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"eMa" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Command Hallway - Port" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"eMb" = ( -/obj/structure/sign/directions/command{ - dir = 1; - pixel_y = -8 - }, -/turf/closed/wall/r_wall, -/area/station/hallway/secondary/command) -"eMG" = ( -/obj/structure/closet/lasertag/blue, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"eMH" = ( -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"eMI" = ( -/obj/structure/disposalpipe/segment, -/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) -"eMU" = ( -/obj/effect/turf_decal/trimline/blue/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/white, -/area/station/medical/medbay/central) -"eNb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"eNh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"eNk" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"eNq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"eNz" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Telecomms - Server Room - Aft-Starboard"; - network = list("ss13","tcomms") - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"eNR" = ( -/turf/closed/wall, -/area/station/ai_monitored/aisat/exterior) -"eNV" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"eOm" = ( -/obj/machinery/firealarm/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Arrivals - Aft Arm - Bay" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"eOs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "perma-entrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron, -/area/station/security/brig) -"eOJ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"eOP" = ( -/obj/machinery/door/window/left/directional/north{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #6"; - req_access = list("xenobiology") - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"eOQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/carbon_output{ - dir = 1 - }, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"eOR" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/warning/vacuum/external/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"ePu" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/science/robotics/mechbay) -"ePA" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror/directional/west, -/obj/machinery/light/small/directional/south, -/obj/machinery/button/door/directional/south{ - id = "FitnessShower"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/iron/freezer, -/area/station/commons/fitness/recreation) -"ePM" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"ePX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/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/medical/general, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"eQe" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron, -/area/service/salon) -"eQg" = ( -/obj/machinery/flasher/directional/south{ - id = "AI" - }, -/obj/machinery/porta_turret/ai{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"eQs" = ( -/obj/machinery/air_sensor/air_tank, -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"eQO" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"eQT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"eQY" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"eRb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"eRc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"eRn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/station/science/ordnance/burnchamber) -"eRx" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light/directional/east, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"eRF" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "MiniSat Exterior - Starboard Fore"; - network = list("minisat") - }, -/obj/structure/window/reinforced, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"eRR" = ( -/obj/structure/table, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/item/wirecutters, -/obj/item/multitool, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"eRX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/cable, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/office) -"eSa" = ( -/obj/item/wrench, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"eSb" = ( -/obj/machinery/power/shieldwallgen/xenobiologyaccess, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"eSd" = ( -/obj/machinery/computer/robotics{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"eSl" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"eSr" = ( -/obj/machinery/light/small/directional/north, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"eSy" = ( -/obj/machinery/computer/station_alert{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"eSC" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/button/door{ - id = "xenobio7"; - layer = 3.3; - name = "Xenobio Pen 7 Blast Doors"; - pixel_y = 4; - req_access = list("xenobiology") - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"eSR" = ( -/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, -/area/station/medical/virology) -"eSU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"eSZ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ - dir = 4 - }, -/obj/machinery/light/no_nightlight/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"eTn" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"eTs" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"eTv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"eTU" = ( -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"eUe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"eUi" = ( -/obj/structure/table, -/obj/item/storage/bag/plants, -/obj/item/reagent_containers/glass/watering_can, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"eUu" = ( -/obj/structure/transit_tube/crossing/horizontal, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"eUy" = ( -/obj/structure/sign/warning/vacuum/directional/west, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"eUA" = ( -/obj/structure/table/glass, -/obj/machinery/light/small/directional/north, -/obj/item/folder/white{ - pixel_y = 4 - }, -/obj/item/pen/red, -/obj/machinery/camera/directional/north{ - c_tag = "Virology Isolation A"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"eUN" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/treatment_center) -"eUO" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"eUW" = ( -/obj/structure/cable, -/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/medbay/central) -"eVa" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/left/directional/west{ - base_state = "right"; - dir = 2; - icon_state = "right"; - name = "Reception Window" - }, -/obj/item/paper, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/item/storage/fancy/donut_box, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "briglockdown"; - name = "Warden Desk Shutters" - }, -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Brig Control Desk"; - req_access = list("armory") - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"eVi" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"eVm" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"eVz" = ( -/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/commons/locker) -"eVX" = ( -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"eWq" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"eWy" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"eWA" = ( -/obj/structure/toilet/greyscale{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/safe) -"eWB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/engine, -/area/station/engineering/atmospherics_engine) -"eWG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light_switch/directional/west, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/wood, -/area/station/service/theater) -"eWO" = ( -/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, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"eWW" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"eXj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/brig) -"eXx" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"eXy" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "garbage" - }, -/obj/effect/spawner/random/trash/garbage{ - spawn_loot_count = 3; - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"eXA" = ( -/obj/structure/bookcase/random/adult, -/turf/open/floor/wood, -/area/station/service/library) -"eXD" = ( -/obj/item/crowbar, -/obj/item/wrench, -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"eXT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Chapel Office Maintenance" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"eYj" = ( -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"eYu" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/red, -/obj/machinery/reagentgrinder{ - pixel_x = -1; - pixel_y = 8 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"eYw" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Air to Distro" - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/pumproom) -"eYz" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"eYE" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/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/virology) -"eYL" = ( -/obj/machinery/photocopier, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"eZb" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"eZe" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/machinery/restaurant_portal/bar, -/turf/open/floor/wood, -/area/station/commons/lounge) -"eZz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/research{ - name = "Genetics Lab" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/science/genetics, -/turf/open/floor/iron/white, -/area/station/science/genetics) -"eZI" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, -/obj/machinery/ammo_workbench, -/turf/open/floor/iron/dark, -/area/station/security/range) -"eZN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"eZR" = ( -/obj/structure/displaycase/labcage, -/turf/open/floor/engine, -/area/station/command/heads_quarters/rd) -"fad" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hos) -"fag" = ( -/obj/item/food/cracker, -/obj/item/food/cracker{ - pixel_x = 9; - pixel_y = 9 - }, -/obj/item/trash/boritos{ - desc = "Why does it look like boritos? Nobody would feed unhealthy snacks to pets, right?"; - name = "cracker bag"; - pixel_x = -14 - }, -/turf/open/floor/grass, -/area/station/science/research) -"fak" = ( -/turf/open/floor/iron/white/side{ - dir = 1 - }, -/area/station/science/lobby) -"fat" = ( -/obj/machinery/light/warm/directional/north, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/chair/comfy/barber_chair{ - dir = 4 - }, -/turf/open/floor/iron, -/area/service/salon) -"faD" = ( -/obj/effect/turf_decal/stripes/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/xenobiology) -"fbf" = ( -/obj/structure/disposalpipe/segment, -/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{ - dir = 1 - }, -/area/station/engineering/main) -"fbg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/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/freezer, -/area/station/commons/toilet/restrooms) -"fbs" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"fbG" = ( -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/docking_port/stationary{ - dheight = 3; - dir = 2; - dwidth = 8; - height = 11; - id = "ferry_home"; - name = "Port Bay 2"; - width = 20 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"fbI" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/service/salon) -"fbN" = ( -/obj/machinery/light/small/broken/directional/south, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"fbP" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"fbX" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"fcq" = ( -/turf/closed/wall, -/area/station/maintenance/port/greater) -"fcJ" = ( -/obj/structure/lattice, -/obj/item/shard, -/turf/open/space/basic, -/area/space/nearstation) -"fcM" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"fdx" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/courtroom) -"fdH" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"fdX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"fdZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"fec" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"fee" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/grille/broken, -/turf/open/space/basic, -/area/space/nearstation) -"feA" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/service/cafeteria) -"feF" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos) -"feQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Art Storage" - }, -/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/commons/storage/art) -"feV" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"feY" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"ffd" = ( -/obj/machinery/firealarm/directional/east, -/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/commons/dorms) -"ffj" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"ffH" = ( -/turf/closed/wall, -/area/station/hallway/primary/fore) -"ffP" = ( -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/plating/foam{ - initial_gas_mix = "TEMP=2.7" - }, -/area/space/nearstation) -"ffU" = ( -/obj/effect/turf_decal/siding/purple, -/obj/machinery/camera/directional/south{ - c_tag = "Science Ordnance Mix Lab"; - network = list("ss13","rd") - }, -/obj/machinery/computer/atmos_control/ordnancemix{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"ffV" = ( -/obj/structure/closet/bombcloset/security, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"fge" = ( -/obj/structure/chair/stool/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/lounge) -"fgl" = ( -/obj/effect/turf_decal/stripes/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, -/area/station/hallway/secondary/exit/departure_lounge) -"fgn" = ( -/mob/living/simple_animal/hostile/retaliate/goose/vomit, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"fgu" = ( -/obj/machinery/light/directional/south, -/obj/effect/spawner/random/vending/colavend, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"fgH" = ( -/obj/machinery/door/firedoor/heavy, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"fgN" = ( -/obj/structure/chair/stool/directional/east, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"fgS" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/obj/machinery/flasher/directional/east{ - id = "hopflash"; - pixel_y = -26 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"fgT" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"fhe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/pharmacy) -"fhi" = ( -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"fhl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"fhp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/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) -"fhv" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/item/extinguisher, -/obj/effect/spawner/random/maintenance/three, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"fhA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/maintenance/starboard/greater) -"fhB" = ( -/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, -/area/station/construction/storage_wing) -"fhG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"fhI" = ( -/obj/structure/light_construct/directional/west, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"fhP" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Prison Common Room"; - network = list("ss13","prison") - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison) -"fia" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Access" - }, -/obj/structure/cable, -/obj/effect/landmark/navigate_destination, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/poddoor/preopen{ - id = "transitlockdown" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/obj/effect/mapping_helpers/airlock/access/any/command/minisat, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"fip" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"fiu" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"fiv" = ( -/obj/item/radio/intercom/directional/east, -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"fix" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"fiA" = ( -/turf/open/floor/iron, -/area/station/security/prison/garden) -"fiC" = ( -/obj/effect/turf_decal/trimline/brown/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, -/turf/open/floor/iron, -/area/station/cargo/storage) -"fiE" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Port Mix to North Ports" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"fiH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/medbay/central) -"fiK" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/item/surgical_drapes, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"fiS" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"fjb" = ( -/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/science/research) -"fjd" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"fje" = ( -/obj/machinery/power/port_gen/pacman/pre_loaded, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"fjn" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port) -"fjD" = ( -/turf/closed/wall, -/area/station/commons/toilet/auxiliary) -"fjV" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"fjY" = ( -/obj/structure/chair/wood/wings{ - dir = 1 - }, -/obj/effect/landmark/start/clown, -/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, -/area/station/service/theater) -"fkb" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/pumproom) -"fkd" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/effect/spawner/random/bureaucracy/pen, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"fke" = ( -/obj/effect/turf_decal/trimline/purple/line, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"fkk" = ( -/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/turf_decal/trimline/purple, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"fkl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"fkC" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 1 - }, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 11 - }, -/obj/item/folder/yellow{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/folder/yellow{ - pixel_x = -9; - pixel_y = 1 - }, -/obj/item/paper{ - pixel_x = -5 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/storage) -"fkD" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"fkP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"fkT" = ( -/obj/effect/landmark/start/chaplain, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"fkW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/chapel{ - dir = 8 - }, -/area/station/service/chapel) -"flb" = ( -/obj/structure/railing, -/turf/open/space/basic, -/area/space/nearstation) -"flj" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge"; - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"flk" = ( -/obj/machinery/door/airlock/grunge{ - name = "Cell 2" - }, -/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) -"flm" = ( -/obj/machinery/light/directional/north, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"fln" = ( -/obj/item/radio/intercom/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Engineering - Fore" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"flu" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hop) -"flx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/library) -"flB" = ( -/obj/machinery/computer/holodeck{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"flN" = ( -/obj/machinery/power/port_gen/pacman/pre_loaded, -/turf/open/floor/plating, -/area/station/maintenance/port) -"flQ" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/service/library) -"flS" = ( -/obj/item/storage/toolbox/emergency, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port) -"fma" = ( -/turf/closed/wall/r_wall, -/area/station/science/robotics/lab) -"fmc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"fmn" = ( -/obj/machinery/airalarm/directional/south, -/obj/machinery/holopad, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"fmo" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"fms" = ( -/obj/effect/decal/cleanable/food/flour, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"fmw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"fmx" = ( -/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/decal/cleanable/cobweb, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/station/service/chapel/funeral) -"fmJ" = ( -/obj/structure/rack, -/obj/item/circuitboard/machine/telecomms/bus, -/obj/item/circuitboard/machine/telecomms/broadcaster, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) -"fmM" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 10 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"fmS" = ( -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = 8 - }, -/obj/structure/sign/directions/engineering{ - dir = 4 - }, -/obj/structure/sign/directions/command{ - dir = 1; - pixel_y = -8 - }, -/turf/closed/wall, -/area/station/medical/medbay/lobby) -"fnc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/chemistry) -"fnf" = ( -/obj/machinery/telecomms/message_server/preset, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"fnh" = ( -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"fnE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/command/teleporter) -"fnN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/security/holding_cell) -"foP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/storage) -"fpj" = ( -/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/security/prison/safe) -"fpy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/station/service/library) -"fpA" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"fpE" = ( -/obj/structure/rack, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"fpH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"fpK" = ( -/obj/structure/chair/comfy{ - dir = 4 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Science Break Room"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron, -/area/station/science/research) -"fqp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/west, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/research) -"fqC" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/item/storage/secure/briefcase, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"fqR" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"fqV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"frd" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/item/aicard, -/obj/item/paicard, -/obj/item/circuitboard/aicore, -/obj/machinery/keycard_auth/directional/north{ - pixel_x = -5 - }, -/obj/machinery/button/door/directional/north{ - id = "xeno_blastdoor"; - name = "Xenobiology Containment Control"; - pixel_x = 8; - req_access = list("rd") - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"frs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - 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/xenobiology/hallway) -"frt" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/computer/camera_advanced/xenobio{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"fru" = ( -/turf/closed/wall, -/area/station/cargo/drone_bay) -"frH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrig"; - name = "Brig" - }, -/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/machinery/flasher/directional/east{ - id = "secentranceflasher" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-entrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron, -/area/station/security/brig) -"frZ" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "External Gas to Loop" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"fsb" = ( -/obj/item/kirbyplants{ - icon_state = "plant-18" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"fsh" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron, -/area/service/salon) -"fsN" = ( -/obj/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/medical/medbay/central) -"fsQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"ftd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ftj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"ftK" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/effect/spawner/random/maintenance/four, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"ftM" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall, -/area/station/commons/locker) -"ftY" = ( -/obj/machinery/light/directional/south, -/obj/machinery/firealarm/directional/south, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/office) -"fuu" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmospherics_engine) -"fuA" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/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/medical/medbay/central) -"fvK" = ( -/obj/structure/table, -/obj/item/transfer_valve{ - pixel_x = 5 - }, -/obj/item/transfer_valve, -/obj/item/transfer_valve{ - pixel_x = -5 - }, -/obj/item/transfer_valve{ - pixel_x = 5 - }, -/obj/item/transfer_valve, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"fwz" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"fwD" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start/chaplain, -/obj/item/radio/intercom/chapel/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"fwE" = ( -/obj/structure/rack, -/obj/item/reagent_containers/glass/bottle/acidic_buffer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/basic_buffer{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/formaldehyde{ - pixel_x = 1 - }, -/obj/structure/sign/warning/chem_diamond/directional/north, -/turf/open/floor/iron/dark/textured_edge{ - dir = 8 - }, -/area/station/medical/medbay/central) -"fwG" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"fwP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"fwZ" = ( -/obj/machinery/light/directional/west, -/obj/machinery/computer/piratepad_control/civilian{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/line, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"fxa" = ( -/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/engineering/break_room) -"fxr" = ( -/obj/structure/lattice/catwalk, -/obj/structure/marker_beacon/burgundy, -/obj/item/instrument/musicalmoth{ - name = "Syl Labee" - }, -/turf/open/space/basic, -/area/space/nearstation) -"fxu" = ( -/obj/structure/sign/warning/vacuum/directional/east, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"fxI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 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, -/area/station/hallway/primary/port) -"fxQ" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"fxT" = ( -/obj/machinery/door/airlock/wood{ - doorClose = 'sound/effects/doorcreaky.ogg'; - doorOpen = 'sound/effects/doorcreaky.ogg'; - name = "The Gobetting Barmaid" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"fxZ" = ( -/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/tile/yellow{ - dir = 4 - }, -/obj/structure/tank_dispenser{ - pixel_x = -1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/storage/gas) -"fym" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"fyz" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"fyY" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "N2 to Airmix" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"fzd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"fzl" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating/airless, -/area/station/solars/port/fore) -"fzr" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/line, -/obj/effect/spawner/random/food_or_drink/seed{ - spawn_all_loot = 1; - spawn_random_offset = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"fzM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"fzR" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/brig) -"fAd" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/structure/cable, -/obj/machinery/camera/directional/east{ - c_tag = "Security Post - Research Division"; - network = list("ss13","rd") - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) -"fAe" = ( -/obj/machinery/door/airlock/security{ - name = "Engineering Guard's Office" - }, -/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/effect/turf_decal/tile/red/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engie_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"fAI" = ( -/obj/effect/spawner/random/structure/crate, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"fAL" = ( -/turf/closed/wall, -/area/station/security/detectives_office) -"fAO" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/conveyor{ - dir = 8; - id = "packageExternal" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Cargo Bay - Aft"; - pixel_x = 14 - }, -/obj/machinery/disposal/delivery_chute{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/door/window/right/directional/west{ - dir = 4; - name = "Crate to Shuttle"; - req_access = list("shipping") - }, -/obj/structure/plasticflaps/opaque{ - name = "Service Deliveries" - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"fBc" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"fBl" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"fBt" = ( -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"fBz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"fBG" = ( -/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/table, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"fBJ" = ( -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"fBX" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small/directional/west, -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"fBY" = ( -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/prison) -"fCh" = ( -/obj/machinery/light_switch/directional/west, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/obj/machinery/duct, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"fCn" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Firing Range" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/range) -"fCt" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/green/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"fCD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/sign/warning/vacuum/external/directional/south, -/obj/structure/cable, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"fDc" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"fDk" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"fDo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"fDL" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/computer/apc_control, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"fEg" = ( -/obj/machinery/door/airlock{ - name = "Service Hall" - }, -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/general, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"fEs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/assistant, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/line, -/turf/open/floor/iron/dark, -/area/station/service/cafeteria) -"fEK" = ( -/turf/closed/wall, -/area/station/medical/medbay/central) -"fEL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/warning/vacuum/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"fET" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/sign/warning/vacuum/external/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/security/execution/transfer) -"fEW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"fEX" = ( -/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/machinery/power/apc/auto_name/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"fFa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/random/structure/closet_maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"fFi" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/obj/effect/turf_decal/siding/white, -/turf/open/floor/iron/dark, -/area/station/medical/office) -"fFo" = ( -/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, -/obj/effect/turf_decal/siding/purple{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/testlab) -"fFp" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"fFq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"fFu" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port) -"fFA" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmospherics_engine) -"fFC" = ( -/obj/structure/table, -/obj/item/storage/bag/construction, -/obj/item/storage/bag/construction, -/obj/item/storage/bag/construction, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/structure/sign/poster/official/build{ - pixel_x = 32 - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/atmos) -"fFK" = ( -/obj/structure/cable, -/obj/machinery/door/airlock{ - name = "Custodial Closet" - }, -/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/effect/mapping_helpers/airlock/access/all/service/janitor, -/turf/open/floor/iron, -/area/station/maintenance/starboard/greater) -"fGb" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Prison Sanitarium" - }, -/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, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/white, -/area/station/security/execution/transfer) -"fGd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/effect/mapping_helpers/airlock/locked, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_atmos{ - pixel_x = 40; - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"fGp" = ( -/obj/effect/turf_decal/stripes/line, -/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) -"fGv" = ( -/obj/structure/cable, -/obj/effect/landmark/start/scientist, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/lab) -"fGy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"fGC" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Detective Maintenance" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/security/detective, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"fGM" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"fGN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"fGP" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - 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/security/prison/mess) -"fGR" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Atmospherics Tank - N2" - }, -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"fGT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "PermaLockdown"; - name = "Lockdown Shutters"; - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plating, -/area/station/security/prison) -"fGW" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"fHa" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"fHd" = ( -/obj/machinery/power/shieldwallgen, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"fHk" = ( -/obj/machinery/newscaster/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/line, -/turf/open/floor/iron/dark, -/area/station/service/cafeteria) -"fHC" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"fHV" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/effect/spawner/random/bureaucracy/folder{ - spawn_random_offset = 1 - }, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"fIo" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"fIp" = ( -/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, -/area/station/cargo/qm) -"fIE" = ( -/obj/machinery/telecomms/server/presets/supply, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"fIG" = ( -/obj/structure/cable, -/obj/machinery/camera/directional/south{ - c_tag = "Chief Medical Officer's Office"; - network = list("ss13","medbay") - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"fIS" = ( -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"fIZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"fJc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/iron/white, -/area/station/science/ordnance/testlab) -"fJi" = ( -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole/bookmanagement, -/obj/structure/noticeboard/directional/east, -/turf/open/floor/wood, -/area/station/service/library) -"fJk" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/computer/chef_order{ - dir = 8 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"fJp" = ( -/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/command/heads_quarters/hop) -"fJs" = ( -/obj/structure/chair/stool/directional/west, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"fJy" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/department/engine) -"fJC" = ( -/obj/machinery/door/airlock/engineering/glass/critical{ - heat_proof = 1; - name = "Supermatter Chamber" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"fJP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"fJW" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"fKf" = ( -/obj/machinery/telecomms/bus/preset_three, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"fKg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" - }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"fKG" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/engine/cult, -/area/station/service/library) -"fKP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/structure/crate, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"fKZ" = ( -/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/engineering_guard, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"fLa" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/dark_red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/warden) -"fLc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/bar, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"fLd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"fLe" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"fLp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"fLq" = ( -/obj/machinery/door/window/left/directional/north{ - name = "Inner Pipe Access"; - req_access = list("atmospherics") - }, -/obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"fLI" = ( -/obj/structure/chair{ - name = "Bailiff" - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"fLJ" = ( -/obj/structure/cable, -/obj/machinery/power/tracker, -/turf/open/floor/plating/airless, -/area/station/solars/starboard/fore) -"fLS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrig"; - name = "Brig" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-entrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron, -/area/station/security/brig) -"fMb" = ( -/obj/effect/mapping_helpers/dead_body_placer, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"fMf" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"fMn" = ( -/obj/machinery/door/firedoor/heavy, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"fMp" = ( -/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) -"fMF" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"fMN" = ( -/obj/machinery/firealarm/directional/west, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"fMT" = ( -/obj/structure/table, -/obj/item/radio/intercom/directional/south, -/obj/machinery/computer/monitor{ - 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/ai_monitored/command/storage/satellite) -"fNa" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"fNh" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Prison Gate"; - name = "Security Blast Door" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/brig) -"fNx" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/rack, -/obj/item/tank/internals/anesthetic, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/medical/abandoned) -"fNH" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mining Dock Maintenance" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"fNI" = ( -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"fNR" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"fNS" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"fOb" = ( -/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/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/random/structure/crate_empty, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"fOd" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/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, -/area/station/security/brig) -"fOf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/range) -"fOn" = ( -/obj/item/storage/secure/safe/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Chief Engineer's Office" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"fOu" = ( -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"fOw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/range) -"fOS" = ( -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/item/food/grown/banana, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/grass, -/area/station/medical/virology) -"fPh" = ( -/obj/machinery/gateway/centerstation, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"fPl" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"fPw" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"fPD" = ( -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"fPS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"fQe" = ( -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"fQg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"fQo" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/purple/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"fQr" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"fQz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"fQD" = ( -/obj/structure/chair/stool/directional/north, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"fQT" = ( -/obj/effect/landmark/start/mime, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/theater) -"fQW" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Dock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"fQZ" = ( -/obj/structure/chair/stool/directional/west, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"fRe" = ( -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"fRg" = ( -/obj/item/food/snowcones/clown, -/turf/open/floor/fake_snow, -/area/station/maintenance/port/aft) -"fRl" = ( -/obj/structure/table, -/obj/item/storage/crayons, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/dorms) -"fRr" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"fRu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/command/teleporter) -"fRG" = ( -/obj/machinery/firealarm/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/toilet/auxiliary) -"fRQ" = ( -/obj/structure/table/wood/fancy/orange, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = -1; - pixel_y = -2 - }, -/obj/item/lighter{ - pixel_x = 11; - pixel_y = -7 - }, -/obj/item/coin/gold{ - pixel_x = 9; - pixel_y = 9 - }, -/turf/open/floor/carpet/red, -/area/station/cargo/qm) -"fRS" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"fRU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"fRW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"fRZ" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/machinery/light_switch/directional/south, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"fSd" = ( -/obj/structure/chair/stool/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/lounge) -"fSq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "AI Core shutters"; - name = "AI Core Shutters"; - dir = 1 - }, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/ai) -"fSz" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"fTn" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"fTo" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"fTE" = ( -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"fTL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"fTT" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/random/engineering/atmospherics_portable, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"fUg" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Engineering - Storage" - }, -/obj/machinery/suit_storage_unit/engine, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/engineering/main) -"fUj" = ( -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"fUr" = ( -/obj/structure/disposalpipe/segment, -/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/fore) -"fUx" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/bot_white, -/obj/structure/cable, -/obj/machinery/smartfridge/organ, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"fUM" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/libraryscanner, -/turf/open/floor/wood, -/area/station/service/library) -"fVa" = ( -/obj/structure/cable, -/obj/machinery/light_switch/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"fVh" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"fVi" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"fVk" = ( -/obj/structure/sign/warning/secure_area/directional/north, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/transit_tube/station/dispenser/flipped{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"fVr" = ( -/obj/machinery/holopad, -/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) -"fVA" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos) -"fVF" = ( -/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, -/area/station/hallway/primary/starboard) -"fVJ" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L1" - }, -/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) -"fVU" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"fVV" = ( -/obj/structure/window/reinforced, -/obj/machinery/camera/directional/east{ - c_tag = "Xenobiology Lab - Pen #5"; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"fVY" = ( -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"fWm" = ( -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/item/toy/plush/beeplushie{ - desc = "Maybe hugging this will make you feel better about yourself."; - name = "Therabee" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/safe) -"fWA" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/greater) -"fWU" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"fWW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/duct, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"fXb" = ( -/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, -/area/station/hallway/primary/central) -"fXi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Mix to Gas" - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"fXj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/structure/railing/corner, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/atmos) -"fXm" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/engine, -/area/station/science/explab) -"fXw" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/wood, -/area/station/cargo/qm) -"fXK" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/security/prison) -"fYb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/office) -"fYc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Medical Freezer Maintenance" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"fYg" = ( -/obj/machinery/computer/mechpad{ - dir = 8 - }, -/turf/open/floor/circuit/green, -/area/station/science/robotics/mechbay) -"fYh" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/spawner/random/food_or_drink/booze{ - spawn_random_offset = 1 - }, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"fYm" = ( -/obj/structure/table, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/office) -"fYI" = ( -/obj/structure/table/glass, -/obj/item/clothing/accessory/armband/hydro, -/obj/item/clothing/suit/apron, -/obj/item/wrench, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"fYJ" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"fYL" = ( -/obj/structure/table, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/item/disk/tech_disk{ - pixel_x = -6 - }, -/obj/item/disk/tech_disk{ - pixel_x = 6 - }, -/obj/item/disk/tech_disk{ - pixel_y = 6 - }, -/turf/open/floor/iron, -/area/station/science/lab) -"fYX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"fZa" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/library) -"fZG" = ( -/obj/item/radio/intercom/directional/north, -/obj/machinery/computer/security, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs) -"fZL" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Gravity Generator Room" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/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/engineering/construction, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"fZO" = ( -/obj/structure/closet/secure_closet/captains, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"gae" = ( -/obj/effect/spawner/xmastree, -/turf/open/floor/wood, -/area/station/commons/lounge) -"gag" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Library Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/service/library, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/port) -"gal" = ( -/obj/machinery/door/firedoor/heavy, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"gaq" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"gaw" = ( -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/table/reinforced, -/obj/machinery/microwave{ - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/checker, -/area/station/engineering/storage_shared) -"gax" = ( -/obj/machinery/light/directional/north, -/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/machinery/bluespace_vendor/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"gaG" = ( -/obj/effect/spawner/random/maintenance, -/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) -"gaN" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"gaU" = ( -/obj/machinery/button/door/directional/west{ - id = "hop"; - name = "Privacy Shutters Control"; - req_access = list("hop") - }, -/obj/effect/mapping_helpers/ianbirthday, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hop) -"gaV" = ( -/obj/structure/sign/directions/evac, -/obj/structure/sign/directions/medical{ - pixel_y = 8 - }, -/obj/structure/sign/directions/science{ - pixel_y = -8 - }, -/turf/closed/wall, -/area/station/security/courtroom) -"gaX" = ( -/obj/item/storage/secure/safe/hos{ - pixel_x = 36; - pixel_y = 28 - }, -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/light/directional/north, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hos) -"gaZ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/paper, -/obj/machinery/door/window/left/directional/east{ - dir = 2; - name = "Hydroponics Window"; - req_access = list("hydroponics") - }, -/obj/effect/turf_decal/delivery, -/obj/item/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hydro_service"; - name = "Service Shutter"; - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"gbf" = ( -/obj/machinery/duct, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"gbq" = ( -/obj/machinery/vending/wardrobe/chef_wardrobe, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 6 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light_switch/directional/south{ - pixel_x = -6 - }, -/obj/machinery/button/door/directional/south{ - id = "kitchen_service"; - name = "Service Shutter Control"; - pixel_x = 6; - req_access = list("kitchen") - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"gbG" = ( -/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/starboard/fore) -"gbS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"gbY" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-maint-passthrough" - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plating, -/area/station/science/research) -"gcc" = ( -/obj/machinery/light/directional/north, -/obj/machinery/photocopier{ - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/station/service/library) -"gcw" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/shutters{ - id = "mechbay"; - name = "Mech Bay Shutters"; - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"gcA" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=5-Customs"; - location = "4-Customs" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"gcK" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/shovel/spade, -/obj/item/wrench, -/obj/item/reagent_containers/glass/watering_can, -/obj/item/cultivator, -/obj/item/wirecutters, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"gcU" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/science/robotics, -/obj/machinery/door/airlock/research{ - name = "Robotics Lab" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"gcV" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/grass, -/area/station/science/research) -"gcW" = ( -/obj/machinery/door/window{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Theater Stage" - }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/wood, -/area/station/service/theater) -"gdb" = ( -/turf/closed/wall/r_wall, -/area/station/security/range) -"gdw" = ( -/obj/structure/table, -/obj/item/hatchet, -/obj/item/cultivator, -/obj/item/crowbar, -/obj/item/reagent_containers/glass/watering_can, -/obj/item/plant_analyzer, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"gdF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"gdL" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/storage/box/masks, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) -"gdZ" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/white, -/area/station/security/prison/visit) -"geg" = ( -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/light/directional/west, -/obj/structure/table/glass, -/obj/item/storage/secure/safe/caps_spare/directional/west, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"gev" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"gey" = ( -/obj/machinery/door/window{ - name = "MiniSat Walkway Access" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"geE" = ( -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/grass, -/area/station/medical/virology) -"geJ" = ( -/obj/machinery/light/directional/east, -/obj/structure/disposalpipe/segment, -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring the engine."; - dir = 8; - name = "Engine Monitor"; - network = list("engine"); - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"geK" = ( -/obj/machinery/computer/cargo{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/cargo/qm) -"geV" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/light_switch/directional/west, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"gfe" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/table, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"gfk" = ( -/obj/structure/table/wood, -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hos) -"gfD" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"gfU" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/aisat/exterior) -"gfZ" = ( -/obj/effect/turf_decal/trimline/purple/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"ggi" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"ggu" = ( -/obj/structure/railing{ - dir = 6 - }, -/turf/open/floor/iron/dark/side{ - dir = 6 - }, -/area/station/hallway/secondary/entry) -"ggH" = ( -/obj/effect/spawner/random/structure/chair_maintenance, -/turf/open/floor/iron/checker, -/area/station/maintenance/aft/lesser) -"ggM" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"ggU" = ( -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"ghc" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/office) -"ghk" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/science/lobby) -"ghl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Primary Hallway" - }, -/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/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"ghq" = ( -/obj/effect/landmark/start/hangover, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/wood, -/area/station/service/theater) -"ghw" = ( -/obj/effect/landmark/start/clown, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/service/theater) -"ghC" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/window/left/directional/east{ - name = "Kitchen Delivery"; - req_access = list("kitchen") - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/airalarm/kitchen_cold_room{ - dir = 1; - pixel_y = 24 - }, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/service/kitchen/coldroom) -"ghK" = ( -/obj/structure/rack, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"ghL" = ( -/turf/closed/wall/r_wall, -/area/space/nearstation) -"ghN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/janitorialcart, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron, -/area/station/service/janitor) -"gib" = ( -/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/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"gil" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ - dir = 4 - }, -/obj/machinery/airlock_sensor/incinerator_ordmix{ - pixel_x = -24 - }, -/turf/open/floor/engine, -/area/station/science/ordnance/burnchamber) -"gio" = ( -/obj/machinery/space_heater, -/obj/structure/sign/warning/vacuum/external/directional/north, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"giz" = ( -/obj/machinery/conveyor/inverted{ - dir = 10; - id = "QMLoad2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"giA" = ( -/turf/closed/wall/r_wall, -/area/station/tcommsat/computer) -"giH" = ( -/obj/machinery/vending/engivend, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/engineering/main) -"giT" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/port) -"gja" = ( -/obj/machinery/airalarm/directional/north, -/obj/structure/closet/secure_closet/personal, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/spawner/random/bureaucracy/briefcase, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"gji" = ( -/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, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"gjk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"gjr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/commons/lounge) -"gjv" = ( -/obj/machinery/door/window/left/directional/north{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #5"; - req_access = list("xenobiology") - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"gjF" = ( -/obj/machinery/vending/wardrobe/jani_wardrobe, -/turf/open/floor/iron, -/area/station/service/janitor) -"gjZ" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/security/prison/visit) -"gkc" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/doppler_array, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"gkn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/execution/transfer) -"gkx" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"gkD" = ( -/obj/machinery/recharger{ - pixel_y = 3 - }, -/obj/item/restraints/handcuffs{ - pixel_y = 3 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"gkS" = ( -/obj/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/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"gkU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"gle" = ( -/obj/structure/table/glass, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"gll" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/port/aft) -"glv" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"glz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"glJ" = ( -/obj/structure/table/wood, -/obj/item/clothing/glasses/monocle, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/wood, -/area/station/service/theater) -"glW" = ( -/obj/effect/turf_decal/stripes, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"gma" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"gmi" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/greater) -"gmk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/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 = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"gmp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"gms" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/medical/abandoned) -"gmt" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"gmz" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/restraints/handcuffs, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/structure/cable, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"gmH" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/command/bridge) -"gmI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"gmP" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/secondary/entry) -"gmS" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"gmT" = ( -/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/lesser) -"gmX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/service/chapel) -"gnc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/secondary/entry) -"gnk" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"gnA" = ( -/obj/structure/lattice/catwalk, -/obj/structure/easel, -/obj/item/canvas/twentythree_twentythree, -/turf/open/space/basic, -/area/space/nearstation) -"gnB" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"gnE" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/carpet, -/area/station/service/theater) -"gnL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"gnS" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"gnT" = ( -/obj/machinery/vending/wardrobe/atmos_wardrobe, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"gnY" = ( -/obj/machinery/disposal/bin{ - desc = "A pneumatic waste disposal unit. This one leads to the morgue."; - name = "corpse disposal" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/obj/structure/sign/warning/bodysposal/directional/south, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"gog" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio1"; - name = "Xenobio Pen 1 Blast Door" - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"goj" = ( -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/turf/open/floor/iron/kitchen_coldroom, -/area/station/medical/coldroom) -"gon" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/engineering/main) -"goG" = ( -/obj/item/radio/intercom/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Cargo Bay - Fore" - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/box/red, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"goW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"goX" = ( -/obj/effect/turf_decal/tile/red, -/obj/machinery/status_display/evac/directional/east, -/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/fore) -"goZ" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"gpc" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=1-BrigCells"; - location = "0-SecurityDesk" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"gpB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/lab) -"gpO" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"gpQ" = ( -/turf/open/floor/iron/stairs/medium{ - dir = 1 - }, -/area/station/engineering/atmos) -"gpS" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Captain's Office" - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"gqj" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/machinery/light_switch/directional/east, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"gqA" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/button/door/directional/south{ - id = "evashutter"; - name = "E.V.A. Storage Shutter Control"; - req_access = list("command") - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"gqI" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/virology) -"gqP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port) -"gqV" = ( -/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/virology) -"gqX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"grb" = ( -/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{ - icon_state = "crateopen" - }, -/obj/item/wrench, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"grl" = ( -/obj/item/tank/internals/oxygen, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/central) -"grp" = ( -/obj/machinery/vending/wardrobe/sec_wardrobe, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs) -"grw" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"grI" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"grZ" = ( -/obj/structure/chair, -/obj/machinery/camera/directional/north{ - c_tag = "Arrivals - Fore Arm - Far" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"gsn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"gso" = ( -/obj/effect/landmark/start/roboticist, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"gsr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"gsO" = ( -/obj/machinery/holopad, -/turf/open/floor/wood, -/area/station/service/library) -"gsW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay Clinic" - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/effect/landmark/navigate_destination, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"gtb" = ( -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"gtk" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/white, -/area/station/security/prison) -"gto" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"gty" = ( -/obj/structure/railing{ - dir = 9 - }, -/turf/open/floor/iron/dark/side{ - dir = 9 - }, -/area/station/hallway/secondary/entry) -"gtU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"gtV" = ( -/obj/machinery/computer/mecha{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) -"gub" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"gui" = ( -/obj/structure/bodycontainer/morgue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"guo" = ( -/obj/machinery/door/poddoor/incinerator_atmos_main, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"guC" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = -2 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"guD" = ( -/obj/effect/spawner/random/engineering/atmospherics_portable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"guG" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/testlab) -"guI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - 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, -/area/station/service/janitor) -"guR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/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, -/area/station/hallway/primary/central) -"guU" = ( -/obj/machinery/button/flasher{ - id = "visitorflash"; - pixel_x = -6; - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/button/door/directional/north{ - id = "visitation"; - name = "Visitation Shutters"; - pixel_x = 6; - req_access = list("brig") - }, -/turf/open/floor/iron, -/area/station/security/brig) -"guX" = ( -/turf/closed/wall, -/area/station/commons/storage/primary) -"guZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"gva" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"gvd" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"gvl" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/structure/bed/dogbed/ian, -/mob/living/simple_animal/pet/dog/corgi/ian, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"gvm" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/commons/lounge) -"gvG" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"gvH" = ( -/obj/structure/lattice/catwalk, -/obj/item/barcodescanner, -/turf/open/space/basic, -/area/space/nearstation) -"gvJ" = ( -/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/commons/locker) -"gwc" = ( -/obj/structure/chair/stool/bar/directional/south, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/lounge) -"gwd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"gwf" = ( -/turf/open/floor/glass/reinforced, -/area/station/science/research) -"gwq" = ( -/obj/structure/table/reinforced/rglass, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/mirror/directional/east, -/obj/item/reagent_containers/dropper, -/obj/item/hairbrush/comb{ - pixel_y = 10 - }, -/turf/open/floor/iron, -/area/service/salon) -"gwK" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/engineering/tank, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"gwN" = ( -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"gwS" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"gwU" = ( -/obj/structure/sign/warning/radiation/rad_area/directional/north{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"gwZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"gxb" = ( -/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, -/area/station/engineering/atmos) -"gxx" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Monitoring" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron/checker, -/area/station/engineering/atmos/storage/gas) -"gya" = ( -/obj/structure/table, -/obj/item/storage/box/hug{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/razor{ - pixel_x = -8; - pixel_y = 3 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"gyg" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"gyH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/engineering/main) -"gyI" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/left/directional/north{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Containment Pen #8"; - req_access = list("xenobiology") - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "Xenobio Pen 8 Blast Door" - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"gyK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"gyQ" = ( -/turf/closed/wall/r_wall, -/area/station/science/ordnance) -"gzi" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/item/book/fish_catalog, -/obj/structure/table/wood, -/turf/open/floor/iron, -/area/service/salon) -"gzm" = ( -/obj/machinery/door/morgue{ - name = "Confession Booth (Chaplain)"; - req_access = list("chapel_office") - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"gzs" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"gzJ" = ( -/obj/structure/chair/sofa/left, -/turf/open/floor/carpet, -/area/station/medical/psychology) -"gzO" = ( -/obj/machinery/firealarm/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Restrooms" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"gzW" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/effect/landmark/start/orderly, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) -"gAd" = ( -/obj/machinery/portable_atmospherics/canister/plasma, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"gAe" = ( -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"gAf" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"gAt" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"gAw" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"gAx" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"gAB" = ( -/obj/structure/table/glass, -/obj/item/hand_labeler, -/obj/item/radio/headset/headset_med, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"gAL" = ( -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"gAT" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"gAU" = ( -/obj/structure/table, -/obj/item/aicard, -/obj/item/ai_module/reset, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"gBc" = ( -/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, -/area/station/cargo/qm) -"gBe" = ( -/obj/machinery/cryopod{ - dir = 8 - }, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/common/cryopods) -"gBx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"gBD" = ( -/turf/closed/wall/r_wall, -/area/station/command/teleporter) -"gBN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"gBX" = ( -/obj/structure/bed, -/obj/item/bedsheet/captain, -/obj/effect/landmark/start/captain, -/obj/machinery/camera/directional/east{ - c_tag = "Captain's Quarters" - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"gBY" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating, -/area/station/commons/fitness/recreation) -"gCn" = ( -/obj/structure/disposalpipe/segment, -/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) -"gCA" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"gCD" = ( -/obj/machinery/computer/warrant{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/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/fore) -"gCS" = ( -/obj/structure/window/reinforced, -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"gCT" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"gCW" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"gDm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"gDv" = ( -/obj/item/kirbyplants, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"gDA" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"gDT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"gDZ" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port) -"gEe" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/green{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"gEg" = ( -/turf/closed/wall, -/area/station/security/execution/education) -"gEl" = ( -/obj/structure/bed, -/obj/item/bedsheet/red, -/obj/effect/landmark/start/prisoner, -/turf/open/floor/iron/dark, -/area/station/security/prison/safe) -"gEu" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/button/ignition{ - id = "Xenobio"; - pixel_x = -4; - pixel_y = -3 - }, -/obj/machinery/button/door/directional/north{ - id = "Xenolab"; - name = "Test Chamber Blast Doors"; - pixel_x = 6; - pixel_y = -2; - req_access = list("xenobiology") - }, -/obj/structure/table/reinforced/plastitaniumglass, -/obj/machinery/computer/security/telescreen{ - name = "Test Chamber Monitor"; - network = list("xeno"); - pixel_y = 9 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"gEv" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) -"gEF" = ( -/obj/structure/rack, -/obj/item/clothing/gloves/color/fyellow, -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"gEX" = ( -/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/machinery/light/small/directional/north, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/station/service/chapel/funeral) -"gFa" = ( -/obj/docking_port/stationary/random{ - dir = 4; - id = "pod_4_lavaland"; - name = "lavaland" - }, -/turf/open/space/basic, -/area/space) -"gFb" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/space/basic, -/area/space) -"gFd" = ( -/obj/machinery/power/terminal, -/obj/machinery/light/small/directional/east, -/obj/item/radio/intercom/directional/east, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"gFi" = ( -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"gFp" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/photocopier, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hos) -"gFD" = ( -/obj/structure/table, -/obj/item/book/manual/hydroponics_pod_people, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"gFL" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"gFQ" = ( -/turf/closed/wall/r_wall, -/area/station/science/research) -"gFR" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron, -/area/station/security/brig) -"gGa" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L5" - }, -/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) -"gGh" = ( -/obj/structure/closet/crate/coffin, -/turf/open/floor/plating, -/area/station/service/chapel/funeral) -"gGo" = ( -/obj/effect/turf_decal/tile/red, -/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/fore) -"gGy" = ( -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"gGU" = ( -/obj/structure/cable, -/obj/machinery/airalarm/directional/south, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/trimline/dark_red/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/security/warden) -"gHo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/holding_cell) -"gHw" = ( -/obj/machinery/atmospherics/components/tank, -/obj/effect/turf_decal/siding/purple{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"gHE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"gHI" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/department/engine) -"gHY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/engineering/atmospherics_engine) -"gIc" = ( -/obj/structure/chair{ - name = "Judge" - }, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"gIe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"gIi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/science/lab) -"gIB" = ( -/obj/structure/light_construct/directional/north, -/obj/effect/decal/cleanable/greenglow, -/obj/structure/showcase/machinery/cloning_pod{ - desc = "An old prototype cloning pod, permanently decommissioned following the incident."; - name = "decommissioned cloner" - }, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"gIC" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"gIK" = ( -/obj/structure/closet/bombcloset, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"gIO" = ( -/obj/machinery/computer/communications, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"gIS" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"gJn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/white, -/area/station/science/xenobiology/hallway) -"gJu" = ( -/obj/structure/rack, -/obj/item/stack/rods{ - amount = 23 - }, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"gJN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"gJV" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"gKc" = ( -/obj/effect/spawner/random/structure/chair_maintenance{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"gKe" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"gKt" = ( -/obj/structure/disposalpipe/segment, -/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/engineering/main) -"gKw" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"gKD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Xenobiology Lab - Central East"; - network = list("ss13","rd","xeno") - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"gKI" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchen_counter"; - name = "Kitchen Counter Shutters"; - dir = 1 - }, -/obj/structure/desk_bell{ - pixel_x = 7 - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/service/kitchen) -"gKK" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"gKO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"gKS" = ( -/obj/machinery/gibber, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/service/kitchen/coldroom) -"gLb" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark/corner, -/area/station/security/prison) -"gLe" = ( -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"gLo" = ( -/obj/machinery/power/terminal, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"gLy" = ( -/obj/machinery/portable_atmospherics/pump{ - name = "Lil Pump" - }, -/obj/effect/turf_decal/siding/purple{ - dir = 5 - }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/light/directional/north, -/obj/machinery/button/door/directional/north{ - id = "rdordnance"; - name = "Ordnance Containment Control"; - req_access = list("rd") - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"gLH" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "XenoPens"; - name = "Xenobiology Lockdown"; - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"gLI" = ( -/obj/machinery/door/poddoor/massdriver_ordnance, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/station/science/ordnance/testlab) -"gLK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"gLU" = ( -/obj/structure/table, -/obj/effect/turf_decal/siding{ - dir = 9 - }, -/obj/item/stock_parts/matter_bin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/micro_laser, -/turf/open/floor/iron, -/area/station/science/lab) -"gMc" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"gMg" = ( -/obj/structure/table, -/obj/item/storage/medkit/regular, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/glass/bottle/multiver, -/obj/item/reagent_containers/syringe, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) -"gMi" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/dryer{ - dir = 4; - pixel_x = -6; - pixel_y = -6 - }, -/turf/open/floor/iron, -/area/service/salon) -"gMp" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"gMt" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"gMA" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"gMB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"gMG" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Engineering - Power Monitoring" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/computer/station_alert, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"gMQ" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-maint-passthrough" - }, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Entrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron/white, -/area/station/science/research) -"gMZ" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/fore) -"gNh" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"gNl" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage" - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"gNy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-right" - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"gNC" = ( -/obj/machinery/light/small/directional/north, -/turf/open/floor/engine, -/area/station/science/explab) -"gND" = ( -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"gNF" = ( -/obj/machinery/light/directional/west, -/obj/structure/cable, -/obj/structure/sign/poster/official/random/directional/west, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"gNT" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"gNW" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/effect/spawner/random/maintenance/three, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"gOb" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"gOp" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"gOr" = ( -/obj/machinery/airalarm/directional/north, -/obj/item/kirbyplants{ - icon_state = "applebush" - }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"gOz" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/spawner/random/maintenance, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/maintenance/department/engine) -"gOB" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"gOS" = ( -/obj/structure/cable, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/dropper, -/obj/machinery/camera/directional/north{ - c_tag = "Virology Isolation B"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"gOX" = ( -/obj/machinery/light/directional/east, -/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, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"gPa" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/iron/chapel{ - dir = 4 - }, -/area/station/service/chapel) -"gPh" = ( -/obj/item/clothing/head/fedora, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/station/commons/lounge) -"gPz" = ( -/obj/item/hand_labeler_refill, -/obj/structure/rack, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"gPA" = ( -/obj/structure/table/wood, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"gPX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"gPY" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"gQf" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/turf/open/space/basic, -/area/space/nearstation) -"gQv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"gQw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/white/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"gQy" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig) -"gQG" = ( -/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) -"gQK" = ( -/obj/effect/spawner/random/decoration/statue, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"gQQ" = ( -/turf/closed/wall, -/area/station/engineering/break_room) -"gQT" = ( -/obj/structure/table, -/obj/item/folder, -/obj/item/pen, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/photo_album/prison, -/obj/item/camera, -/obj/machinery/light/directional/south, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison) -"gRb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"gRp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"gSn" = ( -/obj/item/wrench, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"gSu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"gSx" = ( -/obj/machinery/suit_storage_unit/hos, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"gSD" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"gSF" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/spawner/random/medical/memeorgans, -/obj/structure/closet/crate/freezer, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"gSH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/machinery/rnd/server/master, -/turf/open/floor/circuit/telecomms/server, -/area/station/science/server) -"gTf" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"gTh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/gravity_generator) -"gTk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"gTn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"gTo" = ( -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Science Guard's Office" - }, -/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/science/sci_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"gTt" = ( -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hos) -"gTC" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/item/crowbar, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"gTK" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/reagent_dispensers/watertank, -/obj/item/extinguisher{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/extinguisher, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"gTM" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"gTP" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"gTS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"gTU" = ( -/obj/effect/turf_decal/siding/purple/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"gUf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"gUl" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"gUs" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port) -"gUt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"gUM" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on/coldroom, -/obj/effect/turf_decal/delivery, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/service/kitchen/coldroom) -"gUP" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"gUS" = ( -/turf/closed/wall, -/area/station/science/xenobiology/hallway) -"gUX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/spawner/random/maintenance, -/obj/item/stock_parts/cell, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"gUY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/structure/chair/stool/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"gVa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/commons/lounge) -"gVb" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/oil/slippery, -/obj/effect/decal/cleanable/blood/gibs/down, -/mob/living/simple_animal/bot/mulebot{ - name = "Leaping Rabbit" - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"gVj" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"gVn" = ( -/obj/effect/turf_decal/siding/white{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/medical/office) -"gVx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"gVz" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/iron/stairs, -/area/station/hallway/secondary/entry) -"gVO" = ( -/obj/effect/turf_decal/trimline/purple/corner{ - 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/structure/cable, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/iron/white, -/area/station/science/research) -"gWc" = ( -/obj/machinery/computer/prisoner/gulag_teleporter_computer{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"gWl" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/service/bar) -"gWn" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"gWv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"gWH" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"gWS" = ( -/obj/structure/window, -/obj/effect/decal/cleanable/food/flour, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"gXd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/service/janitor) -"gXe" = ( -/obj/structure/mirror/directional/west, -/obj/item/lipstick/black, -/obj/item/lipstick/jade{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/lipstick/purple{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/structure/table, -/turf/open/floor/plating, -/area/station/maintenance/port) -"gXg" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching Prison Wing holding areas."; - name = "Prison Monitor"; - network = list("prison"); - pixel_y = 30 - }, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/restraints/handcuffs, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"gXj" = ( -/obj/structure/cable, -/obj/structure/table/wood, -/obj/item/clothing/mask/cigarette/pipe, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/wood, -/area/station/commons/lounge) -"gXl" = ( -/obj/structure/flora/rock/pile/jungle/style_random, -/turf/open/floor/grass, -/area/station/medical/virology) -"gXo" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/obj/machinery/deepfryer, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 9 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"gXp" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating/airless, -/area/station/solars/port/aft) -"gXu" = ( -/turf/open/floor/plating, -/area/station/engineering/main) -"gXw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/circuit/telecomms, -/area/station/science/xenobiology) -"gXz" = ( -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"gXF" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"gXI" = ( -/obj/structure/table, -/obj/machinery/light/directional/north, -/obj/item/folder/white{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 7 - }, -/obj/item/reagent_containers/dropper{ - pixel_x = -3; - pixel_y = -6 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/science/lab) -"gXM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/range) -"gXW" = ( -/obj/machinery/light_switch/directional/north, -/obj/machinery/pipedispenser/disposal, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/no_nightlight/directional/north, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"gYi" = ( -/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/security/execution/transfer) -"gYl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/insectguts, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/iron/white, -/area/station/science/ordnance/testlab) -"gYw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/air_output{ - dir = 1 - }, -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"gYA" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"gYC" = ( -/obj/effect/spawner/random/trash/mess, -/obj/effect/spawner/random/engineering/tracking_beacon, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"gYE" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/obj/effect/spawner/random/trash/garbage{ - spawn_loot_count = 3 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"gYO" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/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/starboard) -"gYU" = ( -/turf/closed/wall, -/area/station/service/chapel/funeral) -"gZD" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"gZG" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron, -/area/station/engineering/main) -"gZQ" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/explab) -"haa" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/bot{ - 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{ - dir = 1 - }, -/area/station/engineering/main) -"hac" = ( -/obj/machinery/status_display/ai/directional/north, -/obj/machinery/porta_turret/ai, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the RD's goons from the safety of his office."; - dir = 4; - name = "Research Monitor"; - network = list("rd"); - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"hao" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/mob/living/simple_animal/pet/dog/corgi/puppy/void{ - dir = 4 - }, -/turf/open/floor/grass, -/area/station/science/research) -"haq" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"hav" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/medical/pharmacy, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"haA" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/machinery/newscaster/directional/west, -/obj/item/pen/invisible, -/turf/open/floor/engine/cult, -/area/station/service/library) -"haE" = ( -/obj/structure/mirror/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/commons/toilet/auxiliary) -"haP" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"haR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/main) -"hbv" = ( -/turf/closed/wall/r_wall, -/area/station/medical/coldroom) -"hbK" = ( -/turf/closed/wall, -/area/station/maintenance/department/science/xenobiology) -"hbM" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"hbQ" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"hbR" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/storage/gas) -"hbS" = ( -/obj/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/trimline/dark_red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/warden) -"hcv" = ( -/obj/effect/landmark/observer_start, -/obj/effect/turf_decal/plaque{ - icon_state = "L8" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"hcx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"hcP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/greater) -"hcR" = ( -/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, -/area/station/medical/virology) -"hcT" = ( -/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/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"hcU" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"hda" = ( -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/central) -"hdg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/engine, -/area/station/engineering/atmospherics_engine) -"hdp" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/closed/wall, -/area/station/engineering/atmos/pumproom) -"hdx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/port) -"hdy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "Test Chamber Blast Door" - }, -/obj/structure/cable, -/obj/structure/sign/warning/electric_shock, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"hdF" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/suit_storage_unit/medical, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"hdI" = ( -/obj/machinery/light_switch/directional/north, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"hdM" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"hdU" = ( -/obj/structure/railing{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/station/engineering/atmos) -"hdZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"hed" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/machinery/meter, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hen" = ( -/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/cargo/warehouse) -"hep" = ( -/obj/effect/landmark/blobstart, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"heE" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/decoration/ornament, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"heF" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L14" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"heL" = ( -/obj/structure/chair/stool/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"heV" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Fuel Pipe to Filter" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hfa" = ( -/obj/machinery/computer/crew, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"hfi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"hft" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/dorms) -"hfA" = ( -/obj/machinery/door/airlock/grunge{ - name = "Cell 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/prison/safe) -"hgt" = ( -/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/security/brig) -"hgA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/purple, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/white, -/area/station/science/ordnance/testlab) -"hgE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/railing, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/hidden, -/turf/open/floor/iron/stairs/right{ - dir = 8 - }, -/area/station/engineering/atmospherics_engine) -"hgH" = ( -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"hgU" = ( -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 5 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/green{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"hhl" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_y = 7 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/iron/dark, -/area/station/security/range) -"hht" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/storage/tech) -"hhN" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/turf/open/floor/iron, -/area/station/commons/lounge) -"hio" = ( -/obj/effect/turf_decal/tile/bar, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"hip" = ( -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hop) -"hiu" = ( -/obj/machinery/computer/secure_data, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"hiy" = ( -/obj/machinery/igniter/incinerator_atmos, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"hiB" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"hiM" = ( -/obj/machinery/food_cart, -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 4 - }, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/service/kitchen/coldroom) -"hja" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/chem_master, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"hjo" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/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 = "rdoffice"; - name = "Privacy Control"; - pixel_y = 34; - req_access = list("rd") - }, -/obj/machinery/computer/security/telescreen/rd{ - pixel_x = 31; - pixel_y = 30 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"hjp" = ( -/obj/item/clothing/mask/gas, -/obj/effect/spawner/random/structure/table_or_rack, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"hjw" = ( -/turf/open/floor/iron/white, -/area/station/science/cytology) -"hjS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"hkj" = ( -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"hko" = ( -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"hkp" = ( -/obj/docking_port/stationary/mining_home{ - dir = 8 - }, -/turf/open/space/basic, -/area/space) -"hkE" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/siding/red{ - dir = 4 - }, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"hkG" = ( -/turf/open/floor/wood, -/area/station/commons/lounge) -"hkH" = ( -/obj/effect/turf_decal/trimline/purple/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/iron/white, -/area/station/science/research) -"hkJ" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Auxiliary Base Construction" - }, -/obj/machinery/button/door/directional/south{ - id = "aux_base_shutters"; - name = "Public Shutters Control"; - req_access = list("aux_base") - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"hkV" = ( -/obj/machinery/computer/libraryconsole/bookmanagement, -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison) -"hlb" = ( -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"hlq" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"hlu" = ( -/obj/structure/sign/painting/library{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/station/service/library) -"hlx" = ( -/turf/closed/wall, -/area/station/security/interrogation) -"hlz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"hlD" = ( -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"hlF" = ( -/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/aft/lesser) -"hlK" = ( -/obj/structure/chair, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/security/office) -"hlN" = ( -/obj/structure/frame/machine{ - anchored = 1 - }, -/turf/open/floor/engine/vacuum, -/area/space/nearstation) -"hlU" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring medbay to ensure patient safety."; - dir = 4; - name = "Medbay Monitor"; - network = list("medbay"); - pixel_x = -32 - }, -/obj/machinery/light_switch/directional/west{ - pixel_x = -20 - }, -/obj/machinery/computer/med_data{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) -"hlX" = ( -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/machinery/vending/wardrobe/medi_wardrobe, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"hmf" = ( -/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, -/area/station/engineering/break_room) -"hml" = ( -/obj/effect/turf_decal/box/red, -/obj/effect/turf_decal/arrows/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable/multilayer/connected, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"hmq" = ( -/obj/effect/turf_decal/tile/blue, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"hmy" = ( -/obj/machinery/door/window/left/directional/south{ - name = "Permabrig Kitchen" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"hmY" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/service/salon) -"hne" = ( -/obj/machinery/door/window/brigdoor{ - name = "Justice Chamber"; - req_access = list("armory") - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Justice Chamber"; - req_access = list("armory") - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "executionfireblast" - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"hnp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"hnr" = ( -/obj/structure/chair/stool/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/lounge) -"hns" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"hnv" = ( -/obj/effect/turf_decal/bot, -/obj/structure/mecha_wreckage/ripley, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"hnG" = ( -/obj/machinery/door/poddoor{ - id = "Secure Storage"; - name = "Secure Storage" - }, -/turf/open/floor/plating, -/area/station/engineering/main) -"hod" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/storage) -"hoE" = ( -/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/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"hoN" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/right/directional/east{ - name = "Pharmacy Desk"; - req_access = list("pharmacy") - }, -/obj/machinery/door/window/right/directional/east{ - dir = 8; - name = "Pharmacy Desk"; - req_access = list("medical") - }, -/obj/item/reagent_containers/glass/bottle/morphine, -/obj/item/reagent_containers/glass/bottle/toxin{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 8 - }, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = -5 - }, -/obj/item/reagent_containers/syringe/epinephrine, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"hoQ" = ( -/obj/structure/table, -/obj/item/clothing/under/suit/black/skirt, -/obj/item/clothing/under/suit/black_really, -/obj/machinery/light/small/directional/north, -/obj/item/radio/intercom/directional/north, -/obj/item/clothing/accessory/waistcoat, -/obj/item/clothing/suit/toggle/lawyer/black, -/obj/item/clothing/under/suit/red, -/obj/item/clothing/neck/tie/black, -/obj/item/clothing/under/suit/black, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms) -"hoY" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"hoZ" = ( -/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, -/area/station/service/lawoffice) -"hpi" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L2" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"hpB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"hqj" = ( -/turf/closed/wall/r_wall, -/area/station/science/ordnance/burnchamber) -"hqo" = ( -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/machinery/light/small/directional/north, -/obj/structure/table/wood, -/obj/structure/noticeboard/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"hqr" = ( -/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/pumproom) -"hqE" = ( -/obj/machinery/telecomms/bus/preset_four, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"hqT" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"hqW" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 9 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/service/kitchen) -"hrc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "pharmacy_shutters"; - name = "Pharmacy Shutters"; - dir = 1 - }, -/turf/open/floor/plating, -/area/station/medical/pharmacy) -"hrh" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"hri" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/displaycase/forsale/kitchen{ - pixel_y = 8 - }, -/obj/machinery/computer/security/telescreen/entertainment/directional/west, -/turf/open/floor/iron, -/area/station/service/bar) -"hrG" = ( -/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/grimy, -/area/station/service/chapel/office) -"hrM" = ( -/obj/machinery/vending/boozeomat, -/obj/structure/sign/picture_frame/portrait/bar{ - pixel_y = -28 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/service/bar) -"hsh" = ( -/obj/structure/table, -/obj/item/plate, -/obj/item/candle, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/radio{ - desc = "An old handheld radio. You could use it, if you really wanted to."; - icon_state = "radio"; - name = "old radio"; - pixel_y = 15 - }, -/turf/open/floor/plating, -/area/station/maintenance/space_hut) -"hsp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"hsF" = ( -/obj/machinery/door/airlock{ - id_tag = "AuxToilet3"; - name = "Unit 3" - }, -/turf/open/floor/plating, -/area/station/commons/toilet/auxiliary) -"hsN" = ( -/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/chapel) -"hsZ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/service/salon) -"hta" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ - dir = 1 - }, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/engineering/atmos) -"htb" = ( -/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/cable, -/turf/open/floor/iron, -/area/station/security/holding_cell) -"htd" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"htn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/science/research) -"hto" = ( -/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/chapel/funeral) -"htr" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"htD" = ( -/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, -/area/station/engineering/atmospherics_engine) -"htE" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/primary/port) -"htG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hop) -"htO" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/librarian, -/turf/open/floor/wood, -/area/station/service/library) -"htP" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"htS" = ( -/obj/structure/fluff/iced_abductor, -/turf/open/misc/asteroid/basalt/airless, -/area/space/nearstation) -"htY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 9 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos) -"huj" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"hum" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/greater) -"huq" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"hur" = ( -/obj/machinery/light/floor, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hux" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/command/teleporter) -"huF" = ( -/obj/item/clothing/suit/snowman, -/obj/item/clothing/head/snowman, -/turf/open/floor/fake_snow, -/area/station/maintenance/port/aft) -"huG" = ( -/turf/closed/wall, -/area/station/service/kitchen/coldroom) -"huX" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"huZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"hvr" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Central Primary Hallway - Fore - Courtroom" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"hvs" = ( -/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/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"hvB" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/trimline/brown/filled/warning, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"hvI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/obj/structure/plaque/static_plaque/golden/commission/meta, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"hvJ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"hvN" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "ordnancebridge"; - dir = 4 - }, -/obj/machinery/button/door{ - id = "ordnancebridge"; - pixel_y = 24; - req_one_access_txt = list("maint_tunnels","science") - }, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"hvO" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"hwe" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/right/directional/south{ - dir = 8; - name = "First Aid Supplies"; - req_access = list("medical") - }, -/obj/item/mod/module/plasma_stabilizer, -/obj/item/mod/module/thermal_regulator, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"hwg" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"hwo" = ( -/obj/structure/rack, -/obj/item/clothing/under/misc/mailman, -/obj/item/clothing/under/misc/vice_officer, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"hwt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"hwz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"hwC" = ( -/obj/structure/window/reinforced{ - 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/theater) -"hwF" = ( -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"hwZ" = ( -/obj/structure/chair/stool/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/security/prison) -"hxe" = ( -/obj/effect/turf_decal/stripes/line{ - 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 = 9 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"hxo" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/storage) -"hxq" = ( -/obj/machinery/chem_mass_spec, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"hxt" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light/small/directional/north, -/obj/item/clothing/under/misc/assistantformal, -/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/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"hxu" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology/hallway) -"hxz" = ( -/obj/item/reagent_containers/spray/plantbgone{ - pixel_y = 3 - }, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 13; - pixel_y = 5 - }, -/obj/item/watertank, -/obj/item/grenade/chem_grenade/antiweed, -/obj/structure/table/glass, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"hxB" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"hxD" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"hxF" = ( -/obj/effect/turf_decal/bot_blue, -/obj/structure/closet/secure_closet/smartgun, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"hxJ" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Crew Quarters Entrance" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/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, -/area/station/commons/locker) -"hxV" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"hxW" = ( -/obj/machinery/door/window/left/directional/west{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "Gas Ports" - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "justice gas pump" - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"hxY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"hyd" = ( -/obj/effect/turf_decal/bot_white, -/turf/open/floor/iron, -/area/station/cargo/storage) -"hye" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"hyn" = ( -/obj/machinery/airalarm/directional/west, -/obj/effect/spawner/random/vending/snackvend, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"hyC" = ( -/obj/structure/disposaloutlet{ - desc = "An outlet for the pneumatic disposal system. This one seems designed for rapid corpse disposal."; - dir = 8; - name = "rapid corpse mover 9000" - }, -/obj/structure/window/reinforced, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"hyN" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) -"hyT" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"hyW" = ( -/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, -/area/station/hallway/primary/port) -"hyZ" = ( -/obj/machinery/flasher/directional/east{ - id = "AI"; - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/holopad/secure, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"hze" = ( -/obj/machinery/newscaster/directional/south, -/obj/structure/table, -/obj/effect/spawner/random/decoration/ornament, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/secondary/entry) -"hzF" = ( -/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{ - sortType = 27 - }, -/obj/effect/turf_decal/tile/green/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"hzJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"hzL" = ( -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"hAc" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"hAk" = ( -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/obj/machinery/duct, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"hAu" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron, -/area/station/commons/locker) -"hAE" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"hAN" = ( -/obj/structure/cable, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"hAW" = ( -/obj/machinery/camera/directional/south{ - c_tag = "RD Observation Cage"; - network = list("ss13","rd") - }, -/turf/open/floor/engine, -/area/station/command/heads_quarters/rd) -"hBr" = ( -/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 = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"hBB" = ( -/obj/machinery/computer/rdconsole{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"hBC" = ( -/obj/structure/kitchenspike_frame, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"hBD" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"hBR" = ( -/obj/structure/rack, -/obj/item/shield/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/shield/riot, -/obj/item/shield/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"hBY" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"hCl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"hCt" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"hCw" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"hCB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lawyer_shutters"; - name = "Law Office Shutters" - }, -/turf/open/floor/plating, -/area/station/service/lawoffice) -"hCK" = ( -/obj/effect/decal/cleanable/oil/slippery, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron/white, -/area/station/science/research) -"hDa" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"hDe" = ( -/obj/machinery/portable_atmospherics/canister/plasma, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"hDj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"hDp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/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/white, -/area/station/medical/medbay/central) -"hDx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/iron/stairs{ - dir = 4 - }, -/area/station/hallway/secondary/entry) -"hDX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/checkpoint/supply) -"hEA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"hED" = ( -/obj/structure/cable, -/obj/machinery/holopad, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"hEO" = ( -/obj/machinery/suit_storage_unit/rd, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Science Admin"; - network = list("ss13","rd") - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"hET" = ( -/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/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"hEU" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/secondary/entry) -"hEV" = ( -/obj/effect/decal/cleanable/garbage, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"hEX" = ( -/obj/structure/closet/secure_closet/atmospherics, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"hFz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "Xenobio Pen 8 Blast Door" - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"hFD" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"hGi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"hGk" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"hGl" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"hGm" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/turf_decal/box/red, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"hGv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/random/maintenance, -/obj/structure/cable, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"hGy" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageExternal" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/plating, -/area/station/cargo/qm) -"hGF" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"hGK" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/cooking_to_serve_man, -/obj/structure/cable, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/service/kitchen) -"hGL" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/maintenance/department/engine) -"hHd" = ( -/obj/effect/spawner/random/maintenance, -/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/starboard/fore) -"hHs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"hHt" = ( -/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) -"hHC" = ( -/obj/machinery/door/window/right/directional/south{ - name = "First Aid Supplies"; - req_access = list("medical") - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/medkit/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/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/structure/table/reinforced, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"hHK" = ( -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"hHO" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"hHR" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/under/misc/assistantformal, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"hIm" = ( -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab" - }, -/obj/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/science/ordnance, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"hIw" = ( -/obj/effect/turf_decal/trimline/red/filled/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/ai_monitored/security/armory) -"hIE" = ( -/obj/structure/cable, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"hIJ" = ( -/obj/structure/cable, -/obj/machinery/chem_heater/withbuffer, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"hIQ" = ( -/obj/structure/cable, -/obj/effect/landmark/start/security_officer, -/turf/open/floor/iron, -/area/station/security/office) -"hIZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/structure/grille, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"hJb" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/left/directional/west{ - dir = 1; - name = "Monkey Pen"; - req_access = list("genetics") - }, -/turf/open/floor/grass, -/area/station/science/genetics) -"hJv" = ( -/obj/structure/chair/stool/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/commons/dorms) -"hJF" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/button/door/directional/south{ - id = "mechbay"; - name = "Mech Bay Shutters Control"; - req_access = list("robotics") - }, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"hJH" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/port) -"hJJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/tcommsat/server) -"hKg" = ( -/turf/closed/wall, -/area/station/cargo/miningoffice) -"hKi" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"hKp" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/item/poster/random_contraband, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port) -"hKv" = ( -/obj/structure/chair/pew/left, -/turf/open/floor/iron/chapel{ - dir = 1 - }, -/area/station/service/chapel) -"hKw" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/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, -/area/station/hallway/primary/port) -"hKE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 1 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 9 - }, -/obj/machinery/light/directional/north, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"hKG" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"hKP" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/firealarm/directional/north, -/obj/structure/tank_holder/extinguisher, -/obj/machinery/camera/directional/east{ - c_tag = "Medbay Cryogenics"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"hKV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"hLj" = ( -/obj/machinery/light/directional/west, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/item/kirbyplants{ - icon_state = "plant-03" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"hLs" = ( -/obj/effect/spawner/random/structure/crate, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"hLx" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"hLB" = ( -/obj/structure/rack, -/obj/item/crowbar/red, -/obj/item/restraints/handcuffs, -/obj/item/wrench, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"hLJ" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/red/box, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"hLL" = ( -/obj/structure/disposalpipe/segment, -/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) -"hLZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"hMc" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/structure/sign/poster/official/moth_piping{ - pixel_y = 32 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"hMn" = ( -/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/construction/storage_wing) -"hMo" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Vacant Office Maintenance" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/plating, -/area/station/maintenance/port) -"hMq" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"hMv" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/left/directional/north{ - dir = 4; - name = "Containment Pen #1"; - req_access = list("xenobiology") - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio1"; - name = "Xenobio Pen 1 Blast Door" - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"hMy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/security/warden) -"hME" = ( -/obj/structure/table/wood, -/obj/item/taperecorder{ - pixel_x = 3 - }, -/obj/item/storage/box/evidence, -/obj/item/flashlight/seclite, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"hMQ" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Holodeck Control" - }, -/obj/item/radio/intercom/directional/south, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"hNw" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/airalarm/directional/south, -/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/commons/dorms) -"hNz" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/chair, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"hNC" = ( -/obj/machinery/door/airlock{ - name = "Starboard Emergency Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"hND" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"hNN" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Medbay Break Room"; - network = list("ss13","medbay") - }, -/obj/machinery/light/directional/west, -/obj/item/radio/intercom/directional/west, -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"hNQ" = ( -/obj/structure/sign/warning/secure_area/directional/west, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/closet/bombcloset, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"hOd" = ( -/obj/structure/table, -/obj/machinery/microwave, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron, -/area/station/science/research) -"hOh" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/brown/filled/warning, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"hOl" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"hOp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"hOR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/random/trash/soap{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"hPu" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"hPM" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"hQj" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ - dir = 4 - }, -/obj/effect/turf_decal/tile/dark/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hQu" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"hQv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-right" - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"hQB" = ( -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/engineering/atmos) -"hQE" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/chair/pew/left, -/turf/open/floor/iron/chapel{ - dir = 1 - }, -/area/station/service/chapel) -"hQT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"hQY" = ( -/obj/machinery/door/window/right/directional/north{ - name = "Petting Zoo" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/research) -"hRf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"hRh" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/reagent_dispensers/watertank/high, -/obj/item/reagent_containers/glass/watering_can, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"hRl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"hRq" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room" - }, -/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{ - dir = 1 - }, -/area/station/engineering/main) -"hRy" = ( -/obj/machinery/atmospherics/components/binary/pump/on, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/science/ordnance/burnchamber) -"hRD" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"hRQ" = ( -/obj/machinery/disposal/bin{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"hRU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"hRW" = ( -/obj/machinery/light/directional/east, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"hSd" = ( -/obj/structure/cable, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/button/door/directional/south{ - id = "PermaLockdown"; - name = "Panic Button"; - req_access = list("brig") - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"hSe" = ( -/obj/machinery/light/small/directional/east, -/obj/item/radio/intercom/directional/north, -/obj/structure/table/wood, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = -1 - }, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"hSf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/stack/cable_coil, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"hSg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/cafeteria) -"hSt" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/keycard_auth/directional/west, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"hSG" = ( -/obj/structure/closet/lasertag/red, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"hSH" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/brig) -"hSO" = ( -/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) -"hTn" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/button/door/directional/west{ - id = "Disposal Exit"; - name = "Disposal Vent Control"; - req_access = list("maint_tunnels") - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"hTq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hTt" = ( -/obj/machinery/computer/station_alert{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 1; - pixel_y = -29 - }, -/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/storage/satellite) -"hTE" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/bluespace_vendor/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"hTV" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/highsecurity{ - name = "Gravity Generator Foyer" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/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/construction, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"hUd" = ( -/obj/structure/closet/l3closet/scientist, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/white, -/area/station/science/xenobiology/hallway) -"hUn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"hUu" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/reagent_dispensers/wall/peppertank/directional/east, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"hUC" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table, -/obj/item/surgical_drapes, -/obj/item/cautery, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"hUD" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"hUG" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/structure/mirror/directional/west, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/service/salon) -"hUM" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"hUN" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/space_hut) -"hUO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"hVn" = ( -/obj/machinery/door/window/left/directional/north{ - dir = 4; - name = "Containment Pen #8"; - req_access = list("xenobiology") - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"hVp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/item/broken_bottle{ - pixel_x = 9; - pixel_y = -4 - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 2; - sortType = 20 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/greater) -"hVE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/teleporter) -"hVN" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"hVX" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/newscaster/directional/south, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/start/hangover, -/obj/machinery/button/door/directional/west{ - id = "Toilet2"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/obj/effect/spawner/random/trash/graffiti{ - pixel_x = -32; - spawn_loot_chance = 50 - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"hVY" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"hWj" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"hWx" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"hWy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/command/teleporter) -"hWD" = ( -/obj/structure/sign/poster/contraband/random/directional/east, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"hWF" = ( -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/commons/locker) -"hWM" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"hWS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Cargo Bay Bridge Access" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"hWW" = ( -/obj/structure/bookcase/random, -/turf/open/floor/iron, -/area/station/security/prison) -"hWX" = ( -/obj/structure/chair/office, -/obj/machinery/requests_console/directional/north{ - department = "Security"; - departmentType = 3; - name = "Security Requests Console" - }, -/obj/effect/landmark/start/customs_agent, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"hXc" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"hXd" = ( -/obj/effect/turf_decal/trimline/blue/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/research) -"hXh" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"hXn" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/atmos) -"hXC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"hXJ" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"hXK" = ( -/obj/item/radio/intercom/directional/south, -/obj/structure/rack, -/obj/item/assembly/signaler, -/obj/item/assembly/signaler, -/obj/item/assembly/timer, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"hXQ" = ( -/obj/machinery/vending/cola/red, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"hYa" = ( -/obj/structure/plasticflaps/opaque{ - name = "Service Deliveries" - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Service" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"hYr" = ( -/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/turf_decal/tile/blue/anticorner/contrasted, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/medical/medbay/lobby) -"hYs" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"hYA" = ( -/obj/item/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/assembly/igniter{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/assembly/igniter{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/assembly/igniter{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/assembly/igniter{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/item/storage/pill_bottle/epinephrine{ - pixel_x = 8; - pixel_y = 5 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"hYE" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"hYN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"hZm" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"hZO" = ( -/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/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"hZQ" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/port/fore) -"hZV" = ( -/turf/closed/wall/r_wall, -/area/station/medical/morgue) -"hZZ" = ( -/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, -/area/station/hallway/primary/central) -"iar" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port) -"ias" = ( -/obj/machinery/seed_extractor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"iaO" = ( -/obj/effect/turf_decal/siding/purple, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"iaQ" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"iaZ" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=16-Fore"; - location = "15-Court" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"ibm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/secondary/entry) -"ibw" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"ibz" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/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) -"ibH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - name = "justice injector" - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"ibX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"ich" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/turf/closed/wall, -/area/station/engineering/atmos) -"ici" = ( -/obj/machinery/smartfridge/drinks{ - icon_state = "boozeomat" - }, -/turf/closed/wall, -/area/station/service/bar) -"icj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/central) -"icC" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"icG" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"icR" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"icS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"idA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/sign/warning/electric_shock, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"idF" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"idW" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"ied" = ( -/obj/structure/table, -/obj/item/paper/fluff/holodeck/disclaimer, -/obj/item/storage/medkit/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"iee" = ( -/obj/effect/landmark/xeno_spawn, -/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, -/area/station/commons/dorms) -"iem" = ( -/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/security/prison) -"iep" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"iev" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/station/cargo/sorting) -"iez" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/light_switch/directional/north, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/table/wood, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"ieH" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"ieV" = ( -/turf/closed/wall/r_wall, -/area/station/security/holding_cell) -"ifh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"ifn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"ifE" = ( -/obj/structure/cable, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"ifF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"ifJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"ifM" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"ifP" = ( -/obj/item/stack/sheet/cardboard, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/spawner/random/maintenance, -/obj/effect/spawner/random/engineering/flashlight, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"ifQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"iga" = ( -/obj/machinery/door/airlock{ - name = "Theater Stage" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"igh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/command/gateway) -"ign" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/space_hut) -"igr" = ( -/obj/structure/table/glass, -/obj/machinery/cell_charger, -/obj/item/stack/cable_coil, -/obj/item/assembly/igniter, -/obj/item/stock_parts/cell, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"igz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/random/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"igP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"igV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"igZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Teleport Access" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/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/effect/mapping_helpers/airlock/access/any/command/teleporter, -/turf/open/floor/iron, -/area/station/command/teleporter) -"ihb" = ( -/turf/closed/wall, -/area/station/security/prison/shower) -"ihj" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/sign/warning/vacuum/external/directional/west, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"ihq" = ( -/turf/closed/wall/r_wall, -/area/station/hallway/primary/central) -"ihv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"ihx" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"ihB" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/computer/department_orders/medical{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) -"ihF" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/machinery/firealarm/directional/west, -/obj/machinery/camera/directional/north{ - c_tag = "Science Mechbay"; - network = list("ss13","rd") - }, -/obj/machinery/button/door/directional/north{ - id = "mechbay"; - name = "Mech Bay Shutters Control"; - req_access = list("robotics") - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"ihV" = ( -/obj/effect/turf_decal/siding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/newscaster/directional/west, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/science/lab) -"ihW" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"ihX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"iin" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/storage/art) -"iio" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/door/airlock/command{ - name = "Research Director's Office" - }, -/obj/machinery/door/firedoor, -/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/mapping_helpers/airlock/access/all/science/rd, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"iiu" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad" - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/light/directional/west, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron, -/area/station/cargo/storage) -"iix" = ( -/obj/item/flashlight/lamp, -/obj/machinery/newscaster/directional/west, -/obj/structure/table/wood, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"iiE" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hop) -"iiL" = ( -/obj/machinery/air_sensor/mix_tank, -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"ije" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"ijv" = ( -/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/delivery, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"ijR" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/machinery/suit_storage_unit/captain, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"ijZ" = ( -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"ikb" = ( -/turf/open/floor/iron, -/area/station/commons/dorms) -"ikw" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"ikC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/command/minisat, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) -"ikJ" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"ikL" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"ikO" = ( -/obj/machinery/newscaster/directional/north, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/reagent_containers/dropper, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/security/execution/transfer) -"ikR" = ( -/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) -"ikS" = ( -/obj/item/radio/intercom/directional/east, -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_y = 4 - }, -/turf/open/floor/carpet, -/area/station/medical/psychology) -"ikZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/range) -"ilc" = ( -/obj/machinery/suit_storage_unit/atmos, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ilg" = ( -/obj/machinery/hydroponics/soil, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/grass, -/area/station/security/prison/garden) -"ilh" = ( -/turf/closed/wall, -/area/station/maintenance/fore) -"ili" = ( -/obj/effect/turf_decal/trimline/purple/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"ilx" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"ilC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Quiet Room" - }, -/turf/open/floor/wood, -/area/station/service/library) -"ilH" = ( -/obj/item/radio/intercom/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Command Hallway - Starboard" - }, -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"ilJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"ilQ" = ( -/obj/structure/closet/crate/bin, -/obj/item/knife/kitchen, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light/small/broken/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"ilR" = ( -/obj/machinery/holopad/secure, -/obj/structure/chair/wood{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hos) -"ilT" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/engineering/glass{ - name = "Shared Engineering Storage" - }, -/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/yellow/fourcorners, -/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"ilY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/clothing/shoes/wheelys/rollerskates{ - pixel_y = 5 - }, -/obj/item/clothing/shoes/wheelys/rollerskates, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"imw" = ( -/obj/machinery/door/window/left/directional/north{ - dir = 8; - name = "Containment Pen #3"; - req_access = list("xenobiology") - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"imK" = ( -/obj/structure/sign/poster/contraband/robust_softdrinks{ - name = "Jim Norton's Quebecois Coffee"; - pixel_y = 32 - }, -/obj/item/seeds/coffee{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/seeds/coffee/robusta{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/seeds/coffee{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/storage/box/drinkingglasses{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/storage/pill_bottle/happinesspsych{ - pixel_x = -4; - pixel_y = -1 - }, -/obj/item/seeds/coffee{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/machinery/light/directional/north, -/obj/structure/table{ - name = "Jim Norton's Quebecois Coffee table" - }, -/turf/open/floor/iron/dark, -/area/station/service/cafeteria) -"imP" = ( -/obj/structure/window/reinforced/plasma, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/power/energy_accumulator/tesla_coil/anchored, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"imU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"inu" = ( -/obj/structure/curtain/cloth/fancy/mechanical{ - id = "barbershopcurtains1" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/service/salon) -"inB" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"inG" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/secure_closet/atmospherics, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"inI" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/processor{ - pixel_y = 12 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"inL" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"inP" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Engineering - Entrance" - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"inQ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"ioc" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"iom" = ( -/obj/machinery/door/window/left/directional/west{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Infirmary" - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) -"iov" = ( -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"iow" = ( -/obj/effect/turf_decal/siding/purple/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"iox" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"ioy" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{ - dir = 1 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/engine) -"ioz" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"ioZ" = ( -/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/lockers) -"ipa" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"ipy" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"ipz" = ( -/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/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"ipG" = ( -/obj/structure/table, -/obj/item/poster/random_contraband, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"ipM" = ( -/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/lab) -"ipR" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/recharge_station, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) -"ipX" = ( -/obj/machinery/firealarm/directional/east, -/obj/machinery/light/small/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Labor Shuttle Dock" - }, -/obj/machinery/gulag_item_reclaimer{ - pixel_y = 24 - }, -/obj/machinery/flasher/directional/east{ - id = "PRelease"; - pixel_y = 20 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/fore) -"ipY" = ( -/obj/machinery/door/window/right/directional/south{ - dir = 4; - name = "Engineering Deliveries"; - req_access = list("engineering") - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/engineering/main) -"iqc" = ( -/obj/structure/reflector/single/anchored{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"iqq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"iqt" = ( -/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/cargo/storage) -"iqx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"iqz" = ( -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"iqB" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"iqK" = ( -/obj/structure/table/glass, -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/item/circular_saw, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/item/blood_filter, -/obj/machinery/light/directional/north, -/obj/item/bonesetter, -/obj/machinery/button/door/directional/north{ - id = "main_surgery"; - name = "privacy shutters control" - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"iqN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Council Chamber" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"iqU" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/brown/warning, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/warning, -/obj/effect/turf_decal/siding/yellow, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"irh" = ( -/obj/machinery/hydroponics/soil, -/obj/machinery/camera/directional/west{ - c_tag = "Prison Forestry"; - network = list("ss13","prison") - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/west, -/turf/open/floor/grass, -/area/station/security/prison/garden) -"irp" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"irz" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Arrivals" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"irL" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/iron/white, -/area/station/medical/office) -"irW" = ( -/obj/machinery/vending/coffee, -/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/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"irY" = ( -/obj/machinery/power/emitter/welded, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"isa" = ( -/obj/structure/table, -/obj/item/storage/box/lights/mixed{ - pixel_x = 11; - pixel_y = 11 - }, -/obj/item/multitool{ - pixel_x = -3; - pixel_y = -4 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"ise" = ( -/obj/effect/turf_decal/bot, -/obj/item/robot_suit, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"isn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"isp" = ( -/obj/machinery/camera/motion/directional/south{ - c_tag = "Vault"; - network = list("vault") - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"isr" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "atmoshfr" - }, -/turf/open/floor/plating, -/area/station/engineering/atmospherics_engine) -"isu" = ( -/obj/effect/landmark/start/paramedic, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"isI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/checker, -/area/station/maintenance/aft/lesser) -"isO" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/obj/machinery/door/window/right/directional/east{ - base_state = "left"; - dir = 1; - icon_state = "left"; - name = "Danger: Conveyor Access"; - req_access = list("maint_tunnels") - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"isQ" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Central Primary Hallway - Aft-Port Corner" - }, -/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/effect/turf_decal/trimline/blue/filled/corner, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"isV" = ( -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"isX" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/left/directional/north{ - dir = 4; - name = "Engineering Desk"; - req_access = list("engineering") - }, -/obj/item/folder/yellow{ - pixel_x = 4 - }, -/obj/item/pen{ - pixel_x = 5 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/structure/desk_bell{ - pixel_x = -8 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"itn" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/engine, -/area/station/science/explab) -"itp" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"itq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"itr" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/station/command/bridge) -"itB" = ( -/obj/machinery/computer/security/telescreen{ - dir = 8; - name = "Telecomms Camera Monitor"; - network = list("tcomms"); - pixel_x = 26 - }, -/obj/machinery/computer/telecomms/monitor{ - dir = 8; - network = "tcommsat" - }, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"itC" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"itG" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Hydroponics" - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/greater) -"itW" = ( -/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/plating, -/area/station/maintenance/starboard/greater) -"itY" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "Engineering Security Doors" - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"iug" = ( -/obj/machinery/mechpad, -/turf/open/floor/circuit/green, -/area/station/science/robotics/mechbay) -"iui" = ( -/obj/effect/turf_decal/box, -/turf/open/floor/iron/textured, -/area/station/engineering/atmospherics_engine) -"iun" = ( -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"iuB" = ( -/obj/effect/spawner/random/food_or_drink/donkpockets, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"iuJ" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/machinery/light/small/directional/north, -/obj/effect/landmark/xeno_spawn, -/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/kitchen_coldroom/freezerfloor, -/area/station/service/kitchen/coldroom) -"iuM" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"iva" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"ivb" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"ivc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"ivu" = ( -/obj/structure/table/reinforced, -/obj/machinery/camera/directional/west{ - c_tag = "Prison Cafeteria"; - network = list("ss13","prison") - }, -/obj/item/food/energybar, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"ivx" = ( -/obj/effect/spawner/random/structure/chair_maintenance{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/port) -"ivB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"ivC" = ( -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/structure/closet/crate, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"ivM" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/photocopier, -/turf/open/floor/wood, -/area/station/service/library) -"ivV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"ivX" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/button/door/directional/east{ - id = "qm_warehouse"; - name = "Warehouse Door Control"; - req_access = list("cargo") - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"iwc" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"iwp" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/light/small/directional/north, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"iwt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall, -/area/station/engineering/atmos) -"iwA" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/item/book/manual/wiki/robotics_cyborgs, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/electrical, -/obj/item/multitool, -/obj/item/clothing/head/welding, -/obj/item/clothing/glasses/welding, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"iwO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"ixd" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"ixm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "perma-entrance" - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron, -/area/station/security/brig) -"ixo" = ( -/obj/machinery/power/shieldwallgen, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"ixr" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/landmark/start/orderly, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) -"ixv" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"ixw" = ( -/obj/machinery/holopad, -/obj/machinery/camera/directional/south{ - network = list("minisat") - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"ixy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/grunge{ - name = "Morgue" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"ixP" = ( -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"ixR" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table, -/obj/machinery/button/door{ - id = "xenobio5"; - layer = 3.3; - name = "Xenobio Pen 5 Blast Doors"; - pixel_y = 4; - req_access = list("xenobiology") - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"ixT" = ( -/obj/effect/turf_decal/bot_white/left, -/obj/structure/closet/crate/silvercrate, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"ixV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"ixY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"iyc" = ( -/obj/machinery/portable_atmospherics/canister/plasma, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"iyi" = ( -/obj/effect/spawner/random/entertainment/arcade, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"iym" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"iyy" = ( -/obj/structure/table, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/reagent_containers/blood{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"iyC" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/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/virology) -"iyV" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=11.1-Command-Starboard"; - location = "11-Command-Port" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"izd" = ( -/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/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/commons/fitness/recreation) -"ize" = ( -/obj/structure/rack, -/obj/machinery/status_display/ai/directional/north, -/obj/effect/spawner/random/techstorage/medical_all, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"izl" = ( -/obj/machinery/duct, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"izp" = ( -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"izr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Courtroom" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"izv" = ( -/obj/item/flashlight/lantern{ - pixel_y = 7 - }, -/obj/structure/table/wood, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"izA" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 12 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"izD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) -"izG" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"iAd" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/wood, -/area/station/cargo/qm) -"iAk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/item/stack/cable_coil, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"iAp" = ( -/obj/machinery/atmospherics/components/binary/valve/digital, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"iAq" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/white/line, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"iAs" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/iron/white, -/area/station/science/ordnance/testlab) -"iAA" = ( -/obj/machinery/light/warm/directional/west, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/item/kirbyplants/random, -/obj/machinery/button/curtain{ - id = "barbershopcurtains"; - pixel_x = -25; - pixel_y = -24 - }, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron, -/area/service/salon) -"iAR" = ( -/obj/structure/table/reinforced, -/obj/structure/reagent_dispensers/servingdish, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"iBf" = ( -/obj/structure/closet, -/obj/item/stack/sheet/iron{ - amount = 34 - }, -/obj/item/extinguisher/mini, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"iBm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/main) -"iBp" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Departure Lounge Airlock" - }, -/obj/effect/landmark/navigate_destination, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"iBq" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/fore/lesser) -"iBt" = ( -/obj/structure/cable, -/obj/machinery/holopad, -/turf/open/floor/wood, -/area/station/service/cafeteria) -"iBL" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"iBM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/mess) -"iBX" = ( -/obj/machinery/computer/operating, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"iCi" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/structure/table, -/obj/item/clothing/gloves/color/latex{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/storage/box/monkeycubes{ - pixel_x = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"iCz" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/vault{ - name = "Vault" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/effect/mapping_helpers/airlock/access/all/supply/vault, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"iCJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"iCN" = ( -/obj/effect/turf_decal/arrows/white, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/atmospherics_engine) -"iCV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"iCX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"iCY" = ( -/obj/structure/cable, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"iDg" = ( -/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/white, -/area/station/science/explab) -"iDh" = ( -/obj/machinery/computer/communications{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/north, -/obj/machinery/keycard_auth/directional/east, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"iDn" = ( -/obj/machinery/door/window/right/directional/south{ - dir = 1; - name = "First Aid Supplies"; - req_access = list("medical") - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/medkit/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/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/structure/table/reinforced, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"iDq" = ( -/obj/effect/turf_decal/box, -/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/security_officer, -/turf/open/floor/iron/dark, -/area/station/security/range) -"iDC" = ( -/obj/structure/table/wood, -/obj/item/radio/intercom/directional/east, -/obj/item/clothing/glasses/regular/hipster{ - name = "Hipster Glasses" - }, -/obj/machinery/light/small/directional/south, -/obj/effect/landmark/start/hangover, -/obj/effect/spawner/random/entertainment/musical_instrument, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/wood, -/area/station/service/theater) -"iDG" = ( -/obj/structure/table, -/obj/item/stock_parts/scanning_module{ - pixel_x = -5; - pixel_y = 7 - }, -/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 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"iDN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"iDP" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/wood, -/area/station/security/office) -"iDU" = ( -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"iEb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"iEk" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"iEm" = ( -/obj/structure/reagent_dispensers/plumbed, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"iEE" = ( -/obj/structure/table, -/obj/effect/spawner/random/entertainment/deck, -/turf/open/floor/iron, -/area/station/commons/dorms) -"iEK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"iFe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/white/line{ - dir = 10 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/security/prison) -"iFh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"iFi" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"iFz" = ( -/turf/open/floor/iron, -/area/station/security/prison) -"iFF" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hos) -"iFI" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/cell_charger{ - pixel_y = 4 - }, -/obj/structure/table/glass, -/obj/item/stock_parts/cell/high, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"iFR" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"iFX" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"iGj" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"iGq" = ( -/obj/structure/lattice, -/obj/item/broken_bottle, -/turf/open/space/basic, -/area/space/nearstation) -"iGr" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Port to Filter" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"iGt" = ( -/obj/structure/closet/wardrobe/white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"iGA" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"iGD" = ( -/obj/structure/table/wood/fancy/orange, -/obj/machinery/requests_console/directional/east{ - announcementConsole = 1; - department = "Quartermaster's Desk"; - departmentType = 2; - name = "Quartermaster's Requests Console" - }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 2; - pixel_y = -4 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -9; - pixel_y = -4 - }, -/turf/open/floor/carpet/red, -/area/station/cargo/qm) -"iGW" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding{ - dir = 4 - }, -/obj/item/computer_hardware/hard_drive/portable/ordnance, -/obj/item/computer_hardware/hard_drive/portable/ordnance, -/obj/item/computer_hardware/hard_drive/portable/ordnance, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"iHf" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/structure/table{ - name = "Jim Norton's Quebecois Coffee table" - }, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -3; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/item/modular_computer/laptop/preset/civilian, -/turf/open/floor/wood, -/area/station/service/cafeteria) -"iHh" = ( -/obj/effect/turf_decal/tile/bar, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"iHn" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"iHp" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"iHu" = ( -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"iHv" = ( -/obj/effect/spawner/random/trash/grille_or_waste, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"iHy" = ( -/obj/machinery/rnd/production/circuit_imprinter, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/storage_shared) -"iHD" = ( -/turf/closed/wall/r_wall, -/area/station/security/courtroom) -"iIq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/chapel{ - dir = 8 - }, -/area/station/service/chapel) -"iIw" = ( -/obj/structure/bed/roller, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/security/medical) -"iIP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"iIQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"iIT" = ( -/obj/structure/rack, -/obj/item/stack/package_wrap{ - pixel_x = 6 - }, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/item/book/manual/chef_recipes{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 5 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"iIW" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"iJb" = ( -/obj/item/storage/bag/plants/portaseeder, -/obj/structure/table, -/obj/item/plant_analyzer, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"iJd" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/requests_console/directional/north{ - department = "Law Office"; - name = "Lawyer Requests Console" - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"iJj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/service/chapel) -"iJl" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/command) -"iJm" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"iJt" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Science Ordnance Test Lab"; - network = list("ss13","rd") - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/siding/purple{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/testlab) -"iJx" = ( -/obj/structure/cable, -/obj/structure/table, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = -8 - }, -/obj/item/clothing/under/rank/prisoner{ - 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/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"iJB" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"iJC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"iJD" = ( -/obj/item/instrument/guitar, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"iJK" = ( -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/plumbed{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"iKh" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"iKL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"iKT" = ( -/obj/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) -"iKV" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/left/directional/north{ - dir = 2; - name = "Atmospherics Desk"; - req_access = list("atmospherics") - }, -/obj/item/folder/yellow{ - pixel_x = 5 - }, -/obj/item/pen{ - pixel_x = 5 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden, -/obj/structure/desk_bell{ - pixel_x = -8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"iLe" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 5 - }, -/turf/open/space, -/area/space/nearstation) -"iLk" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L12" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"iLq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/effect/turf_decal/siding, -/turf/open/floor/iron, -/area/station/science/lab) -"iLw" = ( -/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/lesser) -"iLH" = ( -/obj/machinery/flasher/directional/west{ - id = "Cell 1" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"iMc" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"iMd" = ( -/obj/structure/bed, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"iMi" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/turf/open/floor/carpet, -/area/station/command/bridge) -"iMk" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"iMp" = ( -/obj/structure/table, -/obj/machinery/newscaster/directional/east, -/obj/machinery/camera/directional/south{ - c_tag = "Departure Lounge - Security Post" - }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/taperecorder{ - pixel_x = 4 - }, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"iMs" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/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, -/area/station/security/brig) -"iMv" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"iMA" = ( -/obj/item/radio/intercom/directional/west, -/obj/structure/table/reinforced, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"iME" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"iMG" = ( -/obj/structure/chair/stool/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"iMQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/mob/living/simple_animal/hostile/lizard/wags_his_tail, -/turf/open/floor/plating, -/area/station/service/janitor) -"iMR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"iMS" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/engineering/main) -"iNc" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/newscaster/directional/south, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"iNi" = ( -/obj/item/shard, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"iNo" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/machinery/camera/directional/south{ - c_tag = "Medbay Psychology Office"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"iNy" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/firealarm/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"iNB" = ( -/obj/machinery/firealarm/directional/east, -/obj/structure/table/glass, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"iNC" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"iNQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"iOc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"iOf" = ( -/obj/structure/closet/crate/freezer/blood, -/obj/effect/turf_decal/siding/white, -/obj/machinery/camera/directional/north{ - c_tag = "Medbay Cold Storage"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/kitchen_coldroom, -/area/station/medical/coldroom) -"iOm" = ( -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"iOp" = ( -/obj/machinery/door/airlock/command{ - name = "Command Desk" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"iOr" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison/garden) -"iOD" = ( -/obj/machinery/atmospherics/components/binary/tank_compressor{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"iOJ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"iOS" = ( -/obj/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, -/area/station/security/detectives_office) -"iOZ" = ( -/obj/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"iPb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/visit) -"iPe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/science/lab) -"iPp" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/machinery/light/small/directional/west, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/spawner/random/bureaucracy/pen, -/turf/open/floor/iron, -/area/station/commons/locker) -"iPx" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/open/floor/iron, -/area/station/engineering/atmospherics_engine) -"iPy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/station/medical/virology) -"iPB" = ( -/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/secondary/entry) -"iPE" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"iPM" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/office) -"iPX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 2"; - name = "Cell 2 Locker" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig) -"iQd" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"iQg" = ( -/obj/structure/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/security/holding_cell) -"iQi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/science/lab) -"iQr" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"iQy" = ( -/obj/structure/sign/warning/pods{ - pixel_x = 30 - }, -/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/commons/dorms) -"iQB" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"iQF" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"iQI" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"iQO" = ( -/obj/machinery/firealarm/directional/west, -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/green/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"iQP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"iRh" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "MiniSat Space Access Airlock" - }, -/obj/machinery/door/poddoor/preopen{ - id = "transitlockdown" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/obj/effect/mapping_helpers/airlock/access/any/command/minisat, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"iRr" = ( -/obj/structure/window/reinforced/spawner, -/turf/open/floor/catwalk_floor/iron_dark, -/area/station/hallway/secondary/entry) -"iRD" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/pen, -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring the engine."; - dir = 8; - name = "Engine Monitor"; - network = list("engine"); - pixel_x = 26 - }, -/obj/machinery/button/door/directional/east{ - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_y = 16; - req_access = list("brig_entrance") - }, -/obj/machinery/button/door/directional/east{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_y = 24; - req_access = list("brig_entrance") - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"iRG" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/clothing/suit/armor/riot{ - pixel_y = 2 - }, -/obj/item/clothing/suit/armor/riot{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_y = -2 - }, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/machinery/requests_console/directional/north{ - department = "Security"; - departmentType = 3; - name = "Security Requests Console" - }, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"iRO" = ( -/obj/machinery/computer/upload/ai, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/left/directional/west{ - base_state = "right"; - dir = 2; - icon_state = "right"; - layer = 3.1; - name = "Upload Console Window"; - req_access = list("ai_upload") - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"iRR" = ( -/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, -/area/station/construction/storage_wing) -"iRW" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"iRY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Foyer" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - 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/cable/layer3, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/obj/effect/mapping_helpers/airlock/access/any/command/minisat, -/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"iSk" = ( -/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/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) -"iSl" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"iSI" = ( -/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, -/area/station/engineering/main) -"iTc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"iTC" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"iTH" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"iTO" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - 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, -/area/station/security/checkpoint/science) -"iTX" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"iTZ" = ( -/turf/closed/wall/r_wall, -/area/station/security/lockers) -"iUb" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/pen/red, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching Prison Wing holding areas."; - name = "Prison Monitor"; - network = list("prison"); - pixel_y = 30 - }, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"iUf" = ( -/obj/effect/turf_decal/tile/neutral/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/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) -"iUm" = ( -/turf/closed/wall, -/area/station/hallway/secondary/exit/departure_lounge) -"iUq" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"iUs" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"iUv" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison) -"iUw" = ( -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "QMLoad"; - name = "Loading Conveyor"; - pixel_x = -13; - pixel_y = -5 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"iUE" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"iUJ" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/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/white, -/area/station/medical/treatment_center) -"iUS" = ( -/obj/structure/closet/crate/coffin, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/service/chapel/funeral) -"iVi" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin6"; - name = "Cabin 2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/dorms) -"iVs" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"iVt" = ( -/obj/effect/decal/remains/human{ - desc = "They look like human remains. The bones are charred and burned."; - name = "charred remains" - }, -/turf/open/floor/engine/vacuum, -/area/space/nearstation) -"iVA" = ( -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"iVB" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"iVE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"iVN" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/commons/dorms) -"iVO" = ( -/obj/structure/closet/masks, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"iWc" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"iWj" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/security/office) -"iWn" = ( -/obj/item/dice/d20, -/obj/item/dice, -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/storage/dice, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/light_construct/small/directional/south, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"iWy" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/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/ordnance/storage) -"iWD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/medical/office) -"iWH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"iWJ" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"iWU" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/break_room) -"iXa" = ( -/obj/structure/table, -/obj/structure/cable, -/obj/item/kirbyplants/photosynthetic, -/turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) -"iXb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"iXp" = ( -/obj/structure/table, -/obj/item/analyzer, -/obj/effect/turf_decal/siding/purple{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"iXt" = ( -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"iXA" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/chair/sofa/bench/left, -/turf/open/floor/iron, -/area/service/salon) -"iXS" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"iXT" = ( -/obj/structure/cable, -/obj/machinery/door/airlock{ - id_tag = "commissarydoor"; - name = "Commissary" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/central) -"iYc" = ( -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/bluespace_vendor/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"iYA" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Bridge - Starboard" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"iYD" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"iYG" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"iYO" = ( -/obj/structure/table, -/obj/item/circular_saw, -/obj/item/scalpel{ - pixel_y = 16 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"iYP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"iZi" = ( -/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/chapel) -"iZm" = ( -/obj/machinery/shower{ - name = "emergency shower"; - pixel_y = 16 - }, -/obj/effect/turf_decal/trimline/blue/end, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"iZF" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"iZJ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"iZN" = ( -/obj/machinery/light/directional/east, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"iZS" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/anesthetic_mix, -/turf/open/floor/iron/dark, -/area/station/medical/cryo) -"jaq" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jay" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"jaH" = ( -/obj/structure/chair/comfy{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/station/engineering/atmos) -"jaO" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/atmos) -"jaY" = ( -/obj/effect/turf_decal/box/red, -/obj/machinery/atmospherics/components/unary/outlet_injector{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/science/cytology) -"jbd" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"jbg" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/purple, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/science/research) -"jbk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Central South"; - dir = 9; - network = list("ss13","rd","xeno") - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"jbF" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/obj/item/shard, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"jcd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/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/hallway/primary/aft) -"jcw" = ( -/obj/machinery/atmospherics/components/tank, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"jcy" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"jcI" = ( -/obj/machinery/status_display/evac/directional/west, -/obj/structure/closet/secure_closet/psychology, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"jcJ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "Engineering Security Doors" - }, -/obj/structure/cable, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"jcR" = ( -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/courtroom) -"jcW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/commons/dorms) -"jdn" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"jdt" = ( -/obj/structure/sign/warning/vacuum/external/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"jdB" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/engineering/main) -"jdF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/white, -/area/station/science/xenobiology/hallway) -"jdR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"jef" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"jej" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"jet" = ( -/obj/structure/closet/secure_closet/chief_medical, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/item/screwdriver, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"jew" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/science/cytology) -"jeI" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"jeL" = ( -/obj/structure/table/glass, -/obj/item/book/manual/wiki/medicine, -/obj/item/clothing/neck/stethoscope, -/obj/item/wrench/medical, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron/dark, -/area/station/medical/cryo) -"jeX" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"jfa" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/vending/games, -/turf/open/floor/wood, -/area/station/service/library) -"jff" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/brig) -"jfn" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Primary Treatment Centre" - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"jfr" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/office) -"jfv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port) -"jfB" = ( -/obj/machinery/door/airlock/external{ - name = "Mining Dock Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/cargo/miningoffice) -"jfC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"jfG" = ( -/turf/closed/wall, -/area/station/maintenance/disposal) -"jfN" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"jfO" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/duct, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/treatment_center) -"jfS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/sign/warning/electric_shock, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio1"; - name = "Xenobio Pen 1 Blast Door" - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"jfU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/central) -"jgk" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"jgq" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"jgs" = ( -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 4 - }, -/obj/structure/bed/dogbed/runtime, -/obj/item/toy/cattoy, -/mob/living/simple_animal/pet/cat/runtime, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"jgt" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Mix to Distro Staging" - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jgy" = ( -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/structure/table/wood, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/grimy, -/area/station/security/interrogation) -"jgE" = ( -/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, -/area/station/hallway/primary/aft) -"jgK" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"jgQ" = ( -/obj/structure/table, -/obj/item/stack/wrapping_paper, -/obj/item/stack/wrapping_paper{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"jgT" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#EFB341" - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/chemistry) -"jgW" = ( -/obj/structure/rack, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"jhd" = ( -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/station/solars/starboard/fore) -"jhf" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/dorms) -"jhk" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"jhn" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/atmos) -"jhv" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"jhA" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/mob/living/simple_animal/sloth/citrus, -/turf/open/floor/iron, -/area/station/cargo/storage) -"jhS" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"jhY" = ( -/obj/machinery/firealarm/directional/east, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"jie" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ - dir = 8 - }, -/obj/machinery/meter, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"jis" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Chapel" - }, -/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/chapel) -"jiI" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Bridge - Port" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"jiP" = ( -/obj/structure/table/wood, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/cargo/qm) -"jiT" = ( -/obj/structure/sign/warning/vacuum/external/directional/north, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"jjj" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"jjm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"jjn" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"jjs" = ( -/obj/effect/spawner/random/engineering/tank, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"jjC" = ( -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/item/food/grown/banana, -/turf/open/floor/grass, -/area/station/medical/virology) -"jjF" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/holosign_creator/robot_seat/bar, -/turf/open/floor/iron, -/area/station/service/bar) -"jjL" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/computer/security/telescreen/entertainment/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"jjM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"jjN" = ( -/obj/structure/chair/stool/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"jjS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/landmark/start/barber, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/service/salon) -"jkT" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron/dark/textured, -/area/station/medical/cryo) -"jkV" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"jkX" = ( -/obj/machinery/door_buttons/access_button{ - idDoor = "xeno_airlock_interior"; - idSelf = "xeno_airlock_control"; - name = "Access Button"; - pixel_x = 29; - pixel_y = -8; - req_access = list("xenobiology") - }, -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/white, -/area/station/science/xenobiology/hallway) -"jld" = ( -/obj/structure/chair/stool/directional/west, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"jle" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "commissaryshutter"; - name = "Vacant Commissary Shutter"; - dir = 8 - }, -/obj/structure/noticeboard/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"jln" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) -"jlA" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"jlC" = ( -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"jlJ" = ( -/obj/effect/spawner/random/entertainment/arcade, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"jlM" = ( -/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) -"jlT" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chem_lockdown"; - name = "Chemistry Shutters"; - dir = 8 - }, -/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 = "Chemistry Lab" - }, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"jlU" = ( -/turf/closed/wall/r_wall, -/area/station/science/xenobiology) -"jlY" = ( -/obj/structure/urinal/directional/north, -/obj/effect/landmark/start/hangover, -/obj/machinery/duct, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"jmc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"jml" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = 11; - pixel_y = -2 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"jmq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/meter, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"jmr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/blood/tracks{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/maintenance/starboard/lesser) -"jms" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jmv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"jmJ" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/port) -"jmR" = ( -/obj/structure/closet/secure_closet/security/cargo, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"jmY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Gateway Chamber" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/command/gateway, -/turf/open/floor/iron, -/area/station/command/gateway) -"jnl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-left" - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"jnt" = ( -/obj/structure/bookcase, -/turf/open/floor/wood, -/area/station/command/bridge) -"jnv" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"jnA" = ( -/obj/machinery/newscaster/directional/west, -/obj/structure/easel, -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/twentythree_nineteen, -/obj/item/canvas/twentythree_twentythree, -/turf/open/floor/wood, -/area/station/service/library) -"jnQ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics - Central Fore" - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/atmos) -"jnR" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"job" = ( -/obj/item/stock_parts/cell/high, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"joj" = ( -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"joo" = ( -/obj/effect/landmark/start/station_engineer, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"joq" = ( -/obj/machinery/door/firedoor, -/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, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"jov" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/shower{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"jpr" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/command_all, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"jpw" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/chair/stool/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"jpx" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/rnd_all, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"jpA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/space_hut) -"jpE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"jpG" = ( -/obj/structure/closet/secure_closet/miner, -/obj/machinery/camera/directional/north{ - c_tag = "Mining Dock" - }, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"jpI" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"jpO" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"jpQ" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Arrivals - Aft Arm - Lounge" - }, -/obj/structure/window/reinforced/spawner, -/turf/open/floor/catwalk_floor/iron_dark, -/area/station/hallway/secondary/entry) -"jpU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"jql" = ( -/obj/machinery/door/airlock{ - id_tag = "AuxToilet2"; - name = "Unit 2" - }, -/turf/open/floor/iron, -/area/station/commons/toilet/auxiliary) -"jqB" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"jqC" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/machinery/airalarm/mixingchamber{ - dir = 8; - pixel_x = -26 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/freezerchamber) -"jqQ" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"jrb" = ( -/obj/machinery/computer/scan_consolenew{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"jrk" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "HoP Queue Shutters" - }, -/obj/effect/turf_decal/loading_area, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"jrL" = ( -/obj/structure/disposalpipe/segment{ - 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, -/turf/open/floor/iron, -/area/station/commons/locker) -"jrT" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/table, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/item/clothing/head/welding{ - pixel_y = 9 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/clothing/head/welding{ - pixel_x = -5; - pixel_y = 3 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/storage/gas) -"jrY" = ( -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"jsh" = ( -/obj/structure/table/glass, -/obj/item/folder/white{ - pixel_y = 2 - }, -/obj/item/screwdriver{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/radio/headset/headset_med, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/item/hand_labeler, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"jsi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"jsn" = ( -/obj/machinery/light/directional/north, -/obj/machinery/restaurant_portal/restaurant, -/turf/open/floor/wood, -/area/station/commons/lounge) -"jso" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) -"jsq" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 12 - }, -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/structure/light_construct/small/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"jsr" = ( -/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/service/chapel/funeral) -"jsv" = ( -/obj/machinery/airalarm/directional/north, -/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/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"jsL" = ( -/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/starboard/greater) -"jsO" = ( -/obj/machinery/light/directional/north, -/obj/structure/chair/sofa/corp/right, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"jsP" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"jtb" = ( -/obj/machinery/vending/clothing, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"jtf" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix to Ports" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jtl" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"jtn" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jtp" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"jtA" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/item/clothing/glasses/hud/health{ - pixel_y = 6 - }, -/obj/item/clothing/glasses/hud/health{ - pixel_y = 4 - }, -/obj/item/clothing/glasses/hud/health{ - pixel_y = 2 - }, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/iron/white/side{ - dir = 8 - }, -/area/station/medical/treatment_center) -"jtI" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/lab) -"jtL" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Cargo - Mailroom" - }, -/obj/effect/turf_decal/trimline/brown/filled/shrink_ccw, -/obj/effect/turf_decal/trimline/white/filled/warning, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"jtS" = ( -/obj/structure/table/reinforced, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/circuitboard/mecha/ripley/main, -/obj/item/circuitboard/mecha/ripley/peripherals, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"jtZ" = ( -/obj/structure/table/reinforced, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"juf" = ( -/obj/machinery/telecomms/bus/preset_two, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"jui" = ( -/obj/structure/table, -/obj/item/kitchen/rollingpin, -/obj/effect/turf_decal/trimline/brown/warning, -/obj/machinery/camera/directional/north, -/obj/item/reagent_containers/glass/rag, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"juj" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/iron/dark, -/area/station/security/holding_cell) -"juC" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "O2 to Airmix" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"juH" = ( -/obj/item/kirbyplants/random, -/obj/machinery/firealarm/directional/west{ - pixel_y = -9 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"juJ" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"juT" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/table, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/secondary/entry) -"juV" = ( -/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/aft/greater) -"jvf" = ( -/obj/machinery/computer/mech_bay_power_console, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/maintenance/port/aft) -"jvh" = ( -/obj/item/storage/crayons, -/obj/machinery/light/small/directional/west, -/obj/structure/table/wood, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"jvj" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jvm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/layer2{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"jvo" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"jvr" = ( -/obj/structure/table/glass, -/obj/item/folder/blue, -/obj/item/clothing/neck/stethoscope, -/obj/item/clothing/glasses/hud/health, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"jvv" = ( -/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/construction/storage_wing) -"jvB" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/iron/chapel{ - dir = 1 - }, -/area/station/service/chapel) -"jvO" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable/layer3, -/mob/living/simple_animal/bot/secbot/pingsky, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"jvQ" = ( -/obj/machinery/door/window/left/directional/north{ - name = "Petting Zoo" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/research) -"jvX" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/shower{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"jwj" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"jwp" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/pill_bottle/mannitol, -/obj/item/reagent_containers/dropper{ - pixel_y = 6 - }, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"jwv" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/newscaster/directional/south, -/obj/effect/landmark/start/assistant, -/obj/effect/landmark/start/hangover, -/obj/machinery/button/door/directional/east{ - id = "AuxToilet1"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/iron, -/area/station/commons/toilet/auxiliary) -"jwy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Recreation Area" - }, -/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/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/dorms) -"jwP" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/item/paper_bin, -/obj/item/pen, -/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/explab) -"jwW" = ( -/obj/effect/turf_decal/stripes{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"jxf" = ( -/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) -"jxm" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/construction/plumbing, -/obj/item/construction/plumbing, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"jxA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"jxH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/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, -/area/station/science/xenobiology) -"jxS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/white/line{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"jxV" = ( -/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, -/area/station/security/brig) -"jxW" = ( -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/station/science/genetics) -"jya" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/caution{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"jyq" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/bar, -/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/newscaster/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"jyr" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"jyt" = ( -/obj/item/radio/intercom/directional/west, -/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, -/area/station/hallway/primary/aft) -"jyF" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"jyH" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"jyQ" = ( -/obj/machinery/computer/med_data{ - dir = 8 - }, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"jzp" = ( -/turf/closed/wall, -/area/station/commons/vacant_room/office) -"jzw" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"jzC" = ( -/obj/machinery/door/firedoor/border_only/closed{ - dir = 8; - name = "Animal Pen A" - }, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"jzD" = ( -/obj/machinery/holopad/secure, -/turf/open/floor/iron/dark, -/area/station/security/office) -"jzN" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Barbershop" - }, -/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, -/area/service/salon) -"jAl" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/newscaster/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs) -"jAm" = ( -/obj/effect/spawner/xmastree, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/service/chapel) -"jAt" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"jAO" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"jAP" = ( -/obj/structure/cable, -/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{ - dir = 9 - }, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"jAV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/dark/visible{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jBb" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/transit_tube/station/dispenser{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"jBi" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"jBk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"jBC" = ( -/obj/structure/table, -/obj/item/clothing/head/soft/grey{ - pixel_x = -2; - pixel_y = 3 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"jBF" = ( -/obj/structure/water_source/puddle, -/obj/structure/flora/bush/large/style_random{ - pixel_y = 0 - }, -/obj/structure/cable, -/turf/open/floor/grass, -/area/station/medical/virology) -"jBY" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"jCj" = ( -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"jCk" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/storage/gas) -"jCn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/medbay/central) -"jCq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"jCw" = ( -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"jCx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/tank/plasma{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"jCM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"jCO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"jDb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"jDk" = ( -/obj/effect/spawner/random/entertainment/arcade, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"jDB" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/security/prison/work) -"jDP" = ( -/obj/machinery/airalarm/directional/west, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/chapel, -/area/station/service/chapel) -"jEc" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"jEh" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/item/rcl/pre_loaded, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"jEl" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"jEr" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/holopad/secure, -/obj/machinery/flasher/directional/west{ - id = "AI"; - pixel_y = -26 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"jEI" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/security/execution/transfer) -"jEN" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"jER" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"jEY" = ( -/obj/structure/table, -/obj/item/phone{ - pixel_x = 6; - pixel_y = -2 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"jFi" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/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/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"jFk" = ( -/obj/effect/spawner/random/maintenance, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"jFr" = ( -/obj/structure/sign/poster/party_game, -/turf/closed/wall, -/area/space/nearstation) -"jFB" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/iv_drip, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"jFK" = ( -/obj/machinery/washing_machine, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison) -"jFO" = ( -/obj/structure/closet/firecloset, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"jGa" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"jGl" = ( -/obj/effect/landmark/secequipment, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/security/office) -"jGo" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"jGr" = ( -/turf/closed/wall/r_wall, -/area/station/tcommsat/server) -"jGv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"jGw" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"jGx" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/abandoned) -"jGA" = ( -/obj/structure/table/wood/poker, -/turf/open/floor/wood, -/area/station/commons/lounge) -"jGG" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/treatment_center) -"jHg" = ( -/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) -"jHm" = ( -/obj/machinery/light/small/directional/east, -/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/commons/dorms) -"jHw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/chapel, -/area/station/service/chapel) -"jHA" = ( -/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/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"jHB" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) -"jHL" = ( -/obj/structure/window/reinforced, -/obj/machinery/computer/atmos_control/nitrogen_tank{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jHW" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/effect/turf_decal/trimline/brown/filled/warning, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"jHX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/holofloor/dark, -/area/station/science/cytology) -"jIg" = ( -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/item/multitool, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"jIz" = ( -/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/engineering/atmos/storage/gas) -"jIR" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/maintenance/space_hut) -"jIV" = ( -/obj/effect/spawner/random/structure/chair_maintenance, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/engine) -"jIW" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/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) -"jIY" = ( -/obj/machinery/computer/security/telescreen/entertainment/directional/west, -/obj/machinery/camera/autoname/directional/west, -/obj/structure/displaycase/trophy, -/turf/open/floor/wood, -/area/station/service/library) -"jJd" = ( -/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, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) -"jJi" = ( -/obj/structure/cable, -/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/carpet, -/area/station/service/chapel) -"jJk" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/spawner/random/maintenance/three, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"jJm" = ( -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"jJC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/turf/open/space, -/area/space/nearstation) -"jJR" = ( -/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/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"jJY" = ( -/obj/structure/cable, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"jKa" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/door/airlock/research{ - name = "Testing Labs" - }, -/obj/machinery/door/firedoor, -/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/science/research, -/turf/open/floor/iron/white, -/area/station/science/lab) -"jKq" = ( -/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/security/general, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"jKz" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"jKA" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"jKG" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/effect/turf_decal/trimline/yellow/warning, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jKS" = ( -/obj/structure/disposalpipe/segment, -/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/red/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"jLb" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"jLf" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/cargo/storage) -"jLg" = ( -/obj/structure/cable, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=14-Starboard-Central"; - location = "13.3-Engineering-Central" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"jLm" = ( -/obj/machinery/light/directional/north, -/obj/machinery/door/window/right/directional/north{ - dir = 4; - name = "Research Delivery"; - req_access = list("science") - }, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/white, -/area/station/science/lab) -"jLo" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/engineering/main) -"jLr" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/sign/warning/secure_area/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, -/area/station/hallway/primary/central) -"jLw" = ( -/obj/structure/marker_beacon/burgundy, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"jLD" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"jLV" = ( -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 6 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"jMo" = ( -/obj/structure/chair/stool/directional/north, -/turf/open/floor/iron, -/area/station/commons/locker) -"jMp" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"jMu" = ( -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/pen, -/obj/structure/window/reinforced, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"jMx" = ( -/obj/structure/closet/crate, -/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/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"jML" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/space_heater, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/storage/gas) -"jMP" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"jMY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-left" - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"jMZ" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod One"; - space_dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"jNl" = ( -/obj/structure/table, -/obj/machinery/light/directional/south, -/obj/item/storage/medkit/regular{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/medkit/regular, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"jNo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"jNp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"jNP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Aft Primary Hallway" - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"jNV" = ( -/obj/structure/table/wood, -/obj/item/staff/broom, -/obj/item/wrench, -/obj/machinery/airalarm/directional/east, -/obj/machinery/light/small/directional/north, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/wood, -/area/station/service/theater) -"jNX" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/station/science/genetics) -"jOv" = ( -/obj/structure/rack, -/obj/item/wrench, -/obj/item/screwdriver, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/camera/directional/east{ - c_tag = "Vacant Commissary" - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"jOF" = ( -/obj/structure/rack, -/obj/item/gun/energy/laser/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/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/range) -"jOG" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L10" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"jON" = ( -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"jOQ" = ( -/obj/machinery/firealarm/directional/west, -/obj/structure/rack, -/obj/item/storage/briefcase{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/storage/secure/briefcase{ - pixel_x = 2; - pixel_y = -2 - }, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"jOR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"jPe" = ( -/obj/structure/table, -/obj/item/airlock_painter, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/engineering/main) -"jPi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"jPo" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"jPE" = ( -/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/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 = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"jPH" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron/checker, -/area/station/engineering/atmos/storage/gas) -"jPJ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/turf/open/space/basic, -/area/space/nearstation) -"jPU" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=3-Central-Port"; - location = "2.1-Leaving-Storage" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"jQa" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"jQc" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/cargo/qm) -"jQr" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"jQz" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8 - }, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"jQM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Council Chamber" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"jRb" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/effect/spawner/random/trash/food_packaging, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/storage_shared) -"jRg" = ( -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"jRh" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_y = 6 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Prison Sanitarium"; - network = list("ss13","prison") - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/security/execution/transfer) -"jRv" = ( -/obj/machinery/newscaster/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/camera/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"jRz" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"jRD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"jRM" = ( -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/iron, -/area/station/cargo/storage) -"jRZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" - }, -/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/supermatter/room) -"jSe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Arrivals - Aft Arm - Far" - }, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"jSf" = ( -/obj/structure/chair/stool/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/commons/lounge) -"jSj" = ( -/obj/machinery/door/airlock/research{ - glass = 1; - name = "Slime Euthanization Chamber"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"jSk" = ( -/turf/open/floor/engine, -/area/station/science/explab) -"jSm" = ( -/obj/structure/cable, -/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/iron, -/area/station/construction/storage_wing) -"jSq" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Garden" - }, -/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/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"jSI" = ( -/obj/machinery/door/poddoor/shutters{ - id = "abandoned_kitchen"; - dir = 4 - }, -/obj/structure/displaycase/forsale/kitchen{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"jSS" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/firealarm/directional/west, -/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/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"jSV" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 1 - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"jTH" = ( -/obj/machinery/firealarm/directional/east, -/obj/machinery/pdapainter/security, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"jTN" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Science Ordnance Storage"; - network = list("ss13","rd") - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"jTS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/directional/south{ - c_tag = "Atmospherics - Hypertorus Fusion Reactor Chamber Aft" - }, -/obj/structure/closet/radiation, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"jTZ" = ( -/turf/closed/wall, -/area/station/security/execution/transfer) -"jUb" = ( -/turf/closed/wall, -/area/station/maintenance/port/aft) -"jUg" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"jUh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white/side, -/area/station/science/lobby) -"jUi" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/airlock_sensor/incinerator_atmos{ - pixel_y = 24 - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"jUq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"jUu" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/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/plating, -/area/station/maintenance/starboard/fore) -"jUx" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"jUP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"jVb" = ( -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port) -"jVl" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/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, -/area/station/command/teleporter) -"jVt" = ( -/obj/machinery/reagentgrinder, -/obj/machinery/requests_console/directional/west{ - department = "Pharmacy"; - departmentType = 2; - name = "Pharmacy Requests Console"; - receive_ore_updates = 1 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"jVv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"jVy" = ( -/obj/structure/closet/l3closet/security, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"jVG" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"jVZ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/left/directional/west{ - base_state = "right"; - icon_state = "right"; - name = "Outer Window" - }, -/obj/machinery/door/window/brigdoor{ - dir = 4; - name = "Security Desk"; - req_access = list("security") - }, -/obj/item/folder/red, -/obj/item/pen, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"jWd" = ( -/obj/item/radio/intercom/directional/west, -/obj/machinery/light/small/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"jWg" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/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) -"jWj" = ( -/obj/structure/cable, -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"jWk" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/button/door/directional/west{ - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_y = -6; - req_access = list("engineering") - }, -/obj/machinery/button/door/directional/west{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_y = 6; - req_access = list("atmospherics") - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"jWR" = ( -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/obj/structure/chair/stool{ - name = "Jim Norton's Quebecois Coffee stool" - }, -/turf/open/floor/wood, -/area/station/service/cafeteria) -"jXe" = ( -/obj/structure/lattice, -/obj/item/wirecutters, -/turf/open/space/basic, -/area/space/nearstation) -"jXq" = ( -/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/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"jXu" = ( -/turf/closed/wall, -/area/station/maintenance/port/fore) -"jXy" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/carpet, -/area/station/service/library) -"jXz" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/department/engine) -"jXM" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"jXQ" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"jXU" = ( -/obj/machinery/seed_extractor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"jYi" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"jYu" = ( -/mob/living/basic/cow{ - name = "Betsy"; - real_name = "Betsy" - }, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"jYv" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"jYy" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"jYB" = ( -/obj/machinery/conveyor/inverted{ - dir = 6; - id = "QMLoad" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"jYD" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"jZl" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"jZz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jZC" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/space, -/area/space/nearstation) -"jZP" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/siding/purple{ - dir = 5 - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"jZR" = ( -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"jZW" = ( -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"jZZ" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Council Chamber" - }, -/obj/machinery/light/directional/north, -/obj/machinery/status_display/ai/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"kaf" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron, -/area/station/cargo/storage) -"kag" = ( -/obj/machinery/airalarm/directional/south, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/storage/gas) -"kah" = ( -/obj/structure/table/wood, -/obj/item/stamp{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/stamp/denied{ - pixel_x = 7; - pixel_y = 4 - }, -/obj/item/stamp/qm{ - pixel_x = 7; - pixel_y = -2 - }, -/obj/item/clipboard{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/machinery/keycard_auth/directional/south, -/turf/open/floor/wood, -/area/station/cargo/qm) -"kat" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall, -/area/station/cargo/miningoffice) -"kaC" = ( -/obj/machinery/dish_drive/bullet{ - succrange = 2 - }, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"kaF" = ( -/obj/effect/turf_decal/trimline/purple/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/research) -"kaS" = ( -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos) -"kaU" = ( -/obj/structure/closet{ - name = "Evidence Closet 3" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"kbo" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"kbN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/mousetraps{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/structure/table, -/obj/item/storage/box/mousetraps{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/clothing/gloves/color/orange{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/service/janitor) -"kbU" = ( -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/closet/crate/solarpanel_small, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/engineering/main) -"kcg" = ( -/obj/structure/chair/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/carpet, -/area/station/command/heads_quarters/hos) -"kcn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"kcs" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/canvas, -/obj/item/canvas, -/obj/item/canvas, -/obj/item/canvas, -/obj/item/canvas, -/obj/item/canvas, -/obj/item/chisel{ - pixel_y = 7 - }, -/turf/open/floor/iron, -/area/station/commons/storage/art) -"kcu" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron{ - amount = 10 - }, -/obj/item/electropack, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"kcF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"kcM" = ( -/obj/effect/turf_decal/siding/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/service/cafeteria) -"kcV" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Cooling Loop Bypass" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"kdx" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=8.1-Aft-to-Escape"; - location = "8-Central-to-Aft" - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L9" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"kdA" = ( -/obj/machinery/door/airlock/mining{ - name = "Warehouse" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"kdN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/commons/lounge) -"kdO" = ( -/obj/machinery/door/airlock/security{ - name = "Court Cell" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"kdX" = ( -/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/freezer, -/area/station/commons/toilet/restrooms) -"keq" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/medical/abandoned) -"keK" = ( -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"keL" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/junction, -/turf/open/floor/iron, -/area/station/security/brig) -"keP" = ( -/obj/docking_port/stationary/random{ - id = "pod_2_lavaland"; - name = "lavaland" - }, -/turf/open/space, -/area/space) -"keR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/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) -"kfe" = ( -/obj/structure/window/reinforced, -/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/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"kfp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"kfu" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/structure/table/glass, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"kfA" = ( -/obj/effect/landmark/start/head_of_personnel, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"kfC" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"kfK" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"kfL" = ( -/turf/closed/wall/mineral/plastitanium, -/area/station/commons/fitness/recreation) -"kfT" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"kga" = ( -/obj/structure/table/wood/fancy/orange, -/obj/item/gps{ - gpstag = "QM0"; - pixel_x = 10; - pixel_y = 12 - }, -/obj/machinery/status_display/supply{ - pixel_x = 32 - }, -/obj/item/storage/wallet{ - pixel_x = -3; - pixel_y = 10 - }, -/obj/item/ammo_casing/caseless/rocket{ - desc = "Your grandpappy brought this home after the war. You're pretty sure it's a dud."; - name = "Dud Rocket"; - pixel_x = -4; - pixel_y = -7 - }, -/turf/open/floor/carpet/red, -/area/station/cargo/qm) -"kgg" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"kgp" = ( -/obj/structure/chair/sofa/bench/left, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"kgr" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"kgy" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/office) -"kgz" = ( -/obj/machinery/smartfridge/chemistry/virology/preloaded, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/green/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"kgC" = ( -/obj/machinery/door/poddoor/incinerator_ordmix, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"kgV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"kha" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/machinery/pdapainter/medbay, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"khm" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/mob/living/simple_animal/bot/secbot/beepsky/officer, -/turf/open/floor/iron, -/area/station/security/brig) -"kho" = ( -/obj/machinery/door/window{ - dir = 4; - 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/funeral) -"khu" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/checkpoint/engineering) -"khA" = ( -/turf/closed/wall, -/area/station/commons/storage/art) -"khD" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Crematorium Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/crematorium, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"khZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/hallway/primary/central) -"kiu" = ( -/obj/machinery/iv_drip, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"kiz" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"kiE" = ( -/obj/item/book/manual/nuclear, -/turf/open/floor/plating/foam{ - initial_gas_mix = "TEMP=2.7" - }, -/area/space/nearstation) -"kiH" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/maintenance/central) -"kiJ" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/white, -/area/station/science/research) -"kiW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"kjJ" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/obj/structure/sign/warning/cold_temp/directional/north, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"kjL" = ( -/obj/structure/table, -/obj/item/clothing/under/suit/sl, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"kjO" = ( -/obj/structure/table, -/obj/item/restraints/handcuffs/cable/white, -/obj/item/toy/plush/pkplush{ - name = "C.H.E.R.U.B." - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"kjX" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder{ - pixel_y = 8 - }, -/obj/item/toy/figure/virologist{ - pixel_x = -8 - }, -/obj/effect/turf_decal/tile/green/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"kkf" = ( -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 5 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos) -"kku" = ( -/obj/structure/table/glass, -/obj/structure/reagent_dispensers/wall/virusfood/directional/west, -/obj/machinery/requests_console/directional/south{ - department = "Virology"; - name = "Virology Requests Console"; - receive_ore_updates = 1 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/pen/red, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"kkU" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/directional/west{ - c_tag = "Captain's Office - Emergency Escape" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/central) -"klf" = ( -/obj/item/folder, -/obj/item/folder, -/obj/machinery/camera/autoname/directional/south, -/obj/structure/table/wood, -/obj/item/taperecorder, -/obj/item/tape, -/turf/open/floor/wood, -/area/station/service/library) -"klj" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/table, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/structure/sign/warning/no_smoking{ - pixel_y = 28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"klp" = ( -/obj/structure/disposalpipe/segment{ - 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/security/brig) -"kls" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"klt" = ( -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"klu" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"klw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"klI" = ( -/obj/structure/table/wood, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/turf/open/floor/carpet, -/area/station/command/bridge) -"klK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"klL" = ( -/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/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"klS" = ( -/obj/machinery/griddle, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/service/kitchen) -"klT" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"kms" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/mob/living/simple_animal/hostile/retaliate/bat/sgt_araneus, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hos) -"kmN" = ( -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"kmW" = ( -/obj/machinery/door/poddoor/massdriver_trash, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"kmZ" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/command/gateway) -"knf" = ( -/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/freezer, -/area/station/commons/toilet/restrooms) -"knj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "E.V.A. Storage" - }, -/obj/effect/turf_decal/delivery, -/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/command/eva, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"knt" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"knK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/library) -"knP" = ( -/obj/machinery/light/directional/west, -/obj/machinery/computer/camera_advanced/base_construction/aux{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"knQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"knT" = ( -/obj/machinery/door/airlock/security{ - name = "Custom Agent's Office" - }, -/obj/machinery/door/firedoor, -/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/supply/customs, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"knU" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 10 - }, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/pumproom) -"knY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/lab) -"knZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/holopad, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"koa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"koc" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera/directional/east{ - c_tag = "Prison Workshop"; - network = list("ss13","prison") - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison/work) -"kod" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"koj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"kop" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"kor" = ( -/turf/closed/wall, -/area/station/maintenance/department/science/central) -"koW" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=10.2-Aft-Port-Corner"; - location = "10.1-Central-from-Aft" - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L5" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"kpd" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Arrivals" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"kpu" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"kpB" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"kqm" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/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/white, -/area/station/medical/medbay/lobby) -"kqZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"krc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"kre" = ( -/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/white, -/area/station/security/prison) -"krf" = ( -/turf/closed/wall, -/area/station/cargo/qm) -"krk" = ( -/obj/machinery/disposal/delivery_chute{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - layer = 3 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"krL" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/chair/comfy/barber_chair{ - dir = 4 - }, -/turf/open/floor/iron, -/area/service/salon) -"krN" = ( -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/item/assembly/timer{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/assembly/timer{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/assembly/timer{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/assembly/timer, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"krP" = ( -/obj/item/storage/secure/safe/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/commons/vacant_room/commissary) -"ksg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/range) -"ksl" = ( -/obj/machinery/chem_heater/withbuffer{ - pixel_x = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/machinery/button/door/directional/south{ - id = "pharmacy_shutters_2"; - name = "pharmacy shutters control"; - req_access = list("pharmacy") - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"kso" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"ksr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"ksT" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/starboard/greater) -"ksU" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/turf/open/floor/plating, -/area/station/maintenance/department/engine) -"ktl" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"ktq" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "Security" - }, -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/fore) -"ktt" = ( -/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/item/radio/intercom/directional/north{ - broadcasting = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = -26 - }, -/obj/effect/landmark/start/cyborg, -/obj/machinery/light/small/directional/west, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the ai_upload."; - dir = 4; - name = "AI Upload Monitor"; - network = list("aiupload"); - pixel_x = -29 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) -"ktz" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light/small/directional/west, -/obj/effect/spawner/random/trash/bin, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"ktD" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"ktG" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"ktK" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 10 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"ktP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair/stool/directional/north, -/turf/open/floor/wood, -/area/station/commons/lounge) -"ktW" = ( -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) -"ktX" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"ktY" = ( -/obj/structure/closet/ammunitionlocker/useful, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/delivery/red, -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot, -/turf/open/floor/iron/smooth, -/area/station/ai_monitored/security/armory) -"ktZ" = ( -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"kua" = ( -/obj/structure/table, -/obj/effect/turf_decal/siding/white/corner, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/medical/office) -"kub" = ( -/obj/structure/chair/sofa/bench/left, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/secondary/entry) -"kui" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"kul" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) -"kuA" = ( -/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 = 6 - }, -/turf/open/floor/carpet, -/area/station/service/theater) -"kuD" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/components/unary/passive_vent{ - dir = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"kuK" = ( -/obj/machinery/power/tracker, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/station/solars/port/fore) -"kuW" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"kvb" = ( -/obj/structure/plasticflaps, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/disposal/delivery_chute, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"kvd" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/dorms) -"kvr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"kvv" = ( -/obj/structure/chair, -/turf/open/floor/iron/grimy, -/area/station/security/interrogation) -"kvK" = ( -/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, -/area/station/engineering/atmospherics_engine) -"kvO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"kvT" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/effect/turf_decal/bot_white, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"kvV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"kwi" = ( -/obj/effect/spawner/random/structure/crate_empty, -/obj/item/clothing/gloves/color/fyellow, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"kwp" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/shutters/window{ - id = "gateshutter"; - name = "Gateway Access Shutter" - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"kww" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"kwy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/purple, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/white, -/area/station/science/research) -"kwF" = ( -/obj/effect/turf_decal/stripes/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, -/area/station/ai_monitored/command/storage/eva) -"kwQ" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"kwX" = ( -/obj/structure/table/wood, -/obj/item/storage/crayons, -/turf/open/floor/wood, -/area/station/service/library) -"kwZ" = ( -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"kxq" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/porta_turret/ai, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 8; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"kxt" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"kxw" = ( -/obj/structure/cable, -/obj/machinery/power/apc/sm_apc/directional/east, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"kxz" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/general, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"kxA" = ( -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/office) -"kxH" = ( -/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/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"kxW" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/obj/structure/sign/poster/contraband/random/directional/east, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"kyh" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"kyl" = ( -/obj/item/radio/intercom/directional/south, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"kym" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"kyw" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"kyB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"kyQ" = ( -/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/medical/medbay/central) -"kyX" = ( -/obj/structure/cable, -/obj/machinery/holopad/secure, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"kzb" = ( -/obj/structure/rack, -/obj/item/storage/box/lights/mixed, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/stack/package_wrap, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"kzg" = ( -/obj/machinery/ntnet_relay, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"kzj" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"kzD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Brig" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/any/security/court, -/obj/effect/mapping_helpers/airlock/access/any/security/general, -/turf/open/floor/iron, -/area/station/security/courtroom) -"kzG" = ( -/turf/open/floor/iron/recharge_floor, -/area/station/maintenance/port/aft) -"kzI" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"kzQ" = ( -/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/research) -"kzZ" = ( -/obj/structure/bed/dogbed, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/station/maintenance/port/aft) -"kAp" = ( -/obj/machinery/door/window/left/directional/north{ - dir = 8; - name = "Disposals Chute" - }, -/obj/machinery/disposal/delivery_chute{ - dir = 8; - name = "disposals chute"; - pixel_x = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"kAF" = ( -/obj/machinery/duct, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"kAS" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"kAT" = ( -/obj/effect/landmark/start/head_of_security, -/obj/structure/chair/comfy/black, -/turf/open/floor/iron/dark, -/area/station/security/office) -"kBh" = ( -/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) -"kBl" = ( -/obj/machinery/airalarm/directional/north, -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"kBu" = ( -/obj/structure/table, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 1 - }, -/obj/item/storage/box/bodybags{ - pixel_x = -4; - pixel_y = 9 - }, -/obj/item/storage/box/disks{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"kBw" = ( -/obj/item/cultivator, -/obj/item/crowbar, -/obj/item/plant_analyzer, -/obj/item/reagent_containers/glass/watering_can, -/obj/structure/table/glass, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"kBQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/electrolyzer, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"kBS" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/spawner/random/structure/closet_maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"kBT" = ( -/obj/machinery/door/poddoor/shutters{ - id = "teleshutter"; - name = "Teleporter Access Shutter" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/command/teleporter) -"kCq" = ( -/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/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/modular_computer/console/preset/engineering, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"kCC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"kCD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"kCN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"kCZ" = ( -/turf/closed/wall, -/area/station/service/hydroponics) -"kDj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "main_surgery"; - dir = 4 - }, -/turf/open/floor/plating, -/area/station/medical/treatment_center) -"kDk" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Permabrig Visitation" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron, -/area/station/security/brig) -"kDG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/central) -"kDS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port) -"kDT" = ( -/obj/machinery/mineral/stacking_machine{ - input_dir = 2 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"kDY" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"kEe" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"kEm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"kEp" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hop) -"kEs" = ( -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"kFg" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"kFu" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/storage) -"kFK" = ( -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"kFM" = ( -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/service/library) -"kFP" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "CO2 to Pure" - }, -/obj/effect/turf_decal/tile/dark/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"kFS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"kFT" = ( -/obj/item/kirbyplants{ - icon_state = "plant-13" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"kFX" = ( -/obj/structure/table/optable{ - desc = "A cold, hard place for your final rest."; - name = "Morgue Slab" - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"kGc" = ( -/obj/machinery/computer/rdconsole, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"kGq" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"kGr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"kGs" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"kGv" = ( -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"kGM" = ( -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/obj/structure/closet/secure_closet/security/cargo, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"kHg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/medbay/central) -"kHk" = ( -/obj/machinery/vending/wardrobe/viro_wardrobe, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/green/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"kHn" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Command Hallway - Central" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"kHt" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #2"; - dir = 9; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"kHH" = ( -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/engineering/atmos) -"kHN" = ( -/obj/docking_port/stationary/laborcamp_home{ - dir = 8 - }, -/turf/open/space/basic, -/area/space) -"kHU" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"kIG" = ( -/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) -"kIR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"kIY" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"kJi" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"kJx" = ( -/obj/structure/chair/office, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/service/library) -"kJH" = ( -/obj/structure/table/wood, -/obj/machinery/light/directional/south, -/turf/open/floor/wood, -/area/station/service/library) -"kKd" = ( -/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 = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"kKq" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/stripes/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, -/area/station/engineering/atmos) -"kKr" = ( -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"kKv" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/components/unary/passive_vent, -/turf/open/space/basic, -/area/space/nearstation) -"kKw" = ( -/obj/structure/chair/stool/directional/south, -/turf/open/floor/iron, -/area/station/commons/locker) -"kKF" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/white, -/area/station/security/prison) -"kKT" = ( -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 7; - pixel_y = 12 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -4; - pixel_y = 12 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/dropper, -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"kLg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"kLi" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"kLp" = ( -/obj/machinery/door/window/left/directional/north{ - name = "Inner Pipe Access"; - req_access = list("atmospherics") - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"kLC" = ( -/obj/machinery/door_buttons/access_button{ - idDoor = "xeno_airlock_exterior"; - idSelf = "xeno_airlock_control"; - name = "Access Button"; - pixel_y = -24; - req_access = list("xenobiology") - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1449; - id_tag = "xeno_airlock_exterior"; - name = "Xenobiology Lab External Airlock" - }, -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/iron/white, -/area/station/science/xenobiology/hallway) -"kLF" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/light_switch/directional/south{ - pixel_x = 8 - }, -/obj/machinery/button/door/directional/south{ - id = "chapel_shutters_space"; - name = "chapel shutters control"; - pixel_x = -6 - }, -/turf/open/floor/iron/chapel{ - dir = 1 - }, -/area/station/service/chapel) -"kLG" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"kLZ" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Medbay Primary Treatment Centre East"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"kMd" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/light/small/directional/west, -/obj/effect/spawner/random/structure/closet_empty, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"kMl" = ( -/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, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"kMr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/commons/lounge) -"kMF" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"kMG" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/service/hydroponics) -"kMX" = ( -/obj/machinery/washing_machine, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms) -"kNe" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/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/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"kNx" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Air to Ports" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"kNy" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/computer/cargo{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"kND" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/entertainment/gambling, -/obj/effect/spawner/random/entertainment/gambling, -/turf/open/floor/wood, -/area/station/commons/lounge) -"kNO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/trimline/yellow/filled/end, -/turf/open/floor/iron/textured, -/area/station/medical/medbay/central) -"kNV" = ( -/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) -"kOf" = ( -/obj/machinery/telecomms/broadcaster/preset_right, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"kOh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Orderly's Office" - }, -/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/tile/red/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/medical, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) -"kOp" = ( -/obj/machinery/door/window/right/directional/south{ - dir = 8; - name = "Surgical Supplies"; - req_access = list("surgery") - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/stack/sticky_tape/surgical, -/obj/item/stack/medical/bone_gel, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"kOq" = ( -/obj/machinery/airalarm/server{ - dir = 8; - pixel_x = -22 - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Telecomms - Server Room - Aft-Port"; - network = list("ss13","tcomms") - }, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"kOt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall, -/area/station/maintenance/starboard/lesser) -"kOK" = ( -/turf/open/floor/plating, -/area/station/hallway/primary/port) -"kON" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"kOQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"kOR" = ( -/turf/closed/wall, -/area/station/hallway/primary/aft) -"kOX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/landmark/start/customs_agent, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"kOY" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light_switch/directional/south, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Fitness Room - Aft" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"kPw" = ( -/obj/structure/table, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/item/geiger_counter{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/radio/off{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"kPQ" = ( -/obj/machinery/door/airlock/external{ - name = "Space Shack" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"kPU" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"kPX" = ( -/obj/effect/turf_decal/loading_area/white{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"kPZ" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/two, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"kQe" = ( -/turf/closed/wall, -/area/station/science/genetics) -"kQi" = ( -/obj/machinery/light_switch/directional/east, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"kQm" = ( -/obj/effect/turf_decal/trimline/red/filled/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/white, -/area/station/security/prison) -"kQq" = ( -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"kQx" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/item/weldingtool, -/obj/item/clothing/head/welding, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"kQz" = ( -/obj/structure/table, -/obj/item/storage/box/prisoner{ - pixel_y = 8 - }, -/obj/item/storage/box/prisoner, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"kQD" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/item/stock_parts/cell/high, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"kQR" = ( -/obj/machinery/computer/shuttle/arrivals/recall, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"kQT" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"kQX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Crew Quarters Access" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/locker) -"kRc" = ( -/obj/structure/table, -/obj/item/multitool{ - pixel_x = 4; - pixel_y = 12 - }, -/obj/item/multitool{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/stock_parts/cell/high{ - pixel_y = -4 - }, -/obj/item/stock_parts/cell/high{ - pixel_x = -4; - pixel_y = -6 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/item/multitool{ - pixel_y = 10 - }, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/atmos) -"kRe" = ( -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"kRf" = ( -/obj/structure/railing{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/yellow/filled/end, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 10 - }, -/obj/structure/rack, -/obj/item/storage/box{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"kRi" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"kRk" = ( -/obj/machinery/announcement_system, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"kRx" = ( -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port) -"kRA" = ( -/obj/effect/spawner/random/engineering/atmospherics_portable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port) -"kRV" = ( -/obj/structure/table/reinforced/rglass, -/obj/item/hairbrush, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/item/lipstick/random, -/obj/machinery/camera/directional/east{ - c_tag = "Salon - Massage Parlour" - }, -/turf/open/floor/iron, -/area/service/salon) -"kSo" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/security/holding_cell) -"kSp" = ( -/obj/effect/spawner/random/structure/crate, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"kSs" = ( -/obj/structure/table, -/obj/item/radio/intercom/directional/north, -/obj/machinery/light/small/directional/north, -/obj/item/folder/red{ - pixel_x = 3 - }, -/obj/item/folder/white{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/healthanalyzer, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) -"kSw" = ( -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/commons/lounge) -"kSB" = ( -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/reagent_dispensers/fueltank/large, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/engineering/main) -"kSD" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Aft Primary Hallway - Aft" - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/white/corner, -/area/station/hallway/primary/aft) -"kSE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/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/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"kST" = ( -/obj/machinery/shieldgen, -/turf/open/floor/plating, -/area/station/engineering/main) -"kTn" = ( -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/commons/locker) -"kTx" = ( -/obj/structure/sign/warning/secure_area/directional/west, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/central) -"kTK" = ( -/turf/open/floor/plating, -/area/station/maintenance/department/engine) -"kTO" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/hand_labeler, -/obj/item/pen, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) -"kTZ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"kUb" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater/on, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"kUm" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"kUq" = ( -/obj/structure/table, -/obj/structure/cable, -/obj/item/kirbyplants/photosynthetic, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) -"kUJ" = ( -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/turf/open/floor/engine, -/area/station/engineering/atmospherics_engine) -"kUQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"kUT" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/service/hydroponics/garden) -"kUX" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/warning/pods{ - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"kUZ" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/service/library) -"kVc" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) -"kVe" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"kVg" = ( -/obj/machinery/computer/pandemic, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"kVp" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "ordnancebridge"; - dir = 1 - }, -/obj/machinery/button/door{ - id = "ordnancebridge"; - pixel_x = -24; - req_one_access_txt = list("maint_tunnels","science") - }, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"kVs" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"kVy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 21 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"kVJ" = ( -/obj/machinery/newscaster/directional/west, -/obj/machinery/light/directional/west, -/obj/structure/filingcabinet, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"kVN" = ( -/turf/open/floor/carpet, -/area/station/service/chapel) -"kVR" = ( -/obj/effect/spawner/random/engineering/vending_restock, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"kWc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"kWg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron, -/area/station/command/gateway) -"kWB" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron, -/area/station/science/research) -"kWG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "pharmacy_shutters_2"; - name = "Pharmacy Shutters"; - dir = 4 - }, -/turf/open/floor/plating, -/area/station/medical/pharmacy) -"kWL" = ( -/obj/structure/sign/directions/command{ - dir = 4; - pixel_y = -8 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = 8 - }, -/obj/structure/sign/directions/engineering{ - dir = 4 - }, -/turf/closed/wall, -/area/station/hallway/secondary/command) -"kWM" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"kWO" = ( -/obj/structure/sign/directions/medical{ - pixel_y = -7 - }, -/turf/closed/wall, -/area/station/medical/pharmacy) -"kWP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"kWU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/station/medical/virology) -"kWV" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "Bridge Blast Door" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-left" - }, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"kXa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/urinal/directional/west, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron, -/area/station/commons/toilet/auxiliary) -"kXl" = ( -/obj/item/radio/intercom/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"kXt" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"kXx" = ( -/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/starboard/fore) -"kXD" = ( -/obj/structure/bed/roller, -/obj/item/radio/intercom/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Medbay Foyer"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"kXG" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"kXK" = ( -/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 = 4; - sortType = 28 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"kXU" = ( -/obj/structure/closet/crate/necropolis{ - desc = "Presumably placed here by top men."; - name = "\improper Ark of the Covenant" - }, -/obj/item/toy/clockwork_watch{ - desc = "An ancient piece of machinery, made from an unknown metal by an unknown maker."; - name = "\improper Ancient Relic" - }, -/mob/living/simple_animal/pet/dog/corgi{ - desc = "Make sure you give him plenty of bellyrubs, or he'll melt your skin off."; - name = "\improper Keeper of the Ark" - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"kXY" = ( -/obj/effect/turf_decal/trimline/purple/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"kYd" = ( -/obj/effect/turf_decal/stripes/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/plating, -/area/station/maintenance/starboard/aft) -"kYg" = ( -/turf/closed/wall, -/area/station/security/office) -"kYn" = ( -/obj/effect/spawner/random/engineering/atmospherics_portable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"kYo" = ( -/obj/machinery/power/turbine/turbine_outlet{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"kYv" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/duct, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"kYD" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/ordnance/testlab) -"kYG" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter/room) -"kYU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/ordnance/office) -"kZk" = ( -/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/aft/lesser) -"kZq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"kZx" = ( -/turf/closed/wall, -/area/station/science/lab) -"kZF" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/security/prison) -"kZG" = ( -/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/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"kZH" = ( -/obj/structure/railing{ - dir = 5 - }, -/turf/open/floor/iron/dark/side{ - dir = 5 - }, -/area/station/hallway/secondary/entry) -"kZK" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 10 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 5 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/machinery/light/directional/north, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/sign/poster/official/wtf_is_co2{ - pixel_y = 32 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"kZZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/dark_red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/warden) -"laf" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"lah" = ( -/obj/structure/rack, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/trash/janitor_supplies, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"lar" = ( -/obj/structure/noticeboard/directional/north, -/obj/item/reagent_containers/food/condiment/milk{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/condiment/sugar{ - pixel_y = 4 - }, -/obj/item/reagent_containers/food/condiment/soymilk{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/drinks/ice{ - pixel_x = -4; - pixel_y = -2 - }, -/obj/item/reagent_containers/food/drinks/bottle/cream{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/structure/table{ - name = "Jim Norton's Quebecois Coffee table" - }, -/turf/open/floor/iron/dark, -/area/station/service/cafeteria) -"lav" = ( -/obj/structure/girder, -/obj/effect/spawner/random/structure/grille, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"laE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible/layer4, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/pumproom) -"laK" = ( -/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) -"laL" = ( -/obj/machinery/door/airlock{ - name = "Maintenance Bathroom" - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"laT" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/obj/machinery/door/airlock{ - name = "Kitchen Cold Room" - }, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/coldroom) -"laW" = ( -/obj/item/storage/bag/plants/portaseeder, -/obj/item/plant_analyzer, -/obj/item/cultivator, -/obj/item/reagent_containers/glass/watering_can, -/obj/structure/rack, -/obj/item/vending_refill/hydroseeds, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"lbg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/purple, -/obj/structure/sign/warning/test_chamber/directional/south, -/turf/open/floor/iron/white, -/area/station/science/ordnance/testlab) -"lbh" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/security/prison/visit) -"lbH" = ( -/mob/living/simple_animal/chicken{ - name = "Featherbottom"; - real_name = "Featherbottom" - }, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"lbL" = ( -/obj/effect/decal/cleanable/insectguts, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"lbZ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Disposal Access" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"lcG" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"lcJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/trash/janitor_supplies, -/turf/open/floor/plating, -/area/station/maintenance/port) -"lcM" = ( -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"lcU" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/camera/directional/west{ - c_tag = "Starboard Primary Hallway - Atmospherics" - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"ldc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"ldg" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/cargo/qm) -"lds" = ( -/obj/structure/table, -/obj/item/storage/fancy/egg_box, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/rice, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"ldJ" = ( -/obj/machinery/light/directional/north, -/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/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"ldK" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"ldO" = ( -/obj/effect/landmark/blobstart, -/obj/machinery/power/port_gen/pacman/pre_loaded, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"ldP" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/satellite) -"ldQ" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"lek" = ( -/obj/machinery/power/smes, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"lfc" = ( -/obj/machinery/newscaster/directional/north, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"lfd" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 4 - }, -/obj/machinery/computer/department_orders/engineering, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"lfk" = ( -/obj/structure/rack, -/obj/item/reagent_containers/glass/bottle/phosphorus{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/potassium{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/sodium{ - pixel_x = 1 - }, -/turf/open/floor/iron/dark/textured_edge{ - dir = 4 - }, -/area/station/medical/medbay/central) -"lfm" = ( -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"lfu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hos) -"lfy" = ( -/obj/structure/sign/warning/secure_area/directional/east, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"lfG" = ( -/obj/effect/turf_decal/trimline/purple/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"lfY" = ( -/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, -/area/station/cargo/drone_bay) -"lge" = ( -/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, -/area/station/command/gateway) -"lgg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"lgj" = ( -/obj/structure/bed{ - dir = 4 - }, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/glasses/blindfold, -/obj/item/clothing/mask/muzzle, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/security/execution/transfer) -"lgl" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"lgC" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/co2{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured, -/area/station/medical/cryo) -"lgK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"lgL" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"lgS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/security/execution/transfer) -"lgT" = ( -/obj/effect/turf_decal/trimline/blue/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/white, -/area/station/medical/medbay/central) -"lhc" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/security/medical) -"lhk" = ( -/obj/structure/table, -/obj/item/storage/medkit/brute, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"lhD" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/spawner/random/trash/janitor_supplies, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"lhT" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"lhU" = ( -/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/bush/sunny/style_random, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/station/hallway/secondary/exit/departure_lounge) -"lia" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"liz" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/engineering/main) -"liC" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"liD" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"liL" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"liN" = ( -/obj/structure/sign/departments/chemistry/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Medbay Main Hallway- Surgical Junction"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"liO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/bluespace_vendor/directional/west, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"ljf" = ( -/obj/structure/table, -/obj/item/wirecutters, -/obj/item/screwdriver{ - pixel_x = -2; - pixel_y = 10 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/syndicatebomb/training, -/turf/open/floor/iron, -/area/station/security/office) -"lji" = ( -/obj/machinery/newscaster/directional/north, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"ljm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"ljD" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"ljF" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"ljL" = ( -/obj/structure/chair/comfy/black, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/bridge) -"lkc" = ( -/obj/structure/sign/barsign, -/turf/closed/wall, -/area/station/commons/lounge) -"lkL" = ( -/obj/structure/table, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/item/radio/headset/headset_medsci{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/storage/box/monkeycubes{ - pixel_x = 6; - pixel_y = 9 - }, -/obj/item/storage/box/gloves{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/machinery/button/door/directional/east{ - id = "rdgene2"; - name = "Secondary Genetics Shutters Control"; - pixel_y = -6; - req_access = list("science") - }, -/obj/machinery/button/door/directional/east{ - id = "rdgene"; - name = "Primary Genetics Shutters Control"; - pixel_y = 6; - req_access = list("science") - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"lkW" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"llh" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/effect/spawner/random/maintenance, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"llk" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "aftport"; - name = "Aft-Port Solar Array" - }, -/turf/open/floor/iron/solarpanel/airless, -/area/station/solars/port/aft) -"lln" = ( -/obj/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/turf_decal/tile/blue/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"lls" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/effect/spawner/random/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"llT" = ( -/obj/structure/table/wood, -/obj/machinery/button/ticket_machine{ - pixel_x = 32 - }, -/obj/item/paper_bin/carbon{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/stamp/hop{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/machinery/light_switch/directional/south{ - pixel_x = 6; - pixel_y = -34 - }, -/obj/machinery/button/door/directional/south{ - id = "hop"; - name = "Privacy Shutters Control"; - pixel_x = -6; - req_access = list("hop") - }, -/obj/machinery/button/door/directional/south{ - id = "hopqueue"; - name = "Queue Shutters Control"; - pixel_x = -6; - pixel_y = -34; - req_access = list("hop") - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"llW" = ( -/obj/structure/fluff/broken_flooring{ - dir = 4; - icon_state = "singular" - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"lma" = ( -/obj/structure/chair/stool/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"lme" = ( -/obj/machinery/firealarm/directional/west, -/obj/machinery/light/directional/west, -/obj/item/banner/cargo/mundane, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner, -/turf/open/floor/iron, -/area/station/cargo/storage) -"lmn" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"lmq" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"lmA" = ( -/obj/machinery/power/smes{ - capacity = 9e+006; - charge = 10000 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"lmF" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"lmK" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"lmL" = ( -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Abandoned Warehouse" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"lmT" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/security/prison) -"lnc" = ( -/turf/closed/wall, -/area/station/commons/dorms) -"lnv" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - name = "Cargo Bay Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"lnA" = ( -/obj/machinery/computer/mecha{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 5 - }, -/obj/machinery/requests_console/directional/east{ - announcementConsole = 1; - department = "Research Director's Desk"; - departmentType = 5; - name = "Research Director's Requests Console" - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"lnH" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/primary/fore) -"lnM" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/obj/item/reagent_containers/glass/bottle/ammonia, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"lnP" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"lnR" = ( -/obj/structure/table, -/obj/effect/spawner/random/decoration/ornament, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"lnT" = ( -/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/engineering/main) -"lnX" = ( -/obj/structure/cable, -/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, -/area/station/ai_monitored/command/storage/satellite) -"lof" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/table/glass, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/screwdriver{ - pixel_x = -2; - pixel_y = 6 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"loh" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/service/bar) -"loA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"loQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/random/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"loW" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"lpo" = ( -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"lpp" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"lpq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/secondary/entry) -"lps" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"lpt" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"lpw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "QM #2" - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"lpA" = ( -/obj/machinery/air_sensor/nitrogen_tank, -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"lpD" = ( -/obj/machinery/biogenerator, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"lpN" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "viro-passthrough" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/medical/medbay/central) -"lpQ" = ( -/obj/machinery/disposal/delivery_chute{ - dir = 1; - name = "Service Deliveries" - }, -/obj/structure/plasticflaps/opaque{ - name = "Service Deliveries" - }, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/structure/sign/departments/botany/directional/south{ - color = "#9FED58" - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"lpS" = ( -/obj/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) -"lqd" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching output from station security cameras."; - name = "Security Camera Monitor"; - network = list("ss13"); - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"lqh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"lql" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/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/requests_console/directional/south{ - department = "Engineering"; - departmentType = 3; - name = "Engineering Requests Console" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"lqC" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/landmark/blobstart, -/obj/machinery/camera/directional/north{ - c_tag = "Evidence Storage" - }, -/obj/item/storage/secure/safe/directional/north{ - name = "evidence safe" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"lqL" = ( -/obj/effect/turf_decal/siding{ - dir = 1 - }, -/obj/machinery/computer/rdconsole, -/turf/open/floor/iron/dark, -/area/station/science/lab) -"lqQ" = ( -/turf/closed/wall, -/area/station/service/hydroponics/garden) -"lqT" = ( -/obj/structure/table, -/obj/item/razor{ - pixel_y = 5 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"lro" = ( -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"lrp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"lrK" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos) -"lrL" = ( -/obj/item/taperecorder, -/obj/item/camera, -/obj/structure/table/wood, -/obj/item/radio/intercom/directional/south, -/obj/structure/sign/painting/library_private{ - pixel_x = -32; - pixel_y = -32 - }, -/turf/open/floor/engine/cult, -/area/station/service/library) -"lrR" = ( -/obj/machinery/light/directional/south, -/obj/structure/bed/roller, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"lrZ" = ( -/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/chemistry) -"lsq" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/rods/fifty, -/obj/item/stack/rods/fifty, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ - dir = 4 - }, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/engineering/atmos) -"lsu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/freezer, -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"lsJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white/side, -/area/station/medical/medbay/central) -"lsP" = ( -/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/security/brig) -"ltb" = ( -/obj/machinery/vending/security, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"ltg" = ( -/obj/structure/chair/stool/directional/north, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"ltm" = ( -/obj/machinery/atmospherics/components/tank/oxygen{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"ltt" = ( -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/brig) -"ltv" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"ltx" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"ltX" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"luc" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "QMLoad2"; - name = "Unloading Conveyor"; - pixel_x = -13; - pixel_y = -4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"lup" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/machinery/flasher/directional/south{ - id = "AI"; - pixel_x = 26 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"luF" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"luL" = ( -/obj/effect/landmark/start/assistant, -/obj/structure/chair/comfy/black, -/turf/open/floor/wood, -/area/station/service/library) -"luV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/window/left/directional/west{ - base_state = "right"; - icon_state = "right"; - name = "Shooting Range" - }, -/turf/open/floor/iron, -/area/station/security/range) -"lvs" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"lvu" = ( -/obj/machinery/door/window/left/directional/west{ - dir = 4; - name = "Infirmary" - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/security/medical) -"lvx" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/warning{ - dir = 8 - }, -/obj/machinery/computer/department_orders/security{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"lvU" = ( -/obj/machinery/door/airlock{ - id_tag = "Toilet4"; - name = "Unit 4" - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"lvZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office" - }, -/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/security/general, -/turf/open/floor/iron/dark, -/area/station/security/office) -"lwg" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/command/gateway) -"lwm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"lwn" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/right/directional/south{ - name = "Cargo Desk"; - req_access = list("shipping") - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/desk_bell{ - pixel_x = 7 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"lwx" = ( -/obj/structure/flora/bush/sunny/style_random, -/obj/machinery/camera/directional/north{ - c_tag = "Virology Test Subject Chamber"; - network = list("ss13","medbay") - }, -/turf/open/floor/grass, -/area/station/medical/virology) -"lwR" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"lxf" = ( -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/button/door/directional/west{ - id = "Cabin5"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"lxm" = ( -/obj/machinery/atmospherics/components/trinary/mixer/airmix{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"lxt" = ( -/obj/item/cigbutt, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"lxv" = ( -/obj/item/radio/intercom/directional/east, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"lxw" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"lxC" = ( -/obj/item/radio/intercom/directional/south, -/obj/structure/chair/sofa/corp/right{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"lxJ" = ( -/obj/structure/reagent_dispensers/watertank/high, -/obj/item/reagent_containers/glass/watering_can, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"lxM" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port) -"lxV" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/service/theater) -"lyf" = ( -/obj/structure/closet/l3closet, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"lyu" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison) -"lyD" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/small/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"lyE" = ( -/obj/machinery/smartfridge/chemistry/preloaded, -/turf/closed/wall/r_wall, -/area/station/medical/chemistry) -"lyF" = ( -/obj/effect/turf_decal/tile/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, -/area/station/security/office) -"lyN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"lzJ" = ( -/obj/structure/cable, -/turf/open/floor/iron/solarpanel/airless, -/area/station/solars/port/aft) -"lzL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"lzM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"lzU" = ( -/obj/structure/table/glass, -/obj/machinery/light/small/directional/south, -/obj/item/folder/white{ - pixel_y = 4 - }, -/obj/item/pen/red, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"lzV" = ( -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/office) -"lAe" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/engine, -/area/station/command/heads_quarters/rd) -"lAh" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"lAu" = ( -/turf/open/space/basic, -/area/space/nearstation) -"lAH" = ( -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Research Director Observation"; - req_access = list("rd") - }, -/turf/open/floor/engine, -/area/station/command/heads_quarters/rd) -"lAM" = ( -/turf/closed/wall/r_wall, -/area/station/security/brig) -"lBm" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"lBz" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/mining{ - name = "Deliveries" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"lBA" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/stool/bar/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/commons/lounge) -"lBN" = ( -/obj/structure/table, -/obj/effect/turf_decal/delivery, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/turf/open/floor/iron, -/area/station/engineering/main) -"lBS" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"lCb" = ( -/obj/structure/cable, -/obj/structure/sign/poster/ripped{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"lCw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chem_lockdown"; - name = "Chemistry Shutters"; - dir = 4 - }, -/turf/open/floor/plating, -/area/station/medical/chemistry) -"lCG" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/white/line, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/box/red, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"lCN" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"lDe" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/door/poddoor/shutters/window{ - id = "armory"; - name = "Armory Shutters" - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"lDo" = ( -/obj/item/radio/off, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/central) -"lDv" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Arrivals - Auxilliary Port" - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"lDA" = ( -/obj/structure/closet/wardrobe/black, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"lDP" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"lEd" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "garbage" - }, -/obj/structure/sign/warning/vacuum/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"lEr" = ( -/obj/effect/turf_decal/stripes/line, -/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/aft/greater) -"lEu" = ( -/obj/effect/spawner/random/engineering/tank, -/turf/open/floor/plating, -/area/station/maintenance/port) -"lEF" = ( -/obj/structure/frame/machine, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"lEH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"lEK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"lEP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"lFq" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall/r_wall, -/area/station/science/cytology) -"lFs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"lFV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"lFY" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/left/directional/west{ - dir = 4; - name = "Robotics Desk"; - req_access = list("robotics") - }, -/obj/item/folder{ - pixel_x = -6 - }, -/obj/item/pen{ - pixel_x = -5 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "roboticsprivacy"; - name = "Robotics Shutters"; - dir = 8 - }, -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/structure/desk_bell{ - pixel_x = 6 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"lFZ" = ( -/obj/structure/chair/pew/right, -/turf/open/floor/iron/chapel{ - dir = 4 - }, -/area/station/service/chapel) -"lGL" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"lGR" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"lGS" = ( -/obj/docking_port/stationary/public_mining_dock, -/turf/open/floor/plating, -/area/station/construction/mining/aux_base) -"lHe" = ( -/obj/machinery/reagentgrinder{ - pixel_y = 4 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"lHk" = ( -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port) -"lHp" = ( -/obj/structure/window/reinforced, -/obj/machinery/light/small/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "MiniSat Exterior Access"; - network = list("minisat") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"lHx" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"lHK" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/carpet, -/area/station/service/chapel) -"lHN" = ( -/obj/machinery/door/poddoor/shutters{ - id = "visitation"; - name = "Visitation Shutters"; - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/visit) -"lIa" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/wood, -/area/station/service/library) -"lIc" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"lIB" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/entertainment/lighter, -/turf/open/floor/iron, -/area/station/service/bar) -"lIM" = ( -/obj/structure/table, -/obj/item/stack/package_wrap{ - pixel_x = -8; - pixel_y = -3 - }, -/obj/item/paperslip{ - pixel_x = -5; - pixel_y = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"lIX" = ( -/obj/structure/chair/comfy/brown, -/turf/open/floor/engine/cult, -/area/station/service/library) -"lJa" = ( -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"lJh" = ( -/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/gravity_generator) -"lJj" = ( -/obj/structure/showcase/cyborg/old{ - pixel_y = 20 - }, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"lJm" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/newscaster/directional/south, -/obj/effect/landmark/start/assistant, -/obj/effect/landmark/start/hangover, -/obj/effect/spawner/random/trash/graffiti{ - pixel_x = -32; - spawn_loot_chance = 50 - }, -/obj/machinery/button/door/directional/west{ - id = "Toilet3"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"lJn" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/obj/structure/filingcabinet/chestdrawer{ - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"lJr" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"lJR" = ( -/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/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"lKc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/warning/radiation/rad_area/directional/north{ - dir = 1 - }, -/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/plating, -/area/station/maintenance/starboard/fore) -"lKd" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"lKu" = ( -/obj/effect/landmark/carpspawn, -/turf/open/space/basic, -/area/space) -"lKA" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/engine) -"lKJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"lKN" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"lKS" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Chapel Office - Backroom" - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"lKZ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"lLk" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"lLq" = ( -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"lLu" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"lLw" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/door/window/right/directional/east{ - base_state = "left"; - dir = 2; - icon_state = "left"; - name = "Shower" - }, -/turf/open/floor/iron/freezer, -/area/station/commons/fitness/recreation) -"lLz" = ( -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/effect/turf_decal/delivery, -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"lLB" = ( -/obj/structure/table/glass, -/obj/item/wrench, -/obj/item/crowbar, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"lLF" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Central Primary Hallway - Port" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"lLG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"lLR" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"lMb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics - External Airlock" - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"lMq" = ( -/turf/open/misc/asteroid/basalt/airless, -/area/space/nearstation) -"lMx" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"lMI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/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, -/area/station/hallway/secondary/exit/departure_lounge) -"lMJ" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"lMW" = ( -/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/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"lMY" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/iron, -/area/station/commons/toilet/auxiliary) -"lNb" = ( -/obj/structure/closet, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"lNc" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/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/machinery/duct, -/turf/open/floor/iron, -/area/station/engineering/main) -"lNE" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/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/fore) -"lNH" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"lNI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"lNP" = ( -/obj/effect/turf_decal/box/white{ - color = "#9FED58" - }, -/turf/open/floor/engine, -/area/station/engineering/atmospherics_engine) -"lNW" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron, -/area/station/security/office) -"lNX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/office) -"lNY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"lOf" = ( -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"lOg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"lOr" = ( -/obj/effect/landmark/start/geneticist, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"lOK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"lOU" = ( -/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/commons/fitness/recreation) -"lOV" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/modular_computer/console/preset/cargochat/medical{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) -"lOY" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/box, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"lOZ" = ( -/obj/machinery/power/port_gen/pacman/pre_loaded, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"lPa" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"lPc" = ( -/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/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"lPi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"lPl" = ( -/obj/machinery/light/directional/west, -/obj/machinery/light_switch/directional/west, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/office) -"lPp" = ( -/obj/structure/closet/wardrobe/grey, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"lPx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/requests_console/directional/west{ - department = "Robotics"; - departmentType = 2; - name = "Robotics Requests Console"; - receive_ore_updates = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"lPy" = ( -/obj/structure/disposalpipe/segment{ - 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 = 6 - }, -/obj/effect/spawner/random/structure/crate, -/obj/machinery/light/dim/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"lPB" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"lPC" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/white/line, -/obj/effect/turf_decal/box/red, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"lPZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "council blast"; - name = "Council Blast Doors" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/command/bridge) -"lQk" = ( -/obj/item/pushbroom, -/obj/structure/closet{ - name = "janitorial supplies" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"lQm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"lQp" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/security/prison/visit) -"lQI" = ( -/obj/effect/spawner/random/trash/caution_sign, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"lQW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/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/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"lRS" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"lSw" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/cytology) -"lSz" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"lTi" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera/directional/south{ - c_tag = "Xenobiology Lab - Central North"; - network = list("ss13","rd","xeno") - }, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"lTj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/brig) -"lTq" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/command/bridge) -"lTt" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"lTB" = ( -/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/purple/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"lTE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/command/teleporter) -"lTM" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"lTP" = ( -/obj/structure/table/glass, -/obj/item/computer_hardware/hard_drive/portable/medical, -/obj/item/computer_hardware/hard_drive/portable/medical, -/obj/item/computer_hardware/hard_drive/portable/chemistry, -/obj/machinery/light_switch/directional/north, -/obj/machinery/vending/wallmed/directional/west, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"lTR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white/side, -/area/station/medical/treatment_center) -"lTZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/vehicle/sealed/mecha/working/ripley/cargo, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"lUe" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"lUj" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/machinery/firealarm/directional/south, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"lUp" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/iron/showroomfloor, -/area/station/maintenance/starboard/lesser) -"lUz" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"lUD" = ( -/obj/machinery/space_heater, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/checker, -/area/station/maintenance/aft/lesser) -"lUI" = ( -/obj/effect/turf_decal/arrows/red{ - dir = 4 - }, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/iron, -/area/station/cargo/storage) -"lUK" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Dormitories - Aft" - }, -/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/commons/dorms) -"lUP" = ( -/obj/machinery/button/crematorium{ - id = "crematoriumChapel"; - pixel_x = -26 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"lUS" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"lUY" = ( -/obj/machinery/shower{ - dir = 8; - pixel_y = -4 - }, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"lVe" = ( -/obj/machinery/mass_driver/trash{ - dir = 8 - }, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"lVl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"lVn" = ( -/obj/structure/bed, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/glasses/blindfold, -/obj/item/clothing/mask/muzzle, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/dark, -/area/station/security/holding_cell) -"lVq" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/table/wood, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"lVB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"lVM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"lWa" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"lWd" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"lWg" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/item/clothing/glasses/sunglasses/big, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"lWm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/commons/lounge) -"lWq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"lWG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"lWI" = ( -/obj/effect/turf_decal/siding/wood/corner{ - dir = 4 - }, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"lWM" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Xenobiology Lab - Pen #6"; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"lXl" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"lXm" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 1 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"lXr" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"lXA" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"lXC" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/closet/secure_closet/freezer/kitchen/maintenance, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"lXG" = ( -/obj/machinery/door/airlock/external/glass{ - name = "Supply Door Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/plating, -/area/station/cargo/storage) -"lXL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/meter, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"lXN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"lXS" = ( -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"lYc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"lYx" = ( -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"lYG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"lYH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"lYL" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"lYM" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the turbine vent."; - dir = 8; - name = "turbine vent monitor"; - network = list("turbine"); - pixel_x = 29 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"lYP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"lZk" = ( -/obj/machinery/power/turbine/inlet_compressor{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"lZp" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge"; - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"lZC" = ( -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/stripes/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/secondary/exit/departure_lounge) -"lZM" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"lZV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"mam" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"mav" = ( -/obj/machinery/door/airlock/medical{ - name = "Medical Cold Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, -/turf/open/floor/iron, -/area/station/medical/coldroom) -"maB" = ( -/obj/structure/destructible/cult/item_dispenser/archives/library, -/obj/item/clothing/under/suit/red, -/obj/effect/decal/cleanable/cobweb, -/obj/item/book/codex_gigas, -/turf/open/floor/engine/cult, -/area/station/service/library) -"maJ" = ( -/obj/effect/landmark/event_spawn, -/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/aft/greater) -"maS" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics - Entrance" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/table, -/obj/item/book/manual/wiki/atmospherics, -/obj/item/t_scanner, -/obj/item/t_scanner, -/obj/item/t_scanner, -/obj/item/storage/belt/utility, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/storage/gas) -"maY" = ( -/obj/effect/spawner/random/structure/crate_empty, -/obj/effect/turf_decal/stripes/line, -/obj/effect/spawner/random/maintenance/two, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"mbi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/vault{ - pixel_y = 30 - }, -/turf/open/floor/wood, -/area/station/cargo/qm) -"mbk" = ( -/obj/effect/turf_decal/trimline/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/junction{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"mbC" = ( -/obj/structure/rack, -/obj/item/electronics/apc, -/obj/item/electronics/airlock, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"mbV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"mcl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"mcn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 10 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/duct, -/obj/machinery/button/door/directional/north{ - id = "kitchen_counter"; - name = "Counter Shutters Control"; - req_access = list("kitchen") - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"mcP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Fore Primary Hallway" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"mcW" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Visitation" - }, -/turf/open/floor/iron/white, -/area/station/security/prison/visit) -"mda" = ( -/obj/machinery/computer/security/telescreen/entertainment/directional/east, -/obj/machinery/light/directional/east, -/obj/machinery/skill_station, -/turf/open/floor/wood, -/area/station/service/library) -"mdk" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"mdo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/hatch{ - name = "Xenobiology Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"mdy" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/central) -"mdL" = ( -/obj/machinery/computer/shuttle/mining{ - dir = 1; - req_access = null - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"mdW" = ( -/obj/structure/safe/floor, -/obj/item/food/fortunecookie, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"mec" = ( -/obj/effect/turf_decal/bot, -/obj/effect/spawner/random/structure/crate_empty, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"mei" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"meu" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"mez" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/sign/warning/electric_shock, -/turf/open/floor/engine, -/area/station/science/cytology) -"meL" = ( -/obj/machinery/light_switch/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/carpet, -/area/station/command/heads_quarters/hos) -"mfh" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"mfp" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/service/library) -"mfE" = ( -/obj/structure/table/wood/fancy/royalblue, -/obj/structure/window/reinforced, -/obj/machinery/door/window{ - dir = 8; - name = "Secure Art Exhibition"; - req_access = list("library") - }, -/obj/structure/sign/painting/library_secure{ - pixel_x = 32 - }, -/obj/effect/spawner/random/decoration/statue{ - spawn_loot_chance = 50 - }, -/turf/open/floor/carpet/royalblue, -/area/station/service/library) -"mfS" = ( -/obj/structure/table/wood, -/obj/machinery/status_display/evac/directional/north, -/obj/item/book/manual/wiki/tcomms, -/obj/item/folder/blue, -/obj/item/pen, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"mgh" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Atmospherics Tank - O2" - }, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"mgj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/flasher/directional/north{ - id = "AI"; - pixel_x = -22 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"mgv" = ( -/obj/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/fore) -"mgE" = ( -/obj/structure/mirror/directional/west, -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"mgJ" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"mgS" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch{ - name = "Observation Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/iron, -/area/station/maintenance/department/science/xenobiology) -"mhl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/station/service/janitor) -"mhA" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"mhD" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 9 - }, -/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) -"mhR" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/button/door/directional/south{ - id = "chapel_shutters_parlour"; - name = "chapel shutters control" - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"mhW" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/department/engine) -"mif" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 16 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port) -"mig" = ( -/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) -"mil" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster/directional/east, -/obj/effect/spawner/random/bureaucracy/paper, -/turf/open/floor/wood, -/area/station/commons/dorms) -"min" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"mix" = ( -/obj/structure/frame/machine, -/obj/item/circuitboard/machine/chem_master, -/turf/open/floor/iron/showroomfloor, -/area/station/maintenance/starboard/lesser) -"miy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"miN" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"miX" = ( -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"mjd" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"mjg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"mji" = ( -/obj/effect/spawner/random/structure/grille, -/turf/open/space, -/area/space/nearstation) -"mjr" = ( -/turf/open/floor/wood, -/area/station/service/library) -"mjC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"mjH" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/structure/cable, -/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, -/area/station/ai_monitored/aisat/exterior) -"mjN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"mkb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "packageExternal"; - name = "Crate Returns"; - pixel_x = -5; - pixel_y = 23 - }, -/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/junction{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"mkd" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"mkr" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Gas to Chamber" - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"mkO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/research{ - name = "Chemical Storage" - }, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/medical/pharmacy, -/turf/open/floor/iron/textured, -/area/station/medical/medbay/central) -"mkZ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"mlc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chem_lockdown"; - name = "Chemistry Shutters"; - dir = 8 - }, -/turf/open/floor/plating, -/area/station/medical/chemistry) -"mln" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Engineering Supermatter Port"; - network = list("ss13","engine") - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/airalarm/engine{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"mlu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"mlv" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/scientist, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"mlw" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=4-Customs"; - location = "3-Central-Port" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"mlH" = ( -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"mlK" = ( -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"mlP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"mma" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/stool/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/service/janitor) -"mmm" = ( -/obj/effect/turf_decal/tile/neutral{ - 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/port) -"mmF" = ( -/obj/machinery/light/small/directional/east, -/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/solar_assembly, -/obj/item/stack/sheet/glass/fifty, -/obj/structure/closet/crate/engineering/electrical, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"mmR" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"mmS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"mmU" = ( -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"mmV" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/security/prison) -"mmW" = ( -/obj/structure/flora/bush/flowers_pp/style_random, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/structure/flora/bush/fullgrass/style_random, -/obj/machinery/camera/directional/east{ - c_tag = "Science Ordnance Office"; - network = list("ss13","rd") - }, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/grass, -/area/station/science/ordnance/office) -"mmZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Courtroom" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/any/security/court, -/obj/effect/mapping_helpers/airlock/access/any/security/general, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"mna" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/office) -"mnl" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"mnq" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"mnx" = ( -/obj/structure/sign/directions/evac, -/obj/structure/sign/directions/medical{ - pixel_y = 8 - }, -/obj/structure/sign/directions/science{ - pixel_y = -8 - }, -/turf/closed/wall, -/area/station/maintenance/central) -"mny" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Engineering Supermatter Starboard"; - network = list("ss13","engine") - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"mnF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/west, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/research) -"mnN" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"mos" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"mow" = ( -/obj/structure/table, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"moD" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"moF" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 5 - }, -/obj/structure/filingcabinet, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"moH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/white, -/area/station/science/research) -"moL" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 2; - sortType = 22 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - 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, -/area/station/maintenance/starboard/greater) -"moQ" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"moV" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/security/courtroom) -"mpg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"mph" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) -"mpp" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"mpC" = ( -/obj/structure/rack, -/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/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/security/holding_cell) -"mpJ" = ( -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/neutral{ - 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/aft) -"mpK" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageExternal" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/cargo/qm) -"mpQ" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"mqe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/chapel, -/area/station/service/chapel) -"mqK" = ( -/obj/effect/landmark/blobstart, -/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) -"mqN" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/button/door/directional/north{ - id = "ert_bay_door"; - name = "Landing Bay Doors" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"mqQ" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"mrC" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Hydroponics Maintenance" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"mrG" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/lighter, -/turf/open/floor/carpet, -/area/station/command/bridge) -"mrJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/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/central) -"mrL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/security/holding_cell) -"mrN" = ( -/obj/structure/table, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port) -"mrT" = ( -/obj/item/radio/intercom/directional/east, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"mrV" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"msd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"msu" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/engineering/glass/critical{ - heat_proof = 1; - name = "Supermatter Chamber" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"msN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"msR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"msT" = ( -/obj/structure/table, -/obj/item/food/mint, -/obj/item/kitchen/rollingpin, -/obj/item/reagent_containers/food/condiment/enzyme{ - layer = 5 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 5 - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/service/kitchen) -"mta" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Starboard Primary Hallway - tech_storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"mtj" = ( -/obj/machinery/medical_kiosk, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/effect/turf_decal/siding/white, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white/side{ - dir = 1 - }, -/area/station/medical/treatment_center) -"mtm" = ( -/obj/machinery/chem_master, -/obj/structure/noticeboard/directional/south, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"mtu" = ( -/turf/open/floor/engine, -/area/station/science/xenobiology) -"mtG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "perma-entrance" - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron, -/area/station/security/brig) -"mtL" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall, -/area/station/hallway/secondary/entry) -"mtM" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/table, -/obj/machinery/computer/security/telescreen/ordnance{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"mtO" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/commons/dorms) -"mtR" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "MiniSat Exterior - Port Fore"; - network = list("minisat") - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"mtX" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"mue" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"mui" = ( -/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/medbay/lobby) -"mum" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"mup" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/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) -"mur" = ( -/obj/machinery/light/directional/north, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"mut" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Weapon Distribution"; - req_access = list("armory") - }, -/obj/item/paper, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/left/directional/south{ - name = "Requests Window" - }, -/obj/item/pen, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"muu" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"mux" = ( -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"muB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"mvg" = ( -/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/carpet, -/area/station/service/library) -"mvk" = ( -/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, -/area/station/service/theater) -"mvR" = ( -/turf/closed/wall/r_wall, -/area/station/science/lab) -"mvS" = ( -/obj/structure/table, -/obj/machinery/airalarm/directional/south, -/obj/item/storage/toolbox/electrical{ - pixel_y = 5 - }, -/turf/open/floor/iron, -/area/station/science/explab) -"mvY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/iron/white, -/area/station/medical/office) -"mvZ" = ( -/obj/machinery/light/directional/south, -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/obj/item/storage/toolbox/emergency{ - pixel_x = -2; - pixel_y = -3 - }, -/obj/item/wrench, -/obj/item/multitool, -/obj/machinery/newscaster/directional/south, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"mww" = ( -/obj/effect/turf_decal/stripes/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/engineering/main) -"mwN" = ( -/obj/structure/table, -/obj/item/stack/package_wrap{ - pixel_x = -9; - pixel_y = -9 - }, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"mwS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair/stool/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/commons/lounge) -"mxg" = ( -/obj/machinery/shower{ - dir = 8; - pixel_y = -4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"mxh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"mxn" = ( -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/hos) -"mxs" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"mxI" = ( -/obj/structure/disposalpipe/junction/flip, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"mxQ" = ( -/obj/effect/spawner/random/structure/grille, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"mxV" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Arrival Airlock"; - space_dir = 1 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"myc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"myB" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/chair, -/obj/structure/cable, -/obj/effect/turf_decal/siding/red/corner, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"myG" = ( -/obj/structure/sign/directions/evac, -/obj/structure/sign/directions/medical{ - pixel_y = 8 - }, -/obj/structure/sign/directions/science{ - pixel_y = -8 - }, -/turf/closed/wall, -/area/station/commons/lounge) -"myH" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/security/prison) -"myP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"myS" = ( -/obj/machinery/suit_storage_unit/cmo, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"myY" = ( -/obj/effect/turf_decal/stripes/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/engineering/gravity_generator) -"myZ" = ( -/obj/machinery/vending/autodrobe/all_access, -/turf/open/floor/plating, -/area/station/maintenance/port) -"mzg" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/red, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"mzs" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"mzu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/engine) -"mzw" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Gravity Generator Foyer" - }, -/obj/structure/closet/radiation, -/obj/structure/sign/warning/radiation/rad_area/directional/north{ - dir = 1 - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"mzD" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"mzI" = ( -/obj/machinery/door/airlock/grunge{ - name = "Prison Workshop" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison/work) -"mAa" = ( -/obj/machinery/light/directional/north, -/obj/machinery/door/window{ - name = "Secure Art Exhibition"; - req_access = list("library") - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/wood/fancy/royalblue, -/obj/structure/sign/painting/large/library{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/service/library) -"mAb" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"mAe" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"mAf" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"mAm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security E.V.A. Storage" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/turf/open/floor/iron, -/area/station/security/brig) -"mAr" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"mAw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1; - sortType = 10 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"mAJ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"mAV" = ( -/obj/machinery/rnd/production/techfab/department/service, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 6 - }, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"mBb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/office) -"mBf" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hos) -"mBi" = ( -/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/engineering/break_room) -"mBo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"mBw" = ( -/obj/machinery/power/emitter, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/engineering/main) -"mBK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/spawner/random/structure/girder{ - spawn_loot_chance = 80 - }, -/obj/effect/spawner/random/structure/barricade{ - spawn_loot_chance = 50 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"mBO" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/structure/sign/departments/psychology/directional/west, -/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) -"mBQ" = ( -/obj/structure/table/glass, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/spawner/random/food_or_drink/snack{ - pixel_x = 6; - spawn_loot_count = 2; - spawn_random_offset = 1 - }, -/obj/effect/spawner/random/food_or_drink/refreshing_beverage{ - pixel_x = -6; - spawn_loot_count = 2; - spawn_random_offset = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"mBT" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "Bridge Blast Door" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-right" - }, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"mCi" = ( -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"mCj" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #7"; - dir = 5; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"mCn" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"mCL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"mCV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"mCZ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 9 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"mDg" = ( -/obj/structure/disposalpipe/segment{ - 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, -/area/station/security/brig) -"mDu" = ( -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"mDA" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Mix to Engine" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"mDF" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/target/alien, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/item/target/clown, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"mDL" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron, -/area/station/commons/locker) -"mDN" = ( -/obj/structure/chair/stool/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"mDX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"mEo" = ( -/obj/effect/turf_decal/stripes/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/plating, -/area/station/maintenance/starboard/greater) -"mEx" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/effect/spawner/random/maintenance/three, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"mEL" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"mES" = ( -/obj/structure/rack, -/obj/item/aicard, -/obj/item/radio/off, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 1; - pixel_y = -29 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"mET" = ( -/obj/item/wrench, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"mFf" = ( -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/security/interrogation) -"mFi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"mFj" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/machinery/camera/directional/north{ - c_tag = "Bar - Fore" - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/turf/open/floor/iron, -/area/station/commons/lounge) -"mFm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"mFo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Port Primary Hallway" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"mFp" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/station/engineering/main) -"mFr" = ( -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating/airless, -/area/station/solars/port/aft) -"mFt" = ( -/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) -"mFu" = ( -/obj/structure/bed{ - dir = 4 - }, -/obj/item/bedsheet/medical{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"mFC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/beerkeg, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/wood, -/area/station/service/bar) -"mFQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"mGg" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/item/bikehorn/rubberducky, -/obj/machinery/light_switch/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"mGh" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/command/gateway) -"mGk" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "MiniSat Exterior - Fore Starboard"; - network = list("minisat") - }, -/obj/structure/window/reinforced, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"mGA" = ( -/obj/machinery/light/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Departure Lounge - Starboard Fore" - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/item/kirbyplants{ - icon_state = "plant-14" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"mGI" = ( -/obj/effect/spawner/random/engineering/atmospherics_portable, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"mGX" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"mHe" = ( -/obj/item/stack/sheet/plasteel{ - amount = 10; - pixel_x = -2; - pixel_y = 2 - }, -/obj/structure/table, -/obj/item/stack/sheet/rglass{ - amount = 30; - pixel_x = 2; - pixel_y = -2 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/engineering/main) -"mHl" = ( -/obj/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/medical/virology) -"mHx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - sortType = 11 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"mHy" = ( -/obj/structure/rack, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"mHL" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/siding/purple{ - dir = 6 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"mHO" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/item/radio/intercom/directional/north, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2, -/turf/open/floor/iron, -/area/station/commons/locker) -"mHT" = ( -/turf/closed/wall, -/area/station/engineering/atmos) -"mIg" = ( -/obj/machinery/door/airlock/engineering{ - name = "Port 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/port/fore) -"mIi" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=9.2-Escape-2"; - location = "9.1-Escape-1" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"mIl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hop) -"mIH" = ( -/obj/machinery/status_display/ai/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/recharge_station, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"mIP" = ( -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"mIU" = ( -/obj/vehicle/ridden/secway, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/office) -"mJa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - 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/engineering/atmos) -"mJo" = ( -/obj/machinery/mineral/ore_redemption{ - dir = 4; - input_dir = 8; - output_dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/left/directional/east{ - name = "Ore Redemtion Window" - }, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"mJE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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/secondary/command) -"mJG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/science/lab) -"mJI" = ( -/turf/open/space, -/area/space/nearstation) -"mJN" = ( -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"mJP" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"mKp" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Morgue Maintenance" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"mKu" = ( -/obj/machinery/light_switch/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"mKv" = ( -/obj/machinery/light/directional/east, -/turf/open/floor/iron/chapel{ - dir = 8 - }, -/area/station/service/chapel) -"mKD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"mKR" = ( -/obj/structure/sign/warning/test_chamber, -/turf/closed/wall, -/area/station/engineering/atmos) -"mKV" = ( -/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/engineering/main) -"mLu" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Science Hallway - Admin"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"mLv" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/brig) -"mLx" = ( -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"mLQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Law Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/lawyer, -/turf/open/floor/wood, -/area/station/security/courtroom) -"mLR" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/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/supply/qm, -/obj/machinery/door/airlock/command/glass{ - name = "Quartermaster's Office" - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"mLS" = ( -/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, -/area/station/service/library) -"mLW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light/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/science/xenobiology) -"mLY" = ( -/obj/machinery/door/poddoor/shutters{ - id = "teleshutter"; - name = "Teleporter Access Shutter" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/button/door/directional/east{ - id = "teleshutter"; - name = "Teleporter Shutter Control"; - pixel_y = 5; - req_access = list("command") - }, -/turf/open/floor/iron, -/area/station/command/teleporter) -"mMl" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"mMr" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/meter, -/obj/machinery/light/directional/south, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"mMu" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Theater - Backstage" - }, -/obj/structure/table/wood, -/obj/item/clothing/mask/animal/pig, -/obj/item/bikehorn, -/turf/open/floor/wood, -/area/station/service/theater) -"mMx" = ( -/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/commons/dorms) -"mMK" = ( -/obj/effect/turf_decal/stripes/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/white, -/area/station/science/xenobiology) -"mMM" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/left/directional/west{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Outer Window" - }, -/obj/machinery/door/window/brigdoor{ - dir = 8; - name = "Brig Control Desk"; - req_access = list("armory") - }, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/item/poster/random_official, -/obj/structure/cable, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"mMX" = ( -/turf/closed/wall/r_wall, -/area/station/science/ordnance/office) -"mNG" = ( -/obj/machinery/requests_console/directional/north{ - department = "Chapel"; - departmentType = 1; - name = "Chapel Requests Console" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"mNO" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/light_construct/directional/west, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"mNQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/random/maintenance, -/obj/item/airlock_painter/decal, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"mNZ" = ( -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/station/cargo/storage) -"mOa" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/stamp/rd, -/obj/item/toy/figure/rd{ - pixel_y = 10 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"mOt" = ( -/obj/effect/landmark/start/detective, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"mOx" = ( -/obj/structure/table/glass, -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/research) -"mOA" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"mOD" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"mPh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/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) -"mPu" = ( -/obj/effect/landmark/xeno_spawn, -/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, -/area/station/commons/dorms) -"mPw" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/locker) -"mPE" = ( -/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/freezer, -/area/station/commons/toilet/restrooms) -"mPK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"mPO" = ( -/obj/machinery/vending/boozeomat/all_access, -/obj/effect/decal/cleanable/cobweb, -/turf/closed/wall, -/area/station/maintenance/port/aft) -"mPT" = ( -/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/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/range) -"mQa" = ( -/obj/structure/filingcabinet, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"mQe" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"mQr" = ( -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/prison) -"mRg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/no_nightlight/directional/east, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"mRl" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"mRm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/engineering_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"mRn" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/vending/cigarette, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"mRq" = ( -/obj/structure/table, -/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/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"mRs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/machinery/rnd/server, -/turf/open/floor/circuit/telecomms/server, -/area/station/science/server) -"mRv" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"mRy" = ( -/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, -/area/station/hallway/secondary/exit/departure_lounge) -"mRY" = ( -/obj/machinery/door/window{ - dir = 1; - name = "Mass Driver"; - req_access = list("maint_tunnels") - }, -/obj/machinery/door/window{ - name = "Mass Driver"; - req_access = list("maint_tunnels") - }, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/machinery/computer/pod/old/mass_driver_controller/shack{ - pixel_x = -24 - }, -/turf/open/floor/plating, -/area/station/maintenance/space_hut) -"mSk" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"mSB" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"mSD" = ( -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/starboard) -"mSM" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos/storage/gas) -"mSS" = ( -/obj/machinery/atmospherics/components/binary/pump/on, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/service/kitchen/coldroom) -"mST" = ( -/obj/structure/sign/directions/medical{ - dir = 8; - pixel_y = 8 - }, -/obj/structure/sign/directions/evac, -/obj/structure/sign/directions/science{ - dir = 4; - pixel_y = -8 - }, -/turf/closed/wall, -/area/station/science/lobby) -"mTg" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/hatch{ - name = "Observation Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"mTk" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/medical/medbay/lobby) -"mTp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"mTs" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/computer/mech_bay_power_console{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"mTB" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"mTI" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"mTR" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"mTV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/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) -"mTY" = ( -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/white, -/area/station/security/prison/safe) -"mUf" = ( -/obj/effect/turf_decal/box/white, -/obj/effect/turf_decal/arrows/white{ - color = "#0000FF"; - pixel_y = 15 - }, -/turf/open/floor/engine, -/area/station/engineering/atmospherics_engine) -"mUr" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Gas to Filter" - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"mUz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/brown/filled/line, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"mUD" = ( -/obj/structure/closet/secure_closet/bar{ - pixel_x = -3; - pixel_y = -1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"mUF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"mUL" = ( -/obj/machinery/door/airlock/atmos{ - name = "Hypertorus Fusion Reactor" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"mUQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"mVb" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/defibrillator_mount/directional/south, -/obj/machinery/light/directional/south, -/obj/structure/bed/pod{ - desc = "An old medical bed, just waiting for replacement with something up to date."; - dir = 4; - name = "medical bed" - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"mVf" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -4; - pixel_y = 12 - }, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 7; - pixel_y = 12 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"mVp" = ( -/obj/machinery/power/port_gen/pacman/pre_loaded, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"mVE" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"mVG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"mVT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "commissaryshutter"; - name = "Vacant Commissary Shutter"; - dir = 8 - }, -/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, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"mVW" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/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/command/teleporter) -"mVY" = ( -/obj/effect/landmark/start/bartender, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/wood, -/area/station/service/bar) -"mWa" = ( -/obj/machinery/computer/med_data{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/medical/office) -"mWd" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/space/basic, -/area/space) -"mWA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"mWE" = ( -/obj/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/spawner/random/structure/steam_vent, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"mWS" = ( -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Central Primary Hallway - Starboard - Art Storage" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"mWU" = ( -/turf/open/floor/iron, -/area/station/maintenance/space_hut) -"mWW" = ( -/obj/structure/closet, -/obj/item/stack/sheet/glass{ - amount = 12 - }, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"mWZ" = ( -/obj/item/folder/red, -/obj/item/pen, -/obj/structure/table/glass, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/item/folder/white{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/security/execution/transfer) -"mXb" = ( -/obj/machinery/door/airlock/hatch{ - name = "Telecomms Server Room" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, -/turf/open/floor/iron/dark, -/area/station/tcommsat/server) -"mXf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"mXj" = ( -/obj/machinery/computer/station_alert, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"mXk" = ( -/obj/structure/closet/crate/hydroponics, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"mXt" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/grass, -/area/station/science/genetics) -"mXE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"mXK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"mXO" = ( -/obj/structure/table/wood, -/obj/item/book/granter/action/spell/smoke/lesser{ - name = "mysterious old book of cloud-chasing" - }, -/obj/item/reagent_containers/food/drinks/bottle/holywater{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/nullrod{ - pixel_x = 4 - }, -/obj/item/organ/internal/heart, -/obj/item/soulstone/anybody/chaplain, -/turf/open/floor/cult, -/area/station/service/chapel/office) -"mXX" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/camera/directional/south{ - c_tag = "Security Post - Cargo" - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"mYq" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L8" - }, -/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) -"mYs" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"mYw" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space/basic, -/area/station/solars/starboard/fore) -"mYx" = ( -/obj/effect/turf_decal/trimline/blue/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/corner, -/obj/machinery/airalarm/directional/east, -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 8 - }, -/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 = 10 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"mYE" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"mYJ" = ( -/obj/structure/table/reinforced/rglass, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/mirror/directional/east, -/obj/item/reagent_containers/spray/barbers_aid{ - pixel_x = 6 - }, -/obj/item/razor{ - pixel_x = -6 - }, -/turf/open/floor/iron, -/area/service/salon) -"mYV" = ( -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab" - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance_storage, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"mYX" = ( -/obj/structure/table, -/obj/item/implanter{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/storage/box/evidence{ - pixel_x = -5; - pixel_y = 12 - }, -/obj/item/toy/crayon/white{ - pixel_y = -4 - }, -/obj/item/toy/crayon/white{ - pixel_x = -5; - pixel_y = -4 - }, -/turf/open/floor/iron/dark, -/area/station/security/office) -"mZy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"mZC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"mZF" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/mob/living/simple_animal/bot/cleanbot/autopatrol, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"mZL" = ( -/obj/machinery/modular_computer/console/preset/id, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"mZO" = ( -/obj/effect/turf_decal/siding/purple/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"mZP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"nae" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/caution/stand_clear/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/hidden, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"nau" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"naw" = ( -/obj/structure/cable, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/central) -"naM" = ( -/obj/item/radio/intercom/directional/west{ - pixel_y = -10 - }, -/obj/item/kirbyplants/random, -/obj/machinery/light_switch/directional/west{ - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"naN" = ( -/obj/machinery/button/door/directional/west{ - id = "transitlockdown"; - name = "Transit Tube Lockdown"; - pixel_y = -6; - req_access = list("command") - }, -/obj/machinery/button/door/directional/west{ - id = "Secure Storage"; - name = "Engineering Secure Storage"; - pixel_y = 6; - req_access = list("engine_equip") - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"nbs" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"nbx" = ( -/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") - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"nbJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"nbS" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/research) -"nbT" = ( -/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 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"nch" = ( -/obj/structure/rack, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/suit/apron/chef, -/turf/open/floor/iron/showroomfloor, -/area/station/maintenance/starboard/lesser) -"nck" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"ncl" = ( -/obj/machinery/door/window/left/directional/west{ - dir = 1; - name = "Robotics Desk"; - req_access = list("robotics") - }, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "roboticsprivacy2"; - name = "Robotics Shutters" - }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"ncq" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"ncv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/holohoop{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Prison Yard"; - network = list("ss13","prison") - }, -/turf/open/floor/iron, -/area/station/security/prison) -"ncx" = ( -/turf/open/floor/iron, -/area/station/engineering/main) -"ncG" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/spawner/random/structure/closet_maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port) -"ndb" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/door/window{ - name = "MiniSat Walkway Access" - }, -/obj/machinery/camera/directional/east{ - c_tag = "MiniSat Exterior - Aft Port"; - network = list("minisat") - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"ndk" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"ndp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/light/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Virology Central Hallway"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"ndv" = ( -/obj/structure/sign/warning/secure_area/directional/south, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/spawner/random/food_or_drink/donkpockets, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"ndI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/common/cryopods) -"ndN" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"ndS" = ( -/turf/closed/wall/r_wall, -/area/station/hallway/secondary/command) -"ney" = ( -/obj/structure/sign/warning/hot_temp/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"neA" = ( -/obj/machinery/computer/scan_consolenew{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"neG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable/layer3, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"neL" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"nfs" = ( -/turf/open/floor/engine, -/area/station/command/heads_quarters/rd) -"nfK" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/newscaster/directional/south, -/obj/effect/landmark/start/assistant, -/obj/effect/landmark/start/hangover, -/obj/machinery/button/door/directional/east{ - id = "AuxToilet2"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/iron, -/area/station/commons/toilet/auxiliary) -"nfP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"ngf" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/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) -"ngg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"ngO" = ( -/obj/structure/table, -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/random/entertainment/dice, -/turf/open/floor/iron, -/area/station/commons/dorms) -"ngT" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/security/prison) -"ngY" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/crowbar, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/item/stock_parts/cell/emproof{ - pixel_x = -6; - pixel_y = 2 - }, -/obj/item/stock_parts/cell/emproof{ - pixel_x = 4; - pixel_y = 6 - }, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/engineering/main) -"nhh" = ( -/obj/structure/table/wood, -/obj/item/gavelblock, -/obj/item/gavelhammer, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"nhP" = ( -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) -"nhQ" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"nhS" = ( -/obj/machinery/vending/cigarette, -/obj/structure/sign/poster/official/random/directional/east, -/turf/open/floor/plating, -/area/station/commons/toilet/auxiliary) -"nib" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/security/prison) -"nie" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/command{ - name = "Chief Engineer's Office" - }, -/obj/effect/turf_decal/bot{ - 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/light_switch/directional/east, -/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/command/heads_quarters/ce) -"nip" = ( -/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{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"niz" = ( -/obj/structure/table/wood, -/obj/item/hand_tele, -/obj/structure/window/reinforced, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"niG" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/conveyor{ - dir = 9; - id = "garbage" - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"niY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"nja" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"njc" = ( -/obj/structure/rack, -/obj/item/stack/sheet/cloth/five, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"njg" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/circuit/green, -/area/station/science/robotics/mechbay) -"njr" = ( -/obj/structure/sign/poster/contraband/random/directional/north, -/obj/effect/spawner/random/engineering/tank, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"njs" = ( -/obj/item/stack/cable_coil/five, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine/vacuum, -/area/space/nearstation) -"njB" = ( -/obj/structure/rack, -/obj/item/stack/rods{ - amount = 4 - }, -/obj/item/clothing/suit/apron/chef, -/obj/item/clothing/head/chefhat, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"njC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Bar" - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/service/bar, -/turf/open/floor/iron, -/area/station/service/bar) -"njE" = ( -/obj/structure/chair/office, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"njP" = ( -/obj/machinery/door/window{ - name = "Captain's Desk"; - req_access = list("captain") - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"njW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"njX" = ( -/obj/effect/turf_decal/tile/neutral{ - 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/aft) -"nkj" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 10 - }, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos) -"nkp" = ( -/obj/structure/table, -/obj/item/book/manual/hydroponics_pod_people, -/obj/machinery/light/directional/south, -/obj/item/paper/guides/jobs/hydroponics, -/obj/machinery/camera/directional/south{ - c_tag = "Hydroponics - Foyer" - }, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"nkq" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table, -/obj/machinery/button/door{ - id = "xenobio3"; - layer = 3.3; - name = "Xenobio Pen 3 Blast Doors"; - pixel_y = 4; - req_access = list("xenobiology") - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"nkD" = ( -/obj/machinery/disposal/bin, -/obj/machinery/firealarm/directional/west, -/obj/machinery/light/directional/west, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"nkG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/meter, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nkI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"nkK" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/sign/warning/electric_shock/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"nkX" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/office) -"nlE" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/directional/south, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"nlL" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 8 - }, -/obj/machinery/light/no_nightlight/directional/west, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 4; - initialize_directions = 8 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmospherics_engine) -"nlP" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/subspace/treatment, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) -"nlT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"nmb" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 8 - }, -/obj/structure/sign/poster/official/random/directional/east, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/storage_shared) -"nmg" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"nmm" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/door/airlock/public/glass{ - name = "Barbershop" - }, -/turf/open/floor/iron, -/area/service/salon) -"nmt" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"nmx" = ( -/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/sorting/mail/flip{ - dir = 8; - sortType = 3 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"nmH" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"nmI" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light/directional/south, -/obj/structure/rack, -/obj/item/clothing/under/color/blue, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/neck/tie/blue, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"nmQ" = ( -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"nmR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"nmZ" = ( -/obj/effect/turf_decal/stripes/white/line, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/research) -"nnc" = ( -/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) -"nne" = ( -/obj/structure/bed/pod, -/obj/machinery/light/warm/directional/north, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/service/salon) -"nnf" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hazardvest, -/obj/effect/spawner/random/maintenance/three, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"nng" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"nnh" = ( -/obj/machinery/light_switch/directional/south, -/obj/structure/table/wood, -/obj/item/razor{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/clothing/mask/cigarette/cigar, -/obj/item/reagent_containers/food/drinks/flask/gold, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"nnn" = ( -/obj/structure/chair/office/light{ - 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/ordnance/office) -"nnq" = ( -/obj/machinery/light_switch/directional/east, -/obj/structure/table, -/obj/machinery/firealarm/directional/north, -/obj/item/stack/sheet/iron/five, -/obj/item/radio/intercom/directional/east{ - pixel_y = 8 - }, -/obj/item/stack/cable_coil/five, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"nnD" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"noi" = ( -/obj/machinery/pdapainter{ - pixel_y = 2 - }, -/obj/machinery/requests_console/directional/north{ - announcementConsole = 1; - department = "Head of Personnel's Desk"; - departmentType = 5; - name = "Head of Personnel's Requests Console" - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"non" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageExternal" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/cargo/qm) -"nor" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/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) -"nov" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/station/solars/starboard/fore) -"noA" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/central) -"noD" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"noL" = ( -/obj/item/beacon, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"noN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"noQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "detective_shutters"; - name = "Detective's Office Shutters"; - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/detectives_office) -"noT" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore/lesser) -"noV" = ( -/obj/effect/turf_decal/box/white{ - color = "#EFB341" - }, -/turf/open/floor/engine, -/area/station/engineering/atmospherics_engine) -"noW" = ( -/obj/structure/chair/wood{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"npD" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/west, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"npY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Port Primary Hallway" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"nqo" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"nqp" = ( -/obj/structure/cable, -/obj/machinery/holopad/secure, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"nqB" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/chemist, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"nqD" = ( -/obj/structure/closet{ - name = "Evidence Closet 2" - }, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"nqL" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/gravity_generator) -"nqP" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"nqR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/atmospherics_engine) -"nrm" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"nro" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"nrG" = ( -/obj/machinery/light/directional/west, -/obj/machinery/recharge_station, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"nrV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"nsb" = ( -/obj/machinery/button/door/directional/east{ - id = "medsecprivacy"; - name = "Privacy Shutters Control"; - req_access = list("brig_entrance") - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) -"nsc" = ( -/obj/machinery/door/airlock/command{ - name = "Chief Medical Officer's Office" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/medical/cmo, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"nse" = ( -/obj/structure/chair/stool/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"nsq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"nsA" = ( -/turf/closed/wall, -/area/station/science/ordnance/testlab) -"nsC" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"nsD" = ( -/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/blue/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"nsJ" = ( -/obj/structure/table, -/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/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) -"nsK" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"nsM" = ( -/obj/machinery/recharge_station, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"nsO" = ( -/obj/machinery/computer/secure_data, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"nsR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"nta" = ( -/obj/structure/cable, -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"nte" = ( -/obj/structure/sign/poster/official/anniversary_vintage_reprint{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"nth" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/door/airlock/research{ - name = "Research and Development Lab" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/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/science/general, -/turf/open/floor/iron/white, -/area/station/science/lab) -"ntk" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"ntA" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"ntM" = ( -/obj/machinery/power/solar_control{ - id = "foreport"; - name = "Port Bow Solar Control" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"ntP" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - 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, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/turf/open/floor/iron, -/area/station/security/warden) -"ntS" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/dorms) -"ntX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/turf/open/floor/wood, -/area/station/service/library) -"nud" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"nui" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"nup" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/effect/turf_decal/siding{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"nur" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/medical/office) -"nuI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron, -/area/station/security/range) -"nuO" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"nvc" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/item/lipstick/random, -/obj/structure/table/wood, -/turf/open/floor/iron, -/area/service/salon) -"nvg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/cargo_technician, -/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/warehouse) -"nvh" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"nvn" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/commons/fitness/recreation) -"nvr" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Engineering - Transit Tube Access" - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"nvA" = ( -/obj/structure/table, -/obj/item/inspector{ - pixel_x = -5; - pixel_y = 12 - }, -/obj/item/inspector{ - pixel_x = 5 - }, -/turf/open/floor/iron/dark, -/area/station/security/office) -"nvI" = ( -/obj/structure/bed/roller, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"nvN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"nwa" = ( -/obj/structure/closet/wardrobe/pjs, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron/dark, -/area/station/commons/dorms) -"nwi" = ( -/obj/machinery/space_heater, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"nwq" = ( -/obj/structure/table, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/command/gateway) -"nwC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/command/heads_quarters/ce) -"nwJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/break_room) -"nwK" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, -/turf/closed/wall, -/area/station/engineering/atmos/pumproom) -"nwU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/bluespace_vendor/directional/west, -/turf/open/floor/iron, -/area/station/commons/dorms) -"nwW" = ( -/obj/structure/closet/secure_closet/security/engine, -/obj/machinery/airalarm/directional/east, -/obj/machinery/requests_console/directional/south{ - department = "Security"; - departmentType = 5; - name = "Security Requests Console" - }, -/obj/machinery/firealarm/directional/south{ - pixel_x = 26 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"nxi" = ( -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "garbage"; - name = "disposal conveyor" - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"nxu" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs) -"nxy" = ( -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"nxz" = ( -/obj/structure/bookcase/random/reference, -/turf/open/floor/wood, -/area/station/service/library) -"nxA" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/landmark/navigate_destination/bar, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/reagent_containers/glass/rag, -/obj/structure/table, -/turf/open/floor/iron, -/area/station/service/bar) -"nxF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"nxH" = ( -/obj/machinery/door/airlock{ - name = "Bar" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/service/bar, -/turf/open/floor/wood, -/area/station/service/bar) -"nxO" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"nxQ" = ( -/obj/effect/turf_decal/trimline/red/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/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/security/office) -"nxU" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/safe) -"nyc" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/port) -"nye" = ( -/obj/structure/railing/corner, -/turf/open/floor/plating/airless, -/area/station/engineering/atmos) -"nyf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light_switch/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison/work) -"nyk" = ( -/obj/structure/table, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/obj/item/pen/red{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/pen/fountain{ - pixel_x = 6; - pixel_y = 0 - }, -/obj/item/pen/blue{ - pixel_x = -5; - pixel_y = -3 - }, -/obj/item/storage/medkit/regular{ - pixel_x = -9; - pixel_y = 10 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"nyy" = ( -/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, -/area/station/science/robotics/mechbay) -"nyF" = ( -/obj/machinery/firealarm/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Arrivals - Aft Arm" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"nyX" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/department/engine) -"nyZ" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L7" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"nzg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/mining{ - name = "Drone Bay" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"nzh" = ( -/obj/structure/table/optable, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"nzo" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nzP" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nzQ" = ( -/obj/structure/bed{ - dir = 4 - }, -/obj/item/bedsheet/medical{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"nzS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"nAC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/warden) -"nAG" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/maintenance/department/engine) -"nAN" = ( -/obj/machinery/door/airlock/grunge{ - name = "Cell 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/prison/safe) -"nAQ" = ( -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"nBa" = ( -/obj/structure/cable, -/turf/open/floor/iron/solarpanel/airless, -/area/station/solars/starboard/aft) -"nBf" = ( -/obj/item/wrench, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/item/stack/sheet/iron{ - amount = 30 - }, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/structure/closet, -/obj/item/vending_refill/cigarette, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/wood, -/area/station/service/bar) -"nBp" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"nBs" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/chair/sofa/bench/right{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/service/salon) -"nBu" = ( -/obj/effect/turf_decal/arrows/white{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/engineering/atmospherics_engine) -"nBy" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"nBB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay Clinic" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/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/medical/medbay/central) -"nBF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"nCa" = ( -/obj/machinery/meter/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/machinery/door/window/left/directional/east{ - name = "Ordnance Freezer Chamber Access"; - req_access = list("ordnance") - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"nCc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/surgery/aft) -"nCd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/commons/lounge) -"nCu" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"nCw" = ( -/obj/machinery/door/airlock/external{ - name = "Space Shack" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"nCI" = ( -/obj/structure/chair/stool/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/security/prison) -"nDk" = ( -/obj/structure/table, -/obj/item/storage/fancy/cigarettes{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/folder/red{ - pixel_x = -5 - }, -/turf/open/floor/iron/dark, -/area/station/security/office) -"nDw" = ( -/obj/machinery/atmospherics/components/tank, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"nDF" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"nDO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"nDP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"nDT" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"nDW" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"nEb" = ( -/obj/structure/table, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"nEe" = ( -/obj/structure/cable, -/obj/machinery/light_switch/directional/south, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"nEf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/chair/stool/directional/east, -/turf/open/floor/iron, -/area/station/maintenance/starboard/greater) -"nEC" = ( -/turf/open/floor/carpet, -/area/station/command/bridge) -"nEF" = ( -/obj/structure/bed, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/glasses/blindfold, -/obj/item/clothing/mask/muzzle, -/obj/item/electropack, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"nFa" = ( -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"nFe" = ( -/obj/machinery/holopad/secure, -/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/turret_protected/ai) -"nFn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/commons/locker) -"nFL" = ( -/obj/machinery/camera/directional/north, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"nGe" = ( -/obj/structure/railing, -/obj/machinery/light/small/red/directional/west, -/turf/open/floor/plating/airless, -/area/station/engineering/atmos) -"nGn" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"nGp" = ( -/obj/structure/table, -/obj/effect/spawner/random/entertainment/dice, -/turf/open/floor/iron, -/area/station/commons/locker) -"nGq" = ( -/obj/structure/railing/corner, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nGr" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"nGv" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/machinery/flasher/directional/north{ - id = "AI"; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"nGz" = ( -/obj/structure/rack, -/obj/item/radio/off{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/radio/off{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"nGK" = ( -/obj/structure/chair/stool/directional/east, -/turf/open/floor/wood, -/area/station/commons/lounge) -"nHn" = ( -/obj/item/hand_labeler, -/obj/item/stack/package_wrap, -/obj/structure/table/wood, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"nHB" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"nHG" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"nIj" = ( -/obj/structure/easel, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"nIo" = ( -/obj/machinery/door/airlock{ - name = "Theater Backstage" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres, -/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/service/theatre, -/turf/open/floor/wood, -/area/station/service/theater) -"nIR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"nJn" = ( -/obj/machinery/chem_dispenser{ - layer = 2.7 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"nJr" = ( -/obj/effect/spawner/random/medical/two_percent_xeno_egg_spawner, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"nJu" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"nJG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"nJH" = ( -/obj/effect/turf_decal/loading_area/white, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"nJL" = ( -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"nJW" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/turf/open/floor/iron, -/area/station/security/brig) -"nJY" = ( -/obj/structure/chair/wood/wings, -/obj/effect/landmark/start/mime, -/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) -"nKE" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"nKG" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"nKI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"nKO" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/newscaster/directional/east, -/obj/effect/landmark/start/assistant, -/obj/effect/landmark/start/hangover, -/obj/machinery/button/door/directional/south{ - id = "Toilet4"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/obj/effect/spawner/random/trash/graffiti{ - pixel_y = -32; - spawn_loot_chance = 50 - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"nLq" = ( -/obj/machinery/airalarm/directional/south, -/turf/open/floor/wood, -/area/station/service/library) -"nLz" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"nLE" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/sign/warning/secure_area/directional/west{ - pixel_y = -32 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"nLG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"nLI" = ( -/obj/structure/window/reinforced, -/obj/machinery/computer/atmos_control/air_tank{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nLZ" = ( -/obj/item/toy/beach_ball/branded, -/turf/open/space/basic, -/area/space) -"nMf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"nMj" = ( -/obj/structure/window/fulltile, -/obj/structure/flora/bush/ferny/style_random, -/obj/structure/flora/bush/flowers_br/style_random, -/turf/open/floor/grass, -/area/station/maintenance/starboard/aft) -"nMz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/button/door/directional/west{ - id = "commissaryshutter"; - name = "Commissary Shutter Control" - }, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"nME" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/storage/toolbox/emergency, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"nMF" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/blue, -/mob/living/simple_animal/bot/cleanbot, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"nMK" = ( -/obj/machinery/biogenerator, -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"nMU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/construction/storage_wing) -"nMY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"nNe" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 10 - }, -/obj/structure/flora/bush/stalky/style_random, -/turf/open/floor/grass, -/area/station/science/research) -"nNo" = ( -/obj/machinery/biogenerator, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"nNw" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"nNH" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) -"nNJ" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"nNL" = ( -/turf/closed/mineral/volcanic, -/area/space/nearstation) -"nNW" = ( -/obj/structure/disposaloutlet{ - dir = 4; - name = "Cargo Deliveries" - }, -/obj/effect/turf_decal/siding/purple, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 10 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"nNY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"nOi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"nOl" = ( -/obj/machinery/light/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Departure Lounge - Port Fore" - }, -/obj/item/kirbyplants{ - icon_state = "plant-24" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/sign/poster/official/random/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"nOp" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"nOq" = ( -/obj/machinery/holopad/secure{ - pixel_x = 9; - pixel_y = -9 - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"nOv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/office) -"nOw" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmospherics_engine) -"nOz" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"nOK" = ( -/obj/effect/turf_decal/stripes/white/line, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/research) -"nOU" = ( -/obj/structure/table/wood, -/obj/item/radio/intercom{ - broadcasting = 1; - dir = 8; - listening = 0; - name = "Station Intercom (Court)" - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"nOZ" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/decoration/ornament, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"nPf" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"nPt" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/port) -"nPu" = ( -/obj/structure/bookcase/random/fiction, -/turf/open/floor/wood, -/area/station/service/library) -"nPJ" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"nQg" = ( -/turf/closed/wall, -/area/station/maintenance/solars/port/fore) -"nQw" = ( -/obj/effect/turf_decal/trimline/brown/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, -/area/station/hallway/primary/port) -"nQz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/trash/janitor_supplies, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/station/maintenance/port) -"nQA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"nQC" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Firing Range" - }, -/obj/machinery/light_switch/directional/west{ - pixel_y = -12 - }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/obj/machinery/gun_vendor, -/turf/open/floor/iron/dark, -/area/station/security/range) -"nQX" = ( -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"nRa" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"nRp" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/pumproom) -"nRr" = ( -/obj/structure/table, -/obj/effect/spawner/random/decoration/ornament, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"nRz" = ( -/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/solar_assembly, -/obj/item/stack/sheet/glass/fifty, -/obj/structure/closet/crate/engineering/electrical, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"nRR" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"nRZ" = ( -/turf/closed/wall/r_wall, -/area/station/security/medical) -"nSe" = ( -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"nSs" = ( -/obj/structure/showcase/cyborg/old{ - pixel_y = 20 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/radio/intercom/directional/north{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Private Channel" - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"nSB" = ( -/obj/item/toy/figure/roboticist, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"nSC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/chem_heater/withbuffer, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"nTd" = ( -/obj/structure/rack, -/obj/effect/spawner/random/food_or_drink/seed, -/obj/item/seeds/cannabis, -/obj/item/seeds/cannabis, -/obj/item/seeds/cannabis, -/obj/item/food/grown/mushroom/glowshroom, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"nTs" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"nTA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"nTJ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"nTK" = ( -/obj/machinery/newscaster/directional/south, -/obj/machinery/light/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Courtroom - Gallery" - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"nTP" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Brig Maintenance" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"nUp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"nUr" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/britcup{ - pixel_x = -6; - pixel_y = 11 - }, -/obj/item/phone{ - pixel_x = 6; - pixel_y = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"nUt" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"nUW" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 7 - }, -/turf/open/floor/iron, -/area/station/security/office) -"nVq" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/random/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"nVx" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/machinery/newscaster/directional/north, -/obj/effect/spawner/random/bureaucracy/pen, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"nVy" = ( -/obj/effect/landmark/start/lawyer, -/obj/structure/chair/office{ - dir = 4 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"nVG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"nVH" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Fitness Room - Fore" - }, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"nVJ" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/chem_pack{ - pixel_x = 10; - pixel_y = 10 - }, -/obj/item/storage/box/rxglasses{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/stack/medical/gauze{ - pixel_x = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/white/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white/side{ - dir = 10 - }, -/area/station/medical/treatment_center) -"nVL" = ( -/obj/structure/grille/broken, -/obj/item/bouquet/poppy, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"nVV" = ( -/obj/structure/sign/warning/fire/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Fuel Pipe to Incinerator" - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"nWj" = ( -/obj/structure/mopbucket, -/obj/machinery/light/small/directional/west, -/obj/item/mop, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"nWk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/security/prison/visit) -"nWl" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/department/engine) -"nWu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"nWy" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"nWF" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/space/basic, -/area/space) -"nXm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"nXM" = ( -/obj/structure/table/wood/poker, -/obj/effect/spawner/random/entertainment/deck, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"nXT" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/easel, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"nYa" = ( -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance_storage, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"nYl" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/machinery/ore_silo, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"nYJ" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/turf/open/space/basic, -/area/space/nearstation) -"nYL" = ( -/obj/machinery/door/airlock/hatch{ - name = "Xenobiology Maintenance" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"nYO" = ( -/obj/item/reagent_containers/spray/plantbgone, -/obj/item/reagent_containers/spray/pestspray{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/bottle/nutrient/ez, -/obj/item/reagent_containers/glass/bottle/nutrient/rh{ - pixel_x = 2; - pixel_y = 1 - }, -/obj/structure/table, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"nYU" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"nZf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/circuit/green, -/area/station/science/robotics/mechbay) -"nZh" = ( -/obj/machinery/vending/assist, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"nZm" = ( -/turf/closed/wall, -/area/station/medical/morgue) -"nZn" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"nZC" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/vending/wardrobe/robo_wardrobe, -/obj/machinery/button/door/directional/north{ - id = "roboticsprivacy"; - name = "Robotics Privacy Control"; - pixel_x = -24; - req_access = list("robotics") - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"nZH" = ( -/obj/machinery/bookbinder, -/turf/open/floor/wood, -/area/station/service/library) -"nZL" = ( -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_ordmix{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/science/ordnance/burnchamber) -"oae" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"oah" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"oaj" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"oao" = ( -/obj/machinery/button/door/directional/east{ - id = "abandoned_kitchen"; - name = "Shutters Control" - }, -/obj/item/book/manual/wiki/cooking_to_serve_man{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -11; - pixel_y = 14 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/reagent_containers/glass/rag{ - pixel_x = -10; - pixel_y = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"oar" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/effect/landmark/start/chemist, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"oaw" = ( -/obj/structure/table/reinforced, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs) -"oaB" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/status_display/evac/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/research) -"oaC" = ( -/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/stock_parts/cell/high, -/obj/item/stack/sheet/mineral/plasma{ - amount = 30 - }, -/obj/item/gps, -/obj/structure/closet/crate/engineering, -/turf/open/floor/plating, -/area/station/engineering/main) -"obb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/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) -"obk" = ( -/obj/item/target/alien, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"obl" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron, -/area/station/science/research) -"obw" = ( -/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, -/area/station/commons/dorms) -"obF" = ( -/obj/machinery/computer/exoscanner_control{ - dir = 1 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Cargo Bay - Drone Launch Room"; - pixel_x = 14 - }, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"obG" = ( -/turf/closed/wall, -/area/station/service/theater) -"obN" = ( -/obj/effect/turf_decal/trimline/purple/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/science/research) -"obV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"obX" = ( -/obj/docking_port/stationary{ - dheight = 4; - dwidth = 4; - height = 9; - id = "aux_base_zone"; - name = "Aux Base Zone"; - roundstart_template = /datum/map_template/shuttle/aux_base/default; - width = 9 - }, -/turf/open/floor/plating, -/area/station/construction/mining/aux_base) -"oca" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/port) -"ocd" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/grass, -/area/station/science/genetics) -"ocg" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"ocl" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/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/office) -"ocC" = ( -/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/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"ocG" = ( -/obj/structure/disposaloutlet{ - dir = 8; - name = "Prisoner Delivery" - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/prison) -"ocL" = ( -/obj/structure/chair/stool/directional/south, -/obj/item/radio/intercom/prison/directional/north, -/turf/open/floor/iron, -/area/station/security/prison) -"ocP" = ( -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"odh" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/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/white, -/area/station/security/prison) -"odp" = ( -/obj/structure/bookcase/random, -/turf/open/floor/plating/airless, -/area/station/engineering/atmos) -"odu" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Cryogenics Bay" - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/white, -/area/station/medical/office) -"odI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Hydroponics Backroom" - }, -/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/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"odP" = ( -/obj/machinery/light/directional/west, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"odW" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/rack, -/obj/item/storage/box/beakers, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/syringes, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"oet" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"oew" = ( -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"oeO" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"oeQ" = ( -/obj/structure/table, -/obj/item/paper_bin/construction, -/obj/item/airlock_painter, -/obj/machinery/airalarm/directional/east, -/obj/item/rcl/pre_loaded, -/turf/open/floor/iron, -/area/station/commons/storage/art) -"oeR" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"oeX" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/spawner/random/vending/snackvend, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"ofc" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/item/folder/yellow{ - pixel_y = 4 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Bridge - Central" - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"ofe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/item/cigbutt{ - pixel_y = 7 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/greater) -"off" = ( -/obj/structure/bodycontainer/morgue{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"ofk" = ( -/obj/machinery/light_switch/directional/west, -/obj/machinery/power/smes/engineering, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/main) -"ofM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"ofQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"ofS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Secure Gear Storage" - }, -/obj/effect/turf_decal/delivery, -/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/armory, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"ofY" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageExternal" - }, -/obj/structure/plasticflaps/opaque, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/cargo/qm) -"ofZ" = ( -/obj/machinery/vending/hydroseeds{ - slogan_delay = 700 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"ogn" = ( -/obj/structure/sign/warning/cold_temp/directional/north{ - name = "\improper CRYOGENICS" - }, -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/iron/dark/textured, -/area/station/medical/cryo) -"ogs" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/turf/open/floor/iron, -/area/station/commons/lounge) -"ogJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/range) -"ogL" = ( -/obj/structure/mirror/directional/north, -/obj/structure/sink{ - pixel_y = 17 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/trash/soap{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/captain/private) -"ohf" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/customs_agent, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"ohi" = ( -/obj/machinery/door/poddoor/shutters{ - id = "visitation"; - name = "Visitation Shutters"; - dir = 4 - }, -/obj/machinery/door/window/left/directional/south{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/table, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"ohm" = ( -/obj/effect/turf_decal/stripes{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"ohn" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"ohp" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/requests_console/directional/east{ - announcementConsole = 1; - department = "Research Lab"; - departmentType = 5; - name = "Research Requests Console"; - receive_ore_updates = 1 - }, -/turf/open/floor/iron, -/area/station/science/lab) -"ohw" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/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, -/area/station/security/brig) -"ohC" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/treatment_center) -"ohD" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/window/left/directional/north{ - dir = 8; - name = "Containment Pen #6"; - req_access = list("xenobiology") - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "Xenobio Pen 6 Blast Door" - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"ohE" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/central) -"ohH" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/structure/reagent_dispensers/wall/peppertank/directional/east, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) -"ohI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/effect/turf_decal/siding/blue{ - dir = 8 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/telecomms, -/area/station/science/server) -"ohM" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/service/library) -"ohW" = ( -/obj/structure/rack, -/obj/item/tank/internals/anesthetic, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/tile/green/fourcorners, -/turf/open/floor/iron/showroomfloor, -/area/station/maintenance/starboard/lesser) -"oip" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"oir" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"oiD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"oiI" = ( -/obj/machinery/air_sensor/nitrous_tank, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"oiQ" = ( -/obj/structure/chair/stool/directional/south, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"oiX" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port) -"ojf" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/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" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"ojo" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/obj/structure/flora/bush/grassy/style_random, -/turf/open/floor/grass, -/area/station/science/research) -"ojt" = ( -/obj/item/plant_analyzer, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"ojv" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Atmospherics Tank - Toxins" - }, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"okc" = ( -/obj/structure/table, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = -8; - pixel_y = -3 - }, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 9 - }, -/obj/machinery/airalarm/directional/west, -/obj/item/computer_hardware/hard_drive/portable/scipaper_program{ - pixel_x = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"oke" = ( -/obj/structure/closet/radiation, -/obj/structure/sign/warning/radiation/rad_area/directional/north{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"okQ" = ( -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/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/research) -"okV" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"ola" = ( -/turf/closed/wall, -/area/station/science/robotics/mechbay) -"olg" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window{ - dir = 8; - name = "MiniSat Airlock Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"oli" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/space_hut) -"oll" = ( -/obj/effect/spawner/random/engineering/tank, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"oln" = ( -/obj/machinery/telecomms/server/presets/medical, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"olq" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"olw" = ( -/turf/closed/wall, -/area/station/security/courtroom) -"olD" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"olG" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/machinery/light/small/directional/east, -/obj/structure/cable, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/siding/red, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"olP" = ( -/obj/structure/cable, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/plating, -/area/station/hallway/secondary/service) -"ome" = ( -/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/turret_protected/ai_upload) -"omm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"omF" = ( -/obj/machinery/teleport/station, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"omJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/telecomms, -/area/station/science/server) -"onf" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"onp" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/radio/intercom/directional/west, -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"onr" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"onF" = ( -/obj/structure/cable, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"onI" = ( -/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/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"oog" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/engine, -/area/station/engineering/atmospherics_engine) -"ool" = ( -/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) -"oor" = ( -/turf/closed/wall, -/area/station/security/checkpoint/supply) -"oos" = ( -/obj/machinery/door/airlock{ - id_tag = "Toilet1"; - name = "Unit 1" - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"oox" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = 24 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/structure/cable, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"ooz" = ( -/obj/structure/closet/emcloset, -/obj/machinery/camera/directional/west{ - c_tag = "Xenobiology Lab - Airlock"; - network = list("ss13","rd","xeno") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology/hallway) -"ooG" = ( -/obj/structure/table, -/turf/open/floor/iron/dark, -/area/station/security/office) -"ooN" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"ooP" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"ooT" = ( -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/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) -"ooV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"opa" = ( -/obj/machinery/chem_master, -/obj/machinery/light/directional/east, -/obj/structure/noticeboard/directional/east, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"opk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"ops" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"opF" = ( -/obj/machinery/hydroponics/soil, -/obj/item/cultivator, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/grass, -/area/station/security/prison/garden) -"opG" = ( -/obj/structure/cable, -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/storage/gas) -"opZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_output{ - dir = 1 - }, -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"oqc" = ( -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/iron/checker, -/area/station/maintenance/aft/lesser) -"oqi" = ( -/obj/effect/landmark/start/paramedic, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"oqk" = ( -/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/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"oqn" = ( -/obj/structure/window/reinforced, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"oqK" = ( -/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, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"oqT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"orh" = ( -/obj/structure/table, -/obj/item/stack/package_wrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/package_wrap{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"orv" = ( -/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/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/department/science/central) -"ory" = ( -/obj/structure/bed/pod, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron, -/area/service/salon) -"orC" = ( -/obj/machinery/light/directional/east, -/obj/structure/table/reinforced, -/obj/item/storage/box/lights/mixed, -/obj/item/stack/sheet/iron{ - amount = 30 - }, -/obj/item/radio{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/stack/cable_coil, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"orT" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"orU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"osc" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2, -/turf/open/floor/plating/airless, -/area/station/ai_monitored/aisat/exterior) -"ose" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"osw" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/security/brig) -"osC" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/trunk, -/obj/structure/cable, -/obj/machinery/light/small/directional/east, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"osM" = ( -/obj/machinery/shower{ - name = "emergency shower"; - pixel_y = 16 - }, -/obj/effect/turf_decal/trimline/blue/end, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"osU" = ( -/obj/structure/chair/sofa/bench, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/secondary/entry) -"otj" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"otn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/meter, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"otu" = ( -/turf/closed/wall, -/area/station/service/chapel) -"otM" = ( -/obj/structure/closet/crate, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/security/prison/work) -"ouc" = ( -/obj/structure/closet/crate, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/stock_parts/cell/high, -/obj/machinery/light_switch/directional/north, -/obj/effect/spawner/random/engineering/flashlight, -/obj/effect/spawner/random/engineering/flashlight, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"oue" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/holofloor/dark, -/area/station/science/cytology) -"ouj" = ( -/obj/structure/bed/roller, -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/security/execution/transfer) -"oul" = ( -/obj/effect/turf_decal/tile/bar, -/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/hallway/primary/central) -"out" = ( -/obj/structure/lattice, -/obj/item/reagent_containers/food/drinks/bottle/goldschlager, -/turf/open/space/basic, -/area/space/nearstation) -"ouM" = ( -/obj/structure/sign/painting/library{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/station/service/library) -"ouO" = ( -/obj/machinery/door/window/brigdoor/security/holding{ - id = "Holding Cell"; - name = "Holding Cell" - }, -/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/red/filled/line, -/turf/open/floor/iron, -/area/station/security/holding_cell) -"ouR" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/greater) -"ouX" = ( -/obj/effect/turf_decal/box, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"ouZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/science/research) -"ove" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"ovf" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/storage/gas) -"ovm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - sortType = 9 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"ovy" = ( -/obj/machinery/light/directional/south, -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"ovz" = ( -/obj/structure/table/wood, -/obj/item/storage/secure/safe/directional/east, -/obj/machinery/computer/security/wooden_tv{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/machinery/button/door/directional/north{ - id = "detective_shutters"; - name = "detective's office shutters control"; - req_access = list("detective") - }, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"ovK" = ( -/obj/structure/closet/secure_closet/hop, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"ovL" = ( -/obj/machinery/light/directional/south, -/obj/item/stack/sheet/cardboard{ - amount = 14 - }, -/obj/item/stack/package_wrap, -/turf/open/floor/iron, -/area/station/security/prison/work) -"ovX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"ovZ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"owf" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Staff Entrance" - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/white, -/area/station/medical/office) -"owi" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/station/service/bar) -"owp" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"owv" = ( -/obj/machinery/computer/atmos_alert, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"oww" = ( -/obj/machinery/firealarm/directional/east, -/obj/structure/chair/office/light, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"owM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"owU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"owZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"oxd" = ( -/obj/machinery/holopad, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"oxx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"oxH" = ( -/obj/structure/sign/warning/vacuum/external/directional/east, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"oxT" = ( -/obj/structure/table/wood, -/obj/structure/cable, -/obj/item/storage/photo_album/chapel, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"oxW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"oyj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"oyx" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/newscaster/directional/south, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/start/hangover, -/obj/machinery/button/door/directional/east{ - id = "AuxToilet3"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/plating, -/area/station/commons/toilet/auxiliary) -"oyG" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/obj/item/healthanalyzer, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"oyO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"ozi" = ( -/obj/machinery/disposal/bin, -/obj/machinery/camera/directional/east{ - c_tag = "Garden" - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"ozm" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"ozs" = ( -/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) -"ozB" = ( -/obj/item/cigbutt, -/obj/structure/table/reinforced, -/obj/item/storage/medkit/fire{ - pixel_y = -4 - }, -/obj/item/paper{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"ozQ" = ( -/obj/machinery/firealarm/directional/east, -/obj/item/paper_bin{ - pixel_x = -1; - pixel_y = 6 - }, -/obj/structure/table/wood, -/obj/machinery/requests_console/directional/south{ - announcementConsole = 1; - department = "Telecomms Admin"; - departmentType = 5; - name = "Telecomms Requests Console" - }, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"ozX" = ( -/obj/machinery/door/firedoor, -/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, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"oAj" = ( -/obj/structure/chair/sofa/corp/left, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"oAN" = ( -/obj/machinery/gulag_teleporter, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"oAQ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/horizontal, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/space, -/area/space/nearstation) -"oBq" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"oBv" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) -"oBz" = ( -/turf/closed/wall, -/area/station/security/checkpoint/science) -"oBD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"oBM" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/right/directional/west{ - dir = 4; - name = "Hydroponics Desk"; - req_access = list("hydroponics") - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/green/fourcorners, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"oBN" = ( -/obj/item/candle, -/obj/machinery/light_switch/directional/north, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"oBO" = ( -/obj/structure/cable, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"oCb" = ( -/obj/structure/chair, -/obj/item/radio/intercom/chapel/directional/west, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"oCd" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"oCq" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/camera/directional/south{ - c_tag = "Science Toxins Launch"; - network = list("ss13","rd") - }, -/obj/machinery/computer/pod/old/mass_driver_controller/ordnancedriver{ - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"oCw" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"oCN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - 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/port) -"oCR" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/suit_storage_unit/security, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"oCX" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall/r_wall, -/area/station/science/xenobiology/hallway) -"oDc" = ( -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"oDl" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"oDp" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/cargo/storage) -"oDr" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"oDJ" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall, -/area/station/cargo/storage) -"oDX" = ( -/obj/structure/punching_bag, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"oEm" = ( -/obj/structure/cable, -/obj/machinery/computer/security{ - dir = 1 - }, -/obj/item/paper/crumpled{ - info = "Hey, assholes. We don't need a couch in the meeting room, I threw it out the airlock. I don't care if it's real leather, go patrol like you're paid to do instead of cycling through cameras all shift!"; - name = "old, crumpled note" - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"oEq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"oEt" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/white, -/area/station/security/prison) -"oEx" = ( -/obj/effect/spawner/random/trash/garbage, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"oEM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/flasher/directional/east{ - id = "justiceflash" - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"oEO" = ( -/obj/item/stack/rods/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/structure/closet/crate, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"oEP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Aft Primary Hallway" - }, -/turf/open/floor/iron/white/side{ - dir = 4 - }, -/area/station/science/lobby) -"oET" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Engine Coolant Bypass" - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"oFn" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ - dir = 4 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Atmospherics - Central Aft" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"oFt" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/hidden, -/turf/open/floor/iron/stairs/medium{ - dir = 8 - }, -/area/station/engineering/atmospherics_engine) -"oFC" = ( -/obj/machinery/status_display/ai/directional/west, -/obj/machinery/light/directional/west, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"oFH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"oFK" = ( -/obj/structure/cable, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"oFM" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Waste to Filter" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/pumproom) -"oFR" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Cargo Bay Bridge Access" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "north-maint-viewingdeck" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"oFS" = ( -/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, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"oFX" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Ordnance Lab Maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/heavy, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/plating, -/area/station/science/ordnance) -"oGf" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "viro-passthrough" - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/medical/medbay/central) -"oGn" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Fuel Closet" - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"oGw" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/turf/open/space/basic, -/area/space/nearstation) -"oGK" = ( -/obj/effect/turf_decal/tile/neutral{ - 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, -/area/station/hallway/primary/central) -"oGN" = ( -/obj/effect/landmark/start/cyborg, -/obj/machinery/light/small/directional/east, -/obj/machinery/camera/directional/north{ - c_tag = "ai_upload Foyer"; - network = list("aiupload") - }, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) -"oGR" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/sign/warning/vacuum/external/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"oGZ" = ( -/obj/structure/table, -/obj/item/storage/bag/tray/cafeteria, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"oHj" = ( -/obj/structure/table, -/obj/item/folder/blue{ - pixel_x = -18; - pixel_y = 3 - }, -/obj/item/paper_bin{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = 3; - pixel_y = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/office) -"oHw" = ( -/obj/structure/cable, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"oHy" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"oHC" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"oHE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics - Distro Loop" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, -/obj/machinery/meter/monitored/distro_loop, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/pumproom) -"oHG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"oHO" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"oIa" = ( -/turf/closed/wall, -/area/station/commons/vacant_room/commissary) -"oId" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/space, -/area/space/nearstation) -"oIe" = ( -/obj/structure/cable, -/obj/structure/sign/warning/secure_area/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"oIg" = ( -/turf/closed/wall/r_wall, -/area/station/science/genetics) -"oIG" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/station/solars/starboard/fore) -"oIM" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"oJc" = ( -/obj/structure/table/reinforced, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"oJj" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology/hallway) -"oJr" = ( -/obj/machinery/airalarm/directional/west, -/obj/structure/rack, -/obj/item/reagent_containers/glass/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/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"oJu" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"oJD" = ( -/obj/effect/turf_decal/trimline/blue/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/white, -/area/station/medical/treatment_center) -"oJY" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Incinerator Access" - }, -/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/atmos, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"oKp" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/station/engineering/atmos) -"oKx" = ( -/obj/structure/tank_dispenser, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/engineering/main) -"oKy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/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, -/area/station/hallway/primary/port) -"oKA" = ( -/obj/machinery/door/airlock/hatch{ - name = "Telecomms Control Room" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/obj/effect/mapping_helpers/airlock/access/any/command/minisat, -/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"oKI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"oKO" = ( -/obj/machinery/disposal/bin, -/obj/machinery/status_display/ai/directional/east, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"oKU" = ( -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"oLD" = ( -/obj/structure/chair/comfy/beige, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/bridge) -"oLK" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/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/red/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"oLM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "PermaLockdown"; - name = "Lockdown Shutters"; - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plating, -/area/station/security/prison) -"oLS" = ( -/turf/closed/wall/r_wall, -/area/station/science/ordnance/testlab) -"oLV" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"oLW" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chem_lockdown"; - name = "Chemistry Shutters"; - dir = 8 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/chemistry) -"oLZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "hosprivacy"; - name = "Privacy Shutters" - }, -/turf/open/floor/plating, -/area/station/command/heads_quarters/hos) -"oMA" = ( -/turf/closed/wall/r_wall, -/area/station/science/cytology) -"oMY" = ( -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"oNf" = ( -/obj/structure/rack, -/obj/effect/spawner/random/clothing/costume, -/obj/item/clothing/mask/balaclava, -/obj/machinery/airalarm/directional/east, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/commons/locker) -"oNl" = ( -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/station/commons/locker) -"oNs" = ( -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"oOl" = ( -/obj/machinery/flasher/directional/north{ - id = "AI" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) -"oOB" = ( -/obj/structure/table, -/obj/effect/turf_decal/siding{ - dir = 8 - }, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/wrench, -/obj/item/clothing/glasses/welding, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/science/lab) -"oOE" = ( -/obj/structure/cable, -/obj/effect/mapping_helpers/iannewyear, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hop) -"oOO" = ( -/obj/structure/table, -/obj/effect/spawner/random/entertainment/deck, -/obj/effect/spawner/random/entertainment/cigarette_pack{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"oOU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/chapel{ - dir = 8 - }, -/area/station/service/chapel) -"oOZ" = ( -/obj/machinery/power/port_gen/pacman/pre_loaded, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"oPc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"oPe" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Central Primary Hallway - Fore - ai_upload" - }, -/obj/structure/sign/warning/secure_area/directional/north{ - desc = "A warning sign which reads 'HIGH-POWER TURRETS AHEAD'."; - name = "\improper HIGH-POWER TURRETS AHEAD" - }, -/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, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"oPf" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/science/ordnance/testlab) -"oPh" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"oPj" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/analyzer, -/obj/item/stock_parts/subspace/analyzer, -/obj/item/stock_parts/subspace/analyzer, -/obj/machinery/camera/directional/west{ - c_tag = "Telecomms - Storage" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) -"oPn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/security/medical) -"oPp" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/tcomms_all, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"oPq" = ( -/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/brig) -"oPv" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"oPx" = ( -/obj/structure/chair/stool/directional/west, -/turf/open/floor/wood, -/area/station/commons/lounge) -"oPD" = ( -/obj/machinery/firealarm/directional/south, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"oPS" = ( -/obj/structure/lattice/catwalk, -/obj/structure/marker_beacon/olive, -/turf/open/space/basic, -/area/space/nearstation) -"oPY" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/virologist, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"oPZ" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"oQc" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used for the Auxiliary Mining Base."; - dir = 1; - name = "Auxiliary Base Monitor"; - network = list("auxbase"); - pixel_y = -28 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"oQg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"oQk" = ( -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/turf/open/floor/holofloor/dark, -/area/station/science/cytology) -"oQx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/suit_storage_unit/industrial/loader, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"oQS" = ( -/turf/open/floor/iron/stairs{ - dir = 4 - }, -/area/station/hallway/secondary/entry) -"oQZ" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=1.5-Fore-Central"; - location = "1-BrigCells" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"oRn" = ( -/obj/structure/table/wood, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"oRL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"oRM" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/machinery/door/firedoor/heavy, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"oRT" = ( -/obj/machinery/light/directional/south, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 1; - pixel_y = -29 - }, -/obj/structure/bed/dogbed/renault, -/mob/living/simple_animal/pet/fox/renault, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"oSc" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"oSf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"oSh" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"oSo" = ( -/obj/effect/spawner/structure/window, -/obj/structure/curtain/cloth/fancy/mechanical{ - id = "barbershopcurtains" - }, -/turf/open/floor/plating, -/area/service/salon) -"oSy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"oTa" = ( -/obj/machinery/vending/cart{ - req_access = list("hop") - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"oTj" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"oTD" = ( -/obj/structure/frame/computer, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"oTK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/flasher/directional/west{ - id = "Cell 3"; - pixel_y = -22 - }, -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/iron, -/area/station/security/brig) -"oTR" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"oUh" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/engine) -"oUu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/server) -"oUx" = ( -/obj/structure/reagent_dispensers/wall/peppertank/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/customs_agent, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"oUy" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"oUz" = ( -/obj/structure/rack, -/obj/item/book/manual/wiki/engineering_guide{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/effect/spawner/random/trash/janitor_supplies, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"oUB" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"oUE" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - 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/white, -/area/station/security/prison/mess) -"oUS" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/wheelchair{ - pixel_y = -3 - }, -/obj/item/wheelchair, -/obj/item/wheelchair{ - pixel_y = 3 - }, -/turf/open/floor/iron/dark, -/area/station/medical/office) -"oUU" = ( -/obj/structure/weightmachine/weightlifter, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison) -"oVd" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"oVn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"oVY" = ( -/obj/structure/chair{ - dir = 8; - name = "Defense" - }, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"oWa" = ( -/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/iron/white, -/area/station/science/xenobiology) -"oWc" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/aft) -"oWk" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/aft) -"oWF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"oWH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/bar) -"oWT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel" - }, -/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/command/hop, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hop) -"oWZ" = ( -/obj/structure/table, -/obj/machinery/airalarm/directional/north, -/obj/machinery/computer/med_data/laptop, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) -"oXd" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/service/kitchen/coldroom) -"oXl" = ( -/obj/machinery/telecomms/server/presets/science, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"oXv" = ( -/obj/structure/rack, -/obj/item/storage/briefcase{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/storage/secure/briefcase{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"oXJ" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/structure/closet/crate/engineering/electrical, -/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/cable_coil, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"oXL" = ( -/obj/machinery/disposal/bin, -/obj/structure/cable, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/office) -"oXM" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"oXR" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"oXT" = ( -/obj/machinery/button/door/directional/north{ - id = "hop"; - name = "Privacy Shutters Control"; - req_access = list("kitchen") - }, -/obj/machinery/computer/accounting, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"oYd" = ( -/obj/machinery/status_display/ai/directional/north, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"oYg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"oYn" = ( -/obj/structure/disposalpipe/segment{ - 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/camera/directional/north{ - c_tag = "Brig - Hallway - Port" - }, -/turf/open/floor/iron, -/area/station/security/brig) -"oYM" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"oYZ" = ( -/turf/closed/wall, -/area/station/command/heads_quarters/rd) -"oZi" = ( -/obj/effect/spawner/random/vending/snackvend, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"oZj" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album/library, -/obj/structure/sign/painting/large/library_private{ - dir = 8; - pixel_x = -29 - }, -/turf/open/floor/engine/cult, -/area/station/service/library) -"oZo" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/holopad/secure, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"oZs" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/turf_decal/tile/green/fourcorners, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/iron/showroomfloor, -/area/station/maintenance/starboard/lesser) -"oZG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/bar, -/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) -"oZL" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"oZO" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"pab" = ( -/obj/structure/table, -/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/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) -"paf" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"pan" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/aisat/exterior) -"pav" = ( -/obj/structure/chair/stool/directional/west, -/obj/machinery/camera/directional/north{ - c_tag = "Prison Visitation"; - network = list("ss13","prison") - }, -/obj/effect/turf_decal/trimline/red/warning{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"paw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"paP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"paQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/medical/coldroom) -"pbf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/blue/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"pbt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"pbz" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"pbE" = ( -/obj/machinery/disposal/delivery_chute{ - dir = 1; - name = "Security Deliveries" - }, -/obj/structure/plasticflaps/opaque{ - name = "Security Deliveries" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/sign/departments/security/directional/south{ - color = "#DE3A3A" - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"pbL" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/iron/white/side, -/area/station/medical/medbay/lobby) -"pbQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/white, -/area/station/science/xenobiology/hallway) -"pbS" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat" - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat" - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/command/gateway) -"pbU" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/service_all, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"pbX" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/service/bar) -"pcc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"pce" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/mob/living/simple_animal/bot/floorbot, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"pck" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"pcm" = ( -/obj/structure/table/wood, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"pcv" = ( -/obj/structure/disposalpipe/sorting/mail{ - sortType = 4 - }, -/obj/effect/landmark/start/station_engineer, -/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/engineering/main) -"pcH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/radiation, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"pcM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"pcS" = ( -/obj/item/stack/ore/silver, -/obj/item/stack/ore/silver, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/rack, -/obj/item/shovel{ - pixel_x = -5 - }, -/obj/item/pickaxe{ - pixel_x = 5 - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"pdc" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "PermaLockdown"; - name = "Lockdown Shutters"; - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/door/airlock/security/glass{ - id_tag = "permaouter"; - name = "Permabrig Transfer" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron, -/area/station/security/prison) -"pdg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"pdi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - 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/plating, -/area/station/maintenance/aft/lesser) -"pdl" = ( -/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/service/hydroponics) -"pdo" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - 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, -/area/station/security/brig) -"pdx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/cigbutt/roach, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/maintenance/starboard/greater) -"pdJ" = ( -/obj/machinery/light/directional/east, -/obj/structure/sign/departments/science/directional/east{ - name = "\improper ROBOTICS!" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"pdQ" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 1"; - name = "Cell 1" - }, -/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/red/filled/line, -/turf/open/floor/iron, -/area/station/security/brig) -"pdT" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"pdY" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/chair/comfy/brown{ - 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/carpet, -/area/station/command/heads_quarters/captain/private) -"pek" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/station/service/theater) -"peF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair/stool/directional/south, -/turf/open/floor/wood, -/area/station/commons/lounge) -"peM" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/storage/gas) -"peX" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"pfe" = ( -/obj/structure/cable, -/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, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"pfE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"pfK" = ( -/obj/machinery/light/directional/north, -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/mask/surgical, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -10; - pixel_y = -1 - }, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"pfP" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"pfR" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"pfU" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"pgD" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chapel Maintenance" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"pgI" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/table/wood, -/obj/machinery/newscaster/directional/north, -/obj/effect/spawner/random/entertainment/lighter, -/turf/open/floor/wood, -/area/station/commons/dorms) -"pgJ" = ( -/obj/structure/chair/stool/directional/north, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"pgM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/sink{ - dir = 8; - pixel_x = 12 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"pgP" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/stasis, -/obj/machinery/defibrillator_mount/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"pgU" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"pha" = ( -/obj/structure/closet/l3closet/scientist, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/command/gateway) -"phn" = ( -/obj/structure/reflector/single/anchored{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"phv" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/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/science/explab) -"phz" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=7-Command-Starboard"; - location = "6-Port-Central" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"phC" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold/green/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"phI" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table, -/obj/machinery/button/door{ - id = "xenobio8"; - layer = 3.3; - name = "Xenobio Pen 8 Blast Doors"; - pixel_y = 4; - req_access = list("xenobiology") - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 10; - pixel_y = -1 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"phN" = ( -/obj/machinery/camera/directional/west{ - c_tag = "AI Chamber - Port"; - network = list("aicore") - }, -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"phP" = ( -/obj/structure/table, -/obj/item/exodrone{ - pixel_y = 8 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"phQ" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/office) -"phR" = ( -/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/chapel) -"phS" = ( -/obj/structure/reagent_dispensers/cooking_oil, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/service/kitchen/coldroom) -"pic" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/command/gateway) -"piw" = ( -/obj/effect/landmark/start/cyborg, -/obj/machinery/holopad/secure, -/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/turret_protected/aisat_interior) -"piz" = ( -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"piA" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/spawner/random/structure/closet_private, -/obj/item/clothing/under/misc/assistantformal, -/turf/open/floor/wood, -/area/station/commons/dorms) -"piB" = ( -/turf/open/floor/iron, -/area/station/cargo/sorting) -"piC" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"piM" = ( -/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/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"piT" = ( -/obj/structure/rack, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/fluorine{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/iodine{ - pixel_x = 1 - }, -/turf/open/floor/iron/dark/textured_edge{ - dir = 8 - }, -/area/station/medical/medbay/central) -"pjb" = ( -/obj/structure/closet/crate/coffin, -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/station/service/chapel/funeral) -"pjd" = ( -/turf/open/floor/plating, -/area/station/commons/fitness/recreation) -"pjh" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"pjs" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/primary/central) -"pjS" = ( -/obj/machinery/vending/cigarette, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"pjX" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"pke" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/siding/red{ - dir = 6 - }, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"pkA" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/mob/living/simple_animal/chicken{ - name = "Kentucky"; - real_name = "Kentucky" - }, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"pkH" = ( -/obj/structure/rack, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash/handheld, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"pkK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"pkQ" = ( -/obj/machinery/door/airlock/external{ - name = "Security External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/plating, -/area/station/security/execution/transfer) -"plp" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Xenobiology Lab - Pen #1"; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"plu" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/showcase/machinery/cloning_pod{ - desc = "An old decommissioned scanner, permanently scuttled."; - icon_state = "scanner"; - name = "decommissioned cloning scanner" - }, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"plw" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"plD" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Pure to Mix" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"plU" = ( -/obj/structure/sign/warning/vacuum/external/directional/south, -/obj/machinery/power/solar_control{ - dir = 4; - id = "aftport"; - name = "Port Quarter Solar Control" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"pma" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/solars/port/fore) -"pmj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"pms" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"pmZ" = ( -/obj/machinery/light_switch/directional/west{ - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"pnk" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"pnx" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/greater) -"pnD" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/spawner/random/structure/closet_private, -/obj/item/clothing/under/suit/navy, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"pnE" = ( -/obj/machinery/air_sensor/carbon_tank, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"pnH" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"pnI" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/miningoffice) -"pnJ" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/department/engine) -"pnM" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"pnN" = ( -/obj/effect/spawner/random/vending/snackvend, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"pnW" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced, -/obj/machinery/light_switch/directional/west, -/obj/item/storage/secure/briefcase{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/storage/lockbox/medal, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"poc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"pof" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/effect/spawner/random/entertainment/lighter, -/turf/open/floor/iron, -/area/station/service/bar) -"pom" = ( -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"poq" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/machinery/holopad, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"poJ" = ( -/obj/machinery/telecomms/hub/preset, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"poM" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"poS" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"ppB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/command/bridge) -"ppC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"ppD" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ppG" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"ppJ" = ( -/obj/machinery/door/morgue{ - name = "Chapel Garden" - }, -/turf/open/floor/cult, -/area/station/service/chapel/funeral) -"ppU" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"ppX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Detective's Office" - }, -/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, -/obj/effect/mapping_helpers/airlock/access/all/security/detective, -/turf/open/floor/iron, -/area/station/security/detectives_office) -"pqb" = ( -/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/plating, -/area/station/engineering/supermatter/room) -"pqc" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"pqh" = ( -/obj/effect/turf_decal/tile/red, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/security/office) -"pqi" = ( -/obj/structure/chair, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"pql" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/stripes/line{ - 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, -/area/station/engineering/gravity_generator) -"pqp" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"pqu" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/landmark/start/chaplain, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"pqz" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room" - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"pqI" = ( -/obj/structure/lattice/catwalk, -/obj/item/fish_feed, -/turf/open/space/basic, -/area/space/nearstation) -"prg" = ( -/obj/effect/turf_decal/trimline/red/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, -/area/station/security/brig) -"pri" = ( -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/structure/closet/l3closet, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"prv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/brig) -"prx" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Virology Airlock"; - network = list("ss13","medbay") - }, -/obj/structure/closet/l3closet, -/obj/effect/turf_decal/tile/green/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"prD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/service/library) -"prE" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"prT" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos) -"prU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"prZ" = ( -/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/white/side, -/area/station/science/lobby) -"psc" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"psl" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"psp" = ( -/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/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"psr" = ( -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole, -/turf/open/floor/wood, -/area/station/service/library) -"pst" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"psv" = ( -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/rods/fifty, -/obj/item/stack/rods/fifty, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"psw" = ( -/obj/machinery/computer/security/hos{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hos) -"psy" = ( -/obj/machinery/keycard_auth/directional/east, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hop) -"psF" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Bridge" - }, -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/central) -"psT" = ( -/turf/open/floor/iron/dark, -/area/station/science/lab) -"psU" = ( -/obj/machinery/door/window/left/directional/north{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Containment Pen #1"; - req_access = list("xenobiology") - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"psV" = ( -/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, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"psZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"pth" = ( -/obj/machinery/atmospherics/components/tank, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"pti" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"ptH" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"ptV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/bin{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Custodial Closet" - }, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron, -/area/station/service/janitor) -"pua" = ( -/obj/machinery/vending/assist, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"pui" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"pul" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"puD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/random/trash/janitor_supplies, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"puG" = ( -/obj/machinery/status_display/ai/directional/north, -/obj/effect/turf_decal/stripes/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) -"puI" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"puL" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation A" - }, -/obj/machinery/door/firedoor, -/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/medical/virology, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"puQ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Prison Gate"; - name = "Security Blast Door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/security/brig) -"puZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/locker) -"pvm" = ( -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"pvB" = ( -/obj/structure/sign/warning/vacuum/external/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"pvL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Port Primary Hallway" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/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, -/area/station/hallway/primary/port) -"pvP" = ( -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/iron, -/area/station/cargo/storage) -"pvY" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Holodeck - Fore"; - name = "holodeck camera" - }, -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/station/holodeck/rec_center) -"pwm" = ( -/obj/machinery/telecomms/processor/preset_four, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"pwq" = ( -/obj/item/storage/book/bible, -/obj/structure/altar_of_gods, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"pwx" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"pwy" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"pwM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/commons/dorms) -"pwZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"pxj" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Robotics Lab" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/science/robotics, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"pxl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"pxt" = ( -/turf/closed/wall/r_wall, -/area/station/science/ordnance/storage) -"pxC" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/valve/digital{ - name = "Waste Release" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"pxN" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/door/airlock/security/glass{ - name = "Gear Room" - }, -/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/security/brig, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"pxT" = ( -/obj/structure/closet/secure_closet/courtroom, -/obj/machinery/light_switch/directional/north, -/obj/item/gavelblock, -/obj/item/gavelhammer, -/turf/open/floor/iron, -/area/station/security/courtroom) -"pyc" = ( -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/turf/open/floor/wood, -/area/station/commons/lounge) -"pyd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"pyv" = ( -/obj/machinery/vending/wardrobe/cargo_wardrobe, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"pyw" = ( -/obj/structure/chair/office, -/obj/effect/landmark/start/quartermaster, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/cargo/qm) -"pyI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"pyP" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"pyV" = ( -/obj/structure/window/reinforced, -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"pyY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/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/office) -"pyZ" = ( -/obj/machinery/conveyor/inverted{ - dir = 6; - id = "packageExternal" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"pzu" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) -"pzz" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"pzF" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"pzT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/machinery/button/door/directional/east{ - id = "commissarydoor"; - name = "Commissary Door Lock"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"pzW" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"pzY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"pAe" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"pAh" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"pAk" = ( -/obj/structure/chair/stool/directional/south{ - dir = 1; - name = "Jim Norton's Quebecois Coffee stool" - }, -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/turf/open/floor/wood, -/area/station/service/cafeteria) -"pAr" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/service/bar) -"pAW" = ( -/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) -"pBa" = ( -/turf/closed/wall, -/area/station/medical/medbay/lobby) -"pBd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding{ - dir = 4 - }, -/obj/item/kirbyplants/dead, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"pBG" = ( -/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/security/brig) -"pBJ" = ( -/obj/structure/cable, -/obj/structure/chair/office, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs) -"pBL" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron, -/area/station/security/office) -"pBN" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/structure/chair/sofa/corp/right{ - dir = 1 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/office) -"pCa" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/turf/closed/wall/r_wall, -/area/station/science/ordnance/burnchamber) -"pCt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"pCL" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/sign/poster/official/cleanliness{ - pixel_y = -32 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"pCO" = ( -/obj/machinery/holopad, -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"pCU" = ( -/obj/effect/turf_decal/trimline/red/filled/warning{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"pDe" = ( -/obj/machinery/computer/telecomms/server{ - dir = 8; - network = "tcommsat" - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"pDl" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/left/directional/north{ - base_state = "right"; - icon_state = "right"; - name = "Containment Pen #7"; - req_access = list("xenobiology") - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio7"; - name = "Xenobio Pen 7 Blast Door" - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"pDs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/white/side, -/area/station/science/lobby) -"pDx" = ( -/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 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/maintenance/department/engine) -"pDU" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"pEk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Hydroponics Storage" - }, -/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/tile/green/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"pEo" = ( -/obj/item/target, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"pEs" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"pEv" = ( -/obj/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/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"pEB" = ( -/obj/effect/landmark/start/botanist, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"pEG" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"pEH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/service/library) -"pEW" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"pFd" = ( -/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/commons/dorms) -"pFg" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Medbay Surgery C"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"pFG" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"pFI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"pFN" = ( -/obj/structure/rack, -/obj/item/hatchet, -/obj/item/reagent_containers/blood/random, -/turf/open/floor/iron/showroomfloor, -/area/station/maintenance/starboard/lesser) -"pFS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"pFU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"pGe" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"pGn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/circuit/green, -/area/station/science/robotics/mechbay) -"pGt" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/spawner/random/maintenance/three, -/obj/structure/closet/crate/medical, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"pGu" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/light_switch/directional/north{ - pixel_x = 6 - }, -/obj/machinery/button/door/directional/north{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_x = -6; - req_access = list("atmospherics") - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/storage/gas) -"pGH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"pGZ" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"pHb" = ( -/turf/open/floor/iron, -/area/station/security/brig) -"pHg" = ( -/obj/machinery/flasher/portable, -/obj/machinery/light/small/directional/east, -/obj/item/radio/intercom/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Security - Secure Gear Storage" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"pHi" = ( -/obj/machinery/telecomms/server/presets/security, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"pHj" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/bot, -/obj/machinery/camera{ - c_tag = "Engineering - Foyer - Starboard"; - dir = 9 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"pHt" = ( -/obj/structure/table, -/obj/item/toy/plush/slimeplushie{ - name = "Nanners" - }, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"pHv" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Surgery Maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"pHB" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos) -"pHL" = ( -/obj/machinery/door/poddoor/shutters{ - id = "qm_warehouse"; - name = "Warehouse Shutters"; - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"pHS" = ( -/obj/structure/light_construct/directional/east, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"pIm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "E.V.A. Storage" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/effect/landmark/navigate_destination, -/obj/effect/mapping_helpers/airlock/access/any/command/eva, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"pIv" = ( -/obj/item/radio/intercom/directional/west, -/obj/structure/closet/secure_closet/security/science, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) -"pIw" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"pIz" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/commons/lounge) -"pID" = ( -/obj/effect/decal/cleanable/dirt, -/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/iron, -/area/station/commons/storage/primary) -"pIE" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"pIF" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/white/line, -/obj/machinery/research/anomaly_refinery, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"pJf" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"pJi" = ( -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"pJl" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"pJt" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/item/radio/intercom/directional/north, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/white, -/area/station/science/explab) -"pJu" = ( -/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/freezer, -/area/station/security/prison/shower) -"pJA" = ( -/obj/structure/closet/secure_closet/cytology, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"pJE" = ( -/turf/open/floor/iron, -/area/station/commons/locker) -"pJR" = ( -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/hop) -"pJY" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Bridge - Command Chair" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/button/door/directional/south{ - id = "bridge blast"; - name = "Bridge Access Blast Door Control"; - req_access = list("command") - }, -/obj/machinery/button/door/directional/south{ - id = "council blast"; - name = "Council Chamber Blast Door Control"; - pixel_y = -34; - req_access = list("command") - }, -/turf/open/floor/carpet, -/area/station/command/bridge) -"pKa" = ( -/obj/structure/cable, -/obj/structure/bed/roller, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"pKi" = ( -/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) -"pKs" = ( -/obj/structure/table/wood, -/obj/item/paper_bin/carbon{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"pKv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"pKw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/commons/storage/art) -"pKB" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/mining, -/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) -"pKP" = ( -/turf/closed/wall, -/area/station/command/heads_quarters/cmo) -"pLn" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/storage/gas) -"pLs" = ( -/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) -"pLv" = ( -/obj/machinery/light/directional/south, -/obj/machinery/firealarm/directional/south, -/obj/structure/rack, -/obj/item/storage/secure/briefcase, -/obj/item/clothing/mask/cigarette/cigar, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"pMd" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"pMs" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/machinery/firealarm/directional/north, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"pMH" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/computer/station_alert{ - dir = 4 - }, -/obj/structure/plaque/static_plaque/atmos{ - pixel_x = -32 - }, -/obj/machinery/newscaster/directional/south, -/obj/machinery/camera/directional/west{ - c_tag = "Atmospherics - Desk" - }, -/turf/open/floor/iron/checker, -/area/station/engineering/atmos/storage/gas) -"pMQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/obj/structure/disposalpipe/sorting/mail{ - sortType = 19 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/greater) -"pMS" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"pMU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"pNb" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"pNe" = ( -/obj/machinery/telecomms/receiver/preset_right, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"pNf" = ( -/obj/machinery/door/airlock{ - name = "Hydroponics Backroom" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"pNp" = ( -/obj/machinery/light/small/broken/directional/west, -/obj/structure/table, -/obj/item/clothing/suit/cyborg_suit, -/obj/item/clothing/mask/gas/cyborg, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"pNR" = ( -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"pNY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/security/execution/transfer) -"pNZ" = ( -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/security/prison) -"pOa" = ( -/turf/closed/wall, -/area/station/maintenance/port) -"pOb" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageExternal" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/window/left/directional/west{ - dir = 2; - name = "Crate Security Door"; - req_access = list("shipping") - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"pOi" = ( -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"pOj" = ( -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs) -"pOk" = ( -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/item/assembly/signaler{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/assembly/signaler{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/assembly/signaler{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/assembly/signaler{ - pixel_y = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"pOv" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"pOw" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Science Petting Zoo"; - network = list("ss13","rd") - }, -/obj/structure/frame/computer{ - anchored = 1; - dir = 8 - }, -/turf/open/floor/circuit/green/off, -/area/station/science/research) -"pOF" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"pOK" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"pPh" = ( -/obj/structure/closet/secure_closet/miner, -/obj/item/clothing/suit/hooded/wintercoat/miner, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"pPl" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/security/interrogation) -"pPp" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/iron/chapel{ - dir = 4 - }, -/area/station/service/chapel) -"pPM" = ( -/obj/machinery/mecha_part_fabricator/maint{ - name = "forgotten exosuit fabricator" - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"pPN" = ( -/obj/structure/window/fulltile, -/obj/structure/flora/bush/leavy/style_random, -/obj/structure/flora/bush/flowers_yw/style_random, -/turf/open/floor/grass, -/area/station/maintenance/starboard/aft) -"pPR" = ( -/obj/machinery/door/airlock/security{ - id_tag = "IsolationCell"; - name = "Isolation Cell" - }, -/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/security/brig, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"pQj" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"pQu" = ( -/obj/machinery/door/window/right/directional/east{ - base_state = "left"; - icon_state = "left"; - name = "Danger: Conveyor Access"; - req_access = list("maint_tunnels") - }, -/obj/machinery/conveyor/inverted{ - dir = 6; - id = "garbage" - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"pQv" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "MiniSat - Antechamber"; - network = list("minisat") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"pQx" = ( -/obj/structure/cable, -/obj/machinery/computer/security/telescreen/interrogation{ - name = "isolation room monitor"; - network = list("isolation"); - pixel_y = 31 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"pQC" = ( -/obj/structure/table/wood, -/obj/machinery/firealarm/directional/south, -/obj/item/storage/photo_album/bar, -/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, -/area/station/service/bar) -"pQD" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"pQG" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) -"pQI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"pQK" = ( -/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/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 6 - }, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/storage/gas) -"pQW" = ( -/obj/effect/turf_decal/trimline/darkblue/filled/corner, -/obj/effect/turf_decal/trimline/darkblue/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"pRb" = ( -/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/secondary/command) -"pRe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"pRu" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"pSa" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/security/prison) -"pSl" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"pSw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"pSz" = ( -/obj/effect/spawner/random/engineering/atmospherics_portable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"pSS" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/junction/flipped{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/space, -/area/space/nearstation) -"pTf" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/goonplaque, -/area/station/hallway/primary/port) -"pTm" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs) -"pTu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"pTw" = ( -/obj/effect/turf_decal/stripes/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, -/area/station/engineering/main) -"pTK" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"pTS" = ( -/turf/closed/wall, -/area/station/service/bar) -"pTW" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"pUl" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/door/directional/north{ - id = "AuxShower"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/obj/effect/spawner/random/trash/soap{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/iron, -/area/station/commons/toilet/auxiliary) -"pUp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"pUA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/hydroponics/glass{ - name = "Hydroponics" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"pUS" = ( -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/structure/table/wood, -/obj/item/taperecorder{ - pixel_x = 8; - pixel_y = -1 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/grimy, -/area/station/security/interrogation) -"pVi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch/directional/north, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"pVk" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding{ - dir = 4 - }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/taperecorder{ - pixel_x = 6; - pixel_y = 10 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"pVz" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"pVM" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Security - EVA Storage" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"pVR" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table, -/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, -/area/station/science/xenobiology) -"pVZ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"pWA" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=2.1-Leaving-Storage"; - location = "1.5-Fore-Central" - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L6" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"pWB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Gas to Mix" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"pWD" = ( -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white/corner, -/area/station/medical/medbay/lobby) -"pWN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Command Hallway" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"pWR" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) -"pWT" = ( -/obj/machinery/atmospherics/components/tank/air{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"pWX" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"pXh" = ( -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"pXj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/station/science/explab) -"pXo" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ - dir = 8; - initialize_directions = 4; - name = "euthanization chamber freezer" - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"pXA" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"pXC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig) -"pXM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"pXQ" = ( -/obj/structure/table/glass, -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/item/circular_saw, -/obj/item/blood_filter, -/obj/machinery/light/directional/south, -/obj/item/bonesetter, -/obj/machinery/button/door/directional/south{ - id = "main_surgery"; - name = "privacy shutters control" - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"pYn" = ( -/obj/structure/sign/plaques/kiddie/library{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"pYw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/office) -"pYL" = ( -/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 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"pZc" = ( -/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/lobby) -"pZi" = ( -/obj/machinery/atmospherics/components/unary/passive_vent{ - dir = 1; - name = "killroom vent" - }, -/turf/open/floor/circuit/telecomms, -/area/station/science/xenobiology) -"pZj" = ( -/obj/item/candle, -/obj/machinery/light_switch/directional/west, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"pZn" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"pZp" = ( -/obj/structure/chair/stool/directional/east, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison) -"pZG" = ( -/obj/machinery/power/solar_control{ - id = "forestarboard"; - name = "Starboard Bow Solar Control" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"pZQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/station/service/theater) -"qad" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/holofloor/dark, -/area/station/science/cytology) -"qag" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/iron, -/area/station/maintenance/port) -"qaq" = ( -/obj/machinery/newscaster/directional/south, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"qaA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"qaG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/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/central) -"qaP" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L3" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"qaS" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"qaT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"qbr" = ( -/obj/structure/bed, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/glasses/blindfold, -/obj/item/clothing/mask/muzzle, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/security/execution/transfer) -"qby" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"qbC" = ( -/obj/structure/table/wood, -/obj/machinery/computer/med_data/laptop{ - dir = 1 - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/button/door/directional/west{ - id = "hosprivacy"; - name = "Privacy Shutters Control" - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hos) -"qbE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "medsecprivacy"; - name = "Privacy Shutter" - }, -/turf/open/floor/plating, -/area/station/security/checkpoint/medical) -"qbF" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"qbZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/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/department/medical/central) -"qcd" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/pumproom) -"qcP" = ( -/obj/effect/landmark/blobstart, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"qdm" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/security/execution/transfer) -"qdr" = ( -/obj/structure/table, -/obj/item/food/grown/wheat, -/obj/item/food/grown/watermelon, -/obj/item/food/grown/citrus/orange, -/obj/item/food/grown/grapes, -/obj/item/food/grown/cocoapod, -/obj/item/food/grown/apple, -/obj/item/food/grown/chili, -/obj/item/food/grown/cherries, -/obj/item/food/grown/soybeans, -/obj/item/food/grown/citrus/lime, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"qdw" = ( -/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/aft/lesser) -"qdB" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/box/syringes{ - pixel_y = 4 - }, -/obj/item/storage/box/syringes, -/obj/item/gun/syringe, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"qdI" = ( -/obj/structure/table, -/obj/machinery/microwave, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 5 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/requests_console/directional/west{ - department = "Kitchen"; - departmentType = 2; - name = "Kitchen Requests Console" - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"qdT" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/siding/red, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"qdW" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/central) -"qem" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Atmospherics - Crystallizer" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmospherics_engine) -"qeq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"qer" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Port Primary Hallway - Port" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"qeJ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"qeQ" = ( -/obj/machinery/turretid{ - icon_state = "control_stun"; - name = "AI Chamber turret control"; - pixel_x = 3; - pixel_y = -23 - }, -/obj/machinery/door/window{ - atom_integrity = 300; - base_state = "leftsecure"; - dir = 8; - icon_state = "leftsecure"; - name = "Primary AI Core Access"; - req_access = list("ai_upload") - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"qeV" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Engineering" - }, -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/maintenance/starboard/fore) -"qeX" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/machinery/camera/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/common/cryopods) -"qeZ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/landmark/start/barber, -/turf/open/floor/iron, -/area/service/salon) -"qfi" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"qfp" = ( -/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, -/area/station/commons/locker) -"qfs" = ( -/obj/machinery/door/poddoor/incinerator_atmos_aux, -/turf/open/space/basic, -/area/station/maintenance/disposal/incinerator) -"qfB" = ( -/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, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/service/bar) -"qfE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"qfK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"qfL" = ( -/obj/machinery/power/port_gen/pacman/pre_loaded, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"qfQ" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/effect/turf_decal/box/red, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"qfZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/chapel{ - dir = 1 - }, -/area/station/service/chapel) -"qgc" = ( -/obj/structure/closet/crate/secure/weapon{ - desc = "A secure clothing crate."; - name = "formal uniform crate"; - req_access = list("armory") - }, -/obj/item/clothing/under/rank/security/officer/formal, -/obj/item/clothing/under/rank/security/officer/formal, -/obj/item/clothing/under/rank/security/officer/formal, -/obj/item/clothing/under/rank/security/officer/formal, -/obj/item/clothing/under/rank/security/officer/formal, -/obj/item/clothing/under/rank/security/officer/formal, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/under/rank/security/warden/formal, -/obj/item/clothing/suit/security/warden, -/obj/item/clothing/under/rank/security/head_of_security/formal, -/obj/item/clothing/suit/security/hos, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navywarden, -/obj/item/clothing/head/hos/beret/navyhos, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"qgf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"qgi" = ( -/obj/machinery/power/supermatter_crystal/engine, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"qgn" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/random/structure/chair_maintenance{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"qgu" = ( -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"qgw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port) -"qgy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"qgz" = ( -/obj/effect/turf_decal/trimline/red/filled/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/white, -/area/station/security/prison) -"qhb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"qhc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"qhx" = ( -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"qhy" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Holodeck - Aft"; - name = "holodeck camera" - }, -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/station/holodeck/rec_center) -"qhz" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, -/area/station/security/holding_cell) -"qhF" = ( -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/stripes/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) -"qhG" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Pharmacy Maintenance" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/any/medical/general, -/obj/effect/mapping_helpers/airlock/access/any/medical/pharmacy, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"qhI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/pumproom) -"qhR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/obj/structure/reagent_dispensers/plumbed, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"qhW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/checkpoint/customs) -"qid" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/machinery/light/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/security/brig) -"qig" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/prison) -"qim" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"qin" = ( -/obj/machinery/light/directional/south, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"qiw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/white/line, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"qiz" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"qiD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"qjf" = ( -/obj/effect/turf_decal/stripes/line{ - 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, -/area/station/ai_monitored/command/storage/eva) -"qjr" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/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/security/execution/transfer) -"qjy" = ( -/obj/effect/spawner/random/engineering/tank, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"qjC" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Space Access Airlock" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/obj/effect/mapping_helpers/airlock/access/any/command/minisat, -/turf/open/floor/plating, -/area/station/ai_monitored/aisat/exterior) -"qjP" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/trash/mess, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"qkl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"qkm" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/drinks/soda_cans/monkey_energy, -/obj/item/reagent_containers/food/drinks/soda_cans/monkey_energy, -/obj/item/reagent_containers/food/drinks/soda_cans/monkey_energy, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"qko" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/closet{ - anchored = 1; - can_be_unanchored = 1; - name = "Cold protection gear" - }, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/suit/hooded/wintercoat/science, -/obj/item/clothing/suit/hooded/wintercoat/science, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"qkq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology/hallway) -"qkA" = ( -/obj/machinery/computer/security, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"qkJ" = ( -/obj/structure/chair/office/light, -/obj/structure/cable, -/obj/effect/landmark/start/psychologist, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"qkW" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"qkX" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance/glass, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"qlc" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"qli" = ( -/obj/structure/closet/athletic_mixed, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"qlG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"qlH" = ( -/obj/item/radio/intercom/directional/south{ - broadcasting = 1; - frequency = 1447; - name = "Private Channel" - }, -/obj/machinery/camera/motion/directional/south{ - c_tag = "ai_upload Chamber - Starboard"; - network = list("aiupload") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"qmf" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/table/wood, -/obj/item/folder/red{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/folder/red{ - pixel_x = -7 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"qmu" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/office) -"qmy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"qmO" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) -"qmR" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"qnb" = ( -/obj/machinery/computer/security/mining{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"qnm" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdordnance"; - name = "Ordnance Lab Shutters"; - dir = 1 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plating, -/area/station/science/ordnance/storage) -"qno" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"qnq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology/hallway) -"qnr" = ( -/obj/structure/cable, -/obj/effect/spawner/random/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"qnt" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"qnK" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"qnS" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"qnX" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"qok" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 17 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"qos" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/science/lab) -"qot" = ( -/obj/structure/transit_tube/curved/flipped{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"qov" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/oxygen_input{ - dir = 1 - }, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"qoA" = ( -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"qoC" = ( -/obj/structure/table, -/obj/item/flashlight/lamp, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"qoJ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"qoR" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"qpe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/storage/box/lights/mixed{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/storage/box/lights/mixed{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/grenade/chem_grenade/cleaner{ - pixel_x = -7; - pixel_y = 12 - }, -/obj/item/grenade/chem_grenade/cleaner{ - pixel_x = -7; - pixel_y = 12 - }, -/obj/item/grenade/chem_grenade/cleaner{ - pixel_x = -7; - pixel_y = 12 - }, -/obj/machinery/requests_console/directional/north{ - department = "Janitorial"; - departmentType = 1; - name = "Janitorial Requests Console" - }, -/turf/open/floor/iron, -/area/station/service/janitor) -"qph" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/spawner/random/medical/patient_stretcher, -/obj/item/toy/plush/snakeplushie{ - name = "Boa Ben" - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"qpn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/modular_computer/console/preset/cargochat/service{ - dir = 8 - }, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/iron, -/area/station/maintenance/starboard/greater) -"qpr" = ( -/obj/machinery/button/door/directional/west{ - id = "bridge blast"; - name = "Bridge Access Blast Door Control"; - req_access = list("command") - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"qpD" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/nuke_storage) -"qpM" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/station/commons/lounge) -"qpT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/north, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"qqg" = ( -/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/library) -"qqp" = ( -/obj/structure/closet/crate, -/obj/item/stock_parts/cell/high, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/spawner/random/engineering/flashlight, -/obj/effect/spawner/random/engineering/flashlight, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"qrg" = ( -/obj/machinery/light_switch/directional/north, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/ai_monitored/command/nuke_storage) -"qri" = ( -/turf/open/floor/iron/chapel{ - dir = 1 - }, -/area/station/service/chapel) -"qrn" = ( -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"qrr" = ( -/turf/closed/wall/mineral/plastitanium, -/area/station/security/prison/safe) -"qrt" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/carbon_input{ - dir = 1 - }, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"qrD" = ( -/obj/structure/bodycontainer/crematorium{ - dir = 1; - id = "crematoriumChapel" - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"qrF" = ( -/obj/machinery/computer/exodrone_control_console{ - dir = 1 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"qrO" = ( -/obj/machinery/chem_dispenser/drinks{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/newscaster/directional/south, -/obj/structure/table, -/turf/open/floor/iron, -/area/station/service/bar) -"qrQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Service - Port" - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"qsd" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "roboticsprivacy2"; - name = "Robotics Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/robotics/lab) -"qsf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"qsl" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L12" - }, -/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) -"qsu" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port) -"qsx" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=9.1-Escape-1"; - location = "8.1-Aft-to-Escape" - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"qsK" = ( -/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/commons/locker) -"qsL" = ( -/obj/machinery/button/door/directional/west{ - id = "council blast"; - name = "Council Chamber Blast Door Control"; - req_access = list("command") - }, -/obj/machinery/vending/coffee{ - pixel_x = -3 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"qsQ" = ( -/obj/machinery/light/directional/north, -/obj/machinery/computer/security/wooden_tv, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"qsV" = ( -/obj/structure/table/reinforced, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/item/radio/intercom/directional/east{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Private Channel" - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"qsX" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Port Primary Hallway - Starboard" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"qtm" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"qtH" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/north, -/obj/structure/rack, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/item/mod/module/plasma_stabilizer, -/obj/item/mod/module/thermal_regulator, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/storage_shared) -"qua" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"quc" = ( -/obj/structure/lattice/catwalk, -/obj/structure/marker_beacon/burgundy, -/turf/open/space/basic, -/area/space/nearstation) -"quk" = ( -/turf/closed/wall, -/area/station/engineering/atmospherics_engine) -"qul" = ( -/obj/machinery/power/terminal, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"quv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"quz" = ( -/obj/structure/table, -/obj/structure/bedsheetbin{ - pixel_x = 2 - }, -/obj/item/clothing/mask/muzzle, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"quA" = ( -/obj/effect/decal/cleanable/dirt, -/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/cable, -/turf/open/floor/iron, -/area/station/security/holding_cell) -"quH" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/roller, -/obj/item/roller{ - pixel_y = 3 - }, -/obj/item/roller{ - pixel_y = 6 - }, -/turf/open/floor/iron/dark, -/area/station/medical/office) -"quR" = ( -/obj/structure/railing{ - dir = 10 - }, -/turf/open/floor/iron/dark/side{ - dir = 10 - }, -/area/station/hallway/secondary/entry) -"qvJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"qvQ" = ( -/obj/machinery/door/window/left/directional/north{ - dir = 8; - name = "Containment Pen #4"; - req_access = list("xenobiology") - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"qvY" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"qwh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/holding_cell) -"qwi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"qwl" = ( -/obj/machinery/airalarm/directional/north, -/obj/item/clothing/under/suit/burgundy, -/obj/effect/landmark/start/hangover, -/obj/effect/spawner/random/structure/closet_private, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"qwG" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/port) -"qwI" = ( -/obj/structure/sign/departments/chemistry/pharmacy, -/turf/closed/wall, -/area/station/medical/pharmacy) -"qwK" = ( -/obj/structure/chair/stool/directional/west, -/turf/open/floor/iron, -/area/station/commons/dorms) -"qwM" = ( -/obj/machinery/power/smes, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"qwR" = ( -/obj/structure/sign/directions/evac, -/obj/structure/sign/directions/medical{ - pixel_y = 8 - }, -/obj/structure/sign/directions/science{ - pixel_y = -8 - }, -/turf/closed/wall, -/area/station/service/library) -"qwY" = ( -/obj/effect/spawner/random/vending/colavend, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/command) -"qxh" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/iron/chapel{ - dir = 1 - }, -/area/station/service/chapel) -"qxr" = ( -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"qxt" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/engine, -/area/station/engineering/atmospherics_engine) -"qxE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ - dir = 1 - }, -/obj/machinery/meter, -/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/corner{ - dir = 1 - }, -/area/station/engineering/atmos) -"qxG" = ( -/obj/machinery/smartfridge, -/turf/closed/wall, -/area/station/hallway/secondary/service) -"qxR" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/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/secondary/exit/departure_lounge) -"qyb" = ( -/obj/structure/chair{ - pixel_y = -2 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"qyo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Vault Storage" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/supply/vault, -/turf/open/floor/iron/dark, -/area/station/construction/storage_wing) -"qyr" = ( -/obj/item/kirbyplants, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"qyx" = ( -/obj/machinery/camera{ - c_tag = "Warden's Office"; - dir = 10 - }, -/obj/structure/table, -/obj/machinery/button/door{ - desc = "Controls the shutters over the cell windows."; - id = "Secure Gate"; - name = "Cell Window Control"; - pixel_x = -6; - pixel_y = 7; - 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 = 7; - req_access = list("security") - }, -/obj/machinery/button/door{ - desc = "Controls the blast doors in front of the prison wing."; - id = "Prison Gate"; - name = "Prison Wing Lockdown"; - pixel_y = -3; - req_access = list("brig") - }, -/obj/item/key/security, -/obj/effect/turf_decal/trimline/dark_red/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/security/warden) -"qyB" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "Kitchen" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/maintenance/starboard/greater) -"qyC" = ( -/turf/closed/wall, -/area/station/engineering/atmos/pumproom) -"qyI" = ( -/obj/structure/noticeboard/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"qyT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"qzs" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/space, -/area/space/nearstation) -"qzz" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"qzC" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"qzK" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"qzS" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/wood, -/area/station/service/library) -"qAc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/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, -/area/station/hallway/secondary/command) -"qAA" = ( -/obj/machinery/newscaster/directional/east, -/obj/machinery/computer/security/mining{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"qAN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"qAX" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - 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/white, -/area/station/security/prison) -"qBo" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1449; - id_tag = "xeno_airlock_interior"; - name = "Xenobiology Lab Internal Airlock" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple/fourcorners, -/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/science/xenobio, -/turf/open/floor/iron/white, -/area/station/science/xenobiology/hallway) -"qBq" = ( -/obj/structure/rack, -/obj/effect/landmark/blobstart, -/obj/effect/spawner/random/trash/janitor_supplies, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"qBy" = ( -/turf/closed/wall, -/area/station/command/heads_quarters/hop) -"qBC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"qBF" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 5 - }, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron/white, -/area/station/science/ordnance/testlab) -"qBK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/science/explab) -"qCa" = ( -/obj/structure/rack, -/obj/item/storage/box/shipping, -/obj/item/pushbroom, -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"qCb" = ( -/obj/structure/table/reinforced{ - name = "Jim Norton's Quebecois Coffee table" - }, -/obj/item/storage/fancy/donut_box, -/obj/item/paper{ - info = "Jim Norton's Quebecois Coffee. You see, in 2265 the Quebecois had finally had enough of Canada's shit, and went to the one place that wasn't corrupted by Canuckistan.Je vais au seul endroit qui n'a pas ??? corrompu par les Canadiens ... ESPACE."; - name = "Coffee Shop"; - pixel_x = -4; - pixel_y = 6 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/cafeteria) -"qCh" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L10" - }, -/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) -"qCj" = ( -/obj/structure/sign/departments/science, -/turf/closed/wall, -/area/station/science/lobby) -"qCv" = ( -/obj/machinery/telecomms/processor/preset_two, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"qCC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"qCK" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/button/door/directional/east{ - id = "maintwarehouse"; - name = "Privacy Shutters Control" - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"qCL" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/structure/cable, -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = -2 - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"qCP" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"qCQ" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/turf/open/space, -/area/space/nearstation) -"qCY" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall/r_wall, -/area/station/maintenance/department/science/central) -"qDa" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"qDb" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Gamer Lair" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"qDm" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/commons/lounge) -"qDt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/no_nightlight/directional/north, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos) -"qDy" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"qDA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/bot, -/obj/machinery/hydroponics/constructable, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"qDS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"qEb" = ( -/obj/structure/chair/pew/right, -/turf/open/floor/iron/chapel, -/area/station/service/chapel) -"qEf" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"qEt" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"qEy" = ( -/obj/effect/turf_decal/tile/neutral, -/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/commons/dorms) -"qEF" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"qEG" = ( -/obj/structure/table, -/obj/effect/spawner/random/entertainment/deck, -/turf/open/floor/iron, -/area/station/security/prison) -"qEK" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"qFj" = ( -/obj/structure/table, -/obj/effect/turf_decal/delivery, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson/engine, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/pipe_dispenser, -/obj/item/pipe_dispenser, -/obj/item/pipe_dispenser, -/turf/open/floor/iron, -/area/station/engineering/main) -"qFo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Bar" - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/commons/lounge) -"qFA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"qFP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"qFU" = ( -/obj/structure/chair/stool/directional/west, -/turf/open/floor/iron, -/area/station/commons/locker) -"qGa" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Courtroom" - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"qGc" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/command/gateway) -"qGn" = ( -/obj/structure/table, -/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/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"qGo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"qGs" = ( -/obj/machinery/light/directional/east, -/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/fore) -"qGv" = ( -/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) -"qGK" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "Engineering Security Doors" - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/break_room) -"qGP" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"qGQ" = ( -/obj/effect/turf_decal/trimline/red/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, -/area/station/security/brig) -"qGZ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"qHh" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/engineering/atmospherics_engine) -"qHs" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/station/hallway/secondary/entry) -"qHK" = ( -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"qHO" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"qIi" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"qIl" = ( -/turf/closed/wall, -/area/station/hallway/secondary/command) -"qIq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"qIu" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2, -/turf/open/floor/iron, -/area/station/commons/locker) -"qIB" = ( -/obj/structure/closet, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/reagent_containers/food/drinks/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/starboard/fore) -"qIP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/cryo_cell, -/turf/open/floor/iron/dark/textured, -/area/station/medical/cryo) -"qIR" = ( -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"qIS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"qJa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/range) -"qJd" = ( -/obj/machinery/status_display/ai/directional/north, -/obj/machinery/computer/station_alert, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"qJx" = ( -/obj/machinery/light/directional/north, -/obj/item/storage/secure/briefcase, -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/storage/secure/briefcase, -/obj/item/assembly/flash/handheld, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"qJH" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/vending/autodrobe/all_access, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"qJU" = ( -/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/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"qKg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/command/gateway) -"qKi" = ( -/obj/machinery/vending/wardrobe/chap_wardrobe, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"qKn" = ( -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"qKs" = ( -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"qKw" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/carpet/green, -/area/station/maintenance/port/aft) -"qKR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"qKS" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"qLb" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 4 - }, -/obj/machinery/requests_console/directional/west{ - announcementConsole = 1; - department = "Chief Medical Officer's Desk"; - departmentType = 5; - name = "Chief Medical Officer's Requests Console" - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"qLe" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/research) -"qLw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"qLJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"qLP" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/bureaucracy/folder{ - spawn_random_offset = 1 - }, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"qLR" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_y = 5 - }, -/obj/item/reagent_containers/dropper{ - pixel_y = -4 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark/textured_edge{ - dir = 4 - }, -/area/station/medical/medbay/central) -"qLY" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"qMf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/button/door/directional/south{ - id = "gateshutter"; - name = "Gateway Shutter Control"; - pixel_y = -34; - req_access = list("command") - }, -/obj/machinery/button/door/directional/south{ - id = "evashutter"; - name = "E.V.A. Storage Shutter Control"; - req_access = list("command") - }, -/turf/open/floor/carpet, -/area/station/command/bridge) -"qMi" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"qMA" = ( -/obj/machinery/computer/cargo{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"qMD" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"qMP" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/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, -/area/station/hallway/primary/central) -"qMT" = ( -/obj/item/shard, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"qNb" = ( -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock" - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/fore) -"qNi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/anesthetic_mix, -/turf/open/floor/iron/dark, -/area/station/medical/cryo) -"qNj" = ( -/obj/machinery/light_switch/directional/south, -/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/tile/red/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"qNk" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 10 - }, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"qNw" = ( -/obj/machinery/atmospherics/components/binary/valve/digital, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"qNz" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"qNA" = ( -/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, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"qNG" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/security/courtroom) -"qNI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"qNV" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/bridge) -"qOg" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdrnd"; - name = "Research and Development Shutters"; - dir = 8 - }, -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/science/lab) -"qOs" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Genetics Maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/science/genetics, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"qOu" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"qOw" = ( -/obj/machinery/power/tracker, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/station/solars/starboard/aft) -"qOz" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix Bypass" - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"qOM" = ( -/obj/machinery/vending/hydronutrients, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"qOP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"qOT" = ( -/obj/item/storage/bag/trash, -/obj/machinery/airalarm/directional/west, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"qOV" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/spawner/random/entertainment/deck{ - pixel_x = -6 - }, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"qOW" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"qOZ" = ( -/obj/machinery/requests_console/directional/south{ - department = "Mining"; - name = "Mining Requests Console" - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"qPs" = ( -/obj/structure/lattice/catwalk, -/obj/structure/marker_beacon/indigo, -/turf/open/space/basic, -/area/space/nearstation) -"qPx" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"qPC" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation B" - }, -/obj/machinery/door/firedoor, -/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/medical/virology, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"qPJ" = ( -/turf/closed/wall, -/area/station/security/checkpoint/medical) -"qPM" = ( -/obj/machinery/computer/prisoner/management{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/dark_red/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/warden) -"qPS" = ( -/obj/machinery/light_switch/directional/north, -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/mob/living/simple_animal/pet/dog/corgi/puppy/slime, -/turf/open/floor/grass, -/area/station/science/research) -"qPT" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/recharge_station, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/storage_shared) -"qQd" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/carpet, -/area/station/service/library) -"qQm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"qQs" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"qQu" = ( -/obj/structure/chair/sofa/corp/left{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"qQv" = ( -/obj/structure/sign/warning/secure_area/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"qQX" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) -"qRf" = ( -/obj/machinery/firealarm/directional/east, -/turf/open/floor/wood, -/area/station/service/library) -"qRg" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"qRh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"qRk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/locker) -"qRz" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/spawner/random/trash/janitor_supplies, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"qRD" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/west, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/service/bar) -"qRI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/hallway/secondary/command) -"qRL" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"qRM" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos) -"qRO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"qRS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"qRV" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"qSc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 8 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"qSf" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/tile/neutral, -/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/commons/dorms) -"qSh" = ( -/turf/closed/wall, -/area/station/maintenance/solars/starboard/fore) -"qSk" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/closed/wall, -/area/station/maintenance/port) -"qSn" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/meter, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/pumproom) -"qSp" = ( -/obj/structure/rack, -/obj/item/flashlight, -/obj/item/clothing/gloves/color/fyellow, -/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/airlock_painter, -/obj/item/crowbar, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"qSJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall, -/area/station/commons/vacant_room/commissary) -"qST" = ( -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"qTz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron, -/area/station/commons/dorms) -"qTA" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Mix to Filter" - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"qTH" = ( -/obj/structure/disposalpipe/segment{ - 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, -/area/station/security/brig) -"qTJ" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Departure Lounge - Port Aft" - }, -/obj/machinery/light/directional/west, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/item/kirbyplants{ - icon_state = "plant-04" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"qTR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white/corner{ - dir = 4 - }, -/area/station/medical/medbay/lobby) -"qTX" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/firealarm/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"qUm" = ( -/obj/effect/spawner/random/vending/snackvend, -/obj/machinery/light/directional/east, -/obj/machinery/light/directional/east, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/wood, -/area/station/security/office) -"qUz" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"qUE" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light/small/directional/east, -/obj/effect/spawner/random/structure/crate_loot, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"qUO" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/iron/stairs, -/area/station/hallway/secondary/entry) -"qUQ" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/space_hut) -"qVc" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"qVe" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=10-Aft-To-Central"; - location = "9.4-Escape-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, -/area/station/hallway/secondary/exit/departure_lounge) -"qVf" = ( -/obj/machinery/computer/security{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/dark_red/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/security/warden) -"qVi" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"qVt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/lounge) -"qVy" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"qWw" = ( -/obj/structure/closet/boxinggloves, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"qWF" = ( -/turf/closed/wall/r_wall, -/area/station/hallway/primary/fore) -"qWG" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"qWK" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chemistry Maintenance" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"qWR" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"qWX" = ( -/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/research) -"qXa" = ( -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"qXb" = ( -/obj/effect/spawner/random/structure/girder{ - spawn_loot_chance = 80 - }, -/obj/effect/spawner/random/structure/barricade{ - spawn_loot_chance = 50 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"qXh" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/treatment_center) -"qXj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"qXk" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"qXm" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/random/engineering/atmospherics_portable, -/turf/open/floor/plating, -/area/station/maintenance/port) -"qXw" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/mob/living/simple_animal/parrot/poly, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"qXB" = ( -/turf/closed/wall, -/area/station/maintenance/starboard/fore) -"qXF" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"qXL" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"qXU" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/duct, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"qXW" = ( -/obj/effect/spawner/random/structure/chair_maintenance{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"qYd" = ( -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/security/prison) -"qYg" = ( -/obj/machinery/door/airlock/hatch{ - name = "Telecomms Server Room" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, -/turf/open/floor/iron/dark, -/area/station/tcommsat/server) -"qYt" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"qYw" = ( -/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/white, -/area/station/science/research) -"qYY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/button/door/directional/east{ - id = "atmoshfr"; - name = "Radiation Shutters Control"; - req_access = list("atmospherics") - }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/atmospherics_engine) -"qZa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"qZg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"qZn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port) -"qZv" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/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" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"qZB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"qZD" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"qZI" = ( -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"qZO" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"qZV" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"rac" = ( -/turf/closed/wall, -/area/station/commons/lounge) -"rao" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"raz" = ( -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/station/solars/port/fore) -"raC" = ( -/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/sorting) -"raJ" = ( -/obj/machinery/computer/security/wooden_tv{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/structure/table/glass, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"raK" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"rbe" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/light/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, -/area/station/service/bar) -"rbi" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"rbs" = ( -/obj/structure/cable, -/obj/structure/table, -/obj/item/stack/medical/mesh, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/suture, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"rbw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/warden) -"rbH" = ( -/obj/machinery/door/airlock{ - name = "Port Emergency Storage" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port) -"rbI" = ( -/obj/machinery/vending/tool, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"rbL" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"rcq" = ( -/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) -"rcF" = ( -/obj/structure/table/wood, -/obj/item/storage/crayons, -/obj/item/toy/crayon/spraycan, -/obj/item/toy/crayon/spraycan{ - pixel_x = -4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/library) -"rcW" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/port) -"rdh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"rdv" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Pure to Ports" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"rdT" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/newscaster/directional/south, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/start/hangover, -/obj/machinery/button/door/directional/west{ - id = "Toilet1"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/obj/effect/spawner/random/trash/graffiti{ - pixel_x = -32; - spawn_loot_chance = 50 - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"rdU" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Engineering - Foyer - Shared Storage" - }, -/obj/structure/sign/poster/official/random/directional/west, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/storage_shared) -"rea" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 5 - }, -/turf/open/floor/engine, -/area/station/science/cytology) -"rec" = ( -/obj/docking_port/stationary{ - dwidth = 1; - height = 4; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/turf/open/space/basic, -/area/space) -"ret" = ( -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"rez" = ( -/obj/machinery/newscaster/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"reL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"reQ" = ( -/obj/structure/table, -/obj/item/pipe_dispenser{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/item/pipe_dispenser, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"reS" = ( -/obj/structure/table/wood/poker, -/obj/structure/cable, -/obj/effect/spawner/random/entertainment/deck, -/turf/open/floor/wood, -/area/station/commons/lounge) -"rfb" = ( -/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/lockers) -"rff" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"rft" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison/mess) -"rge" = ( -/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/tile/green/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"rgi" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"rgN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"rgS" = ( -/obj/machinery/modular_computer/console/preset/civilian{ - 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, -/area/station/science/robotics/lab) -"rgZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"rhc" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"rhe" = ( -/obj/structure/flora/bush/flowers_pp/style_random, -/obj/structure/flora/bush/stalky/style_random, -/obj/structure/flora/bush/fullgrass/style_random, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/grass, -/area/station/science/ordnance/office) -"rhn" = ( -/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/cargo/storage) -"rhx" = ( -/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, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"rhJ" = ( -/obj/docking_port/stationary/mining_home/common{ - dir = 2 - }, -/turf/open/floor/plating, -/area/station/hallway/primary/port) -"rhK" = ( -/obj/machinery/teleport/hub, -/turf/open/floor/plating, -/area/station/command/teleporter) -"rhL" = ( -/obj/machinery/computer/security/mining, -/obj/machinery/keycard_auth/directional/north, -/obj/item/radio/intercom/directional/north{ - pixel_y = 34 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"rhU" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"rid" = ( -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/iron, -/area/station/engineering/atmospherics_engine) -"riz" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Arrival Airlock" - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"riK" = ( -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating/airless, -/area/station/solars/port/fore) -"riL" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/turf/open/floor/wood, -/area/station/commons/lounge) -"riW" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/door/window/left/directional/north{ - name = "MuleBot Access"; - req_access = list("shipping") - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"riY" = ( -/obj/structure/cable, -/obj/machinery/button/door/directional/south{ - id = "armory"; - name = "Armory Shutters"; - req_access = list("armory") - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"riZ" = ( -/obj/effect/landmark/start/assistant, -/turf/open/floor/wood, -/area/station/commons/lounge) -"rjg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chapel_shutters_parlour"; - name = "Chapel Shutters"; - dir = 8 - }, -/turf/open/floor/plating, -/area/station/service/chapel/funeral) -"rjh" = ( -/obj/machinery/door/window/left/directional/north{ - dir = 8; - name = "Jetpack Storage"; - pixel_x = -1; - req_access = list("eva") - }, -/obj/structure/window/reinforced, -/obj/structure/rack, -/obj/item/tank/jetpack/carbondioxide{ - pixel_x = 4; - pixel_y = -1 - }, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/tank/jetpack/carbondioxide{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"rjA" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"rjB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"rjI" = ( -/obj/machinery/computer/upload/borg, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/left/directional/west{ - dir = 2; - layer = 3.1; - name = "Cyborg Upload Console Window"; - req_access = list("ai_upload") - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"rke" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"rkg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Aft Primary Hallway" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"rkA" = ( -/obj/structure/table, -/obj/item/cultivator, -/obj/item/hatchet, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/item/paper/guides/jobs/hydroponics, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/spawner/random/entertainment/coin, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"rkM" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"rkO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"rkQ" = ( -/obj/machinery/airalarm/directional/west, -/obj/structure/closet/secure_closet/security/med, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) -"rkT" = ( -/obj/item/target/syndicate, -/turf/open/floor/engine, -/area/station/science/explab) -"rla" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/airalarm/directional/south, -/obj/structure/cable, -/obj/structure/table/glass, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"rlg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"rlh" = ( -/obj/effect/spawner/random/structure/chair_maintenance, -/obj/item/toy/plush/pkplush{ - name = "Hug Emoji" - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"rlm" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"rlp" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"rls" = ( -/obj/structure/dresser, -/obj/machinery/newscaster/directional/north, -/obj/machinery/light/small/directional/north, -/turf/open/floor/wood, -/area/station/service/theater) -"rlu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/engineering/main) -"rlw" = ( -/obj/effect/turf_decal/trimline/blue/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/white, -/area/station/medical/office) -"rlA" = ( -/obj/machinery/chem_master, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"rlU" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/nuke_storage) -"rmn" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/warning/secure_area/directional/east{ - pixel_y = 32 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 6 - }, -/obj/effect/turf_decal/siding/yellow, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"rmF" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Law Office Maintenance" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/service/lawyer, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"rmO" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Chapel- Starboard" - }, -/turf/open/floor/iron/chapel{ - dir = 4 - }, -/area/station/service/chapel) -"rnc" = ( -/obj/structure/rack, -/obj/item/vending_refill/security, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/flashbangs{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"rne" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/door/airlock/medical/glass{ - name = "Paramedic Dispatch Room" - }, -/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/medical/general, -/turf/open/floor/iron/white, -/area/station/medical/office) -"rng" = ( -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"rnn" = ( -/obj/structure/chair/comfy{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/airalarm/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/landmark/start/scientist, -/turf/open/floor/iron, -/area/station/science/research) -"rnq" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposaloutlet{ - dir = 4; - name = "Cargo Deliveries" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 10 - }, -/obj/effect/turf_decal/siding/yellow, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"rnV" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"rnX" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"roa" = ( -/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/junction/flip{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"roj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/spawner/random/trash/caution_sign, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"rop" = ( -/obj/machinery/computer/department_orders/science{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/explab) -"roL" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"roX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/cargo/qm) -"rps" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/machinery/duct, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/surgery/theatre) -"rpx" = ( -/obj/machinery/suit_storage_unit/engine, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/engineering/main) -"rpz" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/security/range) -"rpA" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"rpD" = ( -/obj/machinery/space_heater/improvised_chem_heater, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"rpE" = ( -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port) -"rpG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible, -/obj/machinery/meter, -/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/ordnance/storage) -"rpR" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/surgery/aft) -"rrf" = ( -/obj/structure/bodycontainer/morgue{ - dir = 1 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Morgue"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"rrg" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosspace"; - name = "Space Shutters" - }, -/turf/open/floor/plating, -/area/station/command/heads_quarters/hos) -"rrh" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/iron, -/area/station/engineering/main) -"rrj" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/department/engine) -"rrt" = ( -/obj/structure/lattice, -/obj/effect/spawner/random/structure/grille, -/turf/open/space/basic, -/area/space/nearstation) -"rrL" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/left/directional/north{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #4"; - req_access = list("xenobiology") - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio4"; - name = "Xenobio Pen 4 Blast Door" - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"rrT" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"rrW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/white/line{ - dir = 6 - }, -/obj/machinery/light/directional/north, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/security/prison) -"rrZ" = ( -/obj/machinery/telecomms/processor/preset_one, -/obj/machinery/camera/directional/north{ - c_tag = "Telecomms - Server Room - Fore-Port"; - network = list("ss13","tcomms") - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"rsc" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/visit) -"rsi" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"rsk" = ( -/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 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/maintenance/department/engine) -"rsD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/science/lab) -"rsI" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"rtd" = ( -/obj/machinery/camera/motion/directional/east{ - c_tag = "E.V.A. Storage" - }, -/obj/machinery/requests_console/directional/east{ - department = "EVA"; - name = "EVA Requests Console" - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"rtj" = ( -/obj/machinery/igniter/incinerator_ordmix, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"rtn" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"rtG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"rtN" = ( -/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/white/side{ - dir = 1 - }, -/area/station/science/lobby) -"rtO" = ( -/obj/structure/cable, -/obj/machinery/light_switch/directional/north, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"rtP" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/effect/spawner/random/maintenance, -/obj/item/storage/belt/utility, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/storage_shared) -"rtQ" = ( -/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) -"rtS" = ( -/obj/machinery/door/morgue{ - name = "Relic Closet"; - req_access = list("chapel_office") - }, -/turf/open/floor/cult, -/area/station/service/chapel/office) -"rtX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/bed/roller, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"rtZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"ruc" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"rul" = ( -/obj/machinery/door/firedoor, -/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/sign/poster/official/random/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"rum" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/office) -"rup" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"rur" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/wood, -/area/station/service/library) -"rut" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=14.2-Central-CrewQuarters"; - location = "14-Starboard-Central" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"ruu" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"rux" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/firealarm/directional/west, -/obj/machinery/light_switch/directional/west{ - pixel_x = -38 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/engineering/main) -"ruz" = ( -/obj/structure/chair/stool/directional/north, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"ruP" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ruX" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Cleaning Closet" - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"rvj" = ( -/obj/structure/chair/stool/directional/south, -/obj/machinery/light/small/directional/west, -/obj/machinery/computer/pod/old/mass_driver_controller/trash{ - pixel_x = -24 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"rvx" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"rvE" = ( -/turf/closed/wall, -/area/station/medical/pharmacy) -"rvI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/random/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"rvK" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "Test Chamber Blast Door" - }, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/door/window/left/directional/south{ - dir = 4; - name = "Maximum Security Test Chamber"; - req_access = list("xenobiology") - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"rvL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"rvY" = ( -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"rwd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"rwi" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"rwn" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/multitool, -/obj/item/clothing/glasses/meson, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"rwx" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/window/left/directional/north{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #3"; - req_access = list("xenobiology") - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "Xenobio Pen 3 Blast Door" - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"rwE" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/effect/spawner/random/bureaucracy/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"rwK" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/cargo/qm) -"rwT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"rxa" = ( -/obj/machinery/door/poddoor/preopen{ - id = "medsecprivacy"; - name = "Privacy Shutter" - }, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor/left/directional/north{ - req_access = list("brig_entrance"); - name = "Orderly Office's Desk" - }, -/turf/open/floor/plating, -/area/station/security/checkpoint/medical) -"rxc" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/commons/locker) -"rxx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) -"rxz" = ( -/obj/structure/closet/crate/coffin, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/service/chapel/funeral) -"rxA" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"rxG" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"rxH" = ( -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/station/solars/starboard/aft) -"rxP" = ( -/obj/structure/cable, -/obj/machinery/computer/shuttle/mining/common, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/station/security/checkpoint/customs) -"rxR" = ( -/obj/machinery/duct, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"rxY" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"rxZ" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"ryf" = ( -/obj/structure/bookcase/random/reference, -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"rym" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "evashutter"; - name = "E.V.A. Storage Shutter Control"; - req_access = list("command") - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"ryo" = ( -/obj/effect/turf_decal/siding/white, -/obj/effect/turf_decal/trimline/brown/warning, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/medbay/lobby) -"ryp" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/airalarm/directional/east, -/obj/item/stock_parts/cell/high, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"ryv" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/spawner/random/medical/patient_stretcher, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/medical/abandoned) -"ryB" = ( -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"ryJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) -"ryL" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/security/prison/visit) -"ryQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"rza" = ( -/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/interrogation) -"rzq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"rzr" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/t_scanner, -/obj/item/multitool, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"rzx" = ( -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"rzz" = ( -/obj/structure/sign/warning/cold_temp, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"rzB" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"rzJ" = ( -/obj/effect/landmark/start/lawyer, -/turf/open/floor/iron, -/area/station/security/courtroom) -"rzM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"rzO" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"rzT" = ( -/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/pumproom) -"rAa" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port) -"rAg" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/commons/storage/art) -"rAj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdrnd"; - name = "Research and Development Shutters"; - dir = 4 - }, -/turf/open/floor/plating, -/area/station/science/lab) -"rAo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/service/janitor) -"rAp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"rAA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"rAF" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/smartfridge/organ, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "main_surgery"; - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/treatment_center) -"rAG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"rAW" = ( -/turf/closed/wall, -/area/station/security/prison/work) -"rBe" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/stack/cable_coil, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/item/stock_parts/cell/emproof{ - pixel_x = -4; - pixel_y = 6 - }, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/engineering/main) -"rBi" = ( -/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/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"rBs" = ( -/obj/structure/table, -/obj/effect/spawner/random/food_or_drink/donkpockets, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/science/research) -"rBU" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"rCn" = ( -/obj/item/mmi, -/obj/structure/rack, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"rCo" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"rCJ" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Departure Lounge - Starboard Aft" - }, -/obj/machinery/light/directional/east, -/obj/item/radio/intercom/directional/east, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"rCQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"rDd" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/rack, -/obj/item/wrench, -/obj/item/crowbar/red, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"rDf" = ( -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"rDh" = ( -/obj/effect/landmark/event_spawn, -/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, -/area/station/hallway/primary/aft) -"rDm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"rDr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"rDB" = ( -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"rDE" = ( -/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/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/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/range) -"rDJ" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"rDT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"rEd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"rEg" = ( -/obj/machinery/door/window{ - dir = 1; - name = "Captain's Bedroom"; - req_access = list("captain") - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"rEj" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/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/commons/toilet/auxiliary) -"rEr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Auxiliary Tool Storage" - }, -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/navigate_destination, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"rEy" = ( -/obj/machinery/light/directional/west, -/obj/machinery/recharge_station, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"rEz" = ( -/obj/machinery/light/directional/east, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"rEO" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"rES" = ( -/turf/closed/wall/r_wall, -/area/station/security/office) -"rFB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/library) -"rFF" = ( -/obj/machinery/mineral/equipment_vendor, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"rFR" = ( -/obj/effect/turf_decal/trimline/red/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/security/office) -"rGb" = ( -/obj/machinery/washing_machine, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison) -"rGd" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"rGe" = ( -/obj/structure/disposalpipe/segment{ - 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, -/area/station/security/prison) -"rGj" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hop) -"rGm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "evashutter"; - name = "E.V.A. Storage Shutter" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"rGB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/blue/filled/warning, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"rGC" = ( -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"rGE" = ( -/obj/machinery/computer/operating, -/obj/machinery/camera/directional/west{ - c_tag = "Medbay Primary Surgery"; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"rGG" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "MiniSat Exterior - Fore Port"; - network = list("minisat") - }, -/obj/structure/window/reinforced, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"rGK" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"rHh" = ( -/obj/structure/cable, -/obj/structure/closet/secure_closet/security/science, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) -"rHk" = ( -/obj/structure/table/glass, -/obj/item/folder/blue{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/folder/white, -/obj/item/pen, -/obj/item/stamp/cmo, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"rHn" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"rHp" = ( -/obj/structure/table, -/obj/item/paicard, -/turf/open/floor/iron, -/area/station/commons/locker) -"rHr" = ( -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"rHv" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/showcase/machinery/oldpod{ - desc = "An old NT branded sleeper, decommissioned after the lead acetate incident. None of the functional machinery remains inside."; - name = "decommissioned sleeper" - }, -/obj/effect/decal/cleanable/greenglow, -/obj/effect/spawner/random/decoration/glowstick, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"rHz" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"rHE" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/toy/figure/scientist, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/science/lab) -"rHH" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 13 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"rHO" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"rHR" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"rHZ" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 8; - name = "Waste Release" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"rIa" = ( -/obj/machinery/photocopier{ - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/station/service/library) -"rIh" = ( -/obj/machinery/light/directional/east, -/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, -/area/station/hallway/primary/central) -"rIk" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/theater) -"rIB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"rIG" = ( -/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) -"rIL" = ( -/obj/structure/tank_dispenser/oxygen{ - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"rIP" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"rIZ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"rJb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"rJc" = ( -/obj/effect/turf_decal/delivery/red, -/obj/structure/rack/gunrack, -/obj/effect/spawner/armory_spawn/cmg, -/turf/open/floor/iron/smooth, -/area/station/ai_monitored/security/armory) -"rJh" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchen_counter"; - name = "Kitchen Counter Shutters"; - dir = 1 - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/service/kitchen) -"rJk" = ( -/obj/machinery/door/airlock{ - name = "Theater Backstage" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/service/theatre, -/turf/open/floor/wood, -/area/station/maintenance/starboard/greater) -"rJq" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/structure/sign/poster/official/safety_eye_protection{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"rJr" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Head of Personnel's Office" - }, -/obj/structure/table/wood, -/obj/item/storage/box/pdas{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/silver_ids, -/obj/item/storage/box/ids, -/obj/machinery/light/directional/south, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"rJz" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/central) -"rJA" = ( -/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/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/research) -"rJI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"rJS" = ( -/obj/machinery/door/airlock/external, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "aux-dock-external" - }, -/turf/open/floor/plating, -/area/station/maintenance/port) -"rKc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"rKf" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"rKg" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/pen{ - pixel_x = -2; - pixel_y = 5 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"rKB" = ( -/obj/machinery/airalarm/directional/east, -/turf/open/floor/engine, -/area/station/science/explab) -"rKG" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/virology/glass{ - name = "Virology Lab" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/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/effect/mapping_helpers/airlock/access/all/medical/virology, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"rKI" = ( -/obj/item/radio/intercom/directional/north, -/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 = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"rKJ" = ( -/obj/machinery/teleport/station, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plating, -/area/station/command/teleporter) -"rKQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/medical/virology) -"rKS" = ( -/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/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"rKZ" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig) -"rLm" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/firealarm/directional/west, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/wood, -/area/station/service/library) -"rLr" = ( -/obj/structure/rack, -/obj/item/poster/random_contraband, -/obj/effect/spawner/random/maintenance, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/maintenance/port) -"rLu" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/power/port_gen/pacman/pre_loaded, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"rLv" = ( -/turf/open/floor/plating/foam{ - initial_gas_mix = "TEMP=2.7" - }, -/area/space/nearstation) -"rLy" = ( -/obj/machinery/status_display/ai/directional/north, -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"rLN" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Supermatter Chamber"; - network = list("engine") - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"rMl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"rMp" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"rMr" = ( -/obj/structure/table/glass, -/obj/item/experi_scanner{ - pixel_x = -4 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"rMu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/space_heater, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"rMz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"rMA" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"rMI" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/station/service/library) -"rMZ" = ( -/obj/structure/table, -/obj/item/folder/blue{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/office) -"rNf" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"rNs" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"rNI" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/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/fore) -"rNJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/locker) -"rNP" = ( -/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/fore) -"rNV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"rOz" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"rOF" = ( -/turf/closed/wall, -/area/station/medical/psychology) -"rOK" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden, -/turf/open/floor/plating, -/area/station/maintenance/department/engine) -"rOM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/machinery/light_switch/directional/south, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/service/bar) -"rOP" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"rOY" = ( -/obj/structure/mirror/directional/east, -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"rPc" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/medical/abandoned) -"rPe" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/main) -"rPg" = ( -/obj/effect/spawner/random/entertainment/arcade, -/obj/machinery/camera/directional/north{ - c_tag = "Bar - Starboard" - }, -/turf/open/floor/wood, -/area/station/commons/lounge) -"rPh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Network Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/command/ai_upload, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) -"rPF" = ( -/obj/machinery/shower{ - name = "emergency shower"; - pixel_y = 16 - }, -/obj/effect/turf_decal/trimline/blue/end, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"rPO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"rQd" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"rQw" = ( -/turf/open/floor/plating/airless, -/area/station/solars/starboard/fore) -"rQL" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"rQS" = ( -/obj/structure/table, -/obj/item/storage/box/evidence{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/item/hand_labeler{ - pixel_x = -8; - pixel_y = 10 - }, -/obj/item/storage/box/evidence{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/item/storage/box/evidence{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/item/storage/box/prisoner{ - pixel_x = 9 - }, -/obj/machinery/recharger{ - pixel_x = -5; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"rQX" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/surgery/aft) -"rQZ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison) -"rRf" = ( -/obj/structure/rack, -/obj/item/grenade/barrier{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/grenade/barrier, -/obj/item/grenade/barrier{ - pixel_x = 3; - pixel_y = -1 - }, -/obj/item/grenade/barrier{ - pixel_x = 6; - pixel_y = -2 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"rRB" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"rRZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chapel_shutters_space"; - name = "Chapel Shutters" - }, -/turf/open/floor/plating, -/area/station/service/chapel) -"rSa" = ( -/obj/effect/decal/cleanable/blood/tracks{ - dir = 4 - }, -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"rSb" = ( -/obj/machinery/computer/security/telescreen/entertainment/directional/south, -/obj/machinery/suit_storage_unit/ce, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"rSi" = ( -/obj/effect/landmark/start/chief_engineer, -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"rSk" = ( -/obj/structure/sign/painting/library{ - pixel_y = -32 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/service/library) -"rSm" = ( -/obj/machinery/light/directional/east, -/obj/structure/sign/departments/science/directional/east, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"rSp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/light/small/directional/west, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 2; - sortType = 28 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/science/research) -"rSx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/library) -"rSQ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/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, -/turf/open/floor/grass, -/area/station/science/research) -"rTg" = ( -/obj/structure/table, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/micro_laser/high, -/obj/item/stock_parts/micro_laser/high, -/obj/item/stock_parts/micro_laser/high, -/obj/item/stock_parts/micro_laser/high, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) -"rTi" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #3"; - dir = 6; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"rTw" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/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, -/area/station/security/brig) -"rTz" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/button/curtain{ - id = "barbershopcurtains1"; - pixel_x = -25; - pixel_y = 24 - }, -/turf/open/floor/iron, -/area/service/salon) -"rTF" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Surgery C Maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"rTL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Funeral Parlour" - }, -/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/service/chapel_office, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"rTQ" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"rTV" = ( -/obj/machinery/firealarm/directional/west, -/obj/structure/table, -/obj/item/folder, -/obj/item/storage/medkit/regular, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"rUo" = ( -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/button/door/directional/west{ - id = "Cabin7"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"rUE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/medical/virology) -"rUG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/disposal/delivery_chute{ - dir = 4; - name = "Prisoner Transfer" - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/plasticflaps/opaque{ - name = "Prisoner Transfer" - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"rUL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sign/poster/official/soft_cap_pop_art{ - pixel_y = 32 - }, -/obj/effect/landmark/start/paramedic, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"rUO" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"rUP" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"rUT" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Aft Starboard Solar Maintenance" - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/chair/stool/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"rUU" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"rVn" = ( -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"rVB" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"rVC" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"rVG" = ( -/obj/machinery/door/window/left/directional/east{ - dir = 8; - name = "Service Deliveries"; - req_access = list("service") - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"rVJ" = ( -/obj/machinery/light/floor, -/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, -/area/station/engineering/atmos) -"rVK" = ( -/obj/effect/turf_decal/trimline/brown/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, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"rVO" = ( -/obj/structure/window/reinforced, -/obj/machinery/flasher/directional/north{ - id = "AI" - }, -/obj/effect/spawner/random/aimodule/harmful, -/obj/structure/table/wood/fancy/red, -/obj/machinery/door/window/brigdoor/left/directional/south{ - dir = 8; - name = "High-Risk Modules"; - req_access = list("captain") - }, -/obj/item/ai_module/reset/purge{ - pixel_y = 11 - }, -/turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) -"rVY" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port) -"rVZ" = ( -/obj/structure/cable, -/turf/open/floor/grass, -/area/station/medical/virology) -"rWi" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"rWH" = ( -/obj/machinery/door/window{ - name = "HoP's Desk"; - req_access = list("hop") - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"rWL" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/research) -"rWX" = ( -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/access/all/science/ordnance, -/turf/open/floor/plating, -/area/station/science/ordnance/testlab) -"rXB" = ( -/obj/structure/table, -/obj/item/flashlight/lamp, -/obj/structure/reagent_dispensers/wall/peppertank/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"rXF" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/wood, -/area/station/commons/lounge) -"rXJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/stool/directional/east, -/obj/effect/turf_decal/trimline/red/warning{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison/visit) -"rXX" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"rYc" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"rYd" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"rYm" = ( -/obj/machinery/light/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"rYn" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"rYo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Fore Primary Hallway" - }, -/obj/effect/turf_decal/tile/red, -/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/fore) -"rYy" = ( -/obj/machinery/power/smes, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"rYA" = ( -/obj/machinery/porta_turret/ai, -/obj/machinery/flasher/directional/north{ - id = "AI" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"rYH" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hazardvest, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"rYK" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"rYN" = ( -/obj/item/radio/intercom/directional/west, -/obj/structure/table/glass, -/obj/machinery/camera/directional/west{ - c_tag = "Pharmacy"; - network = list("ss13","medbay") - }, -/obj/machinery/light/directional/west, -/obj/item/book/manual/wiki/chemistry{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/book/manual/wiki/grenades, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"rYR" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/syringe, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"rYS" = ( -/obj/structure/sign/poster/official/get_your_legs{ - pixel_y = 32 - }, -/obj/structure/chair/sofa/right, -/obj/item/toy/plush/moth{ - name = "Mender Moff" - }, -/turf/open/floor/carpet, -/area/station/medical/psychology) -"rZt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 8 - }, -/obj/machinery/meter, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"rZy" = ( -/obj/machinery/camera/directional/east{ - c_tag = "AI Chamber - Starboard"; - network = list("aicore") - }, -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"rZA" = ( -/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 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"rZH" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/machinery/computer/cargo/request{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"rZT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"rZY" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage" - }, -/obj/machinery/duct, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"saa" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"sab" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"sac" = ( -/obj/structure/closet/secure_closet/research_director, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"saf" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Research Division Server 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/science/rd, -/turf/open/floor/iron/dark, -/area/station/science/server) -"sah" = ( -/obj/structure/railing/corner, -/turf/open/floor/iron/dark/corner, -/area/station/hallway/secondary/entry) -"sai" = ( -/obj/machinery/door/airlock/mining{ - name = "Cargo Bay" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/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/supply/general, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"saB" = ( -/obj/machinery/button/door/directional/west{ - id = "atmoshfr"; - name = "Radiation Shutters Control"; - req_access = list("atmospherics") - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"saN" = ( -/obj/structure/bookcase/random/religion, -/turf/open/floor/wood, -/area/station/service/library) -"saU" = ( -/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/central) -"sbf" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"sbl" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"sbp" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/iron, -/area/station/security/brig) -"sbK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/turf/open/floor/plating, -/area/station/science/server) -"sbL" = ( -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 4 - }, -/mob/living/simple_animal/bot/medbot/autopatrol, -/turf/open/floor/iron/white/corner{ - dir = 8 - }, -/area/station/medical/medbay/lobby) -"sbX" = ( -/obj/machinery/hydroponics/soil, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/item/plant_analyzer, -/turf/open/floor/grass, -/area/station/security/prison/garden) -"scb" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/spawner/random/trash/box, -/obj/effect/spawner/random/maintenance/two, -/obj/structure/sign/poster/contraband/lizard{ - pixel_x = -32 - }, -/obj/item/toy/plush/lizard_plushie/green{ - name = "Tends-the-Wounds" - }, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"scg" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/service/salon) -"sch" = ( -/turf/closed/wall, -/area/station/security/medical) -"sck" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/mecha_part_fabricator{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"scy" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/light_switch/directional/east, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"scB" = ( -/obj/structure/chair/office/light, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"scG" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/engineering/atmospherics_portable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"scL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"scY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"sdb" = ( -/turf/open/floor/plating, -/area/station/science/ordnance/testlab) -"sdf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Bar" - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/turf/open/floor/iron, -/area/station/commons/lounge) -"sdn" = ( -/obj/item/target, -/obj/structure/training_machine, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"sdp" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/command/gateway) -"sds" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/vending/wardrobe/science_wardrobe, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/research) -"sdu" = ( -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hos) -"sdC" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/structure/easel, -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/twentythree_nineteen, -/obj/item/canvas/twentythree_twentythree, -/turf/open/floor/wood, -/area/station/service/library) -"sdE" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmospherics_engine) -"sdL" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/machinery/camera/directional/east{ - c_tag = "Medbay Main Hallway- CMO"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"see" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/department/engine) -"sej" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/obj/machinery/duct, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"sew" = ( -/obj/structure/chair/stool/directional/east, -/obj/effect/landmark/start/assistant, -/turf/open/floor/wood, -/area/station/commons/lounge) -"seN" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall/r_wall, -/area/station/hallway/primary/aft) -"sfl" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/bodycontainer/morgue{ - dir = 2 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"sfn" = ( -/obj/effect/spawner/random/structure/grille, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"sfu" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/hidden, -/turf/open/floor/iron/stairs/left{ - dir = 8 - }, -/area/station/engineering/atmospherics_engine) -"sfz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"sfA" = ( -/turf/open/floor/carpet, -/area/station/medical/psychology) -"sfD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 6 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/duct, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"sfF" = ( -/obj/machinery/duct, -/obj/effect/turf_decal/trimline/blue/filled/end, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"sfG" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"sfO" = ( -/obj/structure/rack{ - icon = 'icons/obj/stationobjs.dmi'; - icon_state = "minibar"; - name = "skeletal minibar" - }, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/engine/cult, -/area/station/service/library) -"sgc" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"sgk" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - 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/science/xenobiology) -"sgv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"sgB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/research) -"sgH" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"sgS" = ( -/obj/machinery/light/directional/west, -/obj/structure/extinguisher_cabinet/directional/west, -/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) -"shg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"shs" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/effect/landmark/start/head_of_security, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hos) -"shx" = ( -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/trimline/brown/filled/line, -/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/cargo/miningoffice) -"shK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"shO" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rndlab2"; - name = "Secondary Research and Development Shutter"; - dir = 8 - }, -/obj/machinery/door/window/left/directional/south{ - dir = 4; - name = "Research Lab Desk"; - req_access = list("science") - }, -/obj/item/folder{ - pixel_x = -6 - }, -/obj/item/pen{ - pixel_x = -7 - }, -/obj/structure/desk_bell{ - pixel_x = 6 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"shV" = ( -/obj/effect/turf_decal/stripes/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, -/area/station/engineering/main) -"shY" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"sie" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"sip" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"siz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"siA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/obj/structure/reagent_dispensers/plumbed{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"siL" = ( -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/central) -"siY" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"sja" = ( -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/duct, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"sjx" = ( -/obj/structure/cable, -/obj/item/kirbyplants/random, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"sjM" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hos) -"sjP" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison/safe) -"skt" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"sku" = ( -/obj/structure/table, -/obj/structure/window, -/obj/item/reagent_containers/food/condiment/saltshaker{ - layer = 3.1; - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; - pixel_x = -8; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_x = 9; - pixel_y = 3 - }, -/obj/item/book/manual/chef_recipes, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"skx" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"sky" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/science/lab) -"slc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/vehicle/ridden/janicart, -/obj/item/key/janitor, -/turf/open/floor/iron, -/area/station/service/janitor) -"sli" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/effect/landmark/start/orderly, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) -"sly" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"slC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/pharmacy) -"slD" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"slI" = ( -/obj/effect/turf_decal/tile/red/fourcorners, -/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/prison/safe) -"smg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/effect/mapping_helpers/airlock/locked, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"smt" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"smG" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"smK" = ( -/obj/machinery/light/directional/east, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/paper_bin{ - pixel_x = -11; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = -11; - pixel_y = 7 - }, -/obj/item/hand_labeler{ - pixel_x = -10; - pixel_y = -6 - }, -/obj/effect/turf_decal/trimline/dark_red/filled/line{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching Prison Wing holding areas."; - dir = 8; - name = "Prison Monitor"; - network = list("prison"); - pixel_x = 30 - }, -/turf/open/floor/iron, -/area/station/security/warden) -"smZ" = ( -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"snb" = ( -/obj/structure/table/optable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"snu" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/machinery/door/window{ - base_state = "right"; - icon_state = "right"; - name = "Captain's Desk"; - req_access = list("captain") - }, -/obj/structure/disposalpipe/segment, -/obj/item/stamp/captain, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"snz" = ( -/obj/structure/table, -/obj/item/folder/red{ - pixel_x = 3 - }, -/obj/item/folder/white{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/restraints/handcuffs, -/obj/machinery/light/directional/east, -/obj/item/radio/off, -/obj/machinery/requests_console/directional/east{ - department = "Security"; - departmentType = 5; - name = "Security Requests Console" - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"snB" = ( -/obj/effect/turf_decal/stripes/line{ - 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, -/area/station/engineering/gravity_generator) -"snE" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/testlab) -"snS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"snZ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/bot_white, -/obj/machinery/smartfridge/petri/preloaded, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"soa" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/plating, -/area/station/commons/toilet/auxiliary) -"soi" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/command/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/central) -"sok" = ( -/obj/item/storage/box, -/turf/open/floor/plating, -/area/station/maintenance/port) -"sou" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Departure Lounge Airlock" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"sox" = ( -/obj/structure/table, -/obj/item/training_toolbox, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"soU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"soV" = ( -/obj/structure/sign/warning/vacuum/external/directional/north, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"soW" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/security_all, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"spd" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"sph" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/color_adapter, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"spH" = ( -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"spV" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/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, -/turf/open/floor/grass, -/area/station/science/research) -"sqb" = ( -/obj/structure/rack, -/obj/item/reagent_containers/glass/bottle/ethanol{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/carbon{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/chlorine{ - pixel_x = 1 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark/textured_edge{ - dir = 8 - }, -/area/station/medical/medbay/central) -"sqz" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"sqE" = ( -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/ce) -"sqH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"sqJ" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"sqM" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"sqT" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"src" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/service/library) -"srf" = ( -/obj/effect/spawner/random/structure/crate_empty, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"sri" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/holofloor/dark, -/area/station/science/cytology) -"srk" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall, -/area/station/maintenance/port/fore) -"srp" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/central) -"srx" = ( -/obj/machinery/light/no_nightlight/directional/east, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/pumproom) -"srC" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/common/cryopods) -"srK" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"srP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"srR" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8; - initialize_directions = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"srU" = ( -/obj/item/radio/intercom/prison/directional/north, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"ssi" = ( -/obj/item/storage/book/bible, -/obj/machinery/light/small/directional/north, -/obj/machinery/newscaster/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Chapel - Fore" - }, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"ssk" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/book/manual/wiki/engineering_guide{ - pixel_x = -2 - }, -/obj/item/trash/can{ - pixel_x = -8 - }, -/obj/machinery/firealarm/directional/south, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"ssr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Interrogation Monitoring" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/grimy, -/area/station/security/office) -"sst" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"ssw" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"ssI" = ( -/obj/machinery/power/emitter, -/turf/open/floor/plating, -/area/station/engineering/main) -"ssJ" = ( -/obj/effect/spawner/random/engineering/atmospherics_portable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"stk" = ( -/obj/machinery/light/directional/west, -/obj/machinery/light_switch/directional/west, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"stl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"stq" = ( -/obj/machinery/firealarm/directional/north, -/obj/machinery/light/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Chemistry North"; - network = list("ss13","medbay") - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"stw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"stC" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"stD" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Primary Treatment Centre" - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"stH" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/darkblue/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"stI" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/table, -/obj/item/binoculars, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"stL" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/bureaucracy/folder{ - spawn_random_offset = 1 - }, -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) -"suj" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Atmos to Loop" - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"suz" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/surgery, -/obj/structure/light_construct/directional/west, -/obj/item/storage/fancy/cigarettes/cigpack_uplift, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"suD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison) -"suE" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"suO" = ( -/obj/structure/table, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -8 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -8 - }, -/obj/item/clothing/mask/breath{ - pixel_x = 4 - }, -/obj/item/clothing/mask/breath{ - pixel_x = 4 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/sign/warning/vacuum/external/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"suP" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/components/unary/passive_vent/layer2{ - dir = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"suS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/prison) -"suW" = ( -/turf/open/floor/iron/white, -/area/station/science/lobby) -"sve" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"svj" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/atmos) -"svk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, -/obj/effect/landmark/start/scientist, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/explab) -"svo" = ( -/obj/effect/spawner/random/structure/chair_maintenance{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/engine) -"svQ" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/structure/cable, -/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, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"svS" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/aft/lesser) -"svW" = ( -/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, -/area/station/hallway/secondary/entry) -"swe" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "perma-entrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron, -/area/station/security/brig) -"swu" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"swy" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"swR" = ( -/obj/machinery/door/airlock{ - name = "Cleaning Closet" - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/prison/safe) -"swV" = ( -/obj/effect/turf_decal/trimline/purple/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"sxd" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/sign/poster/official/random/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"sxf" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/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/white, -/area/station/medical/treatment_center) -"sxg" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/iron/white/side, -/area/station/science/lobby) -"sxn" = ( -/obj/machinery/power/port_gen/pacman/pre_loaded, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"sxo" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"sxB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/white, -/area/station/science/lab) -"sxR" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/wooden_tv, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"sye" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/chemistry) -"syh" = ( -/obj/machinery/door/poddoor/shutters{ - id = "maintwarehouse" - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/aft) -"syo" = ( -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/captain/private) -"syr" = ( -/obj/structure/table, -/obj/item/electronics/apc, -/obj/item/electronics/airlock, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"syC" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/trimline/purple/corner, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Science Hallway - West"; - network = list("ss13","rd") - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"syG" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "gateshutter"; - name = "Gateway Shutter Control"; - req_access = list("command") - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"syK" = ( -/obj/structure/cable, -/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, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/security/brig) -"syL" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters" - }, -/obj/structure/disposalpipe/segment, -/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/command/captain, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"syO" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"syT" = ( -/obj/structure/cable, -/obj/structure/chair/office/light, -/obj/effect/landmark/start/virologist, -/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/medical/virology) -"syV" = ( -/obj/effect/turf_decal/arrows/white{ - color = "#0000FF"; - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"syX" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Engineering Supermatter Fore"; - network = list("ss13","engine") - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"szk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "briglockdown"; - name = "Brig Shutters" - }, -/turf/open/floor/plating, -/area/station/security/warden) -"szp" = ( -/turf/closed/wall, -/area/station/commons/fitness/recreation) -"szJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/janitor, -/turf/open/floor/iron, -/area/station/service/janitor) -"szO" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hos) -"sAn" = ( -/obj/machinery/telecomms/server/presets/engineering, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"sAs" = ( -/obj/machinery/light/directional/west, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"sAz" = ( -/obj/machinery/computer/monitor{ - name = "Bridge Power Monitoring Console" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"sAE" = ( -/obj/effect/spawner/random/structure/crate_empty, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"sAF" = ( -/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, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"sAX" = ( -/obj/machinery/status_display/evac/directional, -/turf/closed/wall, -/area/station/hallway/secondary/entry) -"sBa" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/bedsheet/dorms, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/button/door/directional/east{ - id = "Cabin3"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"sBd" = ( -/obj/structure/lattice, -/obj/item/stack/cable_coil, -/turf/open/space/basic, -/area/space/nearstation) -"sBL" = ( -/obj/structure/chair/stool/directional/west, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"sBP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/holding_cell) -"sBS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/research) -"sBV" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"sCh" = ( -/obj/structure/table/glass, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/paper_bin{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/pen{ - pixel_x = -5; - pixel_y = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"sCi" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"sCk" = ( -/obj/machinery/light/small/directional/south, -/obj/item/radio/intercom/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/grimy, -/area/station/security/detectives_office) -"sCl" = ( -/obj/structure/lattice/catwalk, -/obj/structure/chair/stool/bar/directional/south, -/obj/item/storage/crayons, -/turf/open/space/basic, -/area/space/nearstation) -"sCp" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/station/engineering/atmospherics_engine) -"sCv" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/left/directional/north{ - dir = 8; - name = "Containment Pen #5"; - req_access = list("xenobiology") - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio5"; - name = "Xenobio Pen 5 Blast Door" - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"sCz" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"sCM" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/item/assembly/prox_sensor{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/assembly/signaler{ - pixel_x = -2; - pixel_y = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"sCN" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"sCW" = ( -/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, -/area/station/engineering/atmos) -"sCY" = ( -/obj/structure/table, -/obj/structure/sign/departments/medbay/directional/north, -/obj/item/reagent_containers/glass/beaker/large, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"sCZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"sDj" = ( -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/service/salon) -"sDk" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"sDs" = ( -/obj/structure/cable, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=13.2-Tcommstore"; - location = "13.1-Engineering-Enter" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"sDt" = ( -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"sDw" = ( -/obj/structure/rack, -/obj/item/storage/barricade{ - pixel_y = -5 - }, -/obj/item/storage/barricade, -/obj/item/storage/barricade{ - pixel_y = 5 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"sDC" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/engineering/atmos/storage/gas) -"sDG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/landmark/navigate_destination, -/obj/effect/mapping_helpers/airlock/access/any/command/hop, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"sDS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "briglockdown"; - name = "Brig Shutters" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/warden) -"sEh" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/light/small/directional/south, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"sEk" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/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, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"sEn" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"sEE" = ( -/obj/item/storage/fancy/candle_box{ - pixel_y = 5 - }, -/obj/structure/table/wood, -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"sEH" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/item/tank/internals/oxygen, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"sEI" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"sEZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/white/line, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"sFw" = ( -/turf/open/floor/iron/chapel, -/area/station/service/chapel) -"sGa" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"sGh" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"sGn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"sGw" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"sGA" = ( -/obj/machinery/door/airlock/maintenance, -/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/aft/greater) -"sGC" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"sGL" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"sHg" = ( -/obj/item/radio/intercom/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Locker Room Port" - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/commons/locker) -"sHt" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/security/interrogation) -"sHu" = ( -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"sHM" = ( -/obj/effect/turf_decal/bot/right, -/turf/open/floor/engine, -/area/station/engineering/atmospherics_engine) -"sHP" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"sHT" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/engineering/main) -"sIb" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/item/radio/off{ - pixel_x = -11; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"sIe" = ( -/turf/closed/wall/r_wall, -/area/station/security/execution/transfer) -"sIs" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"sID" = ( -/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/aft) -"sIO" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"sIQ" = ( -/obj/item/radio/intercom/directional/west, -/obj/machinery/piratepad/civilian, -/obj/effect/turf_decal/bot_white, -/obj/machinery/camera/directional/west{ - c_tag = "Central Primary Hallway - Fore - Port Corner" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"sIW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/science/explab) -"sIX" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible/layer2{ - dir = 9 - }, -/obj/effect/turf_decal/siding/purple, -/obj/machinery/newscaster/directional/south, -/obj/machinery/door/window/right/directional/east{ - name = "Ordnance Freezer Chamber Access"; - req_access = list("ordnance") - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"sJg" = ( -/obj/machinery/computer/cargo{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/button/door/directional/west{ - id = "QMLoaddoor"; - layer = 4; - name = "Loading Doors"; - pixel_y = -8; - req_access = list("cargo") - }, -/obj/machinery/button/door/directional/west{ - id = "QMLoaddoor2"; - layer = 4; - name = "Loading Doors"; - pixel_y = 8; - req_access = list("cargo") - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"sJL" = ( -/obj/item/crowbar, -/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) -"sKf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/holofloor/dark, -/area/station/science/cytology) -"sKj" = ( -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 4; - name = "Cargo Deliveries" - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/siding/red{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"sKt" = ( -/obj/machinery/smartfridge/chemistry/preloaded, -/turf/closed/wall, -/area/station/medical/pharmacy) -"sKy" = ( -/obj/machinery/holopad, -/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/storage/tools) -"sKJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"sKK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/holopad, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/secondary/entry) -"sKY" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"sLd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"sLp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"sLD" = ( -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"sLE" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/hallway/primary/central) -"sLN" = ( -/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 - }, -/obj/machinery/door/window{ - atom_integrity = 300; - base_state = "leftsecure"; - dir = 8; - icon_state = "leftsecure"; - layer = 4.1; - name = "Tertiary AI Core Access"; - pixel_x = -3; - req_access = list("ai_upload") - }, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) -"sMe" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"sMl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"sMu" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron, -/area/station/security/brig) -"sMD" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"sMQ" = ( -/obj/structure/sign/warning/secure_area/directional/north, -/obj/structure/closet/radiation, -/obj/effect/turf_decal/delivery, -/obj/item/clothing/glasses/meson/engine, -/turf/open/floor/iron, -/area/station/engineering/main) -"sMS" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"sNi" = ( -/turf/open/floor/wood, -/area/station/service/theater) -"sNl" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L1" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"sNn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/purple/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/kirbyplants/random, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"sNt" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"sNw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Air to External Air Ports" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/light_switch/directional/north, -/obj/machinery/light/no_nightlight/directional/north, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos) -"sNx" = ( -/obj/machinery/telecomms/receiver/preset_left, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/station/tcommsat/server) -"sNB" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"sNJ" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=14.3-Lockers-Dorms"; - location = "14.2-Central-CrewQuarters" - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/commons/locker) -"sNK" = ( -/obj/effect/turf_decal/stripes/line, -/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) -"sNM" = ( -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port) -"sNS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"sOd" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/obj/structure/sign/warning/secure_area/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"sOi" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/hand_labeler, -/obj/item/camera/detective, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"sOn" = ( -/obj/effect/turf_decal/trimline/blue/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{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"sOF" = ( -/obj/structure/light_construct/directional/east, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"sOM" = ( -/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, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"sOP" = ( -/obj/structure/rack, -/obj/item/toy/plush/lizard_plushie/green{ - name = "Given-As-Compensation" - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"sOS" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"sOT" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"sPj" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Security's Office" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/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/siding/wood/corner{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/hos, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hos) -"sPB" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/light/directional/north, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/white, -/area/station/science/explab) -"sPL" = ( -/obj/machinery/light/small/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/plating, -/area/station/maintenance/port/fore) -"sPU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/science/research) -"sPY" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"sQp" = ( -/obj/machinery/exodrone_launcher, -/obj/item/exodrone, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"sQq" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/paper/guides/jobs/hydroponics, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 5 - }, -/obj/effect/spawner/random/food_or_drink/seed{ - spawn_all_loot = 1; - spawn_random_offset = 1 - }, -/obj/effect/spawner/random/contraband/prison, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"sQx" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Library Maintenance" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/service/library, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plating, -/area/station/maintenance/port) -"sQB" = ( -/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) -"sQY" = ( -/obj/structure/disposalpipe/segment{ - 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/plating, -/area/station/maintenance/port) -"sRa" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"sRf" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L11" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"sRi" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 3"; - name = "Cell 3" - }, -/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/red/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"sRm" = ( -/turf/open/floor/iron/white, -/area/station/medical/storage) -"sRn" = ( -/obj/machinery/light/directional/north, -/obj/structure/chair/sofa/bench/right, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"sRJ" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"sRT" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"sRW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"sRZ" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/iv_drip, -/turf/open/floor/plating, -/area/station/medical/abandoned) -"sSn" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"sSo" = ( -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/iron, -/area/station/engineering/main) -"sSp" = ( -/turf/closed/wall, -/area/station/medical/treatment_center) -"sSs" = ( -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"sSt" = ( -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/left/directional/north{ - name = "Chemistry Desk"; - req_access = list("plumbing") - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chem_lockdown"; - name = "Chemistry Shutters" - }, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"sSx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/any/command/captain, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/captain/private) -"sSz" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/storage_shared) -"sSL" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Command Hallway" - }, -/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, -/area/station/hallway/secondary/command) -"sSN" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/cryo) -"sSS" = ( -/obj/structure/sign/warning/vacuum/external/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/assembly/mousetrap, -/obj/item/food/deadmouse, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"sSV" = ( -/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) -"sTb" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/item/reagent_containers/glass/watering_can, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"sTe" = ( -/obj/structure/table, -/obj/machinery/camera/directional/north{ - c_tag = "Medbay Paramedic Dispatch"; - name = "medical camera"; - network = list("ss13","medical") - }, -/turf/open/floor/iron/dark, -/area/station/medical/office) -"sTh" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"sTi" = ( -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"sTq" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port) -"sTz" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Central Primary Hallway - Aft-Port" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"sTF" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"sTN" = ( -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"sTQ" = ( -/obj/structure/bed/roller, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"sTY" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/door/airlock/engineering/glass{ - name = "Laser Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"sUi" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/newscaster/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"sUm" = ( -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"sUo" = ( -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"sUp" = ( -/obj/structure/table/optable, -/obj/structure/noticeboard/directional/east, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"sUy" = ( -/obj/machinery/light/floor, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"sUC" = ( -/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/machinery/button/door/directional/east{ - id = "Prison Gate"; - name = "Prison Wing Lockdown"; - req_access = list("brig") - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"sUJ" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"sUO" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Arrivals - Station Entrance" - }, -/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, -/area/station/hallway/secondary/entry) -"sUP" = ( -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/turf_decal/siding/purple/corner, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"sVc" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/field/generator, -/turf/open/floor/plating, -/area/station/engineering/main) -"sVx" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) -"sVz" = ( -/obj/machinery/airalarm/directional/west, -/obj/machinery/modular_computer/console/preset/command, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"sVA" = ( -/obj/effect/turf_decal/stripes{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"sVH" = ( -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"sVK" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/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, -/area/station/engineering/atmos) -"sVM" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"sVY" = ( -/turf/closed/wall, -/area/station/service/library) -"sWe" = ( -/obj/structure/cable, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/dropper, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"sWg" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Central Primary Hallway - Fore - Starboard Corner" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"sWq" = ( -/obj/effect/turf_decal/delivery/white{ - color = "#52B4E9" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/right/directional/south{ - name = "Corpse Arrivals" - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"sWs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"sWv" = ( -/obj/machinery/button/door/directional/north{ - id = "chem_lockdown"; - name = "chemistry lockdown control"; - req_access = list("pharmacy") - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"sWB" = ( -/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/turf_decal/siding/purple, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"sWF" = ( -/obj/machinery/plate_press, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/security/prison/work) -"sWO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"sWV" = ( -/turf/closed/wall/r_wall, -/area/station/security/detectives_office) -"sWW" = ( -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"sWZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"sXe" = ( -/obj/effect/landmark/start/station_engineer, -/obj/machinery/light/directional/west, -/obj/structure/sign/warning/electric_shock{ - pixel_x = -31 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"sXq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/computer/atmos_control/nocontrol/incinerator{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"sXr" = ( -/obj/effect/turf_decal/trimline/brown/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, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"sXE" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/service/library) -"sXF" = ( -/obj/effect/turf_decal/trimline/purple/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"sXI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port) -"sXR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"sXT" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/chief_medical_officer, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"sYf" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"sYh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/service/cafeteria) -"sYp" = ( -/obj/machinery/vending/boozeomat, -/obj/machinery/light/small/directional/west, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"sZH" = ( -/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, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"sZI" = ( -/obj/structure/table, -/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, -/area/station/engineering/atmospherics_engine) -"sZK" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/dropper, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/drinks/shaker, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"sZN" = ( -/obj/machinery/atmospherics/components/binary/pump, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"sZP" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/hallway/secondary/entry) -"sZU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"tak" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port) -"tar" = ( -/obj/machinery/medical_kiosk, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"taz" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "forestarboard"; - name = "Fore-Starboard Solar Array" - }, -/turf/open/floor/iron/solarpanel/airless, -/area/station/solars/starboard/fore) -"taI" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/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/medical/medbay/central) -"taO" = ( -/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/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"taW" = ( -/obj/structure/flora/bush/ferny/style_random, -/turf/open/floor/grass, -/area/station/medical/virology) -"taX" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"taZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"tbd" = ( -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"tbm" = ( -/obj/effect/turf_decal/trimline/purple/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 23 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"tbp" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/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) -"tbq" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/stool/bar/directional/south, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/lounge) -"tbI" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"tbK" = ( -/obj/structure/bookcase/random/nonfiction, -/turf/open/floor/wood, -/area/station/service/library) -"tck" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"tcn" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"tcB" = ( -/obj/structure/cable, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"tcN" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/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/dark, -/area/station/command/teleporter) -"tcU" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/engine) -"tcW" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/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/prison) -"tdf" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"tdg" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"tdj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/obj/machinery/bluespace_vendor/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"tdl" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"tds" = ( -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"tdF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/cargo/qm) -"tdP" = ( -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"tdW" = ( -/turf/closed/wall/r_wall, -/area/station/security/execution/education) -"teg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"tem" = ( -/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/freezer, -/area/station/commons/toilet/restrooms) -"tep" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"tew" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Departure Lounge Security Post" - }, -/obj/effect/turf_decal/tile/red/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, -/area/station/hallway/secondary/exit/departure_lounge) -"tey" = ( -/turf/open/floor/iron/chapel{ - dir = 4 - }, -/area/station/service/chapel) -"teG" = ( -/obj/effect/landmark/event_spawn, -/obj/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, -/area/station/service/lawoffice) -"teP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rndlab2"; - name = "Secondary Research and Development Shutter"; - dir = 8 - }, -/turf/open/floor/plating, -/area/station/science/lab) -"teY" = ( -/obj/machinery/light/directional/east, -/obj/machinery/camera/autoname/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/carpet, -/area/station/service/library) -"tfg" = ( -/obj/machinery/field/generator, -/turf/open/floor/plating, -/area/station/engineering/main) -"tfn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/north, -/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) -"tfs" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"tft" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/engineering/supermatter) -"tfz" = ( -/obj/machinery/airalarm/directional/north, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"tfD" = ( -/obj/structure/table/wood/poker, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/entertainment/deck, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"tfE" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"tfO" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"tfR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"tfV" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/chair/office/light, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"tfW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"tga" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/science/robotics/lab) -"tgm" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"tgo" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"tgx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"tgy" = ( -/obj/structure/rack, -/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/machinery/airalarm/directional/west, -/obj/machinery/camera/motion/directional/west{ - c_tag = "Armory - Internal" - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"tgC" = ( -/obj/structure/noticeboard/directional/south, -/obj/structure/table/wood, -/obj/machinery/computer/med_data/laptop{ - dir = 1; - pixel_y = 4 - }, -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"tgD" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/item/healthanalyzer, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/science, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"thc" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Gravity Generator Room" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"the" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 9 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/pumproom) -"thQ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"thT" = ( -/obj/structure/cable, -/obj/machinery/camera/directional/east{ - c_tag = "Xenobiology Lab - Central West"; - network = list("ss13","rd","xeno") - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/button/door/directional/east{ - id = "XenoPens"; - name = "Xenobiology Shutters"; - req_access = list("xenobiology") - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"thY" = ( -/obj/effect/spawner/random/structure/grille, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/port) -"tit" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"tiA" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin2"; - name = "Cabin 4" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/dorms) -"tiD" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"tja" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"tjf" = ( -/obj/machinery/hydroponics/soil{ - pixel_y = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/spawner/random/food_or_drink/seed, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"tjh" = ( -/turf/closed/wall, -/area/station/security/brig) -"tji" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/security/office) -"tjo" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"tjp" = ( -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/secondary/entry) -"tju" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/service/bar) -"tjv" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"tjE" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"tjG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"tjL" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"tjN" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/left/directional/west{ - name = "Cargo Desk"; - req_access = list("shipping") - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/item/newspaper, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"tjR" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"tkg" = ( -/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/storage/gas) -"tkn" = ( -/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/port/aft) -"tkP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/item/radio/intercom/prison/directional/north, -/turf/open/floor/iron, -/area/station/security/prison) -"tlh" = ( -/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, -/area/station/engineering/main) -"tlx" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Prison Laundry"; - network = list("ss13","prison") - }, -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison) -"tlE" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/space/nearstation) -"tlK" = ( -/obj/machinery/door/firedoor, -/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/effect/landmark/navigate_destination/hydro, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/machinery/door/airlock/hydroponics/glass{ - name = "Hydroponics" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"tlZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"tmg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"tml" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/newscaster/directional/south{ - pixel_x = -28 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"tmm" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"tmq" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"tmB" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/station/service/library) -"tmF" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/chapel{ - dir = 4 - }, -/area/station/service/chapel) -"tmI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock{ - id_tag = "AuxShower"; - name = "Showers" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/toilet/auxiliary) -"tmJ" = ( -/obj/structure/rack, -/obj/item/book/manual/wiki/infections{ - pixel_y = 7 - }, -/obj/item/reagent_containers/syringe/antiviral, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"tmK" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"tmL" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"tmO" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"tmQ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos) -"tmU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"tng" = ( -/obj/machinery/light/no_nightlight/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"tnh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"tnm" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"tnw" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"tnN" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Medbay Storage"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"tnP" = ( -/obj/machinery/firealarm/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Fore Primary Hallway Aft" - }, -/obj/effect/turf_decal/tile/red, -/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/fore) -"tnT" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/structure/window/reinforced, -/obj/machinery/computer/atmos_control/plasma_tank{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"tnU" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron, -/area/station/science/research) -"tok" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/directional/south{ - c_tag = "Engineering - Desk" - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"tom" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"tot" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/wood, -/area/station/service/library) -"toK" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"toM" = ( -/obj/structure/sign/warning/electric_shock/directional/north, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"toR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/holofloor/dark, -/area/station/science/cytology) -"toV" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"tpr" = ( -/obj/machinery/light/directional/north, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/office) -"tpC" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"tpD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/lab) -"tqd" = ( -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"tqe" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Kitchen" - }, -/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/machinery/duct, -/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, -/turf/open/floor/iron/cafeteria, -/area/station/hallway/secondary/service) -"tql" = ( -/obj/structure/rack, -/obj/item/clothing/mask/animal/horsehead, -/obj/effect/spawner/random/clothing/costume, -/turf/open/floor/plating, -/area/station/maintenance/port) -"tqw" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"tqx" = ( -/obj/machinery/door/window/left/directional/south{ - dir = 1; - name = "Mass Driver Control Door"; - req_access = list("ordnance") - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"tqI" = ( -/obj/item/folder/red{ - pixel_y = 3 - }, -/obj/machinery/light/directional/east, -/obj/structure/table/glass, -/obj/item/folder/red{ - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"tqU" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"tqV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/security/courtroom) -"tqY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/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/engineering/atmos) -"tra" = ( -/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/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"tri" = ( -/obj/machinery/teleport/hub, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"trq" = ( -/obj/structure/sign/warning/electric_shock/directional/east, -/turf/open/space/basic, -/area/space) -"trx" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/ai_monitored/command/nuke_storage) -"try" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"trG" = ( -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/machinery/firealarm/directional/west, -/obj/item/stack/cable_coil{ - pixel_x = -1; - pixel_y = -3 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"trL" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/button/door{ - id = "xenobio2"; - layer = 3.3; - name = "Xenobio Pen 2 Blast Doors"; - pixel_y = 1; - req_access = list("xenobiology") - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"trM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/no_nightlight/directional/north, -/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/engineering/atmos) -"tsd" = ( -/turf/closed/wall, -/area/station/maintenance/space_hut) -"tst" = ( -/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/secondary/command) -"tsv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/hydroponics/soil{ - pixel_y = 8 - }, -/obj/effect/spawner/random/food_or_drink/seed, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"tsy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/storage/box/beakers{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/storage/box/syringes{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/wrench, -/obj/item/knife/kitchen, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"tsP" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"tsZ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/horizontal, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/space, -/area/space/nearstation) -"tth" = ( -/obj/item/paper_bin/carbon, -/obj/item/pen/fountain, -/obj/structure/table, -/turf/open/floor/iron/dark, -/area/station/security/office) -"tts" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/atmospherics_engine) -"ttA" = ( -/obj/structure/table, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/light/small/directional/north, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"ttE" = ( -/obj/effect/turf_decal/trimline/blue/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/white, -/area/station/medical/medbay/central) -"ttF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"ttG" = ( -/obj/item/clothing/gloves/color/rainbow, -/obj/item/clothing/shoes/sneakers/rainbow, -/obj/item/clothing/under/color/rainbow, -/obj/item/clothing/head/soft/rainbow, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"ttM" = ( -/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/starboard/aft) -"ttW" = ( -/obj/effect/spawner/random/structure/chair_flipped, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"ttX" = ( -/obj/structure/rack, -/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/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"tub" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"tug" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/tile/neutral{ - 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/aft) -"tuo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible/layer5, -/obj/machinery/light/no_nightlight/directional/south, -/obj/structure/sign/poster/official/wtf_is_co2{ - pixel_y = -32 - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"tuu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"tuC" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"tuG" = ( -/obj/machinery/hydroponics/soil{ - pixel_y = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/spawner/random/food_or_drink/seed, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"tvg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"tvE" = ( -/turf/closed/wall/r_wall, -/area/station/command/gateway) -"tvL" = ( -/obj/effect/landmark/xeno_spawn, -/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, -/area/station/service/chapel/office) -"tvR" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"twd" = ( -/obj/machinery/power/emitter/welded{ - dir = 1 - }, -/obj/machinery/light/directional/east, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"twf" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/crossing/horizontal, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/space, -/area/space/nearstation) -"twj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/port) -"twl" = ( -/obj/structure/table, -/obj/item/hand_tele, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"twr" = ( -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"twu" = ( -/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/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"twy" = ( -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"twF" = ( -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/machinery/recharge_station, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"twN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"txa" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/engineering/main) -"txc" = ( -/obj/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/aft) -"txg" = ( -/obj/machinery/suit_storage_unit/security, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"txh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - 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/cable/layer3, -/obj/effect/mapping_helpers/airlock/access/all/command/minisat, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"txi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/cook, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/duct, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"txk" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=14.5-Recreation"; - location = "14.3-Lockers-Dorms" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"txv" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"txz" = ( -/obj/effect/turf_decal/tile/neutral{ - 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) -"txG" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ - dir = 5 - }, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"txH" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"txP" = ( -/obj/effect/landmark/start/botanist, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"txQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/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; - sortType = 15 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"tyj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/holofloor/dark, -/area/station/science/cytology) -"tym" = ( -/obj/structure/window/reinforced, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"tyy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/end{ - dir = 1 - }, -/turf/open/floor/iron/textured, -/area/station/medical/medbay/central) -"tyY" = ( -/turf/closed/wall, -/area/station/command/heads_quarters/captain/private) -"tzq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"tzt" = ( -/obj/structure/statue/snow/snowman, -/turf/open/floor/fake_snow, -/area/station/maintenance/port/aft) -"tzD" = ( -/obj/machinery/door/airlock{ - id_tag = "Toilet3"; - name = "Unit 3" - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"tzE" = ( -/obj/structure/cable, -/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/white, -/area/station/medical/medbay/central) -"tzJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"tzN" = ( -/obj/machinery/airalarm/directional/north, -/obj/structure/rack/gunrack, -/obj/effect/spawner/armory_spawn/microfusion, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/iron/smooth, -/area/station/ai_monitored/security/armory) -"tzP" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space/basic, -/area/station/solars/port/aft) -"tzQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/lab) -"tAc" = ( -/obj/machinery/shower{ - pixel_y = 12 - }, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"tAg" = ( -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/rd) -"tAt" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/structure/window/reinforced, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"tAx" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/white/corner, -/area/station/hallway/primary/aft) -"tAD" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"tAG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"tAH" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"tAP" = ( -/obj/structure/railing{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/station/engineering/atmos) -"tAQ" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/flora/bush/flowers_br/style_random, -/turf/open/floor/grass, -/area/station/science/research) -"tBc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"tBp" = ( -/obj/machinery/atmospherics/components/unary/passive_vent{ - dir = 1; - name = "server vent" - }, -/turf/open/floor/circuit/telecomms/server, -/area/station/science/server) -"tBq" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"tBz" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"tBA" = ( -/obj/effect/turf_decal/stripes/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, -/area/station/hallway/primary/central) -"tBB" = ( -/obj/machinery/light/directional/west, -/obj/machinery/recharge_station, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"tBJ" = ( -/turf/closed/wall, -/area/station/medical/abandoned) -"tBM" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 5 - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/atmos) -"tBV" = ( -/obj/machinery/recharger{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/storage/secure/safe/directional/east, -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = -12; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"tCj" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/firealarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"tCC" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"tCG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/landmark/navigate_destination, -/turf/open/floor/iron, -/area/station/security/brig) -"tCJ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"tCS" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/fore) -"tCT" = ( -/obj/effect/landmark/start/scientist, -/turf/open/floor/iron/dark, -/area/station/science/lab) -"tDk" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/engineering_all, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"tDz" = ( -/obj/machinery/light/directional/south, -/obj/machinery/door_timer{ - id = "Cell 1"; - name = "Cell 1"; - pixel_y = -32 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"tDN" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"tDP" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 12 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"tDR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_output{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"tDU" = ( -/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, -/area/station/hallway/secondary/exit/departure_lounge) -"tEj" = ( -/obj/machinery/firealarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"tEr" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"tEt" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/research) -"tEy" = ( -/obj/structure/sink/kitchen{ - dir = 8; - pixel_x = 14 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"tEP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) -"tFr" = ( -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"tGu" = ( -/obj/machinery/computer/operating{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"tGL" = ( -/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/central) -"tGS" = ( -/obj/structure/cable, -/obj/machinery/door/window/left/directional/north{ - dir = 2; - name = "Containment Pen #2"; - req_access = list("xenobiology") - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"tGX" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison) -"tHk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/computer/department_orders/service{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/greater) -"tHm" = ( -/obj/effect/turf_decal/tile/red, -/obj/structure/sign/departments/court/directional/east, -/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/fore) -"tHu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/service/cafeteria) -"tHE" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/central) -"tHR" = ( -/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) -"tHT" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"tHZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"tId" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/camera/directional/east{ - c_tag = "Science Maintenance Corridor"; - network = list("ss13","rd") - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"tIe" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"tIk" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"tIl" = ( -/obj/structure/cable, -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#9FED58" - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"tIv" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor{ - base_state = "rightsecure"; - dir = 1; - icon_state = "rightsecure"; - name = "Head of Personnel's Desk"; - req_access = list("hop") - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/left/directional/north{ - dir = 2; - name = "Reception Window" - }, -/obj/machinery/door/poddoor/preopen{ - id = "hop"; - name = "Privacy Shutters" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"tIx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"tIH" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"tIR" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album{ - pixel_y = -4 - }, -/obj/item/camera{ - pixel_y = 4 - }, -/obj/item/radio/intercom/directional/west{ - freerange = 1; - name = "Captain's Intercom" - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"tJb" = ( -/obj/machinery/firealarm/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"tJd" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/machinery/module_duplicator, -/turf/open/floor/iron/white, -/area/station/science/explab) -"tJr" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"tJt" = ( -/obj/machinery/disposal/delivery_chute{ - dir = 1; - name = "Medical Deliveries" - }, -/obj/structure/plasticflaps/opaque{ - name = "Medical Deliveries" - }, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/structure/sign/departments/exam_room/directional/south{ - color = "#52B4E9" - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"tJF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/shower{ - name = "emergency shower"; - pixel_y = 16 - }, -/obj/effect/turf_decal/trimline/blue/end, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"tJL" = ( -/obj/structure/table, -/obj/item/folder/red{ - pixel_x = 14 - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/mod/module/plasma_stabilizer{ - pixel_x = 16 - }, -/obj/item/mod/module/thermal_regulator{ - pixel_x = 16 - }, -/turf/open/floor/iron/dark, -/area/station/security/office) -"tJV" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"tKa" = ( -/obj/machinery/newscaster/directional/west, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison) -"tKl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"tKn" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/spawner/random/clothing/costume, -/turf/open/floor/iron, -/area/station/commons/locker) -"tKu" = ( -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/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) -"tKA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate_empty, -/obj/effect/turf_decal/bot, -/obj/item/electronics/apc, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"tKE" = ( -/turf/closed/wall, -/area/station/security/checkpoint/engineering) -"tKM" = ( -/obj/machinery/airalarm/directional/south, -/obj/machinery/computer/mech_bay_power_console{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"tKN" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/primary/central) -"tKR" = ( -/obj/structure/table/glass, -/obj/item/experi_scanner{ - pixel_x = 4 - }, -/obj/item/experi_scanner{ - pixel_x = -15 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"tKS" = ( -/obj/machinery/modular_computer/console/preset/id, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/requests_console/directional/north{ - announcementConsole = 1; - department = "Chief Engineer's Desk"; - departmentType = 4; - name = "Chief Engineer's Requests Console" - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"tLc" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door_buttons/airlock_controller{ - idExterior = "xeno_airlock_exterior"; - idInterior = "xeno_airlock_interior"; - idSelf = "xeno_airlock_control"; - name = "Access Console"; - pixel_x = -25; - pixel_y = -25; - req_access = list("xenobiology") - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"tLd" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"tLg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/door/incinerator_vent_atmos_aux{ - pixel_x = -8; - pixel_y = -24 - }, -/obj/machinery/button/door/incinerator_vent_atmos_main{ - pixel_x = -8; - pixel_y = -36 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"tLi" = ( -/obj/effect/landmark/start/captain, -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"tLo" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light/directional/west, -/obj/structure/table, -/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 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"tLv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"tLx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"tLN" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hos) -"tMe" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"tMI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"tMJ" = ( -/obj/structure/toilet/greyscale{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/safe) -"tMK" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/syringe, -/obj/effect/turf_decal/siding/white/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white/side{ - dir = 5 - }, -/area/station/medical/treatment_center) -"tNg" = ( -/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) -"tNr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/warden) -"tNw" = ( -/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) -"tNH" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/service/salon) -"tNL" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/botanist, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"tNM" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"tNQ" = ( -/obj/structure/kitchenspike, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/service/kitchen/coldroom) -"tNU" = ( -/obj/structure/sign/warning/vacuum/external/directional/east, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"tOg" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/xenobiology/hallway) -"tOh" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) -"tOm" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) -"tOK" = ( -/obj/structure/rack, -/obj/item/cane, -/obj/item/food/grown/mushroom/glowshroom, -/turf/open/floor/plating, -/area/station/command/heads_quarters/captain/private) -"tON" = ( -/obj/machinery/door/airlock/grunge{ - name = "Vacant Office" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/vacant_room/office) -"tOZ" = ( -/obj/item/radio/intercom/directional/west, -/obj/structure/frame/computer{ - anchored = 1; - dir = 4 - }, -/turf/open/floor/circuit/green/off, -/area/station/science/research) -"tPb" = ( -/obj/effect/turf_decal/trimline/blue/filled/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/medical/office) -"tPd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"tPw" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"tPF" = ( -/obj/item/storage/belt/utility, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/structure/rack, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/button/door/directional/south{ - id = "gateshutter"; - name = "Gateway Shutter Control"; - req_access = list("command") - }, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/command/gateway) -"tPG" = ( -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/neutral{ - 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/aft) -"tPI" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"tPN" = ( -/obj/structure/rack, -/obj/item/clothing/under/color/white, -/obj/item/clothing/head/soft/mime, -/obj/item/clothing/under/color/white, -/obj/item/clothing/head/soft/mime, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/mask/surgical, -/turf/open/floor/iron/showroomfloor, -/area/station/maintenance/starboard/lesser) -"tQG" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/virology/glass{ - name = "Test Subject Cell" - }, -/obj/machinery/door/firedoor, -/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/medical/virology, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"tRb" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port) -"tRm" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"tRt" = ( -/obj/structure/cable, -/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/iron, -/area/station/cargo/storage) -"tRE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/storage/gas) -"tRI" = ( -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"tRL" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/airalarm/directional/west, -/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" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/service/bar) -"tRU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"tSw" = ( -/turf/closed/wall, -/area/station/maintenance/aft/greater) -"tSP" = ( -/obj/structure/cable, -/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, -/area/station/ai_monitored/turret_protected/aisat_interior) -"tTa" = ( -/obj/item/emptysandbag, -/obj/item/emptysandbag, -/obj/item/emptysandbag, -/obj/item/emptysandbag, -/obj/item/emptysandbag, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"tTg" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"tTo" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/computer/atmos_alert{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/sign/poster/official/safety_internals{ - pixel_y = -32 - }, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/storage/gas) -"tTu" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window{ - name = "MiniSat Walkway Access" - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"tTF" = ( -/obj/effect/spawner/random/engineering/vending_restock, -/turf/open/floor/plating, -/area/station/maintenance/port) -"tTT" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/camera/directional/north{ - c_tag = "Locker Room Starboard" - }, -/obj/structure/sign/warning/pods{ - pixel_y = 30 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/commons/locker) -"tUc" = ( -/obj/item/radio/intercom/directional/east, -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"tUn" = ( -/turf/closed/wall, -/area/station/maintenance/starboard/lesser) -"tUp" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/right/directional/east{ - dir = 8; - name = "Fitness Ring" - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"tUu" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"tUv" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"tUw" = ( -/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) -"tUA" = ( -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"tUF" = ( -/obj/machinery/door/window{ - atom_integrity = 300; - base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - name = "Primary AI Core Access"; - req_access = list("ai_upload") - }, -/obj/machinery/camera/directional/north{ - c_tag = "AI Chamber - Core"; - network = list("aicore") - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"tUH" = ( -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/station/maintenance/central) -"tUJ" = ( -/obj/structure/window/reinforced, -/obj/item/food/cakeslice/pound_cake_slice{ - pixel_x = 8; - pixel_y = -2 - }, -/obj/machinery/airalarm/directional/east, -/obj/structure/table/reinforced{ - name = "Jim Norton's Quebecois Coffee table" - }, -/obj/item/food/poppypretzel{ - pixel_x = -8; - pixel_y = -3 - }, -/obj/item/food/muffin/berry{ - pixel_x = -4; - pixel_y = 9 - }, -/obj/item/food/hotcrossbun{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/cafeteria) -"tUX" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/sparker/directional/west{ - id = "executionburn" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"tVm" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"tVo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"tVt" = ( -/obj/effect/turf_decal/tile/red{ - 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) -"tVP" = ( -/obj/machinery/light/no_nightlight/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"tVR" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/airalarm/directional/east, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"tWe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/bluespace_vendor/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"tWq" = ( -/obj/effect/spawner/random/trash/janitor_supplies, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/port) -"tWr" = ( -/obj/machinery/oven, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"tWE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random/directional/north, -/obj/effect/spawner/random/engineering/atmospherics_portable, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"tWJ" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"tWL" = ( -/obj/structure/rack, -/obj/effect/spawner/random/clothing/costume, -/obj/effect/spawner/random/clothing/costume, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"tWV" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"tXk" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/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, -/turf/open/floor/iron, -/area/station/maintenance/starboard/greater) -"tXy" = ( -/obj/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"tXz" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/cable/layer3, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) -"tXD" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"tXH" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/commons/lounge) -"tXU" = ( -/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/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"tXX" = ( -/obj/machinery/vending/dinnerware, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"tYc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"tYi" = ( -/turf/open/floor/plating, -/area/station/maintenance/port) -"tYm" = ( -/obj/structure/chair/stool/directional/east, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison) -"tYF" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron/checker, -/area/station/engineering/atmos/storage/gas) -"tYO" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/door/airlock/command{ - name = "Research Director's Office" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/rd, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) -"tYS" = ( -/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/security/general, -/turf/open/floor/plating, -/area/station/security/execution/transfer) -"tYW" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"tYZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port) -"tZo" = ( -/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/explab) -"tZz" = ( -/obj/effect/turf_decal/stripes/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, -/area/station/engineering/main) -"tZD" = ( -/obj/effect/landmark/start/captain, -/obj/structure/chair/comfy/brown, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"tZS" = ( -/obj/structure/flora/bush/jungle/b/style_random, -/obj/structure/flora/bush/flowers_pp/style_random, -/obj/machinery/light/directional/east, -/turf/open/floor/grass, -/area/station/medical/virology) -"uac" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"uag" = ( -/obj/item/radio/intercom/directional/north, -/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/secondary/command) -"uaj" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"uam" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L6" - }, -/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) -"uao" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/office) -"uay" = ( -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"uaB" = ( -/obj/machinery/power/turbine/core_rotor{ - dir = 4; - mapping_id = "main_turbine" - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"uaE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"uaN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"uaR" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/engine, -/area/station/science/cytology) -"ubd" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"ube" = ( -/obj/structure/sign/directions/science{ - pixel_y = -8 - }, -/obj/structure/sign/directions/medical{ - pixel_y = 8 - }, -/obj/structure/sign/directions/evac, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) -"ubl" = ( -/obj/machinery/telecomms/broadcaster/preset_left, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"ubn" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/effect/turf_decal/trimline/brown/filled/warning, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"ubp" = ( -/obj/structure/girder, -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/port) -"ubB" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue{ - pixel_y = 2 - }, -/obj/item/pen, -/obj/machinery/light/small/directional/east, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"ubD" = ( -/obj/structure/rack, -/obj/machinery/firealarm/directional/west, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/clothing/suit/hazardvest, -/obj/item/multitool, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"ucc" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/machinery/camera/directional/west{ - c_tag = "Medbay Surgical Wing"; - network = list("ss13","medbay") - }, -/obj/structure/bed/roller, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"ucd" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"ucm" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"uco" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"ucw" = ( -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"ucE" = ( -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"ucI" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"ucU" = ( -/obj/machinery/light/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Starboard Primary Hallway - Engineering" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/sign/directions/engineering{ - dir = 4; - pixel_y = -24 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"ude" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/surgery/theatre) -"udh" = ( -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = 32 - }, -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/effect/turf_decal/bot, -/obj/item/clothing/suit/apron/chef{ - name = "Jim Norton's Quebecois Coffee apron" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/north{ - c_tag = "Jim Norton's Quebecois Coffee" - }, -/turf/open/floor/iron/dark, -/area/station/service/cafeteria) -"udp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"udC" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"udD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos) -"udI" = ( -/obj/structure/table/reinforced, -/obj/item/stamp/denied{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/stamp{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/pen/red{ - pixel_y = 10 - }, -/obj/item/dest_tagger{ - pixel_x = 9; - pixel_y = 10 - }, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"udM" = ( -/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/commons/locker) -"udN" = ( -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"ued" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"ueh" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral, -/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/commons/dorms) -"uel" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Port Mix to South Ports" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"uem" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"uey" = ( -/obj/structure/chair/stool/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/lounge) -"ueB" = ( -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"ueD" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/wood, -/area/station/service/library) -"ueG" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/light/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/security/brig) -"ufv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"ufF" = ( -/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/public/glass{ - name = "Cryopods" - }, -/turf/open/floor/iron, -/area/station/common/cryopods) -"ufX" = ( -/obj/machinery/photocopier{ - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"ugd" = ( -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"ugg" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/hallway/secondary/entry) -"ugE" = ( -/obj/structure/chair{ - name = "Judge" - }, -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/light/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Courtroom" - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"ugH" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/office) -"ugJ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"ugP" = ( -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ugY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"uhq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/teleporter) -"uhs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"uhu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden, -/turf/open/floor/plating, -/area/station/maintenance/department/engine) -"uhx" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"uhP" = ( -/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/wood, -/area/station/commons/lounge) -"uhT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding{ - dir = 4 - }, -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"uhY" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Chemistry East"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"uid" = ( -/obj/structure/table, -/obj/item/stack/package_wrap{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/item/dest_tagger{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"uin" = ( -/obj/structure/table/wood, -/obj/item/stamp/hos, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hos) -"uiB" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"uiK" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - 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, -/area/station/service/bar) -"ujk" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/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/ordnance) -"ujq" = ( -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = 32 - }, -/obj/machinery/door/window/right/directional/east{ - dir = 1; - name = "Hydroponics Delivery"; - req_access = list("hydroponics") - }, -/obj/effect/turf_decal/delivery, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"ujH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"ujJ" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/department/science/central) -"ujM" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/structure/mirror/directional/east, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"ujT" = ( -/obj/machinery/airalarm/directional/west, -/obj/effect/spawner/random/structure/tank_holder, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"uke" = ( -/obj/structure/rack, -/obj/effect/spawner/random/food_or_drink/booze{ - spawn_loot_count = 3; - spawn_loot_double = 0; - spawn_random_offset = 1 - }, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"ukk" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"ukq" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmospherics_engine) -"ukv" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/cultivator, -/obj/item/clothing/head/chefhat, -/obj/machinery/camera/directional/west{ - c_tag = "Service - Starboard" - }, -/obj/item/storage/box/lights/mixed, -/obj/effect/spawner/random/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"uky" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/bar) -"ukN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/medbay/central) -"ulv" = ( -/obj/effect/turf_decal/stripes/white/line, -/obj/effect/turf_decal/stripes/white/line{ - 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, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/research) -"ulE" = ( -/obj/machinery/door/poddoor/massdriver_chapel, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/station/service/chapel/funeral) -"ulQ" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"ulR" = ( -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"ulX" = ( -/obj/machinery/lapvend, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"umI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/white, -/area/station/science/xenobiology/hallway) -"umN" = ( -/obj/structure/closet/crate, -/obj/item/reagent_containers/glass/bowl, -/obj/effect/spawner/random/contraband/prison, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/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/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"umS" = ( -/obj/item/radio/intercom/directional/west, -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/machinery/button/door/directional/west{ - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - normaldoorcontrol = 1; - pixel_y = -9 - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) -"umU" = ( -/obj/structure/chair/sofa/bench/left, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/secondary/entry) -"unf" = ( -/obj/structure/table, -/obj/item/cultivator, -/obj/item/hatchet, -/obj/item/crowbar, -/obj/machinery/light/directional/north, -/obj/item/plant_analyzer, -/obj/item/reagent_containers/glass/watering_can, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"unj" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/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/hallway/primary/port) -"unk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - filter_type = list(/datum/gas/nitrogen) - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"unq" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/folder/blue{ - pixel_y = 3 - }, -/obj/item/pen, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 1; - pixel_y = -28 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"unw" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/iron/stairs{ - dir = 1 - }, -/area/station/hallway/secondary/entry) -"unK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/sign/warning/electric_shock/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"unL" = ( -/turf/closed/wall, -/area/station/maintenance/starboard/greater) -"unN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"unP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/iron/white, -/area/station/science/ordnance/testlab) -"unR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"uod" = ( -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"uoe" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"uoj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"uok" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"uor" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor2"; - name = "Supply Dock Loading Door" - }, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/cargo/storage) -"uoK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/south, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"uoM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 1"; - name = "Cell 1 Locker" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig) -"upe" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Interrogation room"; - network = list("interrogation") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"upm" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/rack, -/obj/item/skub{ - name = "medicinal skub" - }, -/obj/item/toy/cattoy, -/turf/open/floor/plating, -/area/station/medical/abandoned) -"upR" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"upT" = ( -/obj/effect/turf_decal/tile/purple, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/explab) -"upZ" = ( -/obj/item/radio/intercom/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/iron/dark, -/area/station/service/chapel/funeral) -"uqi" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/engineering{ - name = "Auxiliary Base Construction" - }, -/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/tile/yellow/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/engineering/aux_base, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"uqp" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/door/airlock/research{ - name = "Research Division Access" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres, -/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_multi{ - cycle_id = "sci-entrance" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron/white, -/area/station/science/research) -"uqt" = ( -/obj/machinery/door/airlock/research/glass/incinerator/ordmix_interior, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_ordmix{ - pixel_x = -24 - }, -/obj/machinery/button/ignition/incinerator/ordmix{ - pixel_x = 24; - pixel_y = -6 - }, -/obj/machinery/button/door/incinerator_vent_ordmix{ - pixel_x = 24; - pixel_y = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/engine, -/area/station/science/ordnance/burnchamber) -"uqL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/chemistry) -"uqO" = ( -/obj/structure/table, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/item/multitool/circuit{ - pixel_x = 7 - }, -/obj/item/multitool/circuit, -/obj/item/multitool/circuit{ - pixel_x = -8 - }, -/turf/open/floor/iron/white, -/area/station/science/explab) -"uqS" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/closet/secure_closet/barber, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/service/salon) -"uqX" = ( -/obj/structure/cable, -/obj/item/kirbyplants/random, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"ure" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"urf" = ( -/obj/structure/closet/secure_closet/injection{ - name = "educational injections"; - pixel_x = 2 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"urs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"urA" = ( -/obj/structure/disposalpipe/segment{ - 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, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"urE" = ( -/obj/machinery/power/port_gen/pacman/pre_loaded, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"urK" = ( -/obj/structure/chair/stool/directional/east, -/turf/open/floor/iron, -/area/station/commons/dorms) -"urQ" = ( -/obj/structure/lattice/catwalk, -/obj/item/stack/cable_coil, -/turf/open/space/basic, -/area/station/solars/starboard/fore) -"urR" = ( -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/grimy, -/area/station/security/interrogation) -"urS" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"usg" = ( -/obj/item/radio/intercom/directional/south, -/obj/structure/table/reinforced, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/item/clothing/head/welding, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"ush" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"usi" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/port) -"usk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Auxiliary Bathrooms" - }, -/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/commons/toilet/auxiliary) -"usw" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"usA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/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) -"usB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"usC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/medical/storage) -"usK" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/obj/machinery/light_switch/directional/west, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"usP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"usU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/commons/storage/tools) -"usY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"usZ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchen_counter"; - name = "Kitchen Counter Shutters"; - dir = 1 - }, -/obj/structure/displaycase/forsale/kitchen{ - pixel_y = 8 - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/service/kitchen) -"uta" = ( -/obj/structure/rack, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_y = 4 - }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = 5; - pixel_y = 2 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/camera/directional/north{ - c_tag = "Security - Office - Starboard" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/security/office) -"utk" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"utp" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/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/cargo/storage) -"utt" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/service/library) -"utD" = ( -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"utJ" = ( -/obj/structure/sign/warning/electric_shock/directional/south, -/turf/open/space/basic, -/area/space) -"utM" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=13.3-Engineering-Central"; - location = "13.2-Tcommstore" - }, -/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/hallway/primary/starboard) -"utS" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/service/bar) -"uuc" = ( -/obj/structure/chair/pew/left, -/turf/open/floor/iron/chapel{ - dir = 8 - }, -/area/station/service/chapel) -"uur" = ( -/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/port/fore) -"uuv" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"uuD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"uvw" = ( -/obj/machinery/status_display/supply{ - pixel_y = 32 - }, -/obj/machinery/conveyor{ - dir = 5; - id = "QMLoad2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"uvx" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"uvH" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"uvP" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/virology/glass{ - name = "Containment Cells" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"uwa" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"uwg" = ( -/obj/structure/rack, -/obj/machinery/light/directional/west, -/obj/item/clothing/head/helmet/riot{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/clothing/head/helmet/riot{ - pixel_y = 2 - }, -/obj/item/clothing/head/helmet/riot{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/clothing/head/helmet/alt{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/clothing/head/helmet/alt{ - pixel_y = -2 - }, -/obj/item/clothing/head/helmet/alt{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"uwh" = ( -/obj/structure/chair/comfy{ - dir = 1 - }, -/obj/item/clothing/suit/nerdshirt, -/obj/item/clothing/head/fedora, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"uwx" = ( -/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/construction/storage_wing) -"uwy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"uwC" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/bluespace_vendor/directional/east, -/obj/structure/desk_bell{ - pixel_x = 7 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"uwK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/landmark/start/roboticist, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"uwP" = ( -/obj/structure/reagent_dispensers/wall/peppertank/directional/north, -/obj/structure/closet/secure_closet/security, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs) -"uwQ" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"uwU" = ( -/obj/machinery/light_switch/directional/east, -/obj/machinery/light/small/directional/east, -/obj/structure/easel, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas/twentythree_twentythree, -/turf/open/floor/iron, -/area/station/commons/storage/art) -"uxa" = ( -/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) -"uxb" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/machinery/duct, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"uxd" = ( -/obj/structure/table, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/spawner/random/entertainment/dice, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"uxf" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "packageSort2"; - name = "Sort and Deliver"; - pixel_x = -2; - pixel_y = 12 - }, -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "packageExternal"; - name = "Crate Returns"; - pixel_x = -5; - pixel_y = -3 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"uxt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"uxI" = ( -/obj/machinery/vending/medical, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"uxS" = ( -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"uyi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/button/door/directional/south{ - id = "prisonereducation"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"uyj" = ( -/obj/machinery/rnd/bepis, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"uyk" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/light/no_nightlight/directional/east, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"uyr" = ( -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"uyw" = ( -/obj/effect/landmark/start/chief_medical_officer, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"uza" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison/visit) -"uzb" = ( -/obj/structure/rack, -/obj/machinery/light/directional/east, -/obj/item/fuel_pellet, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"uzc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/server) -"uzk" = ( -/obj/effect/turf_decal/tile/neutral, -/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, -/area/station/hallway/primary/aft) -"uzl" = ( -/obj/machinery/camera/directional/west{ - active_power_usage = 0; - c_tag = "Turbine Vent"; - network = list("turbine"); - use_power = 0 - }, -/turf/open/space/basic, -/area/space) -"uzJ" = ( -/obj/effect/turf_decal/trimline/blue/filled/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/white, -/area/station/medical/medbay/central) -"uAg" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"uAu" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"uAC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"uAE" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"uAM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port) -"uBx" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "XenoPens"; - name = "Xenobiology Lockdown"; - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"uBy" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Science Robotics Workshop"; - network = list("ss13","rd") - }, -/obj/structure/cable, -/obj/machinery/light_switch/directional/north{ - pixel_x = 9 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"uBC" = ( -/obj/machinery/mass_driver/shack{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/station/maintenance/space_hut) -"uBF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"uBG" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 4; - piping_layer = 2 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"uBI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Aft Primary Hallway" - }, -/turf/open/floor/iron/white/side{ - dir = 8 - }, -/area/station/medical/medbay/lobby) -"uBP" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/cable, -/obj/machinery/newscaster/directional/east, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"uCq" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"uCG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"uCS" = ( -/obj/structure/chair/stool/directional/south, -/turf/open/floor/iron, -/area/station/security/prison) -"uCW" = ( -/obj/structure/closet{ - name = "Evidence Closet 1" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"uDn" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/storage/gas) -"uDr" = ( -/obj/effect/turf_decal/tile/green/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"uDw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/ai_monitored/command/nuke_storage) -"uDH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"uDK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"uDO" = ( -/obj/structure/table, -/obj/effect/turf_decal/siding{ - dir = 8 - }, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/scanning_module{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/turf/open/floor/iron, -/area/station/science/lab) -"uDP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/hallway/primary/fore) -"uDS" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Science Firing Range"; - network = list("ss13","rd") - }, -/turf/open/floor/engine, -/area/station/science/explab) -"uEn" = ( -/obj/machinery/light/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/cigarette, -/turf/open/floor/iron, -/area/station/maintenance/starboard/greater) -"uEo" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/box/red, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"uEw" = ( -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"uEx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"uEz" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"uEA" = ( -/obj/structure/table/reinforced, -/obj/structure/reagent_dispensers/servingdish, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"uEC" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/machinery/recycler, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"uEO" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/maintenance/port) -"uFf" = ( -/obj/machinery/holopad, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/wood, -/area/station/commons/lounge) -"uFh" = ( -/obj/structure/table/reinforced, -/obj/structure/cable, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs) -"uFq" = ( -/obj/machinery/door/window/left/directional/south{ - dir = 8; - name = "Mass Driver Door"; - req_access = list("ordnance") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"uFw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable/layer3, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) -"uFC" = ( -/obj/effect/spawner/random/trash/caution_sign, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"uFD" = ( -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/photocopier, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"uFK" = ( -/obj/structure/table, -/obj/item/clothing/under/rank/prisoner/skirt{ - pixel_x = -13; - pixel_y = 5 - }, -/obj/item/clothing/under/rank/prisoner/skirt{ - pixel_x = 9; - pixel_y = 5 - }, -/obj/item/clothing/under/rank/prisoner{ - pixel_x = -2; - pixel_y = 5 - }, -/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/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"uFZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/machinery/microwave{ - pixel_y = 6 - }, -/obj/machinery/light_switch/directional/west{ - pixel_y = -8 - }, -/obj/machinery/button/door/directional/west{ - id = "qm_warehouse"; - name = "Warehouse Door Control"; - req_access = list("cargo") - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"uGb" = ( -/obj/structure/table, -/obj/machinery/light/directional/east, -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/flasher/directional/south{ - id = "AI" - }, -/obj/effect/spawner/round_default_module, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"uGf" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 5 - }, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"uGg" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"uGi" = ( -/obj/structure/chair/stool/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"uGj" = ( -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"uGm" = ( -/obj/machinery/power/terminal, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"uGp" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/visit) -"uGq" = ( -/obj/machinery/light_switch/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Virology Lab"; - network = list("ss13","medbay") - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"uGr" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Crematorium" - }, -/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/service/crematorium, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"uGt" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/ai_all, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"uGD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig) -"uGQ" = ( -/obj/machinery/light/directional/south, -/obj/machinery/newscaster/directional/south, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/commons/locker) -"uGW" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/sign/departments/chemistry/pharmacy/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/hallway/primary/aft) -"uGX" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"uHa" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/rods/fifty, -/obj/item/storage/toolbox/emergency, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/effect/spawner/random/engineering/flashlight, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/command/gateway) -"uHp" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"uHt" = ( -/obj/structure/cable, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"uHA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"uHD" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"uId" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"uIg" = ( -/obj/machinery/door/window/left/directional/north{ - dir = 8; - name = "Magboot Storage"; - pixel_x = -1; - req_access = list("eva") - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/rack, -/obj/item/clothing/shoes/magboots{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"uIi" = ( -/obj/structure/cable, -/obj/machinery/power/solar_control{ - dir = 1; - id = "starboardsolar"; - name = "Starboard Quarter Solar Control" - }, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"uIs" = ( -/turf/closed/wall, -/area/station/service/kitchen) -"uIM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/duct, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"uIO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"uIP" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"uJa" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"uJe" = ( -/obj/structure/table/reinforced, -/obj/item/stock_parts/cell/high{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/stock_parts/cell/high{ - pixel_x = -8; - pixel_y = 9 - }, -/obj/item/stock_parts/cell/high, -/obj/machinery/cell_charger, -/obj/item/borg/upgrade/rename{ - pixel_x = 3; - pixel_y = 18 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"uJm" = ( -/obj/structure/bookcase{ - name = "Forbidden Knowledge" - }, -/turf/open/floor/engine/cult, -/area/station/service/library) -"uJs" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/cigarettes, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"uJz" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/lightreplacer{ - pixel_y = 7 - }, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron/checker, -/area/station/engineering/storage_shared) -"uJB" = ( -/obj/structure/chair/stool/directional/east, -/turf/open/floor/iron, -/area/station/commons/locker) -"uJL" = ( -/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; - sortType = 8 - }, -/turf/open/floor/wood, -/area/station/security/office) -"uKa" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"uKj" = ( -/obj/structure/chair, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"uKm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"uKv" = ( -/obj/machinery/seed_extractor, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"uKx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Dormitories" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/dorms) -"uKy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"uKA" = ( -/obj/machinery/light/directional/west, -/obj/machinery/modular_computer/console/preset/cargochat/science{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/explab) -"uKP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Port Primary Hallway - Mining Shuttle" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"uKR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/white, -/area/station/security/medical) -"uKW" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/left/directional/north{ - base_state = "right"; - dir = 2; - icon_state = "right"; - name = "Containment Pen #2"; - req_access = list("xenobiology") - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "Xenobio Pen 2 Blast Door" - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"uLa" = ( -/obj/effect/spawner/random/structure/table_or_rack, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"uLp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"uLs" = ( -/obj/machinery/rnd/production/techfab/department/medical, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"uLE" = ( -/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, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"uLP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/white, -/area/station/science/research) -"uMb" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/prison) -"uMi" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/beakers{ - pixel_y = 7 - }, -/obj/item/assembly/igniter{ - pixel_y = -3 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/dark/textured_edge{ - dir = 4 - }, -/area/station/medical/medbay/central) -"uMR" = ( -/obj/machinery/holopad, -/turf/open/floor/iron/white/side{ - dir = 1 - }, -/area/station/science/lobby) -"uMU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"uMY" = ( -/obj/machinery/door/airlock/external{ - name = "Security External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/plating, -/area/station/security/execution/transfer) -"uNd" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/maintenance/starboard/greater) -"uNl" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/engine) -"uND" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/restraints/legcuffs/beartrap, -/obj/item/restraints/legcuffs/beartrap, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron, -/area/station/service/janitor) -"uNO" = ( -/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/xenobiology/hallway) -"uNS" = ( -/obj/effect/spawner/random/trash/box, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"uOd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/door/airlock/public{ - name = "Massage Parlour" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/service/salon) -"uOm" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"uOp" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 4 - }, -/obj/structure/railing/corner, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmospherics_engine) -"uOH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port) -"uOO" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/commons/lounge) -"uOS" = ( -/obj/machinery/door/airlock/grunge{ - name = "Morgue" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"uOX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Primary Hallway" - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"uPi" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/item/radio/intercom/directional/south, -/obj/item/stack/sheet/glass, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/signaler, -/obj/item/assembly/timer{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"uPp" = ( -/obj/effect/spawner/random/structure/chair_maintenance{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"uQe" = ( -/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/siding/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"uQF" = ( -/obj/structure/lattice, -/obj/item/stack/rods, -/turf/open/space/basic, -/area/space/nearstation) -"uQG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Storage" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/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/engine_equipment, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/engineering/main) -"uQH" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/iron/checker, -/area/station/maintenance/aft/lesser) -"uQK" = ( -/obj/structure/closet{ - name = "Evidence Closet 4" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"uRa" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) -"uRl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/office) -"uRp" = ( -/obj/machinery/telecomms/server/presets/common, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"uRu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"uRA" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/item/kirbyplants{ - icon_state = "applebush" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"uRJ" = ( -/obj/machinery/door/window/right/directional/west{ - dir = 1; - name = "Atmospherics Access"; - req_access = list("atmospherics") - }, -/obj/effect/turf_decal/loading_area, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/storage/gas) -"uRL" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/closed/wall, -/area/station/security/checkpoint/engineering) -"uRT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/security/prison) -"uSm" = ( -/obj/item/kirbyplants/random, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"uSn" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"uTj" = ( -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"uTw" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/station/maintenance/port) -"uTF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Shuttle Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"uTH" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"uTI" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"uTP" = ( -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"uTZ" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "MiniSat Space Access Airlock" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/poddoor/preopen{ - id = "transitlockdown" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/obj/effect/mapping_helpers/airlock/access/any/command/minisat, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"uUg" = ( -/obj/effect/spawner/random/engineering/atmospherics_portable, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"uUl" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/commons/locker) -"uUu" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"uUL" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/storage_shared) -"uUX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"uVd" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"uVf" = ( -/obj/structure/table, -/obj/item/storage/toolbox/electrical{ - pixel_y = 12 - }, -/obj/item/electronics/airalarm{ - pixel_x = -5; - pixel_y = -5 - }, -/obj/item/electronics/firealarm{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/item/electronics/airalarm{ - pixel_x = -5; - pixel_y = -5 - }, -/obj/item/electronics/firealarm{ - pixel_x = 5 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/structure/sign/poster/official/nanotrasen_logo{ - pixel_x = 32 - }, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/atmos) -"uVm" = ( -/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/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"uVv" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"uVJ" = ( -/obj/effect/spawner/random/structure/grille, -/obj/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"uVQ" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"uWg" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"uWk" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/science/xenobiology/hallway) -"uWn" = ( -/obj/machinery/nuclearbomb/selfdestruct, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"uWo" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/turf/open/floor/iron, -/area/station/security/brig) -"uWt" = ( -/obj/structure/rack, -/obj/item/stack/medical/mesh, -/obj/item/stack/medical/suture, -/obj/item/reagent_containers/syringe/multiver, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/command/gateway) -"uWx" = ( -/obj/effect/turf_decal/bot/left, -/turf/open/floor/engine, -/area/station/engineering/atmospherics_engine) -"uWL" = ( -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/maintenance/port/aft) -"uWQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/firealarm/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"uWS" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"uXc" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"uXd" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/main) -"uXG" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Psychology Maintenance" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/medical/psychology, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"uXS" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/closet/secure_closet/hydroponics, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"uYe" = ( -/obj/structure/cable, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/grass, -/area/station/medical/virology) -"uYg" = ( -/obj/structure/cable, -/obj/structure/sink/kitchen{ - dir = 8; - pixel_x = 14 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/mob/living/simple_animal/hostile/retaliate/goat{ - name = "Pete" - }, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/service/kitchen/coldroom) -"uYi" = ( -/turf/open/floor/plating/airless, -/area/station/solars/starboard/aft) -"uYl" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"uYm" = ( -/obj/machinery/meter, -/obj/machinery/door/window/left/directional/west{ - dir = 1; - name = "Gas Ports" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"uYp" = ( -/turf/closed/wall, -/area/station/medical/break_room) -"uYD" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port) -"uYH" = ( -/obj/structure/reflector/double/anchored{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"uYP" = ( -/obj/structure/cable, -/obj/machinery/door/window/left/directional/north{ - name = "Containment Pen #7"; - req_access = list("xenobiology") - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"uYT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"uZa" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron, -/area/station/security/prison/work) -"uZj" = ( -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = 8 - }, -/obj/structure/sign/directions/engineering{ - dir = 4 - }, -/obj/structure/sign/directions/command{ - pixel_y = -8 - }, -/turf/closed/wall/r_wall, -/area/station/commons/storage/tools) -"uZD" = ( -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/service/chapel) -"uZM" = ( -/obj/structure/table, -/obj/machinery/computer/security/telescreen/ordnance{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"uZP" = ( -/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 = 5 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"vae" = ( -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/camera/directional/east{ - c_tag = "Prison Isolation Cell"; - network = list("ss13","prison","isolation") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/white, -/area/station/security/prison/safe) -"vaB" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/range) -"vaH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/security/medical) -"vbq" = ( -/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/tile/yellow{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/obj/structure/table, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/iron/checker, -/area/station/engineering/atmos/storage/gas) -"vbL" = ( -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab" - }, -/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/heavy, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/plating, -/area/station/science/ordnance) -"vbO" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Research Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"vbV" = ( -/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, -/area/station/security/checkpoint/medical) -"vcu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) -"vcw" = ( -/obj/machinery/computer/security/qm{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/cargo/qm) -"vcE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/checkpoint/science) -"vdi" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Security - Office - Port" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"vdo" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/siding/purple{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"vdx" = ( -/obj/machinery/rnd/experimentor, -/turf/open/floor/engine, -/area/station/science/explab) -"vdJ" = ( -/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/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"vdL" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #8"; - dir = 10; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"veo" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/table/reinforced, -/obj/item/storage/box/lights/mixed, -/obj/item/cigbutt/cigarbutt, -/obj/item/candle{ - pixel_x = -5 - }, -/obj/item/storage/box/matches{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"veO" = ( -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"veP" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1; - sortType = 27 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"veS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"vfa" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/machinery/duct, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/treatment_center) -"vfh" = ( -/obj/machinery/door/window/right/directional/north{ - dir = 8; - name = "Research Test Chamber"; - req_access = list("science") - }, -/turf/open/floor/engine, -/area/station/science/explab) -"vfk" = ( -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"vfm" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/mob/living/carbon/human/species/monkey/punpun, -/turf/open/floor/iron, -/area/station/service/bar) -"vfv" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"vfA" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/storage_shared) -"vfC" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"vfO" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"vfU" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"vgb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/commons/lounge) -"vgd" = ( -/obj/machinery/door/airlock/engineering{ - name = "Telecomms Storage" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/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/tcoms, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) -"vgr" = ( -/obj/item/crowbar, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"vgv" = ( -/obj/effect/turf_decal/stripes/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, -/area/station/command/gateway) -"vgH" = ( -/obj/machinery/computer/shuttle/labor{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"vgZ" = ( -/obj/structure/table/glass, -/obj/item/storage/secure/briefcase{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/item/storage/medkit/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"vhb" = ( -/obj/machinery/light/directional/west, -/obj/machinery/chem_dispenser{ - layer = 2.7 - }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"vht" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"vhv" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/atmospherics_engine) -"vhB" = ( -/obj/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) -"vhD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Evidence Storage" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/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/security/general, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"vhI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"vhS" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/airalarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"vhZ" = ( -/obj/structure/window/reinforced, -/turf/open/floor/holofloor/dark, -/area/station/science/cytology) -"vif" = ( -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"vip" = ( -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/machinery/airalarm/directional/north, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/station/medical/virology) -"vis" = ( -/obj/structure/filingcabinet, -/obj/item/folder/documents, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"viH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"viQ" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"viU" = ( -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"vjd" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"vjk" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"vjn" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"vjv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/service/library) -"vjA" = ( -/obj/structure/cable, -/obj/machinery/holopad/secure, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable/layer3, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"vjF" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/security/prison) -"vjH" = ( -/obj/effect/turf_decal/trimline/blue/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/medical/medbay/central) -"vjI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Kitchen" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/navigate_destination/kitchen, -/obj/effect/mapping_helpers/airlock/access/any/service/bar, -/obj/effect/mapping_helpers/airlock/access/any/service/kitchen, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"vjR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/chair/stool/directional/north, -/turf/open/floor/wood, -/area/station/commons/lounge) -"vjS" = ( -/obj/effect/landmark/start/paramedic, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"vjZ" = ( -/obj/structure/table, -/turf/open/floor/iron/dark/side, -/area/station/security/prison) -"vkb" = ( -/obj/effect/turf_decal/trimline/red/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/security/brig) -"vke" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"vko" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"vkq" = ( -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/grass, -/area/station/science/research) -"vkr" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"vkz" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"vkD" = ( -/obj/effect/landmark/event_spawn, -/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/secondary/exit/departure_lounge) -"vkO" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/reagent_containers/spray/cleaner, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) -"vlh" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/rnd_secure_all, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"vlp" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/light/small/red/directional/west, -/turf/open/floor/plating/airless, -/area/station/engineering/atmos) -"vlq" = ( -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vly" = ( -/obj/item/target/alien/anchored, -/obj/machinery/camera/preset/ordnance{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless{ - luminosity = 2 - }, -/area/station/science/ordnance/bomb) -"vlH" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"vlY" = ( -/obj/structure/table/reinforced, -/obj/machinery/camera/directional/north{ - c_tag = "Science Robotics Office"; - network = list("ss13","rd") - }, -/obj/item/radio/intercom/directional/north, -/obj/item/storage/medkit{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/storage/medkit{ - pixel_x = -5; - pixel_y = -1 - }, -/obj/item/healthanalyzer{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/healthanalyzer{ - pixel_x = -3; - pixel_y = -4 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"vlZ" = ( -/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/starboard/aft) -"vmm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/waterbottle/large{ - pixel_x = 5; - pixel_y = 20 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/item/plate{ - pixel_x = -9 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = 7 - }, -/obj/effect/spawner/random/food_or_drink/donkpockets{ - pixel_x = -9; - pixel_y = 3 - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"vmp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"vmx" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vmE" = ( -/obj/machinery/power/port_gen/pacman/pre_loaded, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"vmH" = ( -/obj/machinery/door/airlock/security{ - name = "Customs Desk" - }, -/obj/effect/landmark/event_spawn, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs) -"vmI" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"vmX" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/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) -"vmY" = ( -/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"vnk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - aiControlDisabled = 1; - id_tag = "prisonereducation"; - name = "Prisoner Education Chamber" - }, -/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/tile/red/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/turf/open/floor/iron, -/area/station/security/execution/education) -"vnm" = ( -/obj/structure/cable, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) -"vnp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/command/teleporter) -"vnE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"vnP" = ( -/obj/item/kirbyplants/dead, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"vnV" = ( -/obj/machinery/light/directional/west, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"vnZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/flasher/directional/west{ - id = "Cell 2"; - pixel_y = -22 - }, -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/iron, -/area/station/security/brig) -"vok" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/directional/north, -/obj/item/clothing/gloves/color/latex/nitrile, -/obj/item/clothing/gloves/color/latex/nitrile, -/obj/item/clothing/gloves/color/latex/nitrile, -/obj/item/clothing/gloves/color/latex/nitrile, -/obj/item/wrench/medical, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"vol" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"vpg" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "Bridge Blast Door" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/navigate_destination, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-left" - }, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"vph" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"vpl" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"vpn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs) -"vpB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/cryo) -"vpM" = ( -/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/item/kirbyplants/random, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"vpP" = ( -/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/aft/greater) -"vpQ" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L11" - }, -/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) -"vpU" = ( -/obj/effect/spawner/random/structure/crate, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"vpX" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"vqi" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Hydroponics - Aft" - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"vqk" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/door/airlock/medical/glass{ - name = "Break Room" - }, -/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/medical/general, -/turf/open/floor/iron/white, -/area/station/medical/break_room) -"vqp" = ( -/obj/effect/turf_decal/loading_area, -/obj/machinery/airalarm/directional/east, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"vqN" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/station/service/theater) -"vqU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"vro" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"vrv" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/engine, -/area/station/science/explab) -"vrF" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/desk_bell{ - pixel_x = -11 - }, -/turf/open/floor/iron, -/area/station/service/bar) -"vrJ" = ( -/obj/machinery/porta_turret/ai{ - dir = 8 - }, -/turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) -"vrP" = ( -/obj/structure/cable, -/obj/structure/table/reinforced, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs) -"vsp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/table/glass, -/obj/item/storage/box/petridish{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/storage/box/petridish{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/machinery/requests_console/directional/east{ - department = "Xenobiology"; - name = "Xenobiology Requests Console"; - receive_ore_updates = 1 - }, -/obj/machinery/button/door/directional/south{ - id = "XenoPens"; - name = "Xenobiology Shutters"; - req_access = list("xenobiology") - }, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"vsr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/toilet/auxiliary) -"vsG" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"vsO" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"vsQ" = ( -/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, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"vsR" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"vsZ" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/machinery/light/directional/south, -/obj/structure/cable, -/obj/machinery/requests_console/directional/south{ - department = "Security"; - departmentType = 5; - name = "Security Requests Console" - }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = 9; - pixel_y = 4 - }, -/obj/item/radio{ - pixel_x = -6; - pixel_y = -3 - }, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science) -"vtx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"vtS" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/storage/medkit/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/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 - }, -/obj/structure/table/reinforced, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"vtX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"vun" = ( -/turf/closed/wall, -/area/station/medical/storage) -"vuu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"vuJ" = ( -/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/plating, -/area/station/engineering/supermatter/room) -"vuK" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"vuP" = ( -/obj/item/target/syndicate, -/obj/structure/training_machine, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/security/range) -"vuU" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vvl" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"vvp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"vvv" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"vvw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"vvD" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Xenobiology Lab - Euthanasia Chamber"; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/circuit/telecomms, -/area/station/science/xenobiology) -"vvH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Primary Tool Storage" - }, -/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/commons/storage/primary) -"vvK" = ( -/obj/item/shard, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"vvW" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/light/small/directional/west, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"vwi" = ( -/obj/structure/table, -/obj/item/clothing/mask/cigarette/pipe, -/turf/open/floor/plating, -/area/station/maintenance/port) -"vwp" = ( -/obj/machinery/door/airlock{ - id_tag = "FitnessShower"; - name = "Fitness Room Shower" - }, -/turf/open/floor/iron/freezer, -/area/station/commons/fitness/recreation) -"vwP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"vwS" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance, -/obj/effect/spawner/random/bureaucracy/paper, -/turf/open/floor/plating, -/area/station/maintenance/port) -"vxa" = ( -/mob/living/simple_animal/slime, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"vxc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 2; - sortType = 18 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"vxi" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"vxB" = ( -/obj/structure/bed/roller, -/obj/machinery/camera/directional/west{ - c_tag = "Gateway - Atrium" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/vending/wallmed/directional/west, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/command/gateway) -"vxC" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/white, -/area/station/security/prison/visit) -"vxD" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Dormitories - Fore" - }, -/obj/effect/turf_decal/tile/neutral, -/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/commons/dorms) -"vxE" = ( -/obj/machinery/door/firedoor, -/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, -/area/station/hallway/primary/central) -"vxJ" = ( -/obj/machinery/power/emitter/welded{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"vxT" = ( -/obj/structure/chair/comfy{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/science/research) -"vyf" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/station/cargo/qm) -"vyi" = ( -/obj/structure/curtain/cloth/fancy/mechanical{ - id = "barbershopcurtains1" - }, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/service/salon) -"vyM" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable/layer3, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"vyZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"vzc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/computer/turbine_computer{ - mapping_id = "main_turbine" - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"vzj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate_empty, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"vzx" = ( -/obj/machinery/portable_atmospherics/canister/plasma, -/obj/effect/turf_decal/siding/purple{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"vzG" = ( -/obj/item/radio/intercom/directional/north, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria, -/area/station/hallway/secondary/entry) -"vzI" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_y = 4 - }, -/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 - }, -/turf/open/floor/iron/checker, -/area/station/engineering/atmos/storage/gas) -"vzL" = ( -/obj/structure/cable, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/station/medical/virology) -"vzR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"vzS" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"vAa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/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/white, -/area/station/science/xenobiology) -"vAc" = ( -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = -32 - }, -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"vAo" = ( -/obj/machinery/door/window/right/directional/south{ - dir = 1; - name = "Medical Deliveries"; - req_access = list("medical") - }, -/obj/effect/turf_decal/delivery/white{ - color = "#52B4E9" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"vAz" = ( -/obj/structure/sign/warning/vacuum/external/directional/south, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"vAF" = ( -/obj/structure/table/glass, -/obj/item/retractor, -/obj/item/hemostat, -/obj/item/cautery, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"vAH" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/siding/purple{ - 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 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"vBl" = ( -/obj/effect/turf_decal/tile/purple, -/obj/machinery/camera/directional/south{ - c_tag = "Central Primary Hallway - Aft-Starboard" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"vBG" = ( -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"vBW" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"vBY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/hangover, -/obj/machinery/duct, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"vCa" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"vCb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Courtroom" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"vCh" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"vCr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"vCu" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/camera/directional/west{ - c_tag = "Auxilary Restrooms" - }, -/obj/structure/sign/poster/official/random/directional/west, -/turf/open/floor/iron, -/area/station/commons/toilet/auxiliary) -"vCy" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"vCN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"vCV" = ( -/obj/effect/turf_decal/stripes/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/sorting/mail/flip{ - dir = 1; - sortType = 25 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"vDa" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"vDh" = ( -/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, -/area/station/security/brig) -"vDl" = ( -/obj/structure/lattice, -/obj/item/tail_pin, -/turf/open/space/basic, -/area/space/nearstation) -"vDt" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Research Maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/science/research, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"vDz" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/office) -"vDC" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/structure/table/wood, -/obj/item/pinpointer/nuke, -/obj/item/disk/nuclear, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"vDV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/machinery/reagentgrinder{ - pixel_x = -1; - pixel_y = 8 - }, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"vEd" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/processor{ - pixel_y = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"vEk" = ( -/obj/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) -"vEl" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/air_input{ - dir = 1 - }, -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"vEo" = ( -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"vEp" = ( -/turf/open/floor/iron, -/area/station/security/warden) -"vEt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"vEH" = ( -/obj/machinery/door/window/right/directional/east{ - name = "Danger: Conveyor Access"; - req_access = list("maint_tunnels") - }, -/obj/machinery/conveyor/inverted{ - dir = 10; - id = "garbage" - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"vEK" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"vEO" = ( -/obj/structure/chair/wood/wings{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/wood, -/area/station/service/theater) -"vET" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"vEV" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"vFb" = ( -/obj/structure/lattice/catwalk, -/obj/item/binoculars, -/turf/open/space/basic, -/area/space/nearstation) -"vFk" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"vFm" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/taperecorder, -/obj/item/radio/intercom/directional/south{ - broadcasting = 1; - frequency = 1423; - listening = 0; - name = "Interrogation Intercom" - }, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"vFx" = ( -/obj/structure/toilet{ - pixel_y = 13 - }, -/obj/machinery/light/directional/south, -/obj/effect/landmark/start/captain, -/obj/machinery/light_switch/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/captain/private) -"vFB" = ( -/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/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"vGl" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"vGp" = ( -/obj/structure/chair, -/obj/effect/landmark/start/chaplain, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"vGq" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall, -/area/station/science/xenobiology) -"vGw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"vGx" = ( -/obj/machinery/door/window/brigdoor{ - name = "Arrivals Security Checkpoint"; - pixel_y = -8; - req_access = list("security") - }, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs) -"vGz" = ( -/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 = 10 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"vGF" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/atmos/storage/gas) -"vGN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"vHl" = ( -/mob/living/simple_animal/pet/penguin/baby{ - dir = 8 - }, -/turf/open/floor/grass, -/area/station/science/research) -"vHm" = ( -/obj/structure/window/reinforced, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"vHs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Power Monitoring" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/engineering/main) -"vHJ" = ( -/obj/structure/sign/warning/radiation/rad_area/directional/north, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"vHN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/port) -"vHO" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"vIa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"vIm" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/greater) -"vIB" = ( -/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/tile/green/fourcorners, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"vIH" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L14" - }, -/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) -"vIJ" = ( -/obj/machinery/atmospherics/components/unary/passive_vent/layer2{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"vIM" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"vIT" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"vIY" = ( -/turf/closed/wall, -/area/station/engineering/storage_shared) -"vJe" = ( -/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/white, -/area/station/medical/treatment_center) -"vJl" = ( -/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, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"vJt" = ( -/obj/structure/cable, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"vJy" = ( -/obj/structure/rack, -/obj/item/stack/sheet/cardboard, -/obj/item/stack/sheet/cardboard, -/obj/structure/light_construct/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"vJB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/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/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"vJI" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/effect/spawner/random/structure/crate_empty, -/obj/item/circuitboard/machine/thermomachine, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/atmos) -"vJX" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"vJY" = ( -/obj/structure/rack, -/obj/effect/spawner/random/clothing/costume, -/obj/effect/spawner/random/clothing/costume, -/turf/open/floor/plating, -/area/station/maintenance/port) -"vKf" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "MiniSat Exterior - Port Aft"; - network = list("minisat") - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"vKg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"vKm" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hazardvest, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"vKt" = ( -/obj/structure/table/wood/fancy/royalblue, -/obj/structure/sign/painting/library_secure{ - pixel_x = 32 - }, -/obj/effect/spawner/random/decoration/statue{ - spawn_loot_chance = 50 - }, -/turf/open/floor/carpet/royalblue, -/area/station/service/library) -"vKL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/station/command/bridge) -"vKT" = ( -/obj/structure/girder, -/obj/effect/spawner/random/structure/grille, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"vKW" = ( -/obj/machinery/dna_scannernew, -/obj/effect/turf_decal/siding/purple{ - dir = 10 - }, -/obj/machinery/requests_console/directional/west{ - department = "Genetics"; - departmentType = 2; - name = "Genetics Requests Console" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"vLb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"vLf" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/obj/effect/landmark/start/paramedic, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"vLi" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/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) -"vLr" = ( -/obj/effect/turf_decal/tile/neutral/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/dark, -/area/station/construction/storage_wing) -"vLv" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/machinery/light/small/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/machinery/camera/autoname/directional/west, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 4 - }, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/service/kitchen/coldroom) -"vLA" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/locker) -"vLM" = ( -/obj/structure/table/wood/poker, -/obj/item/storage/dice, -/turf/open/floor/wood, -/area/station/commons/lounge) -"vLX" = ( -/obj/item/wrench, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"vMb" = ( -/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/duct, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"vMc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/water_vapor, -/turf/open/floor/iron, -/area/station/service/janitor) -"vMd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"vME" = ( -/obj/structure/chair/stool/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/commons/locker) -"vML" = ( -/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, -/area/station/engineering/break_room) -"vMX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"vNf" = ( -/obj/structure/tank_dispenser/oxygen{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/machinery/light/directional/east, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/command/gateway) -"vNv" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/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, -/area/station/hallway/primary/aft) -"vNG" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"vNT" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/components/unary/passive_vent{ - dir = 1 - }, -/turf/open/space, -/area/space/nearstation) -"vOh" = ( -/obj/effect/turf_decal/stripes/end, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"vOj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/command/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/central) -"vON" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"vOO" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/door/window{ - base_state = "right"; - icon_state = "right"; - name = "MiniSat Walkway Access" - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"vPm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/white, -/area/station/science/lab) -"vPp" = ( -/obj/structure/sign/poster/random/directional/east{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"vPq" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"vPy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 10 - }, -/turf/open/floor/iron/dark/textured, -/area/station/engineering/atmos) -"vPO" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/cmo{ - dir = 4; - pixel_x = -30 - }, -/obj/machinery/keycard_auth/directional/south{ - pixel_x = 6 - }, -/obj/machinery/button/door/directional/south{ - id = "cmoprivacy"; - name = "CMO Privacy Shutters"; - pixel_x = -8; - req_access = list("cmo") - }, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"vPR" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"vPW" = ( -/obj/item/extinguisher, -/turf/open/floor/plating, -/area/station/maintenance/central) -"vPX" = ( -/obj/machinery/door/window/right/directional/east{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Security Delivery"; - req_access = list("security") - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/security/office) -"vQb" = ( -/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) -"vQe" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"vQg" = ( -/turf/closed/wall, -/area/station/service/chapel/office) -"vQh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"vQs" = ( -/turf/closed/wall, -/area/station/cargo/warehouse) -"vQt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"vQv" = ( -/obj/structure/table, -/obj/item/plant_analyzer, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"vQI" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall/r_wall, -/area/station/security/brig) -"vQO" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"vQP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"vQR" = ( -/obj/machinery/power/port_gen/pacman/pre_loaded, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"vQV" = ( -/obj/effect/turf_decal/stripes/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 = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"vQW" = ( -/obj/structure/reagent_dispensers/wall/peppertank/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Security - Gear Room" - }, -/obj/machinery/vending/wardrobe/sec_wardrobe, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"vQY" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/spawner/random/bureaucracy/briefcase{ - spawn_loot_count = 2; - spawn_loot_split = 1 - }, -/turf/open/floor/iron, -/area/station/commons/locker) -"vRg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology/hallway) -"vRk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction/flip, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"vRB" = ( -/obj/structure/disposalpipe/segment, -/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/security/brig) -"vRN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/landmark/start/medical_doctor, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"vRR" = ( -/obj/machinery/duct, -/obj/machinery/door/airlock/medical{ - name = "Primary Surgical Theatre" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"vRS" = ( -/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, -/area/station/engineering/atmospherics_engine) -"vSa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/station/service/theater) -"vSo" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/brig) -"vSs" = ( -/obj/machinery/airalarm/directional/west, -/obj/structure/closet, -/obj/item/crowbar, -/obj/item/assembly/flash/handheld, -/obj/item/radio, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/customs) -"vSu" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/effect/turf_decal/siding/white/corner, -/obj/item/storage/box/gloves{ - pixel_y = 8 - }, -/obj/item/storage/box/masks{ - pixel_y = 4 - }, -/obj/item/storage/box/bodybags, -/turf/open/floor/iron/white/side{ - dir = 9 - }, -/area/station/medical/treatment_center) -"vSI" = ( -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"vSP" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"vSU" = ( -/obj/machinery/door/airlock{ - id_tag = "Toilet2"; - name = "Unit 2" - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"vTf" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"vTX" = ( -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"vUx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"vUH" = ( -/obj/structure/table/glass, -/obj/structure/cable, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white, -/obj/item/pen/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"vUM" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"vUS" = ( -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"vVm" = ( -/obj/machinery/firealarm/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/security/brig) -"vVr" = ( -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"vVu" = ( -/obj/structure/rack, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/iron/twenty, -/turf/open/floor/iron, -/area/station/maintenance/port/aft) -"vVw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"vVx" = ( -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"vVy" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"vVz" = ( -/obj/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/medical/virology) -"vVE" = ( -/obj/machinery/camera/motion/directional/east{ - c_tag = "MiniSat Maintenance"; - network = list("minisat") - }, -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/multitool, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) -"vVI" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"vVM" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/structure/closet/crate/goldcrate, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"vVV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"vVZ" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L7" - }, -/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) -"vWa" = ( -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/machinery/camera/directional/west{ - c_tag = "Science Ordnance Test Lab" - }, -/obj/item/assembly/prox_sensor{ - pixel_y = 2 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 9; - pixel_y = -2 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 8; - pixel_y = 9 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/requests_console/directional/west{ - department = "Ordnance Test Range"; - departmentType = 5; - name = "Test Range Requests Console" - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"vWn" = ( -/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 = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"vWt" = ( -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"vWv" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"vWz" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/siding/red{ - dir = 4 - }, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"vWB" = ( -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "External Waste Ports to Filter" - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos) -"vWF" = ( -/obj/structure/cable, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/service/library) -"vWS" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vWT" = ( -/obj/structure/frame/machine{ - anchored = 1 - }, -/turf/open/floor/circuit/green/off, -/area/station/science/research) -"vXb" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/departments/court/directional/south, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron, -/area/station/security/holding_cell) -"vXc" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/camera/directional/west{ - c_tag = "Medbay Primary Treatment Centre West"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"vXi" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/computer/camera_advanced/xenobio{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"vXm" = ( -/obj/machinery/door/poddoor/shutters{ - id = "qm_warehouse"; - name = "Warehouse Shutters"; - dir = 8 - }, -/obj/effect/turf_decal/caution/stand_clear, -/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/warehouse) -"vXt" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 9 - }, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/station/engineering/atmos) -"vXC" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"vXH" = ( -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/port) -"vXO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"vXZ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"vYg" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/command/gateway) -"vYl" = ( -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"vYD" = ( -/obj/effect/decal/cleanable/dirt, -/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, -/area/station/security/brig) -"vYE" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"vYF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig" - }, -/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/cyclelink_helper_multi{ - cycle_id = "brig-entrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron, -/area/station/security/brig) -"vYJ" = ( -/obj/machinery/airalarm/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"vYK" = ( -/obj/structure/rack, -/obj/item/lighter, -/obj/item/clothing/glasses/meson, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/button/door/directional/south{ - id = "ceprivacy"; - name = "Privacy Shutters Control" - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"vZm" = ( -/turf/closed/wall, -/area/station/security/lockers) -"vZB" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall, -/area/station/maintenance/aft/lesser) -"vZE" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/port) -"vZF" = ( -/obj/structure/chair/office/light, -/obj/effect/landmark/start/chemist, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"vZM" = ( -/obj/machinery/airalarm/directional/south, -/obj/item/stack/package_wrap{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/stack/package_wrap, -/obj/structure/table/wood, -/obj/item/gun/ballistic/shotgun/doublebarrel, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/wood, -/area/station/service/bar) -"vZQ" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/command) -"wac" = ( -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 3; - pixel_y = -4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"wag" = ( -/obj/machinery/computer/med_data, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"wah" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"wal" = ( -/obj/effect/turf_decal/siding/purple, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"wao" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/spawner/random/trash/janitor_supplies, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"waq" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 1; - height = 4; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/turf/open/space/basic, -/area/space) -"was" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"waB" = ( -/obj/machinery/door/airlock/external/glass{ - name = "Supply Door Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/plating, -/area/station/cargo/storage) -"waH" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/holopad, -/obj/effect/landmark/start/orderly, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) -"waI" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/structure/bodycontainer/morgue{ - dir = 2 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) -"waK" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"wbF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron, -/area/station/engineering/main) -"wbH" = ( -/obj/effect/spawner/random/trash/bin, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"wcr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/dorms) -"wcs" = ( -/obj/effect/turf_decal/trimline/brown/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, -/area/station/construction/storage_wing) -"wcu" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"wcJ" = ( -/obj/structure/sign/warning/vacuum/external/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"wcL" = ( -/obj/machinery/door/window/right/directional/north{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Library Desk Door"; - pixel_x = 3; - req_access = list("library") - }, -/turf/open/floor/wood, -/area/station/service/library) -"wcN" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"wde" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/landmark/start/orderly, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) -"wdr" = ( -/turf/closed/wall, -/area/station/hallway/secondary/entry) -"wdv" = ( -/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, -/obj/effect/landmark/start/scientist, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"wdB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/button/door/directional/east{ - id = "engsm"; - name = "Radiation Shutters Control"; - req_access = list("engineering") - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"wdG" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin3"; - name = "Cabin 6" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/dorms) -"wdK" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"wdQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/directional/east{ - c_tag = "Outer Vault"; - name = "storage wing camera" - }, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/trimline/brown/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/window, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"wek" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"wen" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"weq" = ( -/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) -"wev" = ( -/obj/structure/rack, -/obj/item/storage/box, -/turf/open/floor/plating, -/area/station/maintenance/port) -"wew" = ( -/obj/machinery/modular_computer/console/preset/cargochat/cargo{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"wez" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"weC" = ( -/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/locker) -"weD" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #4"; - dir = 6; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"weJ" = ( -/obj/machinery/door/airlock{ - name = "Central Emergency Storage" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/central) -"weS" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"wfn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"wfu" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) -"wfC" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/storage/gas) -"wfD" = ( -/obj/structure/fireaxecabinet/directional/south, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_y = 3 - }, -/obj/machinery/light_switch/directional/east, -/obj/structure/table/glass, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"wfM" = ( -/obj/structure/window/reinforced, -/obj/machinery/computer/atmos_control/nitrous_tank{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wfN" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/under/misc/assistantformal, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/station/commons/dorms) -"wfU" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"wfZ" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/commons/toilet/auxiliary) -"wgf" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"wgh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/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) -"wgl" = ( -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/structure/table/wood, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/spawner/random/food_or_drink/booze{ - spawn_loot_count = 2; - spawn_random_offset = 1 - }, -/obj/effect/spawner/random/entertainment/musical_instrument, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"wgq" = ( -/obj/structure/fluff/broken_flooring{ - dir = 4; - icon_state = "pile" - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"wgs" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin4"; - name = "Cabin 5" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/dorms) -"wgw" = ( -/obj/structure/sign/warning/secure_area{ - name = "\improper STAY CLEAR HEAVY MACHINERY" - }, -/turf/closed/wall, -/area/station/maintenance/port/fore) -"wgB" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"wha" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/obj/item/stock_parts/matter_bin, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"whx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/research/glass{ - name = "Pharmacy" - }, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/general, -/obj/effect/mapping_helpers/airlock/access/any/medical/pharmacy, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"why" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "executionfireblast" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"wih" = ( -/obj/machinery/newscaster/directional/south, -/turf/open/floor/wood, -/area/station/service/library) -"wit" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"wiF" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/delivery, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"wiQ" = ( -/obj/structure/closet/toolcloset, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"wjn" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"wjD" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/commons/dorms) -"wjH" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/rack, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"wjK" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/item/clothing/head/that, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table, -/turf/open/floor/iron, -/area/station/service/bar) -"wjQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"wjT" = ( -/obj/machinery/power/smes, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"wjW" = ( -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/vending/barbervend, -/obj/machinery/button/curtain{ - id = "barbershopcurtains"; - pixel_x = -25; - pixel_y = 24 - }, -/turf/open/floor/iron, -/area/service/salon) -"wkb" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera/directional/south{ - c_tag = "Engineering Supermatter Aft"; - network = list("ss13","engine") - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"wkh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"wki" = ( -/obj/effect/spawner/random/vending/snackvend, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"wkv" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/item/laser_pointer/red, -/turf/open/space/basic, -/area/space/nearstation) -"wkC" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/purple/line, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/research) -"wkH" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"wkL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "Secure Gate"; - name = "Brig Shutters" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/brig) -"wkM" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"wlj" = ( -/obj/machinery/hydroponics/soil{ - pixel_y = 8 - }, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/machinery/light/small/directional/north, -/turf/open/floor/cult, -/area/station/service/chapel/funeral) -"wlt" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/warning, -/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/medbay/central) -"wmc" = ( -/obj/structure/closet/secure_closet/evidence, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"wmd" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "XenoPens"; - name = "Xenobiology Lockdown"; - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"wmf" = ( -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"wmg" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"wmi" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"wmz" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wmB" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"wmL" = ( -/turf/closed/wall/r_wall, -/area/station/science/xenobiology/hallway) -"wmT" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"wna" = ( -/obj/effect/turf_decal/siding/purple, -/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/ordnance) -"wne" = ( -/obj/structure/chair, -/obj/machinery/computer/security/telescreen/interrogation{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor/iron/grimy, -/area/station/security/interrogation) -"wnK" = ( -/obj/machinery/disposal/delivery_chute{ - dir = 1; - name = "Science Deliveries" - }, -/obj/structure/plasticflaps/opaque{ - name = "Science Deliveries" - }, -/obj/structure/disposalpipe/trunk, -/obj/structure/sign/departments/science/directional/south{ - color = "#D381C9" - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"wnN" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/rack, -/obj/item/reagent_containers/pill/maintenance, -/obj/item/reagent_containers/pill/maintenance, -/obj/item/storage/box/gum, -/obj/item/surgicaldrill, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/medical/abandoned) -"wnR" = ( -/obj/machinery/vending/wardrobe/hydro_wardrobe, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/light/small/directional/north, -/obj/structure/sign/poster/official/random/directional/east, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"woc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port) -"woi" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"woG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"woL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"woV" = ( -/obj/machinery/door/window{ - dir = 1 - }, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"woY" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"wpi" = ( -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"wpn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"wpo" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron, -/area/service/salon) -"wpr" = ( -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"wpw" = ( -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"wpx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"wpJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - name = "AI Upload" - }, -/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, -/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"wqh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/landmark/start/roboticist, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"wqj" = ( -/obj/machinery/rnd/production/protolathe/department/science, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/science/lab) -"wqA" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/maintenance/starboard/greater) -"wqE" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"wqJ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"wrb" = ( -/obj/structure/closet{ - name = "Evidence Closet 5" - }, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"wrc" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"wrg" = ( -/obj/effect/turf_decal/tile/red{ - 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/corner, -/area/station/hallway/primary/aft) -"wrn" = ( -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"wrG" = ( -/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/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"wrJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/landmark/start/roboticist, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/circuit/green, -/area/station/science/robotics/mechbay) -"wrY" = ( -/obj/structure/window/reinforced, -/obj/item/reagent_containers/food/drinks/mug/coco{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/drinks/mug/tea{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -3 - }, -/obj/structure/table/reinforced{ - name = "Jim Norton's Quebecois Coffee table" - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/cafeteria) -"wsq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Armory" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/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/ai_monitored/security/armory) -"wst" = ( -/obj/machinery/door/airlock{ - name = "Unisex Showers" - }, -/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/freezer, -/area/station/commons/toilet/restrooms) -"wsv" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/duct, -/obj/machinery/door/airlock/medical/glass{ - name = "Cryogenics Bay" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"wsx" = ( -/obj/effect/turf_decal/tile/neutral/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/dark, -/area/station/commons/fitness/recreation) -"wsA" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Teleporter Room" - }, -/obj/structure/rack, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"wsD" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"wsI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"wsQ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/effect/landmark/event_spawn, -/obj/item/radio/intercom/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/corner, -/area/station/engineering/atmos/storage/gas) -"wsS" = ( -/obj/machinery/door/airlock/external{ - name = "Departure Lounge Airlock"; - space_dir = 2 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"wsW" = ( -/obj/structure/rack, -/obj/item/reagent_containers/glass/bottle/mercury{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/nitrogen{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/oxygen{ - pixel_x = 1 - }, -/turf/open/floor/iron/dark/textured_edge{ - dir = 4 - }, -/area/station/medical/medbay/central) -"wsX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/brig) -"wto" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-maint-passthrough" - }, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Access" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron/white, -/area/station/science/research) -"wtu" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/structure/rack, -/obj/item/storage/medkit/regular, -/obj/item/stack/medical/suture, -/obj/item/stack/medical/suture, -/obj/item/stack/medical/mesh, -/obj/item/clothing/glasses/hud/health, -/obj/effect/turf_decal/trimline/green/filled/line, -/turf/open/floor/iron/showroomfloor, -/area/station/maintenance/starboard/lesser) -"wtw" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Prison Central"; - network = list("ss13","prison") - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/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/prison) -"wtP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding{ - dir = 4 - }, -/obj/effect/landmark/start/research_director, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"wtQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"wtX" = ( -/obj/structure/table/wood, -/obj/item/folder/yellow, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"wtZ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"wuh" = ( -/obj/effect/spawner/random/contraband/prison, -/obj/structure/closet/crate, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/radio/intercom/prison/directional/north, -/turf/open/floor/plating, -/area/station/security/prison/work) -"wuj" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/flasher/directional/east{ - id = "holdingflash" - }, -/turf/open/floor/iron, -/area/station/security/holding_cell) -"wuM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) -"wvd" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin5"; - name = "Cabin 3" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/dorms) -"wvo" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/commons/vacant_room/commissary) -"wvr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port) -"wvP" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/iv_drip, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"wwj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Brig Infirmary Maintenance" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"wwt" = ( -/obj/machinery/door/airlock/research{ - name = "Mech Bay" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/science/robotics, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"wwW" = ( -/obj/effect/turf_decal/trimline/purple/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"wwY" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"wxe" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"wxg" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - 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, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"wxj" = ( -/turf/open/floor/iron/dark, -/area/station/security/office) -"wxk" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"wxn" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"wxF" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"wyn" = ( -/obj/machinery/hydroponics/soil, -/obj/item/shovel/spade, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/grass, -/area/station/security/prison/garden) -"wyo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"wyp" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Salon" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/chair/sofa/bench/right, -/turf/open/floor/iron, -/area/service/salon) -"wyu" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"wyz" = ( -/obj/structure/chair{ - dir = 4; - name = "Prosecution" - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"wyG" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"wyV" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/trash/soap, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/wood, -/area/station/service/theater) -"wza" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"wzi" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/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/machinery/holopad, -/turf/open/floor/iron, -/area/station/science/research) -"wzF" = ( -/obj/effect/turf_decal/trimline/darkblue/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"wzH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) -"wzK" = ( -/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) -"wAp" = ( -/obj/item/radio/intercom/directional/west, -/obj/structure/table, -/obj/item/storage/backpack/duffelbag/sec/surgery{ - pixel_y = 5 - }, -/obj/item/clothing/mask/balaclava, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"wAA" = ( -/obj/machinery/firealarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"wBe" = ( -/obj/effect/turf_decal/trimline/red/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/security/prison) -"wBn" = ( -/obj/structure/chair/stool/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison) -"wBq" = ( -/obj/structure/table, -/obj/effect/turf_decal/siding/purple{ - dir = 9 - }, -/obj/item/toy/figure/geneticist, -/obj/item/radio/intercom/directional/west, -/obj/item/storage/pill_bottle/mutadone{ - pixel_x = -9 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"wBs" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"wBu" = ( -/obj/structure/chair/office, -/obj/effect/landmark/start/head_of_personnel, -/obj/machinery/light_switch{ - pixel_x = 38; - pixel_y = -35 - }, -/obj/machinery/button/flasher{ - id = "hopflash"; - pixel_x = 38; - pixel_y = -25 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"wBE" = ( -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/station/engineering/supermatter) -"wBF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"wBM" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"wBT" = ( -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/service/theater) -"wBV" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Gas to Cold Loop" - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"wBW" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"wCe" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/effect/spawner/random/maintenance, -/obj/item/storage/belt/utility, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"wCl" = ( -/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/hallway/primary/starboard) -"wCq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/server) -"wCz" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "MiniSat Airlock Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"wCE" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "HoP Queue Shutters" - }, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"wCH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"wCL" = ( -/obj/structure/chair/stool/directional/south, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/commons/lounge) -"wCO" = ( -/obj/structure/chair{ - name = "Judge" - }, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"wCS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/atmospherics_engine) -"wCT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"wDq" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"wDG" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/door/airlock/atmos/glass{ - name = "Distribution Loop" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/pumproom) -"wEf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_output{ - dir = 1 - }, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"wEn" = ( -/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/grimy, -/area/station/service/chapel/office) -"wEp" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/defibrillator/loaded{ - pixel_y = 6 - }, -/obj/item/defibrillator/loaded{ - pixel_y = 3 - }, -/obj/item/defibrillator/loaded, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"wEz" = ( -/obj/item/stack/sheet/cardboard, -/obj/effect/spawner/random/trash/janitor_supplies, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"wEG" = ( -/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, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"wEY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdgene2"; - name = "Genetics Lab Shutters"; - dir = 8 - }, -/turf/open/floor/plating, -/area/station/science/genetics) -"wFa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/duct, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"wFe" = ( -/obj/machinery/computer/teleporter{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/command/teleporter) -"wFi" = ( -/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) -"wFk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "hosspace"; - name = "Space Shutters" - }, -/turf/open/floor/plating, -/area/station/command/heads_quarters/hos) -"wFv" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Plasma to Pure" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wFM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"wFV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"wGk" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"wGz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/light_construct/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"wGB" = ( -/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 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"wGE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/science/research) -"wGR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/dorms) -"wHd" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"wHj" = ( -/obj/machinery/door/airlock{ - name = "Unit B" - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"wHu" = ( -/turf/closed/wall, -/area/station/science/lobby) -"wHJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"wHW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/station/ai_monitored/command/nuke_storage) -"wIo" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/left/directional/north{ - name = "MuleBot Access"; - req_access = list("shipping") - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Research" - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/lesser) -"wIB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"wIM" = ( -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/station/security/prison) -"wIW" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"wJm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sign/departments/court/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/hallway/primary/central) -"wJv" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/space, -/area/space/nearstation) -"wJw" = ( -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"wJD" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/explab) -"wJL" = ( -/turf/open/floor/iron/dark, -/area/station/security/holding_cell) -"wJV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"wJX" = ( -/turf/open/floor/iron/dark, -/area/station/security/brig) -"wKe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/cryo_cell, -/turf/open/floor/iron/dark/textured, -/area/station/medical/cryo) -"wKo" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"wKs" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/left/directional/east{ - dir = 1; - name = "Kitchen Window"; - req_access = list("kitchen") - }, -/obj/machinery/door/firedoor, -/obj/item/paper, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchen_service"; - name = "Service Shutter" - }, -/obj/item/pen, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"wKu" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/commons/lounge) -"wKC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"wKG" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Cytology - Secure Pen"; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/station/science/cytology) -"wKS" = ( -/obj/structure/window/reinforced/plasma, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/power/energy_accumulator/grounding_rod/anchored, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"wKT" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table, -/obj/machinery/button/door{ - id = "xenobio1"; - layer = 3.3; - name = "Xenobio Pen 1 Blast Doors"; - pixel_y = 1; - req_access = list("xenobiology") - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"wKX" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"wLx" = ( -/obj/structure/closet/wardrobe/mixed, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/station/commons/locker) -"wLz" = ( -/obj/structure/rack, -/obj/item/reagent_containers/glass/bottle/iron{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/lithium{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 1 - }, -/turf/open/floor/iron/dark/textured_edge{ - dir = 8 - }, -/area/station/medical/medbay/central) -"wLC" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/door/window{ - base_state = "right"; - icon_state = "right"; - name = "MiniSat Walkway Access" - }, -/obj/machinery/camera/directional/west{ - c_tag = "MiniSat Exterior - Aft Starboard"; - network = list("minisat") - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"wMk" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"wMx" = ( -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"wMz" = ( -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"wME" = ( -/obj/structure/cable, -/obj/machinery/computer/cryopod{ - pixel_y = 32 - }, -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/common/cryopods) -"wMM" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/closet, -/obj/item/surgicaldrill, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"wMP" = ( -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/secondary/entry) -"wNa" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/science/research) -"wNh" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"wNm" = ( -/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/turret_protected/aisat_interior) -"wNp" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/cobweb, -/obj/item/bedsheet/dorms, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/landmark/start/hangover, -/obj/machinery/button/door/directional/west{ - id = "Cabin6"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"wND" = ( -/obj/effect/turf_decal/arrows/red{ - dir = 4 - }, -/obj/effect/spawner/random/maintenance, -/obj/structure/cable, -/obj/effect/turf_decal/bot_white, -/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) -"wNH" = ( -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"wNN" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L9" - }, -/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) -"wNO" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"wOl" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"wOm" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/station/security/prison/safe) -"wOy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/turf/open/floor/iron, -/area/station/service/janitor) -"wOz" = ( -/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/white, -/area/station/medical/office) -"wOB" = ( -/obj/machinery/vending/wardrobe/engi_wardrobe, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/engineering/main) -"wOF" = ( -/obj/effect/spawner/random/maintenance, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/directional/north{ - c_tag = "Service Maintinance" - }, -/turf/open/floor/iron, -/area/station/maintenance/starboard/greater) -"wOI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/engine) -"wOR" = ( -/obj/effect/landmark/event_spawn, -/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) -"wOS" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Robotics Maintenance" - }, -/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, -/obj/effect/mapping_helpers/airlock/access/all/science/robotics, -/turf/open/floor/plating, -/area/station/science/robotics/lab) -"wOV" = ( -/obj/effect/landmark/start/warden, -/obj/structure/chair/office, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/dark_red/filled/line, -/turf/open/floor/iron, -/area/station/security/warden) -"wOY" = ( -/obj/docking_port/stationary/random{ - dir = 4; - id = "pod_3_lavaland"; - name = "lavaland" - }, -/turf/open/space, -/area/space) -"wPi" = ( -/obj/machinery/vending/wardrobe/det_wardrobe, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"wPo" = ( -/obj/item/radio/intercom/directional/west{ - freerange = 1; - listening = 0; - name = "Common Channel"; - pixel_y = -8 - }, -/obj/item/radio/intercom/directional/south{ - freerange = 1; - frequency = 1447; - listening = 0; - name = "Private Channel" - }, -/obj/item/radio/intercom/directional/east{ - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_y = -8 - }, -/obj/effect/landmark/start/ai, -/obj/machinery/button/door/directional/south{ - id = "AI Chamber entrance shutters"; - name = "AI Chamber Entrance Shutters Control"; - pixel_x = -24; - req_access = list("ai_upload") - }, -/obj/machinery/button/door/directional/south{ - id = "AI Core shutters"; - name = "AI Core Shutters Control"; - pixel_x = 24; - req_access = list("ai_upload") - }, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) -"wPv" = ( -/obj/structure/chair/stool/directional/east, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/commons/lounge) -"wPB" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"wPD" = ( -/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) -"wPE" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/lounge) -"wPG" = ( -/obj/machinery/flasher/portable, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"wPM" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) -"wPZ" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrogen_input{ - dir = 1 - }, -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"wQe" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/robotics/mechbay) -"wQj" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"wQP" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/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) -"wQT" = ( -/obj/effect/turf_decal/stripes{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"wQU" = ( -/obj/structure/lattice/catwalk, -/obj/structure/marker_beacon/burgundy, -/turf/open/space, -/area/space/nearstation) -"wRj" = ( -/obj/structure/table, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"wRl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/fluff/broken_flooring, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"wRm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"wRp" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"wRt" = ( -/obj/machinery/light_switch/directional/east, -/obj/machinery/light/small/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Chapel Office" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"wRB" = ( -/obj/item/radio/intercom/directional/north, -/obj/machinery/firealarm/directional/west, -/obj/structure/table/wood, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"wRD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/mmi, -/obj/item/mmi, -/obj/item/mmi, -/obj/structure/table, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"wRL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Cytology Lab - Worklab"; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/holofloor/dark, -/area/station/science/cytology) -"wRP" = ( -/obj/effect/turf_decal/trimline/brown/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, -/area/station/hallway/primary/central) -"wRT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"wRZ" = ( -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"wSe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"wSs" = ( -/obj/structure/table/wood/poker, -/obj/effect/spawner/random/entertainment/deck, -/turf/open/floor/wood, -/area/station/commons/lounge) -"wSD" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"wSI" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/left/directional/west{ - dir = 4; - name = "Hydroponics Desk"; - req_access = list("hydroponics") - }, -/obj/effect/turf_decal/tile/green/fourcorners, -/obj/structure/desk_bell{ - pixel_x = 6; - pixel_y = 10 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"wSP" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/obj/machinery/light/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"wTs" = ( -/obj/item/radio/intercom/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Atmospherics - Port-Fore" - }, -/obj/structure/reagent_dispensers/fueltank/large, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wTF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"wTO" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"wUc" = ( -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"wUj" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"wUm" = ( -/obj/machinery/shower{ - dir = 8; - pixel_y = -4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"wUt" = ( -/obj/effect/spawner/random/engineering/atmospherics_portable, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"wUC" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 8 - }, -/obj/machinery/rnd/production/techfab/department/cargo, -/turf/open/floor/iron, -/area/station/cargo/storage) -"wUE" = ( -/obj/machinery/space_heater, -/obj/structure/sign/warning/vacuum/external/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"wUG" = ( -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/trimline/blue/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/medical/medbay/central) -"wUQ" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"wVd" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/directional/south, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"wVf" = ( -/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/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"wVo" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"wVt" = ( -/obj/item/storage/box/deputy, -/obj/structure/table, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/office) -"wVC" = ( -/obj/structure/rack, -/obj/item/integrated_circuit/loaded/hello_world, -/obj/item/integrated_circuit/loaded/speech_relay, -/turf/open/floor/iron/white, -/area/station/science/explab) -"wVO" = ( -/obj/item/reagent_containers/glass/bottle/toxin{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/reagentgrinder{ - pixel_y = 4 - }, -/obj/item/reagent_containers/pill/morphine{ - name = "Exponential Entrophy"; - pixel_x = -9; - pixel_y = -4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/maintenance/starboard/lesser) -"wVQ" = ( -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"wVW" = ( -/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/commons/fitness/recreation) -"wWd" = ( -/obj/machinery/flasher/directional/north{ - id = "AI" - }, -/obj/structure/table/wood/fancy/blue, -/obj/effect/spawner/random/aimodule/neutral, -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Core Modules"; - req_access = list("captain") - }, -/obj/structure/window/reinforced, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) -"wWk" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/light/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/hallway/primary/aft) -"wWs" = ( -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"wWN" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{ - dir = 9 - }, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/engine) -"wWV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/storage/box/monkeycubes{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/storage/box/monkeycubes{ - pixel_x = -5; - pixel_y = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"wWW" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/maintenance/port) -"wXc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"wXk" = ( -/obj/structure/flora/bush/ferny/style_random, -/obj/structure/flora/bush/fullgrass/style_random, -/obj/structure/flora/bush/flowers_pp/style_random, -/obj/structure/flora/bush/pale/style_random, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/station/hallway/secondary/exit/departure_lounge) -"wXo" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wXr" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/south, -/obj/machinery/firealarm/directional/south, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"wXF" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/lesser) -"wXP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"wXZ" = ( -/obj/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/medical/morgue) -"wYc" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/pipe_dispenser, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"wYe" = ( -/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 = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"wYl" = ( -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"wYn" = ( -/obj/machinery/chem_dispenser/drinks/beer{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table, -/turf/open/floor/iron, -/area/station/service/bar) -"wYo" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"wYx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"wYB" = ( -/turf/closed/wall, -/area/station/hallway/secondary/service) -"wYD" = ( -/obj/item/newspaper, -/obj/structure/table, -/turf/open/floor/plating/airless, -/area/station/engineering/atmos) -"wZe" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Chapel Office" - }, -/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/cable, -/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"wZg" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/grass, -/area/station/science/research) -"wZk" = ( -/obj/machinery/light_switch/directional/north, -/obj/structure/showcase/cyborg/old{ - pixel_y = 20 - }, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"wZl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"wZw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"wZz" = ( -/turf/closed/wall, -/area/station/security/prison/safe) -"wZA" = ( -/obj/effect/spawner/random/maintenance, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"wZX" = ( -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"xaj" = ( -/obj/effect/spawner/random/structure/closet_maintenance, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"xar" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"xaB" = ( -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"xaL" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/purple/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/camera/directional/north{ - c_tag = "Science Hallway - Research"; - network = list("ss13","rd") - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"xba" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/bot{ - 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{ - dir = 1 - }, -/area/station/engineering/main) -"xbd" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"xbr" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/dark_red/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/security/warden) -"xbT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/hallway/secondary/service) -"xbY" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/obj/structure/cable, -/turf/open/floor/iron/white/smooth_large, -/area/station/command/heads_quarters/cmo) -"xct" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/transit_tube/curved/flipped, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"xcz" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/maintenance/department/engine) -"xcN" = ( -/obj/docking_port/stationary/random{ - id = "pod_lavaland"; - name = "lavaland" - }, -/turf/open/space, -/area/space) -"xdm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/holding_cell) -"xdn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"xdA" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/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/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison) -"xdF" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"xdJ" = ( -/turf/closed/wall, -/area/station/medical/surgery/aft) -"xdR" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) -"xdV" = ( -/obj/item/reagent_containers/food/drinks/bottle/wine/unlabeled, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"xdX" = ( -/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/white/side, -/area/station/science/lobby) -"xdY" = ( -/obj/machinery/door/airlock/mining{ - name = "Mining Office" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"xel" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/central) -"xen" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) -"xew" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"xeN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/station/maintenance/port) -"xff" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple/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/white, -/area/station/science/research) -"xfm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/item/biopsy_tool{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/book/manual/wiki/cytology{ - pixel_x = -4; - pixel_y = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"xfx" = ( -/obj/structure/table/glass, -/obj/item/stack/medical/mesh, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/white/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white/side{ - dir = 6 - }, -/area/station/medical/treatment_center) -"xfA" = ( -/obj/machinery/door/airlock/hatch{ - name = "Secure Pen" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/engine, -/area/station/science/cytology) -"xfF" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"xfI" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) -"xga" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "CMO Maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/medical/cmo, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"xgi" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/bot, -/obj/item/bodypart/r_arm/robot{ - pixel_x = 3 - }, -/obj/item/bodypart/l_arm/robot{ - pixel_x = -3 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/firealarm/directional/west, -/obj/item/assembly/flash/handheld{ - pixel_x = 6; - pixel_y = 13 - }, -/obj/item/assembly/flash/handheld{ - pixel_x = 6; - pixel_y = 13 - }, -/obj/item/assembly/flash/handheld{ - pixel_x = 6; - pixel_y = 13 - }, -/obj/item/assembly/flash/handheld{ - pixel_x = 6; - pixel_y = 13 - }, -/obj/item/assembly/flash/handheld{ - pixel_x = 6; - pixel_y = 13 - }, -/obj/machinery/ecto_sniffer{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"xgn" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/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/white/side{ - dir = 4 - }, -/area/station/medical/treatment_center) -"xgw" = ( -/turf/open/floor/carpet/red, -/area/station/cargo/qm) -"xgB" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"xgD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"xgE" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/power/port_gen/pacman, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable/multilayer/connected, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) -"xgG" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/rack, -/obj/effect/spawner/random/clothing/costume, -/obj/effect/spawner/random/clothing/costume, -/turf/open/floor/plating, -/area/station/maintenance/port) -"xgL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"xgR" = ( -/obj/machinery/rnd/production/protolathe/department/engineering, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/storage_shared) -"xgV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/break_room) -"xhb" = ( -/obj/machinery/meter, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"xhh" = ( -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"xip" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"xit" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) -"xiv" = ( -/obj/item/kirbyplants{ - icon_state = "plant-11" - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"xiw" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/vending/coffee{ - default_price = 0; - extra_price = 0; - fair_market_price = 0; - name = "\improper Jim Norton's Quebecois Coffee" - }, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/cafeteria) -"xiL" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/department/science/xenobiology) -"xjb" = ( -/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 - }, -/obj/machinery/door/window{ - atom_integrity = 300; - base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - layer = 4.1; - name = "Secondary AI Core Access"; - pixel_x = 4; - req_access = list("ai_upload") - }, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) -"xjh" = ( -/turf/closed/wall, -/area/station/security/checkpoint/customs) -"xjm" = ( -/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) -"xjA" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Central Primary Hallway - Fore" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"xjC" = ( -/obj/machinery/firealarm/directional/south, -/obj/machinery/camera/autoname/directional/south, -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/pen, -/turf/open/floor/wood, -/area/station/service/library) -"xjH" = ( -/turf/closed/wall/r_wall, -/area/station/medical/virology) -"xjI" = ( -/obj/structure/cable, -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"xkr" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L13" - }, -/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) -"xkv" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"xkw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/satellite) -"xkT" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue{ - pixel_y = 2 - }, -/obj/item/pen, -/obj/machinery/light/small/directional/west, -/obj/machinery/requests_console/directional/west, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"xkV" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xkY" = ( -/obj/structure/table, -/obj/structure/cable, -/obj/item/instrument/harmonica, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison) -"xln" = ( -/obj/machinery/requests_console/directional/west{ - department = "Detective"; - name = "Detective Requests Console" - }, -/obj/machinery/light/small/directional/west, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/machinery/camera/directional/west{ - c_tag = "Detective's Office" - }, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"xlq" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/structure/sign/departments/botany/directional/east, -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"xlw" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight, -/obj/item/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/assembly/signaler, -/obj/item/stack/rods{ - amount = 25 - }, -/obj/item/stack/cable_coil, -/obj/item/gps, -/obj/structure/cable, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/light/directional/east, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/gps, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"xly" = ( -/obj/machinery/door/morgue{ - name = "Confession Booth" - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"xlF" = ( -/turf/open/floor/iron, -/area/station/service/hydroponics) -"xlU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) -"xlV" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/sign/warning/electric_shock/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/fore) -"xmb" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xme" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/effect/turf_decal/siding/purple/corner, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"xml" = ( -/obj/machinery/computer/message_monitor{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/grimy, -/area/station/tcommsat/computer) -"xmM" = ( -/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) -"xmT" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 1 - }, -/turf/open/space, -/area/space/nearstation) -"xnd" = ( -/obj/machinery/smartfridge/organ, -/obj/machinery/door/poddoor/preopen{ - id = "surgeryc"; - name = "Privacy Shutter" - }, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/aft) -"xnk" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"xno" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"xnr" = ( -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) -"xnt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"xnv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"xnA" = ( -/obj/structure/cable, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"xnS" = ( -/obj/machinery/light/directional/west, -/obj/machinery/button/flasher{ - id = "IsolationFlash"; - pixel_x = -23; - 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/security/execution/transfer) -"xnU" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"xoa" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/start/geneticist, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"xoc" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mining Dock Maintenance" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"xoj" = ( -/obj/structure/table/reinforced, -/obj/machinery/microwave{ - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"xor" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/science/explab) -"xoK" = ( -/obj/effect/landmark/start/botanist, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"xoU" = ( -/obj/structure/window/reinforced, -/obj/machinery/computer/atmos_control/mix_tank{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xpi" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"xpo" = ( -/turf/open/floor/carpet, -/area/station/commons/dorms) -"xpB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"xpO" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/spawner/random/medical/patient_stretcher, -/obj/item/food/pizzaslice/moldy/bacteria, -/turf/open/floor/iron/white, -/area/station/medical/abandoned) -"xpX" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/cargo/storage) -"xpY" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/incinerator_input{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"xqm" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/machinery/airalarm/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/service/library) -"xqn" = ( -/obj/effect/spawner/random/trash/mess, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"xqv" = ( -/obj/structure/cable, -/obj/structure/table, -/obj/item/storage/bag/tray, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"xqI" = ( -/obj/machinery/computer/security/labor{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/brig) -"xqL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Command Hallway" - }, -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"xrd" = ( -/obj/machinery/door/morgue{ - name = "Private Study"; - req_access = list("library") - }, -/obj/effect/landmark/navigate_destination, -/turf/open/floor/engine/cult, -/area/station/service/library) -"xrf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"xrq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/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/security/brig) -"xrr" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"xrN" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"xrS" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/engineering/main) -"xrW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"xsd" = ( -/obj/machinery/power/port_gen/pacman, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/engineering/main) -"xsn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/iron/white, -/area/station/science/ordnance/testlab) -"xst" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/camera/directional/south{ - c_tag = "Prison Cell Block 1"; - network = list("ss13","prison") - }, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron/white, -/area/station/security/prison) -"xsy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"xsH" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"xte" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"xtp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"xtr" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Space Bridge Access" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/button/door/directional/north{ - id = "supplybridge"; - name = "Shuttle Bay Space Bridge Control" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "north-maint-viewingdeck" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"xtu" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/iv_drip, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"xtw" = ( -/obj/item/stack/rods, -/turf/open/space/basic, -/area/space) -"xtz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"xtP" = ( -/obj/effect/turf_decal/delivery, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"xtZ" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/turf/open/space/basic, -/area/space/nearstation) -"xug" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/port) -"xuA" = ( -/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 - }, -/turf/open/floor/iron, -/area/station/engineering/atmospherics_engine) -"xuD" = ( -/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/aft) -"xuH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"xuK" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "foreport"; - name = "Fore-Port Solar Array" - }, -/turf/open/floor/iron/solarpanel/airless, -/area/station/solars/port/fore) -"xuS" = ( -/obj/effect/turf_decal/tile/neutral{ - 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 = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"xuV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/station/maintenance/aft/lesser) -"xva" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/wood, -/area/station/service/theater) -"xvd" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"xvf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"xvt" = ( -/obj/effect/turf_decal/tile/neutral, -/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/commons/fitness/recreation) -"xvu" = ( -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"xvv" = ( -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/cargo/storage) -"xvI" = ( -/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/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"xvR" = ( -/obj/structure/table, -/obj/item/paper/guides/jobs/engi/gravity_gen, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/effect/spawner/random/bureaucracy/pen, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"xvZ" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) -"xwf" = ( -/obj/structure/weightmachine/weightlifter, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/prison) -"xww" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/storage/tech) -"xwD" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"xwP" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"xwV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"xwZ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"xxg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=6-Port-Central"; - location = "5-Customs" - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"xxk" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"xxp" = ( -/obj/machinery/airalarm/directional/west, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"xxF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"xxO" = ( -/obj/structure/disposalpipe/segment{ - 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/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"xxR" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/computer/atmos_control/oxygen_tank{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xxU" = ( -/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/medbay/central) -"xxZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - 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/security/brig) -"xyp" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"xyt" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Prison Gate"; - name = "Security Blast Door" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig) -"xyz" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"xyA" = ( -/obj/structure/table, -/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/item/plunger, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"xyI" = ( -/obj/machinery/door/firedoor/border_only/closed{ - dir = 8; - name = "Animal Pen B" - }, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"xyM" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port) -"xyR" = ( -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/port) -"xyT" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Access" - }, -/obj/structure/cable, -/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) -"xyU" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/dorms) -"xzb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Aft Primary Hallway" - }, -/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, -/area/station/hallway/primary/aft) -"xzg" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"xzj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"xzm" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"xzs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/engineering/main) -"xzu" = ( -/obj/machinery/door/airlock/medical{ - name = "Primary Surgical Theatre" - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"xAb" = ( -/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/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"xAg" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"xAi" = ( -/obj/machinery/vending/autodrobe, -/obj/structure/sign/poster/contraband/clown{ - pixel_x = 32 - }, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/wood, -/area/station/service/theater) -"xAl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"xAR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/fore) -"xAW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"xAZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"xBw" = ( -/obj/machinery/door/airlock/engineering{ - name = "Starboard 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/starboard/aft) -"xBx" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"xBz" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"xBF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"xCf" = ( -/obj/item/clothing/suit/straight_jacket, -/obj/item/electropack, -/obj/structure/table, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"xCg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"xCl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/stool/directional/west, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"xCo" = ( -/obj/structure/rack/gunrack, -/obj/effect/spawner/armory_spawn/shotguns, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/iron/smooth, -/area/station/ai_monitored/security/armory) -"xCt" = ( -/obj/structure/cable, -/obj/effect/turf_decal/bot_white, -/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) -"xCz" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/storage) -"xCA" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"xCD" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"xCF" = ( -/obj/structure/transit_tube/curved{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"xCH" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 6 - }, -/turf/open/floor/engine, -/area/station/science/cytology) -"xDa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain/private) -"xDu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"xDw" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/wood, -/area/station/commons/lounge) -"xDz" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) -"xDD" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 9 - }, -/turf/open/floor/engine, -/area/station/science/cytology) -"xDH" = ( -/obj/structure/table, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/obj/item/storage/box{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/storage/box, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/requests_console/directional/west{ - department = "Atmospherics"; - departmentType = 3; - name = "Atmospherics Requests Console" - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/storage/gas) -"xDU" = ( -/obj/structure/cable, -/obj/machinery/computer/crew{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark_red/filled/line, -/turf/open/floor/iron, -/area/station/security/warden) -"xEe" = ( -/obj/item/storage/box/syringes, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"xEf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/medbay/lobby) -"xEg" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"xEs" = ( -/obj/machinery/pdapainter/supply, -/turf/open/floor/carpet/red, -/area/station/cargo/qm) -"xEt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/courtroom) -"xEz" = ( -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/effect/turf_decal/tile/green/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"xEC" = ( -/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/white, -/area/station/science/lab) -"xEJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/commons/lounge) -"xEN" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xER" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Arrival Airlock"; - space_dir = 2 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"xEU" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"xEX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/warning, -/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/medical/medbay/lobby) -"xFd" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Mix Outlet Pump" - }, -/obj/effect/turf_decal/tile/brown/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xFp" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/office) -"xFx" = ( -/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 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"xFF" = ( -/obj/machinery/door/firedoor, -/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, -/area/station/hallway/secondary/entry) -"xGa" = ( -/obj/structure/rack, -/obj/item/storage/box, -/obj/effect/turf_decal/bot, -/obj/item/radio/off{ - pixel_x = 6 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"xGg" = ( -/obj/machinery/computer/warrant{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"xGk" = ( -/obj/machinery/computer/operating{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"xGm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"xGr" = ( -/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) -"xGD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/science/research) -"xGF" = ( -/obj/machinery/camera/directional/north{ - c_tag = "AI Chamber - Fore"; - network = list("aicore") - }, -/obj/structure/showcase/cyborg/old{ - pixel_y = 20 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"xGX" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"xHa" = ( -/obj/structure/sign/warning/vacuum/external/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/vending/coffee, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"xHg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"xHU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"xIx" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"xIC" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/light/directional/west, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/lounge) -"xID" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/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, -/area/station/engineering/gravity_generator) -"xIG" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/station/medical/medbay/lobby) -"xIK" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/enzyme{ - layer = 5; - pixel_x = -7; - pixel_y = 13 - }, -/obj/item/reagent_containers/food/condiment/flour{ - pixel_x = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"xIM" = ( -/obj/machinery/computer/operating{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"xIZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"xJa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"xJi" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"xJA" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/station/hallway/primary/port) -"xJI" = ( -/obj/machinery/light_switch/directional/west, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/dropper, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 10 - }, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 10 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"xJK" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel/fifty, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"xJQ" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Gravity Generator Area" - }, -/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/construction, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"xJS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/testlab) -"xJV" = ( -/obj/effect/landmark/start/shaft_miner, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"xKk" = ( -/obj/machinery/photocopier, -/turf/open/floor/iron/white, -/area/station/science/research) -"xKl" = ( -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"xKK" = ( -/turf/closed/wall, -/area/station/science/research) -"xLu" = ( -/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/plating, -/area/station/maintenance/aft/lesser) -"xLv" = ( -/obj/structure/table/wood, -/obj/machinery/light_switch/directional/west, -/obj/effect/spawner/random/bureaucracy/folder{ - spawn_random_offset = 1 - }, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"xLI" = ( -/obj/structure/rack, -/obj/effect/spawner/random/clothing/costume, -/obj/effect/spawner/random/clothing/costume, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"xLY" = ( -/obj/structure/closet/secure_closet/quartermaster, -/obj/machinery/airalarm/directional/north, -/obj/machinery/camera/directional/north, -/turf/open/floor/wood, -/area/station/cargo/qm) -"xMl" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=15-Court"; - location = "14.9-CrewQuarters-Central" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"xMu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 14 - }, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"xMx" = ( -/obj/structure/chair/office, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"xMz" = ( -/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/secondary/exit/departure_lounge) -"xMA" = ( -/obj/item/toy/cattoy, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"xMC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"xMX" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"xMY" = ( -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"xMZ" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageExternal" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/plasticflaps/opaque, -/turf/open/floor/plating, -/area/station/cargo/qm) -"xNb" = ( -/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/hallway/primary/aft) -"xNd" = ( -/obj/effect/landmark/start/captain, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"xNh" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageSort2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"xNi" = ( -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/cable, -/turf/open/floor/grass, -/area/station/medical/virology) -"xNo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"xNu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"xNv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/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/starboard/fore) -"xNG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance{ - name = "Service Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "service-passthrough" - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"xNO" = ( -/obj/effect/turf_decal/trimline/red/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, -/area/station/security/brig) -"xNQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/oxygen_output{ - dir = 1 - }, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"xNU" = ( -/turf/closed/wall, -/area/station/service/lawoffice) -"xOh" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/food/pie/cream, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchen_counter"; - name = "Kitchen Counter Shutters"; - dir = 1 - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/service/kitchen) -"xOw" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"xOx" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/science/explab) -"xOI" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"xOO" = ( -/obj/machinery/status_display/evac/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"xOU" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"xOV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron/white/corner, -/area/station/hallway/secondary/entry) -"xPb" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"xPg" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/wood, -/area/station/commons/lounge) -"xPh" = ( -/obj/structure/table, -/obj/machinery/microwave, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 6 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"xPm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) -"xPy" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics - Hypertorus Fusion Reactor Chamber Fore" - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"xPN" = ( -/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/secondary/command) -"xQb" = ( -/obj/machinery/light/directional/east, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 8; - pixel_x = 26 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/obj/structure/closet/secure_closet/security/engine, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"xQh" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"xQx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/iron/white, -/area/station/science/research) -"xQC" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"xQJ" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"xQK" = ( -/obj/effect/turf_decal/stripes/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/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"xQO" = ( -/obj/machinery/exodrone_launcher, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"xQS" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/table/wood, -/obj/item/food/pie/cream, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/wood, -/area/station/service/theater) -"xQT" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/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, -/area/station/security/office) -"xQY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white/smooth_large, -/area/station/medical/medbay/lobby) -"xRc" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xRf" = ( -/obj/effect/spawner/random/structure/table, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) -"xRh" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Access" - }, -/obj/structure/cable, -/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) -"xRt" = ( -/obj/structure/window/reinforced/plasma{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/power/energy_accumulator/grounding_rod/anchored, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"xRB" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"xRZ" = ( -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"xSA" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/stamp/ce, -/obj/item/reagent_containers/pill/patch/aiuri, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"xSQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"xSU" = ( -/obj/structure/lattice, -/obj/structure/sign/warning/electric_shock/directional/east, -/turf/open/space/basic, -/area/space/nearstation) -"xSV" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/right/directional/east{ - dir = 8; - name = "Pharmacy Desk"; - req_access = list("pharmacy") - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "pharmacy_shutters_2"; - name = "Pharmacy Shutters"; - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"xTk" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/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, -/turf/open/floor/grass, -/area/station/science/research) -"xTs" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/landmark/blobstart, -/obj/structure/closet/secure_closet/detective, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"xTw" = ( -/turf/closed/wall/r_wall, -/area/station/medical/medbay/central) -"xTO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"xTT" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"xUb" = ( -/obj/machinery/firealarm/directional/west, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"xUh" = ( -/obj/structure/closet/wardrobe/pjs, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/station/commons/dorms) -"xUq" = ( -/obj/structure/window/reinforced, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation) -"xUu" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"xUB" = ( -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = 8 - }, -/obj/structure/sign/directions/engineering{ - dir = 4 - }, -/obj/structure/sign/directions/command{ - pixel_y = -8 - }, -/turf/closed/wall/r_wall, -/area/station/hallway/primary/fore) -"xUE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"xUH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/start/security_medic, -/turf/open/floor/iron/white, -/area/station/security/medical) -"xUK" = ( -/obj/structure/sign/poster/contraband/missing_gloves, -/turf/closed/wall, -/area/station/commons/storage/primary) -"xUX" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"xUY" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/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, -/area/station/engineering/main) -"xVc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"xVq" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/engineering/atmos/pumproom) -"xVu" = ( -/turf/closed/wall, -/area/station/science/xenobiology) -"xVA" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Distro Staging to Distro" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"xVD" = ( -/obj/effect/turf_decal/trimline/purple/corner, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"xVY" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/item/taperecorder, -/obj/machinery/button/door/directional/south{ - id = "lawyer_shutters"; - name = "law office shutter control"; - req_access = list("lawyer") - }, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"xWi" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/wood, -/area/station/service/library) -"xWm" = ( -/obj/structure/rack, -/obj/item/restraints/handcuffs{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"xWn" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/mix_input{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"xWE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"xWF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/aft/greater) -"xWJ" = ( -/obj/machinery/drone_dispenser, -/turf/open/floor/plating, -/area/station/maintenance/department/science/central) -"xWQ" = ( -/obj/machinery/door_timer{ - id = "Cell 2"; - name = "Cell 2"; - pixel_y = -32 - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/security/brig) -"xWV" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"xXf" = ( -/obj/machinery/door/airlock/mining{ - name = "Deliveries" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"xXh" = ( -/obj/machinery/photocopier{ - pixel_y = 3 - }, -/turf/open/floor/iron/dark, -/area/station/security/office) -"xXi" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"xXm" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"xXp" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/components/unary/passive_vent/layer2{ - dir = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"xXv" = ( -/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/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark/corner, -/area/station/engineering/storage_shared) -"xXw" = ( -/obj/machinery/bluespace_beacon, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/teleporter) -"xXG" = ( -/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) -"xXK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/cable/layer3, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/aisat/exterior) -"xXM" = ( -/obj/structure/reagent_dispensers/wall/peppertank/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/structure/chair, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"xXN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters" - }, -/obj/effect/mapping_helpers/airlock/access/any/command/captain, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/captain/private) -"xXW" = ( -/obj/docking_port/stationary{ - dheight = 1; - dir = 8; - dwidth = 12; - height = 17; - id = "syndicate_nw"; - name = "northwest of station"; - width = 23 - }, -/turf/open/space/basic, -/area/space) -"xYl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/miningoffice) -"xYq" = ( -/obj/structure/rack, -/obj/item/stack/sheet/cardboard, -/obj/item/radio/off, -/obj/structure/light_construct/directional/north, -/obj/effect/spawner/random/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"xYu" = ( -/obj/machinery/firealarm/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"xYD" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"xYQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"xYW" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore/lesser) -"xZb" = ( -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"xZd" = ( -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/security/courtroom) -"xZu" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - dir = 4; - name = "old sink"; - pixel_x = -12 - }, -/obj/structure/mirror/directional/west, -/turf/open/floor/wood, -/area/station/maintenance/port/aft) -"xZx" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) -"xZB" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"xZR" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/storage/gas) -"xZW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Primary Hallway" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) -"yaf" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"yag" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/effect/turf_decal/bot_white, -/obj/structure/cable, -/obj/machinery/monkey_recycler, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"yaj" = ( -/obj/structure/closet/emcloset, -/obj/machinery/camera/directional/south{ - c_tag = "Science Entry"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/turf/open/floor/iron/checker, -/area/station/science/research) -"yaD" = ( -/obj/structure/table, -/obj/item/stack/rods/fifty, -/obj/item/wrench, -/obj/item/storage/box/lights/mixed, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/engineering/main) -"yaE" = ( -/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/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"yaH" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/explab) -"yaL" = ( -/obj/item/target, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"yaM" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron, -/area/service/salon) -"yaO" = ( -/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) -"ybb" = ( -/obj/machinery/atmospherics/components/tank/air, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"ybi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"ybl" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/engineering/main) -"ybm" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) -"ybn" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"ybs" = ( -/obj/machinery/light/directional/south, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"yby" = ( -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/chapel, -/area/station/service/chapel) -"ybI" = ( -/obj/structure/window/reinforced, -/obj/machinery/computer/atmos_control/carbon_tank{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/dark/fourcorners, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ycd" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"yci" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"ycj" = ( -/obj/machinery/door/airlock/hatch{ - name = "Telecomms Server Room" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, -/turf/open/floor/iron/dark, -/area/station/tcommsat/server) -"yco" = ( -/obj/item/radio/intercom/directional/south, -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) -"ycr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"ycv" = ( -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"ycz" = ( -/obj/machinery/firealarm/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) -"ycM" = ( -/turf/closed/wall/r_wall, -/area/station/security/warden) -"ycN" = ( -/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/locker) -"ydb" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Port to Filter" - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) -"ydj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/machinery/atmospherics/components/trinary/filter/flipped/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"ydq" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"ydr" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Auxiliary Tool Storage" - }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"ydz" = ( -/obj/structure/closet/l3closet/virology, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"ydG" = ( -/obj/effect/turf_decal/arrows/red{ - dir = 4; - pixel_x = -15 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/atmospherics_engine) -"yeq" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"yeu" = ( -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/computer/gateway_control{ - dir = 8 - }, -/turf/open/floor/iron{ - dir = 1 - }, -/area/station/command/gateway) -"yey" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"yeS" = ( -/obj/item/retractor, -/obj/item/hemostat{ - pixel_x = -10 - }, -/obj/machinery/light/small/directional/south, -/obj/structure/table, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"yeV" = ( -/obj/structure/closet/secure_closet/hos, -/obj/item/clothing/shoes/cowboy/black, -/obj/machinery/camera/directional/north{ - c_tag = "Head of Security's Office" - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) -"yfn" = ( -/obj/machinery/vending/dinnerware, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 5 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"yfq" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/port) -"yft" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/newscaster/directional/north, -/obj/structure/dresser, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"yfx" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrous_input{ - dir = 1 - }, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"yfI" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"yfL" = ( -/turf/closed/wall, -/area/station/ai_monitored/command/storage/eva) -"yfT" = ( -/obj/structure/table/wood, -/obj/item/pen/red, -/obj/item/pen/blue{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/station/service/library) -"ygb" = ( -/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/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"ygp" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/hallway/secondary/entry) -"ygt" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/iron/stairs{ - dir = 1 - }, -/area/station/hallway/secondary/entry) -"ygF" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/table, -/obj/machinery/button/door{ - id = "xenobio4"; - layer = 3.3; - name = "Xenobio Pen 4 Blast Doors"; - pixel_y = 4; - req_access = list("xenobiology"); - sync_doors = 4 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"ygR" = ( -/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/effect/turf_decal/tile/bar, -/turf/open/floor/iron, -/area/station/construction/storage_wing) -"yhm" = ( -/obj/machinery/airalarm/directional/west, -/obj/structure/disposaloutlet{ - dir = 4; - name = "Cargo Deliveries" - }, -/obj/effect/turf_decal/siding/white, -/obj/effect/turf_decal/trimline/brown/warning, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/medical/medbay/lobby) -"yhK" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Arrivals - Aft Arm - Bay" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"yhL" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageSort2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/window/left/directional/west{ - dir = 4; - name = "Crate Security Door"; - req_access = list("shipping") - }, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"yhO" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/security/prison) -"yia" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/explab) -"yib" = ( -/obj/structure/lattice/catwalk, -/obj/item/toy/plush/space_lizard_plushie{ - desc = "He stared into the void and listened. He didn't expect an answer..."; - name = "Void-Stares-Back" - }, -/obj/structure/marker_beacon/purple, -/turf/open/space/basic, -/area/space/nearstation) -"yih" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/theatre) -"yis" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/sign/poster/official/safety_report{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"yiK" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) -"yiN" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/cable, -/obj/effect/turf_decal/bot_white, -/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) -"yjc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/commons/lounge) -"yjd" = ( -/turf/closed/wall, -/area/station/command/gateway) -"yjw" = ( -/obj/machinery/airalarm/directional/east, -/obj/structure/table/wood, -/obj/effect/spawner/random/bureaucracy/stamp, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"yjC" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/red/filled/warning{ - dir = 10 - }, -/obj/machinery/modular_computer/console/preset/cargochat/security{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"yjN" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"yjW" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"ykj" = ( -/obj/structure/table, -/obj/structure/cable, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/service/kitchen) -"ykn" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Arrival Airlock" - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"ykI" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/station/holodeck/rec_center) -"ykL" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/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) -"ykO" = ( -/obj/machinery/disposal/delivery_chute{ - dir = 1; - name = "Engineering Deliveries" - }, -/obj/structure/plasticflaps/opaque{ - name = "Engineering Deliveries" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/sign/departments/engineering/directional/south{ - color = "#EFB341" - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"ykS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"ylf" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/right/directional/south{ - dir = 8; - name = "First Aid Supplies"; - req_access = list("medical") - }, -/obj/item/clothing/glasses/blindfold{ - pixel_y = 3 - }, -/obj/item/clothing/glasses/blindfold, -/obj/item/clothing/ears/earmuffs{ - pixel_y = 3 - }, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/glasses/eyepatch, -/obj/item/clothing/suit/straight_jacket, -/turf/open/floor/iron/dark, -/area/station/medical/office) -"yli" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"ylt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/holopad, -/turf/open/floor/circuit/green, -/area/station/science/robotics/mechbay) -"ylI" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/science/ordnance) -"ylO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall, -/area/station/maintenance/port/aft) -"ylQ" = ( -/obj/machinery/door/firedoor, -/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/central) -"ylU" = ( -/obj/structure/filingcabinet/employment, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"ylZ" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"ymd" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/stasis{ - dir = 4 - }, -/obj/machinery/defibrillator_mount/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"yme" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall, -/area/station/security/checkpoint/customs) - -(1,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(2,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(3,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(4,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(5,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(6,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(7,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(8,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(9,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(10,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(11,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(12,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(13,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(14,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(15,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(16,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(17,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(18,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(19,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(20,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -quc -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -quc -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(21,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(22,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(23,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -quc -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(24,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xXW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -wdr -wdr -dkL -dkL -dkL -dkL -dkL -dkL -dkL -dkL -dkL -dkL -dkL -dkL -dkL -wdr -wdr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(25,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -wdr -lXm -jya -hHs -jya -hHs -jya -hHs -jya -hHs -jya -hHs -jya -hHs -jya -aZM -qEt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(26,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -wdr -lGL -dUB -dUB -dUB -dUB -dUB -wQT -jwW -ohm -dUB -dUB -dUB -dUB -dUB -sCZ -qEt -aaa -aaa -aaa -aaa -quc -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(27,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -wdr -mqN -dUB -dUB -dUB -wQT -dUB -dUB -dUB -dUB -dUB -ohm -dUB -dUB -dUB -sCZ -qEt -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(28,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wdr -qEt -qEt -wdr -hUD -dUB -dUB -sUy -dUB -dUB -dUB -dUB -dUB -dUB -dUB -sUy -dUB -dUB -cGc -wdr -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(29,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qEt -aLX -hEU -jpQ -lGL -dUB -dUB -wQT -dUB -dUB -dUB -dUB -dUB -dUB -dUB -ohm -dUB -dUB -sCZ -qEt -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(30,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -blx -blx -anS -gAe -anS -blx -blx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wdr -juT -wMP -iRr -lGL -dUB -dUB -dUB -dUB -dUB -dUB -dUB -dUB -dUB -dUB -dUB -dUB -dUB -sCZ -qEt -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(31,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -blx -aaa -aaa -aaa -aaa -aaa -blx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oPS -aaa -aaa -fxr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qEt -cZq -wMP -iRr -tBq -dUB -dUB -dUB -dUB -dUB -dUB -sUy -dUB -dUB -dUB -dUB -dUB -dUB -uoK -wdr -qEt -qEt -qEt -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(32,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -lMJ -oEO -lMJ -anS -aaa -anS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qEt -osU -wMP -iRr -fVi -dUB -dUB -cUo -dUB -dUB -dUB -dUB -dUB -dUB -dUB -sVA -dUB -dUB -sCZ -kpd -wpw -sIs -qEt -qEt -qEt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(33,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anS -anS -anS -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qEt -kub -gnc -iRr -fVi -dUB -dUB -sUy -dUB -dUB -dUB -dUB -dUB -dUB -dUB -sUy -dUB -dUB -sCZ -kpd -wpw -bae -dPh -aSm -bfk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(34,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anS -aaa -lMJ -lMJ -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wdr -tjp -ibm -iRr -ndN -dUB -dUB -dUB -cUo -dUB -dUB -dUB -dUB -dUB -sVA -dUB -dUB -dUB -iEb -wdr -ryB -bae -dPh -hBD -bfk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(35,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anS -aaa -lMJ -anS -lMJ -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -lMJ -aaa -aaa -quc -lMJ -lMJ -lMJ -quc -aaa -aaa -qEt -wMP -sKK -iRr -ttF -dja -quR -dUB -dUB -dUB -dUB -dUB -dUB -dUB -dUB -dUB -gty -dja -fQz -qEt -wpw -eTs -qEt -qEt -qEt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(36,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -blx -lMJ -anS -anS -anS -aaa -blx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oPS -lMJ -eeg -wdr -wdr -wdr -wdr -wdr -qEt -qEt -qEt -qEt -lMJ -lMJ -aaa -aaa -aaa -lMJ -lMJ -qEt -qEt -wMP -lpq -wdr -yhK -wpw -dkQ -dja -ygt -xvu -dUB -sUy -dUB -glW -qUO -dja -gmP -wpw -oRL -qEt -wpw -aOG -wdr -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(37,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lKu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anS -ivC -anS -lMJ -oEO -lMJ -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wdr -vvW -mtL -kFT -nDP -qHs -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -qEt -oQS -hDx -wdr -rYK -wpw -sah -ugg -unw -fbG -dUB -dUB -dUB -glW -gVz -ugg -ygp -wpw -oRL -qHs -lDv -rgi -qEt -qEt -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(38,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -anS -anS -anS -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xcN -aaa -aaa -aaa -rec -cSk -auJ -jMZ -sCZ -lGL -qEt -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -qHs -aNP -paP -qEt -wHJ -ugg -ggu -dUB -dUB -dUB -dUB -dUB -dUB -dUB -dUB -dUB -kZH -ugg -mjN -qEt -wiF -rgi -cZq -qEt -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(39,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -lMJ -aaa -lMJ -aaa -anS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wdr -dqx -wdr -byg -oGR -wdr -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -qEt -sCZ -dXH -qEt -mjC -dUB -dUB -dUB -dUB -cUo -dUB -dUB -dUB -sVA -dUB -dUB -dUB -dUB -usB -qEt -nRr -rgi -umU -qEt -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(40,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -rrt -rrt -rrt -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -anS -anS -anS -aaa -blx -anS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oPS -lMJ -eeg -wdr -wdr -wdr -wdr -wdr -pqi -lGL -pFU -pFU -pFU -aaa -aaa -aaa -aaa -aaa -qEt -qEt -qEt -azo -dXH -qEt -vXZ -dUB -dUB -sUy -dUB -dUB -dUB -dUB -dUB -dUB -dUB -sUy -dUB -dUB -jSe -wdr -sRn -rgi -hze -wdr -quc -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kgg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(41,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -blx -lMJ -lMJ -lEF -oTD -lMJ -lMJ -aaa -aaa -aaa -mWd -aaa -aaa -mWd -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -wdr -grZ -lGL -ykn -hBD -xER -aaa -aaa -aaa -aaa -aaa -mxV -auJ -riz -sWW -tmg -wdr -tCj -dUB -dUB -dUB -dUB -dUB -dUB -dUB -dUB -dUB -dUB -dUB -dUB -dUB -qAN -qEt -kgp -rgi -cZq -qEt -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -fGM -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(42,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -aaa -kuK -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -blx -lMJ -anS -uay -lMJ -lMJ -lMJ -lMJ -lMJ -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -sCZ -lGL -qEt -qEt -qEt -aaa -aaa -aaa -aaa -aaa -qEt -qEt -qEt -sCZ -xHU -wdr -qLY -dUB -dUB -dUB -dUB -wQT -dUB -dUB -dUB -ohm -dUB -dUB -dUB -dUB -qAN -qEt -xvd -woi -umU -qEt -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -fGM -rrt -rrt -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(43,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -dPw -aaa -aIw -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -lMJ -anS -azg -aaa -blx -aaa -aaa -aDb -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -cWK -knP -dCx -aDb -inL -nPf -nDP -xtP -qEt -aaa -aaa -aaa -aaa -aaa -qEt -pdT -kUQ -lWa -dXH -qHs -vXZ -dUB -dUB -wQT -dUB -dUB -dUB -sUy -dUB -dUB -dUB -ohm -dUB -dUB -paw -wdr -gTf -kyw -qEt -qEt -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -tsd -anL -tsd -tsd -tsd -tsd -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(44,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -lMJ -aaa -aaa -aaa -xuK -xuK -xuK -aYN -lMJ -raz -lMJ -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -lMJ -rrt -rrt -rrt -rrt -rrt -rrt -rrt -blx -aaa -blx -lMJ -blx -anS -blx -lMJ -lMJ -aDb -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -cWK -kFg -eVm -cYL -qAN -wpw -lGL -xvd -qEt -aaa -aaa -aaa -aaa -aaa -qEt -kQR -sCZ -wpw -gRp -wdr -vXZ -dUB -wQT -dUB -dUB -dUB -dUB -dUB -dUB -dUB -dUB -dUB -ohm -dUB -mlP -qEt -wpw -kyw -qEt -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -tsd -uBC -mRY -ign -oli -jIR -lMJ -lMJ -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(45,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -lMJ -aaa -aaa -aaa -eqf -eqf -eqf -eqf -aaa -raz -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -lMJ -lMJ -aaa -aaa -lMJ -aaa -aaa -aDb -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -cWK -kFg -eVm -cYL -qAN -wpw -lGL -xvd -qEt -aaa -aaa -aaa -aaa -aaa -qEt -noL -sCZ -wpw -gRp -irz -vXZ -dUB -cUo -dUB -dUB -sVA -dUB -dUB -dUB -cUo -dUB -dUB -sVA -dUB -mlP -qEt -wpw -kyw -wdr -lMJ -quc -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -tsd -tsd -tsd -hUN -hsh -jIR -lMJ -gQK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(46,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -lMJ -lMJ -lMJ -lMJ -xuK -xuK -xuK -eqf -eqf -raz -dJN -dJN -dJN -dJN -lMJ -dJN -lMJ -rNf -rNf -lMJ -lMJ -jXe -lMJ -lMJ -dJN -dJN -dJN -dJN -aaa -lMJ -lMJ -aaa -aaa -lMJ -aaa -aaa -aDb -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -cWK -jmc -hkJ -aDb -fpA -wpw -lGL -wKX -qEt -aaa -aaa -aaa -aaa -aaa -qEt -xvd -sCZ -wpw -gRp -fQr -lGL -dUB -dUB -dUB -dUB -dUB -dUB -dUB -dUB -dUB -dUB -dUB -dUB -dUB -fPS -wdr -ryB -kyw -qEt -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anS -jIR -jpA -mWU -qUQ -jIR -lMJ -lMJ -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dnJ -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -qPs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(47,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -lMJ -aaa -aaa -aaa -eqf -eqf -eqf -aYN -aaa -raz -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -lMJ -uay -aaa -aaa -lMJ -aaa -aaa -aDb -aDa -aDa -aDa -aDa -obX -aDa -aDa -aDa -lGS -cWM -ilJ -tra -uqi -mjd -hXh -eNb -swu -qEt -aaa -aaa -aaa -aaa -aaa -qEt -wiF -oxx -vkz -gRp -fQr -nPf -eQT -cVx -cVx -cVx -jOR -jOR -qeq -qeq -qeq -qeq -qeq -qeq -qeq -akh -daq -gRp -kyw -qEt -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -tsd -eCS -tsd -tsd -tsd -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(48,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -lMJ -aaa -aaa -aaa -xuK -xuK -xuK -aYN -lMJ -raz -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aox -uay -aox -aaa -lMJ -aaa -aaa -aDb -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -cWK -oSc -oQc -aDb -kpu -lGL -qEt -qEt -qEt -aaa -aaa -aaa -aaa -aaa -qEt -qEt -qEt -aNP -gRp -wdr -xaB -wpw -cRo -wpw -jrY -jlC -aUD -wpw -wpw -eOm -jlC -vUS -wpw -vsR -wpw -fQr -wpw -aOR -wdr -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aox -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -nLZ -aaa -aaa -aaa -rrt -aaa -lMJ -aaa -aaa -aaa -bvY -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(49,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aIw -aaa -sBd -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -jXu -lGR -jXu -aaa -lMJ -aaa -aaa -aDb -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -cWK -oYM -paf -aDb -tHZ -lGL -ykn -hBD -xER -aaa -aaa -aaa -aaa -aaa -mxV -auJ -riz -sCZ -ivV -wdr -sAX -gaq -aRX -gaq -wdr -wdr -wdr -gaq -gaq -wdr -pOa -pOa -kRx -pOa -pOa -pOa -pOa -pOa -pOa -aox -aox -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aox -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -gnA -sCl -lMJ -lMJ -cvY -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -lKu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(50,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aIw -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -jXu -wcJ -jXu -aaa -lMJ -jXu -jXu -jXu -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -cWK -ttX -ueB -aDb -tHZ -lGL -qEt -qEt -qEt -aaa -aaa -aaa -aaa -aaa -qEt -qEt -qEt -sCZ -gRp -wdr -hyT -sCZ -cRo -lGL -bnw -wdr -wpw -wpw -wpw -sTh -lxM -kDS -vHN -vXH -pOa -bfu -emN -xyM -rJS -aox -aox -aox -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aox -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -lMJ -aaa -aaa -aaa -cvY -aaa -lMJ -aaa -aaa -lMJ -aaa -aaa -aaa -lMJ -lMJ -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(51,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -lMJ -aaa -aaa -aaa -xuK -xuK -xuK -aYN -lMJ -aIw -lMJ -aYN -xuK -xuK -xuK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -jXu -jXu -uAE -jXu -jXu -nmg -jXu -twr -jXu -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -cWK -wYc -dhb -aDb -dIP -nPf -nKG -qEt -lMJ -aaa -aaa -aaa -djM -aaa -lMJ -qEt -fsb -lWa -gRp -cqm -eQT -lWa -cRo -lNI -eSU -tom -ugY -ugY -ugY -axd -pOa -nQz -xyM -sTq -pOa -wWW -xyM -uTw -jUb -jUb -nBy -nBy -jUb -jUb -jUb -nBy -nBy -nBy -nBy -nBy -aaa -aaa -aaa -aaa -aaa -lMJ -aox -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -fee -aaa -aaa -aaa -rrt -aaa -lMJ -aaa -aaa -llk -cqk -llk -llk -llk -llk -llk -llk -lMJ -lMJ -lMJ -lMJ -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(52,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -lMJ -aaa -aaa -aaa -eqf -eqf -eqf -aYN -aaa -raz -aaa -aYN -aYN -eqf -aYN -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -jXu -jXu -nmg -jXu -soV -qCC -rbi -twr -qiz -gAt -twr -jXu -jXu -jXu -jXu -jXu -jXu -jXu -jXu -jXu -jXu -jXu -jXu -jXu -jXu -hET -wpw -dfz -wdr -wdr -wdr -qEt -qEt -qEt -wdr -wdr -wdr -xHa -wpw -gRp -qaS -wpw -wpw -sCz -oHw -xOO -sxd -uvx -slD -nyF -vpM -pOa -twj -xyM -pOa -pOa -pOa -rJS -pOa -jUb -mPO -sZK -heE -kzZ -xZu -fBX -nBy -oiQ -tfD -ruz -nBy -nBy -lMJ -lMJ -lMJ -lMJ -lMJ -aox -lMJ -lMJ -lMJ -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -lZV -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -llk -tzP -cqk -tzP -tzP -tzP -tzP -tzP -tzP -llk -aaa -anS -nsC -anS -lMJ -qPs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(53,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -lMJ -lMJ -lMJ -lMJ -xuK -xuK -xuK -aYN -eqf -raz -eqf -aYN -xuK -xuK -xuK -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -jXu -wUE -sGa -oFR -ycr -wTF -uuD -uuD -uuD -uuD -iUE -uuD -uuD -wTF -uuD -uuD -uuD -uuD -uuD -uuD -uuD -uuD -uuD -xTT -gfD -sZP -iPB -cOl -svW -svW -nip -svW -svW -xFF -lEK -eJg -sUO -rBi -iPB -iPB -qgf -cUd -cUd -cUd -pZn -pOa -pOa -pOa -pOa -pOa -pOa -pOa -xug -xyM -wev -pOa -kIG -xeN -vXH -jUb -mUD -cXW -cXW -qKw -cXW -uxS -uxS -fgn -ehv -ehn -bIO -nBy -nBy -aaa -aaa -aaa -lMJ -aox -lMJ -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lZV -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -lMJ -llk -cqk -llk -llk -llk -llk -llk -llk -lMJ -lMJ -lMJ -lMJ -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(54,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -lMJ -aaa -aaa -aaa -eqf -eqf -eqf -bOr -aaa -raz -aaa -aYN -aYN -eqf -aYN -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -nmg -nwi -nOz -jXu -jXu -jXu -sHu -uPp -bPM -jXu -nmg -jXu -kBS -rOz -mlH -sHu -cVL -jZW -elc -uUu -czP -twr -sHu -aPk -jXu -vzG -dxO -crk -slD -aid -vWt -aid -bnX -hxD -rBU -rzq -xOV -mAf -dXg -dXg -cTC -vxi -xOV -urS -ecA -rbH -woc -xyM -lcJ -lxM -uOH -uOH -uOH -uOH -cMb -tRb -xyM -xyM -clp -jUb -uke -qKw -cXW -cXW -cXW -fYh -ruz -ehn -ehn -tsP -uxS -fgN -nBy -aaa -aaa -aaa -lMJ -aox -lMJ -aaa -aaa -xjH -xjH -rKQ -rKQ -rKQ -xjH -xjH -rKQ -rKQ -iPy -rKQ -rKQ -xjH -aaa -aaa -aaa -aaa -lMJ -aaa -gXp -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -lMJ -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(55,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -lMJ -aaa -aaa -aaa -xuK -xuK -xuK -aYN -lMJ -fzl -uQF -aYN -xuK -xuK -xuK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -aox -jXu -jXu -xtr -jXu -lMJ -jXu -jXu -nmg -jXu -jXu -lMJ -jXu -jXu -jXu -jXu -nmg -jXu -jXu -jXu -jXu -jXu -jXu -nmg -jXu -jXu -wdr -wdr -fcq -xfI -fcq -xjh -qhW -xjh -yme -fxI -tep -dHc -dHc -htE -htE -htE -dHc -dHc -igV -nLG -pOa -clp -flS -jmJ -pOa -uEO -ayH -vXH -gDZ -uOH -vXH -jfv -tYi -giT -jUb -esd -htr -htr -dJT -dbm -dbm -ruz -uxS -uxS -uxS -uxS -nXM -nBy -aaa -aaa -aaa -lMJ -aox -lMJ -aaa -aaa -xjH -vdJ -wpi -kVg -tgD -kku -xjH -eUA -sWe -iPy -gOS -lzU -xjH -aaa -aaa -aaa -aaa -lMJ -llk -cvY -llk -llk -llk -llk -llk -llk -lMJ -lMJ -lMJ -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(56,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -fzl -aaa -uQF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -lZp -qCC -tvR -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -fcq -nJG -fcq -dpT -oaw -vSs -xjh -gax -mjg -xJA -kOK -kOK -kOK -kOK -kOK -xJA -hXc -uKP -pOa -qag -xyR -hJH -pOa -lHk -tYi -sNM -tYi -uOH -pOa -pOa -pOa -pOa -jUb -xqn -uxS -fQZ -ehv -sBL -fJs -uxS -ehn -uxS -uxS -tsP -sBL -nBy -aaa -aaa -aaa -lMJ -aox -lMJ -aaa -aaa -xjH -pzW -dno -uKy -oPY -kjX -xjH -nzQ -vol -iPy -nta -mFu -xjH -lMJ -lMJ -lMJ -lMJ -llk -tzP -cqk -tzP -aef -tzP -tzP -tzP -tzP -llk -aaa -lMJ -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(57,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -cAR -xgB -iQF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -fcq -fxQ -fcq -vpn -nxu -pOj -vmH -oCN -kXt -htE -kOK -kOK -kOK -kOK -kOK -htE -xXi -dKK -pOa -pOa -pOa -pOa -pOa -pOa -pOa -pOa -vXH -aDl -pOa -vZE -tYi -rLr -jUb -ebG -fQD -uxS -uxS -qKs -eNq -dqN -uxS -uxS -ehn -uxS -nBy -nBy -lMJ -lMJ -lMJ -jUb -kPQ -jUb -lMJ -lMJ -xjH -ydz -dno -tIl -bYm -kgz -xjH -rKQ -puL -iPy -qPC -rKQ -xjH -xjH -aaa -aaa -aaa -lMJ -llk -cvY -llk -llk -llk -llk -llk -llk -lMJ -lMJ -lMJ -lMJ -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(58,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -cAR -xgB -iQF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -fcq -uEw -fcq -fZG -nxu -vrP -rxP -dRH -qGZ -htE -kOK -kOK -kOK -kOK -kOK -htE -xXi -vvp -jzp -xLv -unR -jWd -gCW -nOZ -fkd -pOa -sTq -cMb -fFu -wvr -gUs -tYi -jUb -eov -ruz -ehn -uxS -uxS -shK -uxS -uxS -uxS -uxS -uxS -iWn -jUb -jUb -jUb -jUb -jUb -aCW -nBy -aaa -aaa -xjH -ybb -nBF -fQg -bYm -vsQ -xjH -hLB -rge -ndp -rge -wpi -gAB -rKQ -aaa -aaa -aaa -lMJ -aaa -gXp -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -gAe -gAe -nsC -lMJ -qPs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(59,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -cAR -xgB -iQF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kzI -fxQ -fcq -eCV -pBJ -vGx -ngf -pKB -gcA -dDZ -rhJ -kOK -kOK -kOK -kOK -htE -xxg -nMY -jzp -lXS -kEm -ifF -olq -njE -ckU -pOa -lEu -uOH -pOa -sXI -cYY -tYZ -jUb -hWj -coJ -uxS -fNI -uxS -bCE -wGz -uxS -uxS -pHS -ecD -jUb -jUb -jUb -eCK -uwh -jUb -nCw -jUb -jUb -aaa -xjH -aWC -mHl -vVz -vVz -hzF -uvP -pWX -eYE -hcR -gqV -syT -vUH -rUE -suP -aaa -aaa -lMJ -lzJ -cvY -lzJ -lzJ -lzJ -lzJ -lzJ -lzJ -lMJ -lMJ -lMJ -lMJ -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(60,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -cAR -xgB -iQF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kzI -nsK -fcq -jAl -bIw -uFh -qhW -dRH -iMk -htE -kOK -kOK -kOK -kOK -kOK -htE -scY -pFI -tON -kEm -kEm -nNH -pzu -lXS -qLP -pOa -jVb -uOH -pOa -oca -pOa -pOa -jUb -jDk -hWD -etv -jUb -usw -wZl -jUb -dyd -ybm -jUb -wgl -jUb -kXU -jUb -qkm -vmY -qDb -kvV -rjB -jUb -aaa -xjH -tmJ -ark -uGq -wIW -kHk -gqI -gqj -hGi -cSm -tRI -bkO -xEz -rKQ -lMJ -lMJ -lMJ -lzJ -aef -cvY -tzP -tzP -tzP -aef -tzP -tzP -lzJ -aaa -lMJ -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(61,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -cAR -xgB -iQF -aaa -aaa -aaa -aaa -aaa -hkp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kzI -fxQ -fcq -uwP -pTm -grp -xjh -dzq -bTj -htE -kOK -kOK -kOK -kOK -kOK -htE -xXi -avr -jzp -jzp -iBL -stL -stL -lFs -lFs -hMo -gqP -uOH -pOa -pOa -pOa -sUJ -jUb -jUb -jUb -jUb -jUb -jUb -fxT -jUb -jUb -jUb -jUb -jUb -jUb -jUb -jUb -jUb -jUb -jUb -qHK -shK -jUb -lMJ -xjH -xjH -rKG -xjH -xjH -xjH -xjH -xjH -rKQ -tQG -rKQ -rKQ -xjH -xjH -aaa -aaa -aaa -lMJ -lzJ -mFr -lzJ -lzJ -lzJ -lzJ -lzJ -lzJ -lMJ -lMJ -lMJ -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(62,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -lMJ -aaa -aaa -aaa -aaa -xtw -aaa -fcJ -aaa -fzl -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -flj -lFV -iQd -aaa -aaa -aaa -pnI -pnI -jfB -pnI -pnI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -fcq -oMY -fcq -fcq -iva -fcq -fcq -rul -oUy -xJA -kOK -kOK -kOK -kOK -kOK -xJA -hXc -uIO -eHf -jzp -nVx -wfu -xnr -njE -fHV -pOa -flN -uOH -cMb -fjn -nkI -miN -pAe -aZL -jgk -qnr -pAe -rzB -pAe -jUb -cBc -aFf -bbp -eNV -hUM -oOZ -llW -cBc -jUb -tkn -dqN -uCG -jUb -aaa -aaa -rKQ -eSR -rKQ -aaa -aaa -xjH -lwx -ccD -dsl -geE -kWU -fOS -rKQ -aaa -aaa -aaa -lMJ -aaa -cqk -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -lMJ -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(63,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -lMJ -aaa -aaa -aaa -xuK -xuK -xuK -aYN -aaa -riK -aaa -bOr -xuK -xuK -xuK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -aox -jXu -jXu -cQc -jXu -lMJ -lMJ -lMJ -pnI -qqp -xDu -pcS -pnI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cUZ -aaa -aaa -aaa -aaa -aaa -aaa -fcq -pck -nmH -uEw -snS -jjn -jQr -kKd -mjg -dHc -dHc -htE -dHc -htE -dHc -dHc -tWe -bRU -yfq -jzp -yjw -eJo -sOF -fkd -eDC -pOa -ayH -qgw -jUb -jUb -jUb -jUb -jUb -jUb -bbt -jUb -jUb -jUb -pAe -riW -cBc -dqN -dqN -mec -dqN -sMS -dqN -mec -jUb -jUb -njr -shK -jUb -aaa -aaa -rKQ -eSR -rKQ -aaa -aaa -xjH -vip -jjC -uYe -rVZ -jBF -vzL -rKQ -aaa -aaa -aaa -lMJ -lzJ -cqk -lzJ -lzJ -lzJ -lzJ -lzJ -lzJ -lMJ -lMJ -lMJ -lMJ -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(64,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -lMJ -aaa -aaa -aaa -eqf -eqf -eqf -aYN -aaa -aIw -aaa -aYN -aYN -aYN -eqf -aaa -aaa -aaa -aaa -aaa -mWd -aaa -aaa -lMJ -lMJ -nmg -vEV -ovy -jXu -aaa -aaa -aaa -pnI -bUm -kRe -qfi -pnI -lMJ -lMJ -lMJ -lMJ -hxo -aSZ -lXG -hxo -lXG -deU -hxo -lMJ -lMJ -lMJ -lMJ -fcq -fxQ -wEz -aaq -hgH -wUt -fcq -jPE -auh -koj -rMl -crr -qer -crr -crr -qyT -rZT -lQW -jzp -jzp -jzp -pOa -pOa -pOa -pOa -pOa -pOa -uOH -jUb -xIK -dsE -nBp -ciq -pqz -iuB -ylO -oSy -gwK -lCb -jUb -bZW -dqN -sAE -bOH -dqN -mec -cNS -dqN -jUb -sMS -dqN -shK -jUb -aaa -aaa -rKQ -iyC -rKQ -aaa -aaa -xjH -dwl -taW -xNi -ccD -gXl -tZS -rKQ -lMJ -lMJ -lMJ -lzJ -tzP -cqk -aef -aef -tzP -tzP -tzP -tzP -lzJ -aaa -anS -anS -anS -lMJ -qPs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(65,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -lMJ -lMJ -lMJ -lMJ -xuK -xuK -xuK -eqf -eqf -raz -raz -eqf -xuK -xuK -xuK -lMJ -lMJ -lMJ -jfG -kmW -jfG -qvJ -jfG -jfG -jfG -jXu -gio -ufv -jXu -aaa -aaa -aaa -hKg -hKg -fQW -kat -hKg -pnI -hKg -aaa -aaa -hxo -bnA -oDp -oDJ -xvv -fyz -hxo -aaa -aaa -cbz -cbz -fcq -lnv -fcq -fcq -cJQ -fcq -fcq -iSk -ebn -uxa -bVz -bNQ -gOX -sEk -aal -dPQ -rtG -vJB -fjD -pUl -lMY -pOa -mrN -gXe -vwi -tql -pOa -aDl -jUb -tWr -qKs -dPJ -hBC -jUb -lXC -jUb -ifh -jUb -pSw -jUb -xRB -dqN -dqN -dqN -cNS -eNV -dqN -eNV -jUb -jUb -gkU -shK -jUb -jUb -xjH -xjH -bVK -xjH -xjH -lMJ -xjH -xjH -rKQ -rKQ -rKQ -rKQ -xjH -xjH -aaa -aaa -aaa -aaa -lzJ -cqk -lzJ -lzJ -lzJ -lzJ -lzJ -lzJ -lMJ -lMJ -lMJ -lMJ -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(66,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -lMJ -aaa -aaa -aaa -eqf -eqf -eqf -aYN -aaa -aIw -aaa -aYN -eqf -aYN -aYN -aaa -aaa -aaa -jfG -lVe -dqo -eXy -lEd -niG -kfK -jXu -jXu -hWS -jXu -jXu -jXu -jXu -jXu -qvY -kRe -dCp -sAs -mdL -hKg -hxo -hxo -hxo -uor -waB -cbz -waB -dZB -hxo -hxo -hxo -cbz -uyj -pyv -jLb -tTa -krf -mbi -bAI -krf -dHc -dHc -bZY -xOw -spH -dHc -fjD -usk -fjD -fjD -cHj -cHj -vsr -bRG -pOa -vZE -ivx -gDZ -lEu -pOa -nyc -jUb -qno -fms -itq -njB -jUb -jUb -jUb -pAe -jUb -ekh -lmL -vCh -vCh -hVY -wRl -nRa -qOu -dqN -dqN -mNO -syh -gsn -shK -jUb -tzt -xjH -vAc -sOM -lyf -xjH -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -cqk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(67,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -lMJ -aaa -aaa -aaa -xuK -xuK -xuK -aYN -aaa -raz -aaa -aYN -xuK -xuK -xuK -aaa -aaa -aaa -qvJ -qvJ -jfG -jfG -jfG -gYE -lBm -dHa -ugJ -edP -dwA -bje -jXu -ttG -jXu -pPh -aFd -nVG -kRe -cHQ -hKg -uvw -yeq -yeq -giz -xpX -sJg -xpX -jYB -vsO -vsO -uAu -iiu -rbL -mmR -mmR -krf -krf -rwK -vyf -bJR -ikJ -kKr -hyW -pTf -iOc -qwG -fjD -rEj -vCu -cwc -kXa -fjD -tmI -fjD -pOa -cIW -oiX -tYi -vXH -pOa -tak -jUb -tXX -dqN -dlr -gzs -eLk -uYT -pAe -rzM -jUb -mTR -jUb -lnR -sYf -dqN -wgq -dqN -oKI -cNS -llW -nqP -syh -gsn -shK -jUb -huF -xjH -rUU -eSR -vYJ -xjH -aaa -aaa -lMJ -lMJ -cCM -cDD -lMJ -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -cqk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(68,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -raz -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -qvJ -nxi -rvj -hTn -krk -iPE -vfv -cTQ -xte -mzs -sHu -kHU -jXu -jXu -jXu -jpG -kRe -nVG -qOZ -hKg -hKg -goG -aok -luc -aok -aok -aok -aok -aok -iUw -aok -aok -aok -eLb -cbz -krf -krf -xLY -roX -jiP -bJR -xWV -kKr -hyW -xOw -iOc -rcW -fjD -cOq -haE -vsr -fRG -vsr -wfZ -soa -pOa -myZ -sXI -sNM -tYi -pOa -uOH -jUb -ilQ -oVn -oao -vEd -jUb -vKT -dQG -uVJ -fhv -liC -jUb -aRz -jEY -vVu -vJy -njc -ctq -hnv -srf -qCK -syh -fRU -shK -jUb -fRg -xjH -tAc -wqJ -prx -xjH -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -sGL -qZV -sGL -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(69,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -raz -raz -raz -aaa -aaa -aaa -aaa -aaa -aaa -qvJ -nIj -gYC -xGm -isO -gYE -uEC -wgw -twr -uuD -xgB -fBl -eEb -jXu -ouc -dSG -cLj -xYl -cLj -mUz -xdY -rgN -mmR -mmR -mmR -hyd -ejo -jRM -uKm -hyd -ejo -jRM -uKm -thQ -lme -bJR -fXw -jQc -iAd -kah -krf -krf -tiD -hyW -xOw -iOc -rcW -fjD -nhS -fjD -cdv -fjD -jql -fjD -hsF -pOa -vJY -sXI -sXI -rVY -rAa -kDS -jUb -jSI -emP -jUb -jUb -jUb -jUb -vXC -jUb -jUb -gPY -jUb -jUb -jUb -jUb -jUb -jUb -jUb -jUb -jUb -jUb -jUb -qHK -shK -jUb -jUb -gll -xjH -hVN -xjH -xjH -lMJ -tSw -tSw -gAf -gAf -gAf -gAf -tSw -tSw -aaa -aaa -aaa -aaa -sGL -uAC -sGL -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -lMJ -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(70,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -lMJ -aaa -raz -aaa -aaa -aaa -aaa -aaa -aaa -qvJ -kVR -jCM -teg -kDT -pQu -vEH -jXu -lUe -uuD -rNV -ays -guZ -xoc -xyz -xyz -fgT -btt -aqx -shx -bGM -fiC -dAk -rhn -iqt -xCt -tRt -xCt -iqt -yiN -iqt -xCt -iqt -iqt -utp -mLR -fIp -fIp -gBc -tdF -vcw -krf -krf -hyW -xOw -xbd -pOa -pOa -pOa -pOa -jwv -fjD -nfK -fjD -oyx -pOa -xgG -vJY -gDZ -wev -pOa -uOH -uOH -thY -dfO -jUb -knt -uWL -fhI -nfP -dox -jUb -dgc -kIR -kIR -xUu -mue -xUu -kIR -xUu -moD -gjk -kIR -ovm -xUu -xUu -xUu -iCX -oGf -ryQ -veP -iTH -bhS -tSw -tSw -cIP -vkr -qEf -qEf -gmS -drm -tSw -tSw -tSw -tSw -gAf -sGL -ctN -sGL -ecz -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -nsC -gAe -anS -lMJ -qPs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(71,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -xSU -aaa -lMJ -aaa -raz -aaa -aaa -aaa -aaa -aaa -aaa -qvJ -adD -scy -fpH -egO -tWJ -aQE -jXu -nME -iUE -gQv -jXu -jXu -jXu -rFF -cLj -kRe -aFd -bHm -oor -oor -hDX -hDX -uSm -tmm -cYg -mmR -jRM -mNZ -hyd -aok -jRM -bgx -mmR -wRj -bJR -xgw -xgw -xgw -xgw -pyw -ldg -krf -dWF -xOw -mux -pOa -qXm -qsu -pOa -pOa -pOa -pOa -pOa -pOa -pOa -pOa -pOa -pOa -pOa -pOa -vXH -uOH -uOH -uOH -jUb -kzG -bYz -czT -shK -eru -jUb -mam -jUb -jUb -jUb -jUb -jUb -jUb -jUb -jUb -jUb -jUb -gPY -jUb -jUb -fLe -jUb -gll -azE -xxU -iVB -lpN -sWZ -qEf -rKf -tSw -laL -tSw -oIe -qEf -qEf -qEf -gXF -gmS -tSw -cxi -uAC -plU -ecz -aaa -aaa -lMJ -aaa -aaa -aaa -lMJ -lMJ -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(72,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -lMJ -aaa -aaa -aaa -cmB -cmB -cmB -iOr -iOr -iOr -aaa -raz -aaa -aaa -aaa -aaa -tOm -nQg -nQg -nQg -jXu -lbZ -jXu -jXu -jXu -jXu -jXu -uuD -gQv -jXu -gVb -jXu -eRx -xJV -oOO -uxd -sfG -oor -qnb -wfU -hDX -hDX -eLb -wND -mmR -dka -aok -lUI -pvP -dka -bgx -mmR -nyk -bJR -iGD -kga -fRQ -xEs -eDi -geK -krf -hyW -qzC -kOQ -lxM -kDS -uOH -uOH -uOH -bGV -uOH -vXH -uOH -uOH -uOH -uOH -uOH -qgw -uOH -uOH -uOH -vXH -uOH -jUb -jvf -uWL -kMF -kGr -rke -jUb -sst -jUb -vAF -snb -tGu -aGo -rGE -snb -vAF -jUb -iEm -kym -jUb -dIA -paQ -caC -hbv -xTw -erF -xTw -bhS -fqR -ajM -fje -tSw -jsq -tSw -wxF -tSw -drm -drm -tSw -mnN -kNV -gnL -dQb -dWA -ecz -aaa -aaa -lMJ -aaa -aaa -aaa -lMJ -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(73,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -lMJ -aaa -aaa -cmB -cmB -opF -sbX -irh -wyn -iOr -aaa -raz -aaa -aaa -tOm -tOm -tOm -ntM -pgJ -fRZ -jXu -ybi -twr -dOS -xxp -twr -sxn -uuD -vpU -twr -rSa -jXu -jXu -fNH -jXu -jXu -jXu -jXu -hWX -kOX -sIb -hDX -cZu -bgx -mmR -aok -aok -aok -aok -aok -bgx -mmR -fAO -krf -krf -krf -bJR -bJR -krf -krf -krf -jFi -pqc -rkM -pOa -hKp -rpE -vXH -usi -sNM -uOH -uOH -uOH -rpE -ayH -vZE -vXH -ncG -sNM -sok -vwS -vXH -uOH -jUb -jUb -jUb -pPM -dqN -gJu -jUb -mam -jUb -atf -eWq -aJP -hiB -aJP -rpA -fiK -jUb -iEm -kym -jUb -cgJ -cqD -eEV -bLQ -kjJ -tzE -ucc -tSw -tSw -rTF -tSw -tSw -tSw -tSw -kxz -tSw -tSw -tSw -tSw -vUM -tSw -rtO -cnF -wjT -ecz -aaa -aaa -lMJ -aaa -aaa -aaa -lMJ -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(74,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dnJ -rrt -rrt -rrt -rrt -rrt -rrt -rrt -sfn -aaa -lMJ -aaa -aaa -cmB -nNo -tCC -qDS -tVo -ese -iOr -aaa -raz -raz -raz -grI -hsp -iJm -hsp -oeO -ktG -mIg -qMD -vMd -fUr -fUr -fUr -fUr -lNE -aps -xgB -jZW -jXu -gPz -xgB -nsM -twr -mdW -jXu -kGM -cHN -mXX -oor -wSP -hLL -hod -dfk -dfk -jhA -tmm -aok -bgx -mmR -pyZ -pOb -mpK -hGy -non -non -non -ofY -xMZ -hKw -xOw -piC -pOa -pOa -pOa -pOa -pOa -pOa -pOa -gag -pOa -pOa -pOa -pOa -pOa -pOa -pOa -pOa -pOa -pOa -aDl -pOa -kRA -jUb -xYq -dqN -cIS -jUb -rvI -jUb -iqK -tJr -vSI -ude -vSI -oZO -pXQ -jUb -dqN -kym -jUb -iOf -oBv -goj -mav -myc -xxU -fuA -aPq -fVa -wVf -gnY -tBJ -rHv -bEL -keq -scb -suz -veo -tSw -vUM -tSw -tSw -tSw -tSw -ecz -aaa -aaa -lMJ -aaa -aaa -aaa -lMJ -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(75,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -lMJ -aaa -lMJ -aaa -aaa -cmB -jXU -fiA -fiA -bSb -nHB -iOr -iOr -aaa -aaa -aaa -tOm -tOm -tOm -oxH -btB -qwM -srk -qGP -sHu -gib -nUt -rMp -cVL -jXu -uur -xgB -jXu -jXu -jFk -xgB -sHu -twr -twr -jXu -jmR -ohf -oUx -knT -ivX -bgx -edA -fkC -eFD -cdY -wUC -dfk -hLL -hod -dfk -dfk -edN -kvb -xNh -yhL -xNh -qPx -iev -mkb -sly -nxF -sVY -cyk -qzS -rIa -ahD -mjr -jIY -mjr -tbK -rLm -saN -bpD -sVY -ivM -sdC -jnA -rcF -pOa -uOH -ubp -tTF -jUb -dqN -qKs -jUb -jUb -tpC -pHv -veS -dGv -bdy -izl -rps -eme -eyl -jUb -sMS -kym -jUb -jUb -jUb -jUb -jUb -tfn -oBO -ieH -rQX -miX -bfg -gND -tBJ -plu -bpK -gms -jGx -bnU -biI -tSw -vUM -tSw -fqR -uUg -tSw -lMJ -aaa -aaa -lMJ -aaa -aaa -aaa -lMJ -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(76,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -lMJ -aaa -lMJ -aaa -aaa -iOr -sQq -sTb -viQ -dTQ -rOP -aII -iOr -aUn -aUn -rrt -rrt -rrt -tOm -nQg -nQg -pma -hZQ -jXu -jXu -nzg -jXu -jXu -jXu -jXu -aCX -lpS -lpS -ykL -lpS -lpS -lpS -kSp -lls -jXu -jXu -jXu -jXu -jXu -vQs -vXm -pHL -vQs -vQs -vQs -vQs -jLf -iqt -mmR -kaf -kQi -xXf -gOb -jld -uxf -qCa -bzH -bzH -nmx -qZO -pYn -sVY -psr -htO -mjr -ahD -mjr -ahD -mjr -tbK -fZa -eXA -sXE -sVY -mjr -kUZ -mfp -xqm -pOa -bAA -pOa -vZE -jUb -iBf -mWW -jUb -kpB -dIK -jUb -jov -yih -ixv -jml -wRZ -kOp -air -jUb -oOZ -omm -sWO -oxW -dqN -vlH -aIA -miy -tFr -nMf -xnd -miX -rpR -nzh -tBJ -gIB -bpK -wnN -upm -bTn -dLs -tSw -gOp -sqT -lOf -drm -tSw -lMJ -aaa -aaa -lMJ -aaa -aaa -aaa -lMJ -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(77,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aaa -aaa -iUv -suD -rft -rft -rft -rft -rft -rft -rft -aXa -aXa -aXa -dHQ -jjM -ilg -cmB -aaa -mji -aaa -aaa -aaa -aaa -aaa -aaa -tdg -hkj -sQp -cLN -lfY -ujT -dYi -iDG -jXu -bSm -sHu -bPM -sxn -uUu -jXu -rNP -rNP -mgv -mWE -sPL -lpS -bkF -jXu -uFZ -hen -vzR -ilY -cSq -yis -vQs -nMU -sai -mJo -bzH -bzH -bzH -fjV -aOg -piB -hvB -lpQ -iev -obb -iVs -fLd -fpy -acB -acB -acB -acB -qQd -jXy -ecO -ecO -ecO -ecO -kFM -ilC -prD -kJx -lIa -xjC -pOa -uOH -pOa -pOa -jUb -jUb -jUb -jUb -hfi -jUb -jUb -sSp -kDj -xzu -rAF -vRR -kDj -sSp -jUb -jUb -jUb -jUb -kYv -jUb -blb -jUb -tck -tFr -nMf -rQX -amb -nCc -xGk -tBJ -dTH -wek -rPc -xpO -bpK -wMM -tSw -lah -cmw -fje -jgW -tSw -lMJ -aaa -aaa -vQg -rjg -rjg -rjg -gYU -rjg -gYU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(78,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -suD -suD -iUv -gQT -aXa -jMx -umN -gWS -aht -ivu -uEA -iAR -dhW -aXa -fbX -cnk -wyn -cmB -aaa -aUn -aaa -aaa -aaa -aaa -aaa -aaa -tdg -hkj -hkj -kuW -vUx -vKg -mUF -obF -jXu -oyO -jXu -jXu -jXu -jXu -jXu -jXu -jXu -jXu -jXu -jXu -llh -vEk -jXu -vmm -hen -vzR -jDb -kod -lTZ -vQs -aUj -rVK -baW -bzH -fVh -aPO -wCT -qMi -ioz -hOh -pbE -bzH -cSF -uxa -mmm -vjv -cWs -cWs -teY -cWs -mvg -cWs -cWs -cWs -cWs -cWs -qqg -dEX -mLS -dRY -kwX -kJH -pOa -iar -uYD -sSn -nDT -lYG -fmc -nVq -dIK -jUb -vXc -gZD -tuC -rDJ -guC -fTE -hBY -vVI -ppG -vun -pMs -uLs -wFa -iov -vAo -vun -rtX -wGk -ukN -rQX -jtZ -pFg -jXQ -tBJ -fNx -odW -rPc -ryv -bpK -sRZ -tSw -kPZ -vUM -tSw -tSw -tSw -vQg -vQg -vQg -vQg -pjb -gGh -rxz -gYU -wlj -rIG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(79,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -suD -hkV -tKa -tGX -aXa -iSl -oZL -hmy -oZL -oZL -tub -eJp -bmB -aXa -cmB -bKT -wZz -sjP -sjP -sjP -sjP -sjP -sjP -lMJ -lMJ -lMJ -tdg -hkj -xQO -dfU -ikL -qST -xMx -qrF -jXu -wfn -jXu -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aaa -jXu -twr -gkS -jXu -lsu -nvg -vzR -dKY -hGv -mNQ -vQs -aUk -uwx -aXq -rZH -qMA -piB -epv -jgQ -djG -jHW -ykO -bzH -buH -iVs -pJi -sVY -mjr -mjr -sVY -tmB -cWr -rMI -cLx -nPu -mjr -nxz -nLq -sVY -pEH -vWF -utt -utt -pOa -uAM -vZE -pOa -jUb -jUb -fYc -jUb -jUb -jUb -ymd -drE -vfa -gXz -pfE -vJe -jfO -wDq -mVb -vun -vok -dMN -ejg -ehX -uxI -vun -rtX -tFr -xYu -xdJ -xdJ -xdJ -xdJ -tBJ -tBJ -tBJ -qQs -bpK -pqp -pGt -tSw -tSw -vUM -tSw -sfl -eqz -lUP -vhS -qrD -vQg -iUS -aGD -iUS -gYU -ppJ -gYU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(80,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -lMJ -iUv -iUv -hWW -iFz -tGX -aXa -aKl -lds -sku -hXQ -bVF -fGP -aJK -liL -iBM -ngT -kQm -wZz -tMJ -dMH -wZz -tMJ -dMH -sjP -aaa -aaa -aaa -tdg -tdg -tdg -fru -wrG -uzb -phP -nUr -jXu -tfR -jXu -aaf -rlU -rlU -rlU -rlU -rlU -rlU -aaf -jXu -wjH -mgv -cUD -cfv -fOb -vzj -pQI -puD -vQs -vQs -pQD -uwx -aXq -agQ -fWU -piB -uid -orh -gBN -ubn -wnK -iev -rKI -rEO -ejS -sVY -hlu -ouM -sVY -cIU -cWr -ecO -src -nPu -mjr -nxz -ueD -sVY -mjr -rSx -pEH -pEH -pOa -hdx -cIW -pOa -jwp -qCL -uIM -ahg -sSN -sSp -wvP -wUQ -kui -ckE -ckE -oJD -oPv -nKE -xtu -kFu -pri -elb -sja -elb -hlX -kFu -nTs -tFr -pDU -nwJ -duw -hyn -hNN -lYx -hYN -cyX -jhv -nRR -pqp -gSF -tSw -qjy -sMD -khD -pvm -pqu -lKS -tvL -jVG -vQg -gYU -lji -klt -fkP -mhR -gYU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(81,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -suD -cYX -jmv -iFz -fhP -aXa -aXa -iBM -aXa -aXa -xdR -oUE -aij -oGZ -aXa -myH -kre -wZz -gEl -egg -wZz -gEl -egg -sjP -aaa -aaa -aaa -lMJ -aaa -aaa -jXu -jXu -jXu -jXu -jXu -jXu -ybi -jXu -aaa -rlU -dfl -lmF -vVM -nYl -rlU -aaa -jXu -jXu -lJR -jXu -wtQ -tKA -fDo -xIZ -bNU -vQs -dhy -aUm -jvv -uvH -lwn -ioz -ioz -mwN -lIM -gBN -bLj -tJt -iev -gCn -nqo -qsX -sVY -hlu -rSk -sVY -bla -cWr -ecO -rFB -tmB -wcL -yfT -klf -sVY -jfa -mda -rur -knK -sQx -mif -vXH -pOa -wKe -aez -vpB -aSe -jeL -ohC -tuC -iMv -nKE -vSu -jtA -nVJ -wUQ -ktD -bbd -rZY -gbf -bIU -ntk -iNC -rxA -gNl -myc -xxU -vjH -vqk -abX -xTO -lEP -lEP -ndv -tBJ -tBJ -tBJ -tBJ -tBJ -tSw -uUg -utk -tSw -vQg -vQg -vQg -uGr -vQg -vQg -fmx -klt -dXj -dLy -fNR -rIG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(82,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -suD -tGX -tYm -pZp -tGX -cYX -kKF -vjF -kZF -aXa -aXa -bns -aXa -aXa -aXa -myH -kre -wZz -tfW -nAN -wZz -tfW -dSB -sjP -sjP -aaa -aaa -lMJ -aaa -aaa -jXu -fTT -sOP -twr -kwi -jXu -xVc -fsQ -aaa -rlU -qrg -cpi -cpi -ucI -qpD -aEH -aEH -uqX -uwx -vQs -stw -mxh -gUX -kod -oQx -sgH -dhy -rVn -fhB -jdn -qIi -hlb -piB -bnv -cOB -gBN -jtL -bzH -bzH -unj -ivB -iOc -sVY -hlu -ouM -sVY -luL -cWr -ecO -mjr -cNC -flQ -mjr -fUM -sVY -sVY -sVY -sVY -sVY -pOa -sQY -nPt -qSk -ogn -lgC -aZq -rxR -sfF -wsv -hcU -isu -ekk -mtj -buN -lTR -wUQ -jGG -agZ -kFu -tnN -eih -foP -sRm -hdF -kFu -myc -tFr -ieH -nwJ -nGr -aST -aWb -vRN -xoj -rOF -ryf -vnV -jcI -qNk -tSw -wZA -maJ -tSw -wRB -iix -jvh -xvf -qKi -vQg -gEX -dLy -qyb -dLy -vGp -rIG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(83,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -lMJ -iUv -ocL -bBK -qEG -wBn -iFz -eyX -qYd -lmT -gtk -yhO -axK -yhO -yhO -crl -pSa -cUf -csb -vjF -ejR -cji -vjF -ejR -oEt -sjP -sjP -sjP -sjP -aaa -aaa -jXu -uUu -oCd -pOi -bPM -jXu -loQ -fsQ -aaa -rlU -trx -uWn -uDw -ddr -iCz -vLr -qyo -aTU -jSm -vQs -pVi -kod -mXE -lpw -aJY -vQs -cyR -rVn -uwx -mgJ -qIi -isa -bGt -uRu -piB -gBN -haq -nkD -qIi -nQw -tEr -iOc -sVY -hlu -ouM -sVY -gcc -cWr -ecO -gsO -tot -bsu -mjr -wih -sVY -maB -oZj -haA -sVY -vXH -sQY -tWq -pOa -qIP -jkT -eKr -eRc -qNi -ohC -gNT -oah -nKE -tMK -xgn -xfx -wUQ -kui -fHC -gNl -aAB -eXx -fip -woY -uoj -waK -myc -fiH -nMf -uYp -uYp -rUL -ujH -gKO -uYp -rOF -uaj -lWI -xnA -jZl -uXG -efC -hLZ -tSw -mNG -afo -aMf -xUX -yjW -vQg -bpl -hto -bnH -dLy -tPI -rIG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(84,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -lMJ -iUv -uCS -xkY -aYd -hwZ -rGe -wtw -tcW -tcW -axO -tcW -tcW -tcW -tcW -tcW -axO -tcW -odh -tcW -tcW -qAX -bhN -wBe -mmV -tfW -gEl -tMJ -sjP -aaa -aaa -nmg -hwo -hcx -knQ -mkd -udC -mZy -fsQ -aaa -rlU -cTU -wHW -wHW -isp -qpD -aEH -aEH -lpt -mTp -vQs -kdA -kdA -vQs -vQs -vQs -vQs -clA -uTI -iRR -srK -bzH -bzH -bzH -raC -hRD -gBN -piB -jnR -lBz -sXr -ybn -fLp -sVY -mAa -mjr -mjr -mjr -ohM -ecO -mjr -erS -fJi -dFJ -qRf -xrd -fKG -lIX -lrL -sVY -clp -etn -ayH -pOa -hKP -jqQ -mbV -hEA -iZS -sSp -jFB -bHE -vWv -hMq -hMq -sxf -iMv -nKE -xtu -kFu -uod -wWs -fOu -fBJ -twF -kFu -nsD -tFr -nMf -lOV -uYp -jsO -cpR -lxC -uYp -rYS -sfA -eQO -xjI -iNo -tSw -tAH -qok -eXT -gwS -oxT -sEE -hrG -lPB -vQg -gYU -upZ -gYU -kho -aNO -gYU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(85,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -suD -iFz -nCI -chH -tGX -rDr -ihb -ihb -ewT -ihb -ihb -mzI -rAW -rAW -wZz -wZz -wZz -wZz -oUU -iFz -rDr -wIM -aCQ -kre -flk -fpj -nxU -sjP -aaa -aaa -jXu -uUu -wQj -jXu -jXu -jXu -oyO -fsQ -aaa -rlU -vis -mCi -ixT -dOo -rlU -aaa -aEH -aHt -uwx -aIE -aMA -aMA -aNT -vJt -hIE -suE -sUm -aHt -uwx -vpX -sIQ -fwZ -bzH -kNy -wew -gBN -udI -eYL -qIi -oKy -xOw -iOc -sVY -vKt -mfE -mjr -mjr -cWr -ecO -nZH -sVY -sVY -sVY -sVY -sVY -dVR -sfO -uJm -sVY -pOa -qZn -pOa -pOa -bMY -xFp -odu -xFp -bMY -sSp -pgP -pSl -eUN -jpU -jpU -vJe -qXh -ehg -aPe -vun -hHC -uTj -usC -ehX -iDn -vun -gQG -tFr -oqi -ihB -uYp -oAj -qOV -qQu -uYp -gzJ -sfA -dvn -qkJ -tgC -tSw -tAH -ifQ -tSw -xNu -jjL -sMl -wRt -wEn -wZe -jsr -hto -gYU -cWW -rxY -ulE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(86,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -suD -bzv -gLb -uMb -qig -ocG -ihb -pGZ -pJu -mAe -ihb -nyf -uZa -sWF -wZz -bmX -qOT -swR -tGX -iFz -oDX -dfB -aCQ -xst -wZz -wZz -wZz -sjP -lMJ -lMJ -jXu -jXu -jXu -jXu -qnX -nTP -uHp -jXu -aaf -rlU -rlU -rlU -rlU -rlU -rlU -lMJ -aEH -kQx -wdQ -xAZ -wcs -hMn -ygR -lgg -ush -mPK -lgg -kWP -lgg -uLE -kPX -moQ -bzH -gDm -qIi -tjN -qIi -qIi -qIi -pvL -mFo -npY -qwR -sVY -sVY -sVY -xWi -flx -ntX -xWi -sVY -jPo -apB -ooP -sVY -sVY -sVY -sVY -wki -xxk -ahr -bMY -sTe -mWa -fFi -iWD -vDz -pBN -sSp -ppG -ppG -nuO -xQC -kLZ -iUJ -bJk -ppG -ppG -vun -bDV -wEp -hwe -qdB -vtS -vun -uzJ -aUt -cKd -ajI -uYp -nwJ -nwJ -nwJ -uYp -ikS -cnc -igP -sjx -axR -tSw -tAH -fKP -tSw -rtS -vQg -vQg -vQg -gzm -vQg -iez -hto -gYU -gYU -gYU -gYU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(87,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dnJ -bDS -iUv -iUv -vjZ -xdA -lyu -rQZ -ihb -lfm -hOR -ybs -ihb -wuh -jDB -ovL -wZz -dXA -lnM -wZz -xwf -fBY -suS -pNZ -aCQ -kre -hfA -fpj -nxU -sjP -aaa -aaa -aaa -jXu -sEH -knQ -siY -jXu -jXu -jXu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -guX -xUK -guX -cFp -vvH -cFp -guX -xiw -bUn -enW -tHu -hSg -dfP -uVm -sSV -wRP -bBa -gji -gji -wxg -gji -hDj -hDj -aSd -vhB -guR -txQ -usA -vLi -vmX -usA -keR -xuS -usA -ooT -usA -usA -usA -vLi -usA -jWg -tKu -usA -txz -wYe -bMY -kua -mna -gVn -cXz -dca -bnr -sSp -sSp -sSp -ohC -jfn -ohC -stD -ohC -sSp -sSp -vun -vun -kFu -kFu -kFu -vun -vun -taI -qQX -bRH -fEK -fEK -dZy -kTO -gdL -fEK -rOF -rOF -cMX -rOF -tSw -tSw -tAH -ifQ -tSw -mXO -vQg -oCb -gCA -fwD -vQg -gYU -rTL -gYU -gYU -boT -gYU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(88,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -iUv -iUv -tlx -rGb -jFK -ihb -mxg -wUm -lUY -ihb -otM -koc -sWF -wZz -wOm -fpE -wZz -rrW -vtx -jxS -mQr -aCQ -mmV -tfW -gEl -eWA -sjP -aaa -aaa -trq -jXu -rOz -sHu -siY -jXu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -guX -rbI -nZh -hSf -pID -qSp -guX -lar -fEs -qCb -sYh -iBt -kcM -yaE -tmK -htd -dRF -htd -htd -ejP -htd -htd -htd -mlw -fhl -phz -gCT -hvJ -qeJ -gUt -gUt -vhB -iyV -gUt -mpg -gUt -hvJ -gUt -qeJ -gUt -gUt -gUt -dvZ -qQm -isQ -bMY -bMY -nur -jfr -mBb -pYw -irL -xFp -sgS -ccV -nor -eMU -ttE -aPm -sZH -wUG -eGJ -dCN -gQG -gQG -gQG -gQG -gQG -lcM -lgT -hDp -sOn -xUb -rtn -eMI -jfN -eMI -ctO -aek -mBO -xar -xBz -tSw -fje -tAH -ixY -tSw -tSw -otu -xly -vQg -vQg -vQg -jvB -oOU -qxh -ehH -qri -otu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(89,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -iUv -iUv -iUv -iUv -tdW -tdW -tdW -tdW -tdW -tdW -tdW -tdW -tdW -tdW -tdW -tdW -qNI -uRT -gQw -mQr -aCQ -aEl -wZz -wZz -wZz -sjP -iPb -iPb -uza -hZQ -jXu -jXu -siY -jXu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -guX -jRv -boc -xnt -ifn -kzb -guX -imK -aZD -wrY -euo -feA -kcM -ykS -htd -boL -rvL -aLA -aLA -luF -stC -sPY -hRW -cYQ -aLA -aLA -vVw -aLA -oip -lLF -aLA -mPh -cmC -fDk -fDk -oSh -fDk -jeX -avq -wcN -uyr -fDk -vVV -htd -tAG -gDv -xFp -iPM -eRX -wOz -wOz -mvY -rne -bXX -iFi -jCn -uHt -uHt -gTn -eZb -wlt -jso -qWR -iFi -iFi -iFi -iFi -iFi -emf -iFi -iFi -iFi -fsN -eUW -iFi -iFi -iFi -iFi -eqa -fPl -xSQ -rGB -qEK -pyd -bsZ -rJI -taX -tSw -pZj -gmX -lHK -tey -jDP -tey -mqe -tey -sFw -tmF -otu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(90,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ehB -vht -tUX -drq -why -cwa -rXB -wAp -wqE -wPM -tdW -tkP -uRT -gQw -cgi -aCQ -fXK -mcW -gjZ -nWk -lbh -nWk -rsc -vxC -hZQ -qmO -fsQ -oyO -jXu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -guX -xlw -ddP -bVk -bNP -orC -guX -udh -fHk -tUJ -jWR -iHf -pAk -ykS -hPM -uoe -oIa -dqI -gev -wRp -pzF -pJR -pJR -mig -pJR -pJR -sDG -pJR -pJR -qIl -kWL -sSL -pWN -ube -tOh -tOh -tOh -tOh -tOh -tOh -tOh -tOh -nNY -hPM -xAb -dYa -owf -iPM -tPb -bax -ghc -cxt -xFp -auH -tFr -nmQ -ije -sdL -pFS -uEz -nWy -ejp -poM -uSn -dNB -nmQ -nmQ -nmQ -nmQ -nmQ -liN -xwD -dVt -iHn -ubd -wUc -nmQ -nmQ -unN -nmQ -xQh -wYo -tSw -xaj -jJY -iDN -xtz -tSw -ssi -iJj -uZD -hKv -uuc -hQE -oOU -pcm -izv -cxj -rRZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(91,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ehB -oSf -nEF -ncq -bMM -mRq -dRE -jUP -uYm -grb -tdW -qNI -cnn -gQw -mQr -qgz -nib -biq -lQp -lQp -uGp -ryL -ryL -gdZ -hZQ -qmO -dqc -wfn -jXu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -avK -avK -avK -avK -avK -tfO -avK -avK -avK -avK -avK -avK -avK -avK -tEj -jPU -uoe -oIa -qSJ -jle -mVT -qSJ -pJR -oXT -sRT -jMu -gaU -flu -jbd -pJR -qwY -qRI -urA -nIR -tOh -lTM -dYb -psv -tLo -cCN -dYb -dYb -tOh -iun -htd -xAb -nvI -xFp -aww -rlw -oUS -ylf -quH -bMY -dAx -iZF -qyr -pKP -pKP -nsc -xmM -xmM -pKP -pKP -bqX -bqX -mlc -mlc -mlc -mlc -mlc -bqX -oLW -jlT -lyE -bqX -bqX -bqX -iHn -unN -nmQ -fEK -fEK -tSw -tSw -tSw -tSw -xtz -tSw -dEp -iJj -jAm -lFZ -qEb -lFZ -mqe -pcm -bhV -cxj -rRZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(92,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ehB -hwz -oEM -ibH -hne -hnp -nrV -tzJ -hxW -cTp -tdW -iFe -ncv -cez -mQr -iem -lAM -lAM -lAM -lAM -cwM -iPb -rXJ -uza -hZQ -hZQ -hZQ -wwj -hZQ -aaa -aaa -aaa -aaa -aaa -aaa -kHN -aaa -aaa -mFi -xYW -ipy -ipy -ipy -byl -ipy -uIP -ipy -byl -ipy -ipy -ipy -bdP -buj -htd -mZF -oIa -gja -wvo -xCl -nMz -pJR -qJx -kfA -rWH -oOE -aVd -nHn -mig -wMx -wCE -urA -qAc -knj -kwF -qjf -mXf -wjQ -uuv -wjQ -dLC -rGm -gqX -htd -aum -qPJ -qPJ -qPJ -kOh -qPJ -qPJ -qPJ -fEK -ePX -svQ -dRq -pKP -lTP -rQd -cJm -jGw -qLb -vPO -bqX -ulR -qXL -qXL -qXL -qXL -qXL -dia -qXL -oqk -xZB -hIJ -vhb -lrZ -kiz -unN -iwc -fEK -uMi -qLR -wsW -lfk -tSw -lEr -pgD -sIO -hsN -jJi -phR -phR -phR -phR -pwq -fkT -cXw -rRZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(93,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -nVL -aWl -aWl -aWl -tdW -tdW -tdW -tdW -tdW -tdW -dXR -bhu -uyi -tdW -tdW -tdW -iUv -iUv -oLM -fGT -pdc -lAM -txg -rGd -lAM -ohi -lHN -dbt -nRZ -vkO -gMg -kVc -vaH -nRZ -cGu -cGu -ugd -cGu -aaa -lnH -qNb -lnH -ffH -avK -noT -iBq -mFi -iBq -iBq -iBq -iBq -iBq -iBq -iBq -mFi -iBq -iBq -vxE -kON -fDc -oIa -cpn -koa -srP -krP -pJR -tBV -qAA -aqN -eIy -aVd -ovK -pJR -toM -qRI -esL -nIR -hyN -uaN -jIg -dTr -rIL -bwN -avJ -ukk -rGm -gqX -htd -oGK -qPJ -rkQ -wde -jJd -hlU -umS -qPJ -bgS -taO -dlH -jsP -xmM -jvr -xbY -scB -rHk -sXT -kyl -bqX -pEW -iqz -iqz -iqz -iqz -iqz -iqz -iqz -dVN -uqL -jgT -vZF -sSt -dIL -vjS -rAA -mkO -tyy -ege -aaz -kNO -hav -xGX -tSw -bJc -iZi -kVN -hKv -uuc -hKv -iIq -pcm -bhV -cxj -rRZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(94,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -sjP -ahS -fWm -tdW -urf -eLd -qNj -tdW -cTl -lgj -mWZ -gkn -rUG -cWI -gYi -lAM -inB -pVM -tjh -pav -wsX -dla -sch -kSs -xUH -euX -uKR -nRZ -vgH -cGu -wJX -cGu -aaa -ffH -ipX -dmJ -ehZ -ocP -fkD -qWF -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaf -aaa -ihq -uCq -hZZ -htd -iUq -oIa -nnq -vnE -pzT -jOv -pJR -pJR -pJR -pJR -iiE -rGj -rJr -pJR -oUB -qRI -urA -nIR -pIm -uac -aUK -aUK -rtd -isn -uEx -xBF -rGm -gqX -htd -oGK -qPJ -atV -waH -vbV -ixr -gzW -rxa -eqc -kyQ -kHg -jhk -xmM -vgZ -ijZ -bkT -edo -pXM -iNc -bqX -jYy -iqz -bgt -dkx -dkx -dkx -dkx -dkx -dVN -iqz -iqz -rlA -lrZ -kiz -qZa -jEl -fEK -fwE -sqb -piT -wLz -tSw -xtz -tSw -hqo -iZi -kVN -lFZ -qEb -lFZ -jHw -pcm -izv -cxj -rRZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(95,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sjP -mTY -dLU -tdW -tdW -tdW -vnk -gEg -ikO -pNY -qjr -fGb -yey -cWI -gYi -tjh -oCR -rGd -tjh -guU -eXj -vSo -sch -oWZ -oPn -iIw -lhc -sch -asX -tjh -uTF -tjh -tjh -lAM -lAM -lAM -ffH -jiT -fkD -uDP -aaa -aaa -aJS -aJS -aNZ -aNZ -aJS -aJS -aaa -khZ -ppU -ikR -htd -fIS -oIa -oIa -iXT -oIa -oIa -aKb -kiH -pJR -oTa -kEp -aVd -kfC -pJR -mIP -qRI -urA -tYW -tOh -euj -rnX -uIg -yfL -rjh -dYb -gqA -tOh -rym -htd -oGK -qPJ -bKv -nsb -izD -evY -sli -dZU -lsJ -gQG -tFr -tar -xmM -jgs -uyw -pcM -cNk -fIG -bqX -bqX -jYy -iqz -iqz -iqz -iqz -iqz -iqz -iqz -dVN -iqz -rJq -btH -bqX -lmq -wza -rYn -fEK -tSw -tSw -tSw -tSw -tSw -xWF -tSw -oBN -iZi -kVN -qri -mKv -qri -iIq -qfZ -fkW -kLF -otu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(96,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sjP -dcN -vae -slI -pPR -xnS -gYi -jTZ -jRh -qbr -ouj -gkn -yey -cWI -hSd -tjh -tjh -mAm -tjh -wsX -wsX -kDk -sch -waI -lvu -iom -dfL -sch -pHb -ihj -vVy -cxq -wsX -iLH -aXF -wkL -jpw -gFi -fkD -qWF -aaa -aJS -aJS -wWd -pQG -kUq -dvk -aJS -aaa -ihq -ooP -hZZ -rPO -gmI -aKb -xel -bwr -jfU -siL -grl -noA -pJR -noi -mIl -fJp -bSj -mig -wMx -qRI -urA -eMa -tOh -yfL -yfL -yfL -yfL -yfL -yfL -yfL -hyN -qoR -kON -eLv -qPJ -qPJ -qPJ -qbE -qbE -qbE -qPJ -klj -gQG -oBO -jNl -pKP -jet -myS -hGl -kha -oKO -bqX -saa -ffj -iqz -iqz -iqz -iqz -wOl -skx -lxw -dVN -iqz -jtl -hZV -hZV -nZm -ixy -nZm -nZm -tSw -juV -bsZ -bsZ -bsZ -hXC -tSw -otu -jis -aLw -otu -otu -pPp -sFw -rmO -yby -gPa -otu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(97,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wQU -lMJ -qrr -sjP -sjP -sjP -mzD -mzD -pQx -yey -jTZ -gkn -gkn -gkn -gkn -uFK -cWI -gYi -eOs -puQ -vQO -ixm -uok -ihv -xNO -qZD -iRW -jff -iRW -gQy -sMu -pHb -vMX -lsP -lsP -pdQ -vYD -uoM -wkL -rsI -oQZ -ocg -qWF -aaf -aJS -dPV -mph -mph -jHB -bTq -aJS -aJS -aUx -aUx -oPe -dbk -mSk -weJ -kDG -cDP -qdW -tUH -vPW -lDo -pJR -gvl -hip -fJp -wBu -tIv -fgS -jrk -dhX -nIR -gBD -twl -pyV -rhK -rKJ -wFe -aXm -fHd -gBD -iun -htd -ebM -uRA -mTk -yhm -rbs -jHA -lln -nBB -nbT -xxU -tFr -bVI -pKP -pKP -pKP -xga -pKP -pKP -bqX -osM -iqz -tqd -iIW -pbz -vfU -mAb -mAb -ePM -dVN -iqz -jtl -hZV -dhF -kiu -iJC -bIo -iMA -tSw -vpP -tSw -tSw -tSw -sGA -tSw -dtp -fgl -btx -dtp -otu -otu -otu -otu -otu -otu -otu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(98,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sIe -jEI -sIe -hlz -yey -gnB -jYD -aDU -buw -kQz -iJx -feY -gYi -wsX -xyt -vQO -wsX -rKZ -rKZ -lsP -rKZ -rKZ -prv -rKZ -hSH -uGD -rlg -keL -eay -tDz -tjh -wsX -wsX -lAM -xlV -gFi -fkD -qWF -aaa -aJS -oOl -rxx -rjI -aPv -oWF -eQg -aJS -ktt -aUx -qhF -htd -qXa -aKb -ohE -dIy -ohE -ohE -aKb -psF -pJR -lJn -psy -htG -llT -pJR -uwC -ndS -urA -pFG -gBD -nmt -fRu -hVE -xXw -fnE -uhq -lTE -kBT -gqX -htd -laK -lYL -xIG -ryo -mui -xEf -lWG -gsW -izA -mHx -gVj -oBq -eNk -hRf -rjA -mAw -qaT -tAD -bqX -kXl -iqz -jtl -iqz -iqz -iqz -mAb -mAb -ePM -dVN -iqz -bxE -hZV -iBX -kFX -wXZ -ipa -mAr -mKp -aID -tSw -qKS -gAL -vke -nOl -jay -mRy -wBW -eje -hTE -qTJ -eAe -eUy -sou -eem -wsS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(99,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -keP -aaa -aaa -aaa -rec -tYS -lgS -jKq -xwV -yey -cWI -cWI -cWI -cWI -cWI -gYi -yey -yey -swe -fNh -sUC -mtG -aCn -ltt -mLv -vkb -iMs -cJj -cJj -cJj -cJj -cJj -cJj -klp -pHb -wsX -pyI -vnZ -wkL -jpw -oae -ixP -qWF -aaa -aJS -dWf -nhP -aOc -aPw -ome -ome -wpJ -iUf -rPh -tBA -dMv -uoe -tKN -aaf -aaf -aaf -dho -dho -alI -dho -qBy -qBy -oWT -qBy -pJR -ndS -eMb -ebx -pRb -igZ -tcN -jVl -mVW -vnp -vnp -vnp -exN -mLY -gqX -cfb -laK -lYL -mTk -cYt -kqm -vLf -kXD -kWO -rvE -whx -sKt -hoN -rvE -rvE -rvE -rvE -rvE -xit -bqX -stq -iqz -fmo -qoJ -qXL -hFD -mAb -mAb -ePM -dVN -iqz -sLD -hZV -oJc -mrV -tcB -cuR -asV -tSw -nNJ -tSw -iJB -dmx -hQT -nSe -nSe -xMz -nSe -nSe -nSe -nSe -dDo -hQu -gRb -gRb -gRb -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(100,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sIe -qdm -sIe -pKa -gYi -cUw -gYi -eCx -gYi -gYi -gYi -cWI -ajq -lAM -osw -lAM -lAM -tjh -tjh -tjh -vhD -tjh -rQS -xqI -gWc -oAN -ufX -vQI -oYn -lsP -atW -ohw -iPX -wkL -rsI -gFi -sVM -qWF -aaa -aJS -bpu -wzH -iRO -aPv -iIQ -aRV -aJS -oGN -aUx -puG -htd -uoe -tKN -aaf -aaf -aaf -dsQ -sVz -aNe -jiI -kvr -jnl -dNz -dNz -bOk -tNg -vpg -ebx -aks -hux -bbT -aGG -kAp -wsA -ghK -ixo -fHd -gBD -eMH -hPM -iKT -ceM -axW -xEX -hYr -sbL -lrR -qwI -xJI -tIx -wmT -hCt -jVt -rYN -lof -rla -rvE -sGn -bqX -nte -iqz -iqz -iqz -iqz -iqz -lWd -cBg -uId -dVN -iqz -apG -hZV -jUg -jUg -fMb -cGY -off -tSw -oBD -tSw -iyi -dWd -qVe -xMz -xMz -xMz -wRm -dye -nSe -krc -aho -gAw -sou -hQu -cSv -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(101,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -quc -lMJ -bKz -sIe -sIe -sIe -sIe -sIe -xCf -gya -jTZ -uMY -jTZ -srU -cWI -nsR -pkH -gkn -lAM -aaa -aaa -lAM -kaU -nqD -uCW -rTw -aeq -aeq -anl -aeq -ffV -jVy -wsX -bPk -xWQ -tjh -wsX -wsX -lAM -xlV -cHE -gTP -qWF -aaf -aJS -dPV -jln -jln -xlU -qlH -aJS -aJS -aUx -aUx -jLr -hPM -uoe -tKN -aaf -dsQ -dsQ -dho -dhp -kcn -qXF -aMB -jMY -gGy -aAT -qlc -cpj -kWV -ebx -rez -gBD -gBD -hWy -gBD -gBD -clQ -clQ -clQ -gBD -aMs -htd -tHR -lYL -pbL -mum -qTR -pWD -sTQ -hrc -hGF -inQ -gtb -gtb -gtb -fJW -xWE -kzj -qhG -iqq -qWK -mXK -iqz -iqz -iqz -iqz -iqz -iqz -iqz -iqz -dVN -sye -jtl -hZV -nGn -gMc -onF -rGK -rrf -tSw -tfE -tSw -iUm -xQK -erG -nSe -nSe -nSe -nSe -nSe -aKO -krc -dDo -hQu -gRb -gRb -gRb -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(102,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -nWF -aaa -sIe -gkn -gkn -sIe -fET -jTZ -mqQ -tVm -jXM -gkn -gkn -aaa -aaa -aaa -lAM -lqC -dxe -wTO -xxZ -anl -uwg -apJ -lDe -qGQ -cJj -cJj -klp -pHb -wsX -pyI -oTK -wkL -jpw -rCo -vsG -qWF -aaa -aJS -aJS -rVO -vrJ -iXa -uGb -aJS -aaa -ihq -gOr -hZZ -rng -uoe -tKN -aaf -dsQ -mZL -geg -aGQ -acf -hmq -dJX -duI -duI -duI -iqN -duI -dho -uag -aks -qRI -aaf -aaf -inu -rTz -gMi -hUG -yaM -ahW -nNY -htd -tHR -lYL -mTk -noD -aNf -aNa -xiv -sKt -cJv -oHG -slC -dHN -fVY -mVf -fhe -ksl -rvE -deO -bqX -sWv -iqz -iqz -fnc -bCo -bCo -bCo -bCo -bCo -bCo -iqz -jtl -hZV -sWq -rGK -ooV -rGK -gui -tSw -dbX -tSw -sUi -qxR -dzM -iWJ -izG -izG -xPb -izG -izG -pVZ -dDo -hQu -gRb -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(103,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sIe -pkQ -sIe -sIe -sIe -gkn -gkn -lMJ -lMJ -lMJ -lMJ -lAM -wmc -wrb -uQK -dPL -aeq -iRG -apJ -lDe -qGQ -nJW -jKS -oLK -dyr -sRi -fOd -axe -wkL -rsI -rCo -sKj -qWF -aaa -aaa -aJS -aJS -aNZ -aNZ -aJS -aJS -aaa -khZ -mDu -fMp -htd -uoe -tKN -aaf -dsQ -wag -nxO -qXF -qXF -aMB -pLv -duI -jnt -cdC -kcn -qsL -dho -bCt -plw -ndS -qRI -qRI -ahW -nne -qeZ -hmY -ory -vyi -nNY -htd -tHR -sTz -xIG -bKB -eAL -xQY -kcF -eKK -oar -keK -lXA -mVE -hxq -nJn -nqB -mtm -rvE -hKG -bqX -hdI -dTX -iqz -iqz -iqz -iqz -tqd -pbz -uhY -joj -afE -qIR -hZV -hyC -vSP -gUl -rGK -feV -tSw -iDN -tSw -irW -dWd -gmp -meu -iUm -wXk -iUm -lhU -iUm -qfK -dDo -biA -gRb -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(104,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -aox -aox -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aeq -aeq -aeq -aeq -aeq -aeq -hBR -riY -aeq -qid -ewj -ycM -bHr -bkl -ycM -bkl -bkl -ycM -aIz -rCo -qWG -uDP -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaf -aaa -ihq -mur -fVJ -hpi -uoe -tKN -aaf -dsQ -hfa -dUj -gGy -hmq -fUj -mES -duI -duI -eal -ddm -vKL -gmH -lSz -aks -qzz -qRV -tnm -vyi -kRV -scg -cke -avA -ahW -qsf -sNl -aZR -lYL -pBa -aNQ -nxy -nxy -aYJ -hrc -bFN -opa -hYA -jsh -rvE -kWG -xSV -kWG -rvE -wKC -bqX -kKT -fBG -awt -xyA -drW -jxm -bcr -bqX -bqX -bqX -bqX -bqX -hZV -nZm -ooN -fiv -rGK -lQk -tSw -fdX -tSw -oZi -dWd -bfl -wBW -eje -eje -hlq -eje -eje -ewB -dDo -hQu -gRb -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(105,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aeq -xCo -wzF -rRf -cuY -tgy -agc -apM -aeq -dfE -fYJ -ycM -dGy -cOr -qyx -fLa -gGU -ycM -rsI -rCo -dKX -qWF -uDP -qWF -qWF -qWF -qWF -qWF -qWF -qWF -uDP -xUB -xjA -exC -dRZ -uoe -tKN -aaf -dho -ofc -gGy -qVc -cqx -dTZ -iFI -bKj -duI -pCO -ddm -lTq -lPZ -lyN -cem -fix -epB -tnm -ahW -ahW -ahW -uOd -ahW -ahW -qyI -qaP -bAR -lgl -fmS -xIG -uBI -uBI -mTk -rvE -cpm -rvE -cpm -rvE -rvE -sgc -lLq -lLq -rvE -qbZ -cJL -bqX -bqX -bqX -lCw -bqX -bqX -bqX -cJL -kul -ati -kOR -bod -bod -nZm -nZm -nZm -uOS -nZm -tSw -tmL -dlO -iUm -lZC -bfl -nSe -nSe -nSe -nSe -nSe -nSe -krc -dDo -hQu -gRb -gRb -gRb -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(106,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -jLw -aaa -aaa -cTk -aeq -ktY -pQW -cwS -pGe -cwS -pGe -pVz -mut -jxV -ewj -bkl -kZZ -vEp -nAC -tNr -xDU -szk -rsI -rCo -rrT -dNX -lKZ -dNX -iVA -mlK -dNX -dNX -cAB -dNX -lKZ -amy -apz -gGa -pWA -uoe -tKN -aaf -dsQ -mXj -dUj -gGy -cwX -gGy -nEC -pJY -duI -gGy -oLD -klI -lPZ -lyN -piz -lLk -fix -haP -ahW -wjW -uqS -cke -iAA -oSo -cgF -koW -uam -fXb -xzb -jgE -jgE -jgE -jgE -eLT -njX -njX -njX -tug -uGW -iEK -iEK -iEK -jyt -vWn -joq -jSS -hvs -wWk -aCE -dLN -mpJ -eGm -njX -njX -njX -tPG -tNw -rDh -bxf -njX -njX -njX -jcd -vNv -sID -wrg -lMI -dWd -bDp -xMz -vkD -xMz -xMz -xMz -opk -krc -bVB -ltx -iBp -hQu -cSv -cYJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(107,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aeq -tzN -stH -dXZ -buc -vPR -kWM -hIw -wsq -prg -mbk -ntP -hbS -hMy -aZr -rbw -wOV -eVa -rsI -rCo -oQg -rCo -ifJ -rCo -rCo -cHE -rCo -ebr -rCo -vuu -rCo -mcP -htd -vVZ -hcv -rxZ -tKN -aaf -dsQ -sAz -fMf -ifE -cqx -gIO -itr -qNV -iOp -wOR -ljL -mrG -lPZ -mJE -tWV -hvI -nsq -qnt -nmm -eQe -eQe -fbI -dvV -oSo -cgF -nyZ -mYq -htd -rkg -wVo -wVo -mYs -wVo -wVo -wVo -wVo -xNb -wVo -wVo -qFP -wVo -wVo -wVo -wVo -aGH -wVo -wVo -wVo -wVo -wVo -mYs -txc -wVo -wVo -wVo -wVo -qFP -wVo -kVe -wVo -wVo -wVo -wVo -wVo -wVo -tAx -mZC -hdZ -eTv -mIi -bfl -bfl -bDp -nSe -nSe -nSe -dDo -nbs -gRb -gRb -gRb -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(108,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aeq -rJc -wzF -sDw -eew -hxF -daO -kaC -anl -vDh -ewj -bkl -xbr -qPM -smK -dJC -qVf -sDS -vDa -rCo -gGo -gGo -goX -gGo -gGo -gGo -gGo -tnP -tHm -gGo -gGo -rYo -tVt -wNN -jOG -qBC -tKN -aaf -dsQ -owv -dUj -gGy -cqx -raJ -nEC -qMf -duI -gGy -bIH -iMi -lPZ -lyN -wXP -eGV -fix -rwi -ahW -wyp -gzi -cyU -wpo -ahW -iXb -kdx -qCh -iXt -jNP -sVH -jON -kFK -kFK -bQM -kFK -ceZ -lTB -cbi -rSm -kFK -ceZ -ceZ -ceZ -kfT -xDz -ure -dXQ -gmt -qsx -gmt -gmt -uzk -gmt -qhx -ceZ -ceZ -pdJ -gmt -chb -gmt -gmt -oCw -gmt -gmt -dXQ -kSD -vGN -wpr -obV -mGA -xMC -izG -tDU -nkK -vPq -rCJ -awF -fxu -sou -iaQ -cSv -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(109,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -utJ -iTZ -ahj -ahj -iTZ -iTZ -aeq -anl -anl -aeq -aeq -aeq -aeq -aeq -bhy -ewj -ycM -mMM -bkl -ycM -bkl -bkl -ycM -unK -rCo -gGo -bjB -olw -kzD -olw -olw -olw -olw -olw -izr -moV -gaV -wtZ -vpQ -iLk -tGL -tKN -aaf -dho -oYd -gGy -gGy -cqx -dpL -kfu -oeX -duI -jZZ -ppB -emY -lPZ -lyN -cem -fix -fix -haP -oSo -iXA -nvc -nBs -cke -jzN -bcq -sRf -qsl -gJV -mST -qCj -cyG -oEP -ghk -cZK -cZK -cZK -wwt -cZK -cZK -seN -bFr -qDa -qDa -fma -fma -fma -fma -fma -fma -fma -ujJ -aQS -qCY -kQe -qYt -qDa -oIg -oIg -oIg -oIg -oIg -oIg -svS -dKC -dKC -vZB -dKC -dKC -tXU -dKC -jVZ -lYc -tew -iUm -gRb -iUm -gRb -iUm -gRb -gRb -gRb -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(110,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -lMJ -iTZ -iTZ -bbk -rnc -oJr -iTZ -eft -upR -nJu -pti -rEy -ggi -gmz -ahj -jxV -ayV -gFR -khm -uok -bzV -ezg -uVv -fLS -pjh -gpc -gGo -olw -pxT -xEt -xEt -jcR -cBJ -fdx -txH -urs -oaj -olw -hoE -xkr -heF -qBC -tKN -aaf -dsQ -qkA -dUj -qVc -wNh -veO -hXK -duI -duI -wtX -ppB -nEC -gmH -ebx -vQe -kHn -gUP -haP -oSo -fsh -tNH -hsZ -fsh -ahW -jRD -dsb -vIH -vBl -wHu -nNW -rgZ -suW -hJF -cZK -ihF -nrG -nyy -tBB -usg -fma -bTQ -lFY -bTQ -fma -xgi -sck -iwA -sck -lPx -wOS -orv -dPY -xWJ -kQe -wEY -adC -oIg -wBq -neA -vKW -jNX -jxW -dKC -rhU -pjX -mGI -jjs -dKC -xLu -dKC -lqd -ctL -oPD -iUm -lMJ -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(111,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aav -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aav -aaa -aaa -aaa -aaa -aaa -rrt -aaa -ahj -qgc -sCi -kiW -rfb -ofS -rfb -rfb -rfb -rfb -rfb -rfb -ioZ -pxN -pdo -mDg -vRB -tjv -pHb -fzR -wkh -dGW -alM -bJq -gFi -iYc -olw -fLI -alE -alE -amc -wyz -fdx -wwY -wwY -rGC -olw -ldJ -tHR -htd -qBC -tKN -aaf -dsQ -hiu -lNH -qXF -qXF -aMB -mvZ -duI -jnt -pOK -sLd -mRn -dho -rLy -qkW -ndS -qRI -qRI -ahW -fat -jjS -krL -fsh -oSo -wpx -htd -tHR -udN -qCj -aOp -fak -pDs -wUj -gcw -bCT -bUT -ylt -pGn -vHO -eut -nZC -cwq -rgS -npD -tKl -ose -tzq -njW -eLY -eut -kor -kor -kor -kQe -cDM -poS -byf -kBu -oir -wal -mXt -jxW -dKC -tjE -rDB -nFa -lqh -dKC -dvR -dKC -xXM -krc -bgm -lYc -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(112,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -lMJ -iTZ -iTZ -xJi -wPG -pHg -iTZ -mpp -uBP -ulQ -sDt -ltb -hXJ -vQW -ahj -lvx -yjC -cJj -erx -lsP -vYF -eaP -lTj -frH -afj -qGs -gCD -olw -xZd -rvY -uVQ -fRr -brc -fdx -wwY -wwY -pXh -olw -sRJ -wEG -htd -qBC -tKN -aaf -dsQ -kGc -tqI -gkD -nXm -wNh -veO -duI -duI -duI -jQM -duI -dho -fEX -vQe -qRI -aaf -aaf -cYU -gwq -cwu -mYJ -sDj -oSo -wpx -htd -tHR -udN -ghk -jLV -fak -jUh -wUj -gcw -bCT -wrJ -fYg -njg -dzw -pxj -bvN -kFS -wmg -ctn -reL -ise -wqh -ekB -aJa -eut -gle -mOx -syC -bpI -iCi -lOr -sNS -dbo -xoa -wal -hJb -ocd -svS -dKC -dKC -dKC -tNM -dKC -gmT -dKC -onI -cWu -aRo -lYc -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(113,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -iTZ -ahj -ahj -iTZ -iTZ -iTZ -iTZ -ahj -bGj -vZm -ahj -vZm -kYg -uRl -kYg -ueG -jVv -esR -ieV -qwh -qwh -ieV -ieV -ieV -ieV -iHD -wCO -nOU -alE -alE -dCo -fdx -wwY -wwY -nTK -olw -olw -wEG -rng -qBC -tKN -aaf -dsQ -dsQ -dho -rhL -sLd -qXF -aMB -hQv -bVs -aNG -mJP -qpr -mBT -lSz -qaq -tvE -tvE -bUO -tvE -yjd -yjd -yjd -yjd -tvE -flm -htd -fBz -udN -sxg -suW -uMR -jUh -wUj -gcw -hpB -aRI -iug -nZf -uTP -eut -vlY -uwK -wmg -jAt -mET -liD -iAk -nSB -xMu -qsd -sNn -ouZ -tbm -eZz -sAF -hZO -xvI -jBk -qNz -mZO -klu -vjk -qOs -kZk -kZk -kZk -kZk -kZk -kZk -dKC -tVR -snz -iMp -iUm -lMJ -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(114,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -lMJ -gdb -rDE -fOw -nQC -ikZ -pBL -iGj -iGj -iGj -vdi -iGj -ljf -kYg -mIU -kYg -vVm -pXC -pHb -qwh -mrL -fnN -mpC -ieV -qhz -juj -iHD -ugE -nhh -rzJ -dYh -tqV -mmZ -xCg -iaZ -xCg -mow -olw -wEG -htd -qBC -tKN -aaf -aaf -aaf -dsQ -aoE -iYA -rup -uwa -gNy -gBx -rEz -eoD -eoD -bcT -xPN -vQe -kmZ -buL -pha -sdp -vxB -uWt -pbS -nwq -tvE -ibX -htd -fMp -kMl -xdX -pZc -fak -jUh -uPi -cZK -mTs -cdq -wsD -cdq -tKM -eut -bLx -uJe -jtS -osC -mMl -lhT -reL -lhT -iMG -ncl -bBo -gwf -gfZ -bpI -jZP -cDA -jrb -lkL -bkm -cDA -edH -mHL -svS -oHO -mGI -oEx -nFa -nFa -dWx -dKC -iUm -iUm -iUm -iUm -sfn -blx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(115,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -vaB -jOF -iDq -mPT -fCn -nxQ -aja -lyF -woG -uem -dOg -uao -lPl -ugH -uRl -jxV -tCG -pHb -qwh -iQg -sBP -kSo -ieV -wJL -juj -iHD -gIc -oeR -qNG -alE -tqV -fdx -wwY -wwY -cao -fYX -moV -wEG -tmK -qBC -tKN -aaf -aaf -aaf -dho -dho -dho -iNB -wfD -dho -syo -syo -sSx -syo -eDL -lSz -tst -dGu -vgv -lge -qKg -qKg -qKg -lVl -pic -tvE -psp -wBF -tHR -udN -ghk -aTi -fak -jUh -wXr -cZK -wQe -ola -ePu -ola -ePu -eut -eut -cvm -eut -eut -uBy -cCs -qDy -reL -cRW -eut -kwy -gwf -mmU -oIg -oIg -oIg -oIg -oIg -oIg -oIg -oIg -oIg -svS -svS -svS -svS -svS -oEx -hlF -dKC -iJD -xdV -nsC -qMT -lMJ -blx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(116,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -lMJ -gdb -hhl -fOf -eZI -dgD -kYg -pqh -fYb -mYX -aEj -rMZ -tCJ -nkX -ocl -lvZ -dMI -qTH -lsP -ouO -quA -htb -xdm -clo -wJL -wJL -iHD -alE -lpo -mxs -fTn -ciG -fdx -wwY -wwY -xCg -qfE -vCb -egb -htd -ggU -syo -syo -syo -syo -syo -cuw -syo -syo -syo -syo -sYp -wBs -apw -eVX -syo -lSz -vQe -tvE -kWg -ivc -nse -bmb -lwg -aAK -qGc -tvE -qJU -hPM -tHR -udN -qCj -cAw -rtN -prZ -vGz -uqp -eKA -mnF -eKA -fqp -eKA -uqp -kaF -bse -wkC -gcU -noN -bCc -bCc -oyG -hUC -eut -dEV -gwf -pJl -qnm -gHw -nDw -eBU -aYX -vzx -gyQ -aHi -hrh -txG -eKP -uBG -kXG -svS -ove -hlF -dKC -lMJ -lMJ -gAe -lMJ -lMJ -blx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(117,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gdb -gXM -luV -ogJ -dgD -jGl -kxA -wxj -wxj -wxj -oHj -ipz -nOv -wxj -aGm -xrq -rKZ -pHb -qwh -mrL -gHo -vXb -ieV -lVn -wJL -kdO -ruc -nvh -alE -oVY -amo -fdx -wwY -wwY -rGC -xGg -olw -wJm -hPM -hvr -syo -onp -vNG -tIR -tyY -ogL -tyY -aPs -cUX -pnW -nOq -xDa -vwP -xDa -xXN -lSz -wxk -tvE -uHa -aqt -yeu -vNf -cGj -igh -tPF -tvE -kQq -htd -saU -bpG -ghk -ulX -suW -tuu -qUz -ezT -cOQ -ljm -cOQ -mFQ -cOQ -ezT -obN -gwf -dMz -tga -dcY -nJH -gso -nQX -iYO -tga -kzQ -gwf -pJl -qnm -pth -jcw -uBF -iyc -gAd -gyQ -xjm -jxf -pAW -cha -nCa -sIX -svS -gma -jxA -dKC -uGg -uGg -uGg -uGg -uGg -dKC -nsC -lMJ -oPS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(118,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gdb -ksg -aGM -rpz -dgD -jGl -kxA -xXh -ooG -wxj -dth -ipz -nOv -dgS -uRl -eWO -rKZ -aPj -qwh -mrL -wuj -sWV -fAL -fAL -fAL -olw -rGC -dFz -alE -alE -gSD -fdx -vfC -rGC -rGC -lUj -olw -wEG -htd -kGq -syo -vDC -tLi -nnh -tyY -vFx -tyY -rZA -uJa -njP -gLe -cSg -uYl -hlD -syo -ilH -qin -tvE -tvE -bUO -bUO -tvE -bUO -jmY -bUO -tvE -syG -kON -ylQ -bGC -wHu -igr -ibw -ibw -dSD -gFQ -aDm -aaB -vro -bfF -yaj -xKK -gVO -gwf -hCK -eut -pfK -wRD -sUp -xIM -yeS -eut -beZ -gwf -pJl -qnm -ltm -jcw -uBF -fwz -jeI -gyQ -mFt -eKP -mFt -eKP -ylI -wna -oFX -fEL -hND -kVp -iKL -nFa -nFa -etQ -vPp -uGg -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(119,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aav -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -lMJ -gdb -ksg -aGM -rpz -dgD -jGl -kxA -kAT -wVt -jzD -wxj -kZG -cpB -kYg -kYg -ylZ -rKZ -cYd -sWV -sWV -sWV -sWV -xln -wSD -hME -olw -olw -olw -olw -mLQ -olw -olw -olw -qGa -moV -olw -olw -ozX -kON -vjn -syo -qsQ -hlD -iox -tyY -eCB -tyY -xFx -sxR -tAt -sqJ -gPA -lZM -oRT -syo -lSz -vQe -vZQ -tvE -kso -fIo -wNH -lcG -iVE -vYg -kwp -wZw -htd -saU -uCq -mvR -teP -shO -teP -teP -mvR -aOn -kZx -qOg -kZx -qOg -kZx -uLP -gwf -vBG -eut -tga -tga -eut -tga -tga -eut -xQx -gwf -pJl -qnm -xno -nZn -uBF -raK -dOA -gyQ -hKE -jqC -iTc -qfQ -cLk -reQ -svS -dKC -qkX -dKC -uGg -uGg -uGg -dKC -iDU -uGg -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(120,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aav -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -ikZ -ksg -vuP -rpz -dgD -jGl -kxA -qmu -tth -wxj -tJL -ipz -hIQ -oEm -phQ -pBG -iWH -uWo -noQ -jOQ -sTi -mhA -xNo -woV -mQa -xNU -iJd -nVy -stk -daC -xVY -xNU -hLj -usP -spd -usP -rxc -wEG -xMl -tGL -syo -mIH -iFX -ifM -mGg -rDT -syL -rDT -tZD -snu -ifM -pdY -pXA -hlD -syo -cnA -nNw -dmK -tvE -iME -fPh -kgr -mnq -mGh -vYg -kwp -wZw -htd -saU -ooP -mvR -enw -bPi -gpB -sky -ihV -ipM -vPm -sQB -sxB -ipM -aDS -hkH -gwf -mpQ -ptH -ptH -aqS -nmZ -pLs -pLs -bxj -ehs -gwf -pJl -qnm -xno -nZn -uBF -diX -iGA -gyQ -sMe -fhi -fhi -fhi -bft -lwR -gyQ -iVt -iNi -czL -gAe -lMJ -lMJ -uGg -oEx -uGg -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(121,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -lMJ -gdb -dhN -nuI -qJa -dgD -kYg -tpr -wxj -wxj -wxj -nDk -ipz -rum -atN -phQ -hgt -aMW -syK -ppX -iOS -iOS -iOS -jAP -wSD -xTs -xNU -iUb -exr -lWg -byw -glv -hCB -puZ -cBy -bsz -cBy -kQX -egb -htd -mRl -syo -rUP -hlD -alg -rEg -uGj -tyY -iDh -csS -niz -gpS -xuH -rVC -ljD -syo -kBl -vQe -iJl -tvE -wNH -fIo -kso -aun -ngg -avc -kwp -wZw -htd -saU -ooP -mvR -gXI -iQi -fGv -knY -iLq -uco -xEC -jtI -tpD -xEC -nth -sXF -gwf -gwf -gwf -gwf -wNa -nOK -qYw -xVD -swV -ili -cpW -iow -pxt -oRM -gal -fMn -gal -fgH -gyQ -hMc -fhi -fhi -fhi -fhi -ffU -gyQ -dcJ -njs -hlN -vvK -gAe -lMJ -uGg -nFa -uGg -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(122,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -utJ -gdb -ikZ -gdb -ikZ -gdb -lzV -olD -mLx -eiO -aOH -nvA -nWu -ftY -kYg -kYg -pHb -oPq -sbp -noQ -uJs -sOi -pKs -sCk -ilh -ilh -ilh -oXv -fbs -itp -hoZ -teG -csQ -eVz -gvJ -weC -weC -qfp -wEG -htd -ggU -syo -ezb -dIV -oZo -fZO -uGj -tyY -tyY -syo -syo -syo -bmV -syo -syo -syo -lSz -fbP -tvE -tvE -tvE -tvE -tvE -tvE -aan -tvE -kmZ -eUO -htd -dhU -dkW -mvR -ohp -fYL -rHE -dbd -aBJ -tDP -sQB -gLU -uDO -oOB -kZx -xaL -bjJ -rWL -htn -muB -sPU -ulv -qWX -fke -xTk -bJT -wwW -lrp -qnm -xCz -jfC -pTW -qNw -xme -nYa -mhD -fhi -fhi -fhi -uEo -fiS -hqj -eRn -hqj -hqj -hqj -hqj -lMJ -uGg -nFa -uGg -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(123,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -uRl -fYm -lNX -iWj -dbh -jyH -rzO -pyY -sNB -xWm -uRl -dZY -vkb -cLl -sWV -gXg -mOt -clq -aKa -fGC -lLG -ilh -pzz -jAO -vtX -jAO -ejX -hCB -eVz -pJE -sNJ -hWF -rxc -wEG -htd -qBC -syo -aEP -gBX -oRn -ijR -xNd -tyY -tOK -syo -tHE -kkU -qaG -rJz -srp -eEH -xPN -vQe -soi -icj -hda -mdy -naw -kTx -bwr -srp -eEH -uDK -dbk -enZ -tUn -wXF -wXF -wXF -wXF -wXF -wXF -dlG -ipM -rsD -qos -cQr -kZx -oBz -gTo -vcE -vcE -oBz -xKK -xKK -euQ -fke -rSQ -spV -wwW -lrp -qnm -fmM -iWy -rpG -qKn -sTN -gyQ -ozm -fhi -huj -fhi -xEU -iqx -deY -gil -deY -oet -dXU -kgC -lMJ -uGg -nFa -uGg -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(124,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -mxn -mxn -wFk -mxn -mxn -oXL -bEc -nUW -rFR -lNW -pCU -eug -kgy -nGz -rES -lAM -dDe -lAM -sWV -ovz -dbj -jyQ -wPi -ilh -sNK -rmF -lHx -jhY -bNk -ylU -deG -xNU -hxJ -pJE -uUl -cBf -ftM -wEG -htd -vET -syo -syo -syo -syo -syo -syo -syo -syo -syo -vOj -aKb -aKb -aKb -aKb -chZ -xqL -dDx -mnx -aKb -aKb -aKb -aKb -aKb -aKb -aKb -aKb -wpx -htd -mrJ -lvs -xJa -kxW -gWH -roL -mxI -eBw -gbS -ipM -dYT -tCT -bpA -tzQ -beQ -iTO -jyr -qdT -pIv -tEt -rMr -jHg -dmO -kXY -kXY -lfG -lrp -qnm -cml -uHA -btL -iAp -sUP -mYV -uGf -fhi -fhi -fhi -fhi -twy -uqt -nZL -bEv -cgP -rtj -kgC -lMJ -uGg -nFa -uGg -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(125,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -lMJ -mxn -afa -psw -asM -mxn -oLZ -mxn -uta -xQT -rES -vPX -rES -ssr -rES -rES -dkO -rza -qrn -ilh -ilh -ilh -ilh -ilh -ilh -dnB -ilh -ilh -ilh -xNU -xNU -xNU -xNU -dDE -rxc -cvL -cBf -pnN -wEG -htd -qBC -sqM -kwQ -jZR -sqM -sEn -sqM -mWS -rIB -mmS -vLb -tdj -gTM -mJN -cwP -bzG -hBr -jef -diE -gIC -diE -dYg -hwF -jEN -diE -arl -wah -wpx -htd -saU -tUn -tUn -tUn -tUn -tUn -hKV -wXF -jLm -sQB -lqL -psT -wqj -tzQ -hNz -iTO -aEW -mzg -rHh -tEt -tKR -fjb -prU -aJd -afZ -sds -cVn -pxt -gLy -jTN -vAH -kIY -vdo -gyQ -kZK -jwj -ujk -jvo -aHH -bqv -pCa -hRy -pCa -cOT -dXU -kgC -lMJ -uGg -wpn -uGg -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(126,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aav -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -rrg -dvP -szO -shs -qbC -tLN -mxn -hlK -tji -gMZ -ktq -gMZ -mFf -wne -sHt -qrn -qRg -pwx -ilh -qRL -aJX -aJX -pui -aJX -aCD -aJX -rUO -gmk -qCP -mPw -rTV -iPp -eVz -pJE -uUl -cBf -dLu -wEG -lzM -vIM -hPM -kON -htd -rut -htd -aGT -htd -dRF -vqU -rAG -htd -htd -htd -jej -bJW -fMp -aIm -htd -kON -htd -lzM -htd -htd -htd -jLD -htd -htd -cfe -ddO -sLE -cEv -iQO -ofZ -tUn -hKV -wIo -jBi -sQB -gIi -iPe -mJG -tzQ -myB -vWz -hkE -pke -vsZ -xKK -xKK -rJA -qLe -oaB -mMX -mMX -mMX -mMX -svS -svS -dsq -svS -svS -svS -svS -svS -vbL -svS -svS -svS -svS -xuV -svS -svS -svS -svS -svS -svS -hvN -dKC -anS -lMJ -oPS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(127,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aav -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -rrg -iFF -gfk -uin -mBf -sjM -sPj -uJL -bWP -gKe -jEc -ilh -pPl -kvv -sHt -qrn -qoC -vFm -ilh -pdg -edQ -ilh -ilh -ilh -ilh -ilh -ilh -ilh -hHR -czG -cBy -cBy -qsK -cBy -hAu -cBf -pjs -egb -rIh -sWg -wgh -jIW -wQP -ibz -fMp -oul -avo -jyq -aLy -asB -eaF -oZG -oZG -aLy -aLy -bec -hio -xCD -cWT -xBx -bdb -fLc -smG -gtU -sXR -dGD -ayO -qMP -mTV -pEk -vIB -vIB -nkp -tUn -hKV -wXF -kZx -jKa -rAj -rAj -rAj -kZx -olG -ohH -dTS -gtV -fAd -tEt -xKk -xff -eSl -gTU -kYU -okc -vEo -iXp -svS -kMd -hxe -sOd -ove -iHv -gIK -hNQ -xLu -ktz -svS -wyu -nJL -ttW -xRf -qXW -dKC -rzx -nFa -pjX -tvg -dKC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(128,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -rrg -kms -lfu -ilR -kcg -meL -mxn -iDP -qUm -gMZ -gTk -ilh -urR -kvv -sHt -qrn -tDN -uVd -ilh -tWE -edQ -ilh -lJm -dIO -hVX -dIO -rdT -dIO -hxt -qRk -pJE -nFn -qsK -dcF -sHg -qXB -jXq -qXB -qXB -dZm -dZm -dZm -uZj -ghl -xZW -uOX -myG -rac -qDm -qDm -qFo -cNA -qDm -qDm -pTS -pTS -pbX -pTS -pTS -pTS -pTS -pTS -pTS -hOp -bau -xlq -fCt -uDr -uDr -sLE -kBw -vIB -qOM -tUn -ftj -wXF -pJt -tZo -uKA -rop -mvS -oYZ -oYZ -oYZ -oYZ -oYZ -oYZ -tAg -tAg -nlT -gwf -lbL -cPT -mlv -nnn -wdv -hIm -vCV -enO -psV -psV -psV -psV -psV -uZP -dpN -rxG -dpN -dpN -egk -oEx -bIa -vYl -nFa -nFa -rDB -nFa -dKC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(129,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -lMJ -mxn -gaX -gTt -sdu -fad -gFp -gMZ -gMZ -gMZ -gMZ -bDN -ilh -jgy -pUS -hlx -pNR -upe -gwd -ilh -qhR -xAR -ilh -tzD -dIO -vSU -dIO -oos -dIO -dTv -qRk -nFn -uJB -qsK -pJE -dLR -qXB -xNv -mqK -qXB -sOT -ubD -usK -dZm -vFB -fRS -twN -lkc -hhN -uOO -hkG -xEJ -yjc -gvm -xIC -hri -qRD -dfp -tRL -hrM -pTS -bNf -vZM -pTS -hYa -fEg -wYB -kMG -wSI -oBM -kCZ -kMG -tlK -kMG -tUn -hKV -wXF -wVC -dJo -cnu -yaH -gZQ -vQb -bwm -xPm -hEO -sac -huq -eSd -vQb -sWB -gwf -pOv -kYU -bZB -efZ -iaO -svS -qUE -iLw -nFa -svS -mHy -mHy -lfy -pdi -txv -svS -xLI -tWL -gma -oJu -dKC -lUD -isI -isI -dKC -qdw -dKC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(130,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -mxn -yeV -gSx -qmf -jTH -gMZ -gMZ -lnP -qBq -ilh -tBc -ilh -ilh -ilh -ilh -ilh -ilh -ilh -ilh -fRW -qnS -uxb -hAk -gzO -jCq -fCh -kAF -pGH -usP -qRk -kKw -nGp -vME -lVM -kTn -qXB -qXB -kop -qXB -iEk -fmw -ddl -usU -aEr -fRS -twN -rac -mFj -kMr -jSf -gjr -hnr -qpM -bGJ -vrF -tju -uiK -uiK -loh -nxH -mVY -pQC -pTS -chV -pcc -wYB -ebC -iQI -tNL -elM -xOU -ijv -hRQ -tUn -csY -vDt -xor -pXj -svk -bwb -wJD -tYO -wkM -xnv -tnw -tnw -gUf -tnw -vQb -jJR -gwf -fnh -mMX -moF -klT -bqy -svS -dKC -lMW -dKC -svS -svS -svS -svS -rWX -svS -svS -svS -svS -dKC -dKC -dKC -ggH -oqc -uQH -dKC -jdt -dKC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(131,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -mxn -rrg -gMZ -gMZ -gMZ -gMZ -aWB -qgu -cur -ilh -oXR -aJX -aJX -syO -pMU -aJX -aJX -aJX -nja -icC -eCn -ilh -dKO -cBw -uWg -ujM -cwF -pGH -bvb -rNJ -weC -ycN -bxm -pJE -uUl -lDA -qXB -fGp -xfF -nvN -sKy -dVp -rEr -vFB -fRS -twN -qDm -ogs -wCL -gPh -hkG -wPE -hkG -tbq -aLk -pAr -wjK -cqI -cFU -pTS -oWH -nBf -pTS -rVG -kqZ -wYB -cRj -cAG -hbM -hbM -hbM -klL -fSz -mrC -kVy -wXF -sPB -upT -iDg -yia -tJd -vQb -pbf -oEq -wjn -vCN -eoC -aBX -iio -rHH -gwf -pOv -mMX -rhe -bQs -mmW -oWk -fPD -ttM -wVQ -oWk -ouX -bHt -snE -fFo -pOk -vWa -krN -kYD -lMJ -lMJ -dKC -dKC -uGg -dKC -dKC -cqL -dKC -aaa -aaa -aaa -aaa -aaa -aaa -lKu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(132,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -ilh -sab -wmf -cur -cur -nDF -cur -ilh -rlp -ilh -ilh -neL -ilh -ilh -ilh -ilh -ilh -ilh -ilh -ilh -dKO -vBW -dIO -dIO -dIO -dIO -mDL -rNJ -qsK -cBy -cBy -oNl -uUl -lPp -qXB -gaG -qXB -wiQ -myP -mbC -usU -vFB -fRS -twN -qDm -eZe -kSw -oPx -gvm -uhP -vgb -tbq -pof -owi -nxA -dfp -wYn -pTS -eEf -rOM -pTS -qrQ -xbT -wYB -epF -rKc -xwP -xwP -xwP -pdl -bWM -tUn -jGv -wXF -uqO -enS -jwP -cbg -bix -vQb -pBd -uhT -wtP -nup -iGW -pVk -vQb -jbg -gwf -kiJ -oWk -oWk -oWk -oWk -oWk -cpp -ttM -jJm -oWk -iOD -iAq -guG -unP -gKK -otj -fvK -kYD -lMJ -aaa -aaa -aaa -aaa -aaa -lMJ -aox -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(133,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aav -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -ilh -mQe -rXX -cur -jCj -ihX -xwZ -loW -oYg -ilh -rYH -jdR -cur -rXX -dNw -ilh -xnU -mgE -xnU -dIO -jlY -tem -iMc -lvU -nKO -dIO -aIX -rNJ -bxm -pJE -uJB -nFn -uUl -iGt -qXB -ckj -qXB -wKo -ydr -aCy -dZm -wAA -fRS -tLx -sdf -dYK -hkG -gae -uFf -qVt -hkG -tbq -jjF -vfm -gWl -epO -qrO -pTS -atU -qfB -dDH -pkK -ocC -qxG -lHe -gFL -xlF -xlF -xlF -pdl -rHr -tUn -lgK -wXF -vrv -xOx -phv -vfh -fXm -tAg -frd -mOa -vYE -eDf -nfs -hAW -tAg -moH -gwf -pOv -vbO -cTj -dON -oFS -oFS -oFS -aqh -uGX -oWk -qEF -lPC -guG -iAs -coe -tfV -mtM -oLS -lMJ -aaa -aaa -aaa -aaa -aaa -lMJ -vFb -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kJi -cxz -kJi -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(134,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aav -aaa -aaa -aaa -aaa -aaa -aWl -lMJ -lMJ -lMJ -szp -szp -ilh -ilh -ipG -gKc -cur -vTf -mVp -ilh -fEW -ilh -ssJ -msd -shg -cur -sab -ilh -qXU -cdp -eek -wst -mPE -knf -wZX -dIO -dIO -dIO -qIu -jrL -qsK -kKw -jBC -jMo -uUl -tPw -gvG -fhp -qXB -qXB -qXB -qXB -dZm -mta -pxl -tUu -efg -xDw -riZ -nGK -nGK -gVa -eIw -bTl -lIB -dDq -rbe -utS -bNh -pTS -mFC -bMp -pTS -bOA -eLI -gaZ -jyF -gFL -byW -byW -byW -nDO -eur -tUn -hKV -wXF -uDS -vdx -sIW -bRb -cKm -tAg -hjo -poq -vYE -lAH -eZR -lAe -tAg -pbt -gwf -mLu -oWk -xuD -fFa -xdF -fPD -tdl -fPD -xZx -oWk -jNp -lCG -guG -gYl -nrm -egF -stI -kYD -lMJ -aaa -aaa -aaa -aaa -lMJ -lMJ -lMJ -lMJ -lMJ -aaa -aaa -aaa -lMJ -lMJ -lMJ -lMJ -lMJ -aaa -aaa -aaa -lMJ -lMJ -lMJ -lMJ -lMJ -aaa -aaa -aaa -lMJ -lMJ -lMJ -lMJ -lMJ -aaa -aaa -aaa -lMJ -lMJ -lMJ -lMJ -lMJ -aaa -lMJ -aaf -aaf -kJi -kJi -yaL -kJi -kJi -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(135,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aaa -nvn -lLw -ePA -ilh -gfe -aDR -ilh -ilh -ilh -ilh -edQ -ilh -lnP -cur -mVp -cur -lhD -ilh -bUc -rOY -jpI -dIO -eYz -kdX -xvZ -wHj -aDK -dIO -mHO -jrL -qsK -kKw -lqT -pJE -uUl -aqu -qXB -wzK -qXB -cce -dOY -qXB -dAn -vFB -fRS -twN -qDm -lWm -gvm -vLM -wSs -qVt -hkG -lBA -uky -ici -pTS -njC -pTS -pTS -pTS -pTS -pTS -eyz -ndk -cve -xEe -xoK -oxd -xlF -xlF -aWg -jgK -tUn -dQT -wXF -jSk -itn -sIW -jSk -rkT -tAg -lnA -bTP -hBB -eDf -nfs -nfs -tAg -sWB -gwf -cQd -oWk -xuD -sip -bLd -clj -bLd -bLd -bLd -oWk -hGm -sEZ -evE -xsn -ucm -tUc -gkc -kYD -lMJ -lMJ -aaa -dxK -lMJ -lMJ -aaa -lMJ -aaa -lMJ -lMJ -dxK -lMJ -lMJ -aaa -lMJ -aaa -lMJ -lMJ -dxK -lMJ -lMJ -aaa -lMJ -aaa -lMJ -lMJ -dxK -lMJ -lMJ -aaa -lMJ -aaa -lMJ -lMJ -dxK -lMJ -lMJ -aaa -lMJ -aaa -lMJ -dxK -aaf -aaf -weq -kJi -pgU -qRS -pnk -kJi -weq -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(136,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -efM -srC -srC -srC -efM -szp -vwp -ilh -ilh -ilh -ilh -jFO -ilx -ilh -rNI -ilh -ilh -ilh -ilh -ilh -ilh -ilh -dIO -dIO -dIO -dIO -dIO -fbg -dIO -dIO -dIO -dIO -tTT -vLA -qsK -dcF -rHp -jMo -uUl -jtb -qXB -fGp -sbf -ksr -pRe -qXB -mSD -vFB -fRS -twN -qDm -pIz -kdN -wSs -jGA -qVt -hkG -vgb -hkG -vgb -vjI -pmZ -qdI -xPh -yfn -gbq -uIs -amu -gsr -pUA -wFM -xgD -rMz -xwP -xwP -nDO -dsI -tUn -hKV -wXF -gNC -jSk -qBK -rKB -bkM -tAg -tAg -awO -awO -elJ -elJ -elJ -gFQ -wGE -gwf -itC -oWk -lPc -qZg -bLd -fPD -fPD -fPD -uGX -oWk -jKz -iAq -guG -hgA -nsA -nsA -kYD -nsA -nsA -nsA -anS -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -kJi -kJi -hxV -xhh -xhh -cmH -grw -kJi -kJi -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(137,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -efM -qeX -dAr -dAr -srC -dYl -eZN -liO -sSs -prE -gNF -ewk -ewk -mKu -lOU -hSG -lnc -pgI -noW -lnc -yft -xpo -lnc -kMX -ntS -nwU -kvd -mMx -lUK -dps -mMx -bsl -eVz -udM -qsK -nFn -qFU -nFn -uGQ -cBf -qXB -qnK -qXB -qXB -qXB -qXB -qXB -vFB -fRS -cAf -rac -rXF -uey -fSd -fSd -peF -kND -vjR -wKu -esv -bEQ -vBY -wXc -xzj -vMb -adG -tqe -qmy -ltv -wYB -kCZ -dfR -rwd -xlF -xlF -was -dBz -tUn -ari -wXF -wXF -wXF -wXF -wXF -wXF -wXF -wXF -gSH -tBp -wCq -dQA -ewh -elJ -qNA -gwf -ucd -oWk -xuD -qZg -bLd -wkH -fPD -fPD -nYU -oWk -dvJ -qiw -xJS -lbg -nsA -ekV -sdb -oPf -gLI -aYT -anS -lMJ -lMJ -aaa -aaa -aaa -aaa -aaa -lMJ -lMJ -lMJ -aaa -aaa -aaa -aaa -aaa -lMJ -lMJ -lMJ -aaa -aaa -aaa -aaa -aaa -lMJ -lMJ -lMJ -aaa -aaa -aaa -aaa -aaa -lMJ -lMJ -lMJ -aaa -aaa -aaa -aaa -aaa -aaf -aaf -jUq -vOh -sKJ -xhh -fcM -xhh -vly -bXO -cxz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(138,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -efM -wME -ndI -buy -ufF -wsx -eZN -oew -oew -oew -aku -oew -oew -efa -lOU -piM -lnc -piA -jcW -lnc -cqp -oiD -lnc -hoQ -wcr -ikb -urK -pwM -qGv -evf -ikb -iVN -nFn -kls -dri -pJE -pJE -nFn -uUl -qJH -qXB -wzK -psZ -kbo -psZ -rYd -yiK -dOw -fRS -tUv -rac -riL -bCk -bDR -qpM -peF -cwW -ktP -wKu -bGJ -rJh -mtX -xqv -klS -fWW -rTQ -wKs -jER -rMA -ukv -wYB -lxJ -rwd -byW -byW -qDA -xAg -tUn -hKV -ruX -nWj -tUn -dXP -tUn -pSz -mOD -wXF -omJ -ohI -tbp -uzc -oUu -saf -hXd -gwf -itC -oWk -xuD -qZg -bLd -wbH -uFC -jJm -bLd -bLd -oWk -csz -guG -fJc -mDF -kNe -uFq -oCq -nsA -nsA -anS -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -kJi -kJi -coc -bQk -xhh -xhh -iYD -kJi -kJi -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(139,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -efM -dnK -gBe -ddg -srC -dYl -eZN -ewf -ewf -kjL -lhk -rwE -tgo -tgo -lOU -nmI -lnc -sBa -mPu -lnc -avU -iee -lnc -crL -wcr -jjN -ngO -wGR -qEy -aAg -aAg -uKx -azn -txk -nOi -tKn -oNf -vQY -cLe -wLx -qXB -eHR -qXB -qXB -wRT -qXB -qXB -cjP -tqU -vhI -khA -khA -khA -khA -jsn -qVt -aPV -aPV -tXH -gwc -xOh -mtX -ykj -msT -dVm -hqW -uIs -eUi -aJI -iJK -wYB -hRh -rwd -cOa -cOa -eKD -vqi -tUn -qpT -tUn -tUn -tUn -oGn -tUn -kmN -gpO -wXF -mRs -tBp -sbK -azs -aPX -elJ -mYx -emh -fQo -oWk -xuD -qZg -bLd -bLd -bLd -bLd -bLd -pNp -oWk -pIF -qBF -iJt -tqx -bOm -jPi -uZM -kYD -aaa -aaa -dxK -lMJ -lMJ -aaa -lMJ -aaa -lMJ -lMJ -dxK -lMJ -lMJ -aaa -lMJ -aaa -lMJ -lMJ -dxK -lMJ -lMJ -aaa -lMJ -aaa -lMJ -lMJ -dxK -lMJ -lMJ -aaa -lMJ -aaa -lMJ -lMJ -dxK -lMJ -lMJ -aaa -lMJ -aaa -lMJ -dxK -aaf -aaf -weq -kJi -vpl -cDb -xOI -kJi -weq -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(140,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -efM -srC -srC -srC -efM -szp -nVH -ewf -tUp -eCN -eCN -eCN -bFA -iYG -lOU -eMG -lnc -lnc -wdG -lnc -lnc -tiA -lnc -lnc -wjD -cfi -fRl -ejl -hNw -lnc -lqQ -lqQ -lqQ -kUT -jSq -kUT -lqQ -lqQ -qXB -qXB -qXB -hHd -qXB -aaa -aaa -aaa -adp -vFB -fRS -tUv -rAg -bEU -kcs -khA -gXj -btI -wKu -wKu -wKu -gwc -rJh -mtX -hGK -cFe -lPi -cgR -uIs -jui -rhc -bii -wYB -kCZ -soU -gkx -gkx -nbJ -jgK -tUn -eLh -lQI -mOD -rLu -kmN -tUn -tUn -kGs -wXF -wXF -wXF -wXF -wXF -wXF -wXF -xKK -wto -xKK -oWk -xuD -qZg -fBt -bLd -eJZ -uGX -bLd -clj -oWk -oWk -oWk -oWk -oWk -oWk -oLS -oLS -oLS -aaa -aaa -aaa -aaa -lMJ -lMJ -lMJ -lMJ -lMJ -aaa -aaa -aaa -lMJ -lMJ -lMJ -lMJ -lMJ -aaa -aaa -aaa -lMJ -lMJ -lMJ -lMJ -lMJ -aaa -aaa -aaa -lMJ -lMJ -lMJ -lMJ -lMJ -aaa -aaa -aaa -lMJ -lMJ -lMJ -lMJ -lMJ -aaa -lMJ -aaf -aaf -kJi -kJi -pEo -kJi -kJi -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(141,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aag -dwJ -aaa -aaa -aaa -nvn -iVO -eZN -sqz -rHR -dYl -dYl -try -lBS -fNS -lOU -ewk -dtg -wcr -mMx -jhf -wcr -mMx -qTz -xyU -hft -hJv -iEE -ejl -pFd -nwa -lqQ -nYO -geV -hvO -ued -hvO -ktl -rkA -qXB -psZ -psZ -wzK -tCS -xww -hht -xww -xww -vFB -pKi -axU -feQ -iin -pKw -khA -rPg -mwS -gjr -nCd -wKu -gwc -gKI -sej -hED -hAc -tEy -iIT -uIs -mAV -vqp -wen -bMa -kCZ -sve -bNl -pEB -kCD -onf -tUn -iym -tIH -owZ -taZ -acj -acj -pNb -acj -acj -wFV -rkO -rkO -fkl -pUp -gbY -iQP -pEv -rSp -eJy -kYd -qOP -fPD -bLd -fPD -fPD -bLd -ojt -aTP -bLd -tjf -tjf -tjf -bLd -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -lMJ -aox -lMJ -aaa -aaa -aaa -aaa -aaa -lMJ -aox -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kJi -cxz -kJi -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(142,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anT -dwJ -aaa -aaa -aaa -nvn -qli -clE -byz -rHR -dYl -gYA -dYl -xUq -epH -aJO -oew -iVN -ikb -qGv -gwZ -ikb -qGv -ikb -vzS -ikb -ikb -qwK -mtO -pFd -wfN -lqQ -nMK -mos -jBY -aKk -lXl -nzS -gdw -qXB -kbo -tbd -kxt -tCS -uGt -vlh -jpr -xww -vFB -fRS -tUv -rAg -uwU -oeQ -khA -pyc -qVt -nGK -sew -wPv -gwc -usZ -txi -iCY -gXo -huG -huG -huG -huG -huG -amj -gEe -kCZ -iNy -beO -lXr -cZm -cXc -tUn -kmN -bGL -pSz -tUn -tUn -pfU -tUn -tUn -oll -urE -qby -wXF -mOD -fAI -tUn -tId -okQ -hEV -bLd -uGX -fwP -qkl -lav -qkl -eWy -bLd -lpD -wYl -tit -fPD -eQY -laW -bLd -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aox -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aox -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(143,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dwJ -aaa -aaa -aaa -nvn -qWw -xrf -mnl -rHR -cxU -cUH -toK -ktX -lJr -wVW -xvt -jwy -ueh -qEy -qSf -vxD -qEy -ueh -roa -iQy -jHm -pFd -ffd -pFd -xUh -lqQ -unf -mos -jBY -knZ -jBY -weS -qdr -qXB -ool -dVb -eWW -tCS -lxv -gMp -lkW -xww -jsv -tlZ -aPF -unL -unL -unL -unL -xPg -fge -wSs -jGA -reS -cBW -uIs -mcn -mlu -ded -huG -gUM -vLv -phS -huG -iNQ -hgU -kCZ -nKI -bZq -dTs -fYI -gFD -unL -eio -ouR -kOt -tUn -gNW -nQA -mOD -tUn -tUn -tUn -tUn -wXF -wXF -wXF -wXF -bcb -gMQ -bcb -oWk -clj -fwP -qfL -bLd -vXO -qkl -bLd -ias -fPD -nMj -pPN -fPD -rlh -hdM -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -nBa -aaa -aaa -aaa -nBa -aaa -aaa -aaa -nBa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(144,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aaa -szp -szp -vjd -sqH -pnM -uXc -uXc -uXc -vvl -kZq -gNh -kOY -lnc -lnc -wgs -lnc -lnc -wvd -qXB -vko -qXB -lnc -iVi -lnc -auw -lnc -lqQ -uKv -mos -jBY -dCm -ikw -qVy -hzJ -uiB -brA -qXB -qXB -tCS -xww -kDY -xww -xww -aEr -sDs -jYi -unL -ydq -vmE -unL -gcW -hwC -lxV -lxV -gnE -ayu -obG -sfD -ebK -sLp -laT -mSS -aiz -hiM -huG -wVd -wYB -kCZ -odI -kCZ -unL -unL -unL -unL -wqA -ksT -rAp -tUn -maY -qjP -lYH -cpU -owU -rkO -qph -wXF -vWT -tOZ -vWT -obl -aHM -fpK -oWk -mEL -fwP -clj -bLd -ava -arg -hIZ -qlG -fPD -fPD -eQY -fPD -nTd -bLd -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -nBa -cKn -nBa -aaa -nBa -cKn -nBa -aaa -nBa -cKn -nBa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(145,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -szp -szp -nvn -szp -szp -kUX -tgo -xsH -sqH -sox -sdn -sox -kZq -kZq -gNh -aTD -lnc -bmz -cKC -lnc -lxf -obw -qXB -icS -qXB -wNp -sGh -lnc -obw -rUo -lqQ -fzr -iCJ -qgy -rwT -ivb -nhQ -iJb -qXB -ckX -qXB -rzr -dhu -ihx -jtp -pua -cdX -dFp -fRS -tUv -unL -ohn -sEh -unL -ghq -yaO -nJY -fVr -fjY -vEO -obG -inI -iHh -aNN -huG -uYg -oXd -apt -huG -jWj -wYB -oXM -siz -pCL -unL -laf -aJn -aJn -moL -hWx -ekG -tUn -tUn -tUn -tUn -tUn -qXb -mBK -tUn -wXF -hao -gcV -nNe -nbS -aHM -dzp -oWk -ddu -wmi -cvE -bLd -bLd -bLd -bLd -bLd -tsv -tuG -tuG -tuG -tuG -bLd -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -nBa -cKn -nBa -aaa -nBa -cKn -nBa -aaa -nBa -cKn -nBa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(146,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -nvn -gBY -pjd -adS -aYw -dYl -tgo -nUp -oPc -oPc -deg -oPc -oPc -oPc -gNh -fgu -lnc -qwl -aaI -lnc -elV -tja -qXB -vIa -qXB -pnD -vQP -lnc -lyD -dqs -lqQ -ovZ -jzC -pkA -xUE -rnV -xyI -ovZ -qXB -kbo -qXB -tDk -jhS -soW -vph -vQv -cdX -vFB -usY -huX -hNC -hCl -xMY -unL -xQS -yaO -vqN -dce -wBT -cRC -obG -obG -obG -obG -obG -obG -daS -gKS -huG -olP -wYB -gAx -siz -hxz -unL -uNd -unL -unL -fFK -unL -tUn -tUn -jbF -nch -tPN -rYR -vON -jmr -quz -wXF -bHb -fag -vkq -jvQ -wzi -rnn -oWk -nPJ -jJm -fwP -fwP -fwP -qkl -jSV -bLd -bLd -bLd -bLd -bLd -oWk -oWk -edu -edu -gDT -aaa -aaa -aaa -aaa -aaa -nBa -cKn -nBa -aaa -nBa -cKn -nBa -aaa -nBa -cKn -nBa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(147,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -szp -szp -aYw -szp -szp -jlJ -tgo -eTn -tgo -fVU -fVU -ewf -hqT -hqT -ewf -pjS -lnc -bAD -xpo -lnc -aFv -noW -qXB -cgL -qXB -bAD -yjN -lnc -cUP -mil -lqQ -lbH -lJa -tym -ozi -mrT -jYu -lJa -qXB -psZ -qXB -ize -jhS -pbU -tXD -dMb -cdX -pYL -gaN -iqB -unL -crT -hCl -unL -glJ -kuA -pZQ -vSa -pek -mvk -nIo -eWG -dbH -aXt -bpY -obG -iuJ -tNQ -huG -dhs -wYB -uXS -txP -gcK -unL -kTZ -unL -ptV -guI -uND -slc -tUn -sCY -kmN -uGi -iyy -xzm -pAh -kjO -wXF -tAQ -vHl -vkq -hQY -xGD -vxT -oWk -mEL -sCM -clj -uGX -tbI -deD -fwP -fwP -fwP -fwP -imU -fPD -oWc -rYy -rUT -uIi -gDT -gDT -gDT -aaa -aaa -aaa -aaa -cKn -aaa -aaa -aaa -cKn -aaa -aaa -aaa -cKn -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(148,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -szp -aaa -waq -aaa -szp -szp -nvn -nvn -dTi -nvn -nvn -dTi -nvn -nvn -nvn -qXB -qXB -qXB -qXB -qXB -qXB -qXB -qXB -igz -qXB -qXB -qXB -qXB -qXB -qXB -qXB -qXB -qXB -qXB -qXB -qXB -qXB -qXB -qXB -tjo -qXB -jpx -vJX -oPp -tXD -rwn -cdX -vFB -fRS -tUv -unL -unL -wMk -unL -jNV -bzI -dLY -aAb -wyV -iDC -obG -rIk -fQT -eCQ -mMu -obG -ghC -cCR -unL -aLu -unL -wnR -ltX -ujq -itG -pnx -unL -kbN -gXd -szJ -ghN -tUn -lUp -kmN -hep -kmN -jkV -pRu -pFN -wXF -qPS -wZg -ojo -kWB -sBS -rBs -oWk -bLd -bLd -bLd -bLd -clj -obk -cqv -clj -egs -ftK -ixV -pTu -xBw -hRU -lmK -pms -apT -pOF -vlZ -rxH -rxH -rxH -rxH -rxH -rxH -rxH -rxH -rxH -rxH -rxH -rxH -uYi -rxH -rxH -qOw -lMJ -lMJ -aaa -lMJ -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(149,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kfL -aaa -aaa -aaa -nvn -afD -afD -afD -afD -afD -afD -afD -afD -afD -afD -qXB -lNb -qXB -dPa -jQa -mup -roj -qXB -cgL -qXB -wyG -edC -kbo -wcu -eBn -qXB -fwG -ldO -vKm -tbd -cPQ -nXT -wyG -qXB -psZ -qXB -ttA -uWS -uWS -can -can -ewR -dOw -fRS -tUv -unL -iuM -hCl -unL -unL -iga -unL -unL -unL -unL -unL -rls -sNi -ghw -cwb -unL -qyB -unL -unL -gmi -unL -unL -pNf -unL -unL -fGW -unL -qpe -mma -iMQ -rAo -tUn -wVO -mix -rpD -iMd -wtu -oZs -ohW -tUn -vWT -pOw -vWT -tnU -sgB -hOd -gFQ -aaa -aaa -aaa -bLd -bLd -bLd -bLd -bLd -bLd -bLd -ixd -bLd -oWk -oXJ -mmF -nRz -gDT -gDT -gDT -aaa -aaa -aaa -aaa -cKn -aaa -aaa -aaa -cKn -aaa -aaa -aaa -cKn -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(150,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -nvn -afD -afD -afD -afD -afD -afD -afD -afD -afD -afD -qXB -qXB -qXB -qXB -qXB -qXB -xnk -cvF -lCN -kbo -psZ -psZ -bSY -kbo -kbo -eqt -psZ -psZ -ckX -psZ -mSB -edC -psZ -psZ -psZ -qXB -gAU -kQD -syr -eRR -ryp -cdX -aUf -hjS -eCg -oDl -ggM -ggM -ggM -lzL -vxc -lzL -lzL -lzL -scG -unL -xAi -eEN -xva -deX -rJk -ofe -nEf -uEn -aBM -unL -lPy -vRk -aJn -fhA -gub -unL -gjF -euc -wOy -vMc -tUn -tUn -tUn -tUn -tUn -hye -tUn -tUn -tUn -gFQ -gFQ -gFQ -aHR -ejH -aHR -gFQ -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -bLd -pvB -bLd -oWk -edu -edu -edu -gDT -aaa -aaa -aaa -aaa -aaa -nBa -cKn -nBa -aaa -nBa -cKn -nBa -aaa -nBa -cKn -nBa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(151,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cpH -aaa -aaa -aaa -nvn -afD -afD -ykI -afD -afD -afD -afD -afD -afD -afD -qXB -gbG -aah -mXk -oPZ -qXB -gVx -oPZ -tCS -tCS -tCS -tCS -tCS -tCS -tCS -tCS -tCS -tCS -tCS -tCS -cML -tCS -tCS -cML -tCS -tCS -sqE -sqE -sqE -sqE -sqE -sqE -uWQ -gnS -rlm -fWA -fWA -fWA -fWA -fWA -fWA -fWA -job -yaf -rtZ -unL -unL -unL -unL -unL -unL -wOF -esH -pdx -pMQ -aXE -tXk -itW -kGv -izp -hcP -vIm -mhl -mhl -mhl -mhl -aJm -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -uzl -aaa -aaa -aaa -tOg -qnq -tOg -aaa -aaa -aaa -aaa -lKu -lMJ -aaa -aaa -aaa -aaa -bLd -ntA -bLd -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -nBa -cKn -nBa -aaa -nBa -cKn -nBa -aaa -nBa -cKn -nBa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(152,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -wOY -aaa -nvn -afD -afD -afD -afD -afD -afD -afD -afD -afD -afD -qXB -mCn -eYj -eax -gnk -qXB -gHE -kYn -tCS -aeu -kSB -gon -rux -yaD -uXd -sVc -tfg -ssI -ssI -uXd -kCq -sXe -gLo -ofk -uXd -fDL -hSt -jWk -naN -fMN -icR -sqE -rKS -gnS -rlm -esk -oPj -aCi -pab -nlP -nsJ -fWA -goZ -yaf -pEs -lzL -ggM -lzL -ggM -gIS -xNG -hVp -fJk -qpn -tHk -unL -hLs -enf -izp -xZb -hcP -jCx -cZF -sXq -pcH -inG -ovX -xYQ -pnH -pnH -pnH -pnH -aaa -lMJ -lMJ -lMJ -lMJ -lMJ -tOg -qnq -tOg -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aox -aox -aox -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -nBa -cKn -nBa -aaa -nBa -cKn -nBa -aaa -nBa -cKn -nBa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(153,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -nvn -pvY -afD -afD -afD -afD -afD -afD -afD -afD -qhy -qXB -dOx -jCw -ofQ -tjL -aGe -mFm -jcy -tCS -rpx -dPy -loA -poc -ngY -uXd -tfg -tfg -ssI -mBw -uXd -dHg -gLK -qul -acs -uXd -tKS -nLz -vGl -cYc -iIP -rSb -sqE -rKS -gnS -rlm -esk -fmJ -ycz -vcu -tEP -rTg -fWA -jsL -nnf -izp -xZb -guD -izp -mTB -unL -unL -unL -unL -unL -unL -unL -xZb -fFq -izp -jJk -hcP -kBQ -lWq -lWq -lWq -qIq -fGd -rDm -smg -crg -xpY -qfs -aaa -aaa -aav -aaa -aaa -aaa -tOg -qnq -tOg -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -nBa -aaa -aaa -aaa -nBa -aaa -aaa -aaa -nBa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(154,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -nvn -afD -afD -afD -afD -afD -afD -afD -afD -afD -afD -qXB -dOx -jCw -jCw -jCw -qXB -lOK -jcy -tCS -oKx -gLK -joo -sHT -rBe -uXd -dVc -bYp -gXu -oaC -uXd -gMG -dWG -uGm -acs -uXd -qJd -nLz -xSA -rSi -pCt -aRS -sqE -cMs -gnS -ucU -esk -esk -esk -vgd -esk -esk -fWA -fWA -fWA -fWA -fWA -fWA -dfh -dfh -unL -uNS -ara -uxt -tcn -iOm -unL -mEx -mWA -fbN -fWA -hcP -rYm -lWq -akG -lWq -tLg -pnH -jUi -pnH -hiy -jvm -pnH -aaa -aaa -aaa -aaa -aaa -aaa -tOg -qnq -tOg -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(155,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cpH -aaa -aaa -aaa -nvn -afD -afD -afD -afD -afD -afD -afD -ykI -afD -afD -qXB -dOx -jCw -wrn -vQR -qXB -vIa -eSa -tCS -fUg -rlu -qGo -sHT -kbU -uXd -kST -gXu -mFp -xrS -uXd -iBm -iBm -vHs -iBm -uXd -sqE -fOn -dJP -bfO -pCt -vYK -sqE -rnq -kyB -rlm -tTg -lcU -eXD -gYO -pTK -nLE -cVj -eji -xDH -dss -pMH -fWA -fWA -fWA -fWA -puI -vVr -aAs -izp -dLQ -unL -unL -xxO -mEo -oJY -owM -lQm -nmR -dhP -fIZ -ydj -aBW -vQh -pnH -lZk -pnH -pnH -aaa -aaa -aaa -aaa -aaa -aaa -tOg -pbQ -gUS -tOg -tOg -tOg -tOg -tOg -tOg -lMJ -lMJ -lMJ -lMJ -lMJ -aox -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(156,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -nvn -afD -afD -afD -afD -afD -afD -afD -afD -afD -afD -qXB -oPZ -wha -jRz -ceD -qXB -cgL -wrn -tCS -mHe -wYx -mww -kEs -xsd -uXd -uXd -hnG -hnG -uXd -uXd -wOB -tPd -loA -woL -jLo -nwC -nLz -jEh -hYE -rEd -qXw -tUw -iqU -jLg -wCl -wSe -vvw -fVF -utM -iep -gKw -iKV -tRE -qRO -tLd -uDn -sHP -sHP -hbQ -fWA -baE -hCl -dqM -ktZ -hCl -mAJ -dXe -xrW -ney -hum -sDk -jKA -bHD -tLv -lWq -ldc -xpB -dli -huZ -uaB -xrr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -tOg -hxu -gJn -vRg -vRg -vRg -jdF -oJj -tOg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -blx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(157,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -nvn -afD -afD -afD -afD -afD -afD -afD -afD -afD -afD -qXB -qXB -qXB -qXB -qXB -qXB -igz -tCS -tCS -cnK -iBm -uQG -iBm -cnK -cnK -jPe -dPy -poc -jdB -cnK -giH -aJj -gyH -xUY -fbf -nie -qtm -fFp -geJ -cuc -fqC -tUw -rmn -peX -kRi -klw -cqw -uAg -xrN -hDa -deb -eFg -uRJ -eEx -vEt -jCk -vEK -oHy -eol -fWA -dxk -cNm -izp -ret -qHO -bNn -unL -sfz -wao -hum -lmA -cnv -nVV -xhb -oox -lYM -vzc -gUY -pnH -kYo -pnH -aaa -aaa -aaa -dxK -lMJ -dxK -lMJ -tOg -tOg -tOg -tOg -tOg -tOg -gUS -umI -tOg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(158,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -blx -szp -szp -szp -szp -dTi -nvn -nvn -dTi -qXB -qXB -qXB -qXB -dwm -dOx -qXB -dOY -gnk -cgL -tCS -ybl -eTU -loA -tlh -loA -erh -iHu -xAW -lia -aXK -xAW -blG -tBz -lia -ncx -lql -cnK -sqE -sqE -sqE -sqE -sqE -sqE -sqE -dlc -cst -xgV -iWU -iWU -dlc -isX -dlc -iWU -peM -fxZ -pIw -htP -vGF -ecp -qXk -xZR -fWA -wac -kQT -vVr -vgr -goZ -fWA -fWA -diC -fWA -hum -iwt -akZ -wIB -viH -nng -nng -yfI -fGN -pnH -guo -pnH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -tOg -qnq -tOg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(159,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cpH -aaa -aaa -blx -rLv -rLv -kiE -szp -eqU -flB -ied -hMQ -qXB -qXB -suO -gEF -qcP -wrn -qXB -qXB -qXB -cgL -tCS -apq -gLK -gyH -mKV -ncx -sSo -mfh -ncx -dRp -txa -ncx -ncx -txa -cOs -ncx -pTw -rrh -cnK -sMQ -cDQ -inP -dOQ -cnK -itY -uMU -mGX -kfp -naM -kVJ -eSy -juJ -cZL -doM -peM -vbq -xsy -mZP -vGF -tMe -toV -xip -fWA -qRz -bXn -bcf -iOm -guD -fWA -dBZ -qRM -cGS -kkf -kLp -wxe -uwQ -cii -niY -niY -niY -jJC -jJC -jJC -jPJ -xXp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oCX -wmL -kLC -wmL -wmL -lMJ -lMJ -lMJ -lMJ -aox -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(160,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -gAe -rLv -rLv -rLv -szp -wxn -dxq -oPc -cyS -izd -jlM -jlM -kXx -kXx -aIC -kVs -jUu -kCN -lCN -tCS -xzs -vQV -lnT -gKt -gKt -gKt -gKt -rPe -rPe -gKt -gKt -gKt -gKt -dhi -rPe -dGs -haa -hRq -xba -lNc -iMS -egN -liz -jcJ -yci -tgx -fxa -kCC -qRh -eRb -kCC -rdh -uFD -peM -peM -pGu -lEH -kag -peM -tkg -ovf -fWA -fWA -fWA -fWA -fWA -fWA -fWA -axx -scL -fhG -xRc -agV -pxC -gAT -vNT -eoU -eoU -eoU -eoU -eoU -aaf -ihW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lKu -aaa -aaa -wmL -apS -qkq -ooz -wmL -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(161,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -rLv -rLv -rLv -blx -szp -szp -qXB -qXB -qXB -qXB -czs -wrn -wrn -tjR -lOZ -qXB -lKc -tCS -qeV -tCS -fln -tZz -wbF -qaA -bMA -rao -lLz -qFj -qaA -fTL -qaA -wgf -lBN -rao -qaA -haR -gZG -cnK -doD -vIT -siA -dOQ -cnK -qGK -fzd -mDN -mBQ -sCh -lma -vML -vif -rCQ -gdF -tYF -jPH -wfC -jIz -tTo -peM -lsq -dkC -dwz -dwz -afz -afz -uwQ -gnT -lgL -lrK -heV -eJX -eJX -jtn -hHt -lRS -cxl -jYv -wPZ -isV -isV -eoU -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wmL -cvO -uNO -hUd -uWk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lKu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(162,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -blx -rLv -rLv -anS -aox -aox -jpO -sZU -nDW -sZU -wrn -qIB -rCn -oUz -qXB -qXB -kSE -tCS -ipY -lMx -rlu -pTw -kYG -sGC -vuJ -sGC -cFu -kYG -sGC -wBM -sGC -dOs -cFu -sGC -pqb -sNt -kYG -uXd -vIY -dnH -dnH -vIY -vIY -gQQ -lfc -abI -dpn -dQE -heL -mBi -ayr -nck -tok -peM -peM -opG -lEH -wsQ -peM -sNw -vWB -hta -vXt -ecB -ecB -bLg -prT -prT -fVA -jAV -wmz -wmz -jHL -gyg -lAh -aaf -gWn -lpA -rWi -pMd -eoU -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wmL -jkX -frs -dFo -wmL -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(163,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cpH -aaa -aaa -ffP -rLv -rLv -aWl -aaa -aox -tCS -tCS -tCS -tCS -tCS -tCS -tCS -tCS -tCS -oke -pql -nqL -qQv -eaN -cuZ -pTw -kYG -wJV -hUO -vyZ -vyZ -vyZ -vyZ -eGC -vyZ -vyZ -vyZ -vyZ -aRt -xAl -kYG -aOA -rdU -qPT -jRb -gaw -vfA -rQL -lUz -sWs -ruu -uTH -dFH -ygb -pEG -ozB -ssk -peM -jrT -cZw -hUn -pQK -sDC -pHB -mJa -oTj -sVK -mJa -mJa -ftd -cAt -gxb -apg -vuU -sBV -mei -vWS -fyY -qSc -xmT -xXm -opZ -fGR -isV -eoU -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -lMJ -lMJ -oMA -lSw -wmL -gUS -qBo -gUS -wmL -lSw -oMA -aox -aox -aox -pqI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lKu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(164,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -lMJ -lMJ -ciU -blx -blx -aWl -aaa -aox -nqL -hHK -dLO -hHK -qhb -gTh -jpE -dEx -fZL -snB -xID -hTV -brE -pcv -gKt -shV -sGC -stl -xMX -dRN -otn -dRN -wdB -oET -mln -bjD -vQt -qLw -tdf -mdk -kYG -dKL -oFH -oFH -sSz -xXv -ilT -uwy -vML -hmf -glz -khu -khu -fAe -khu -tKE -uRL -peM -maS -pIw -pIw -hbR -gxx -qxE -iUs -mCZ -mHT -dKE -ilc -dKE -mHT -tJF -nau -vuU -jvj -vmx -ojf -hGk -tfs -aaf -eoU -eoU -eoU -eoU -eoU -aaf -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lFq -oMA -oMA -oMA -oMA -eYu -agN -bXs -tLc -juH -pJA -hLJ -oMA -oMA -oMA -oMA -lFq -lMJ -rrt -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(165,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -nqL -oHC -wdK -tdP -bCO -gTh -myY -dRx -nqL -mzw -xtp -nqL -aSk -iSI -qaA -fqV -sGC -stl -jUx -frZ -frZ -rHn -kww -fJC -fec -rHn -mYE -mYE -uLp -mdk -kYG -qtH -lOg -pom -pom -uUL -vfA -bjH -bbi -lwm -vfO -khu -kPw -fKZ -bgV -aKz -uRL -peM -vzI -pLn -cZN -jML -mSM -etK -oFK -wTs -mHT -mKR -aGS -mHT -mHT -gXW -nau -cBd -jvj -nnD -gvd -sbl -lRS -cxl -jYv -qov -ayg -ayg -eoU -aaf -aaa -aaa -lMJ -aaa -lMJ -aaa -aaa -uaR -oue -wRL -tyj -qad -xfm -nHG -hjw -bqJ -hzL -wNO -tml -mez -xCH -wKG -rea -uaR -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(166,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -nqL -vHJ -hHK -dEt -lJh -xJQ -myY -fmn -nqL -tCS -jlA -tCS -kYG -jRZ -kYG -sGC -kYG -xdn -jUx -aXL -aXL -rHn -mkr -oNs -mUr -rHn -hko -hko -uLp -qTX -kYG -uJz -iHy -xgR -nmb -rtP -vfA -lfd -eup -lwm -xGa -khu -nsO -efY -mRm -bXT -cVJ -peM -mSM -mSM -peM -ovf -peM -aXI -ruP -oqK -mHT -hQB -hQB -kHH -mHT -egP -gMt -vuU -jvj -nnD -xxR -aTN -lAh -aaf -gWn -bep -drA -kPU -eoU -aaf -aaa -aaa -dxK -aaa -dxK -aaa -aaa -oMA -sKf -sri -oQk -vhZ -tsy -sRa -ppC -twu -mKD -hxY -nae -xfA -cvn -jaY -dPF -oMA -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(167,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cpH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -nqL -tdP -wdK -oHC -gIe -gTh -vCr -eOJ -oVd -tCS -gwU -tCS -eVi -bwE -syX -nTA -cKx -fXi -nlE -rHn -rHn -kww -fNa -msu -cAm -fec -rHn -fJP -tYc -mdk -fJy -bDW -bDW -bDW -bDW -bDW -fJy -dSV -ayr -dRA -wCe -khu -hUu -iRD -xQb -nwW -nRp -dtY -qhI -oFM -xVq -the -wDG -udD -sCN -eJX -ppD -eJX -eJX -eJX -iQB -tds -nzo -vuU -lxm -smt -wXo -juC -qSc -xmT -xXm -xNQ -mgh -ayg -eoU -aaf -aaa -aaa -lMJ -aaa -lMJ -aaa -aaa -uaR -jHX -toR -toR -toR -syV -jsi -eoZ -jjm -nui -wWV -vsp -oMA -cTq -jew -xDD -uaR -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lKu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(168,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -nqL -hHK -fQe -thc -bhM -gTh -oTR -lKN -fiu -tCS -psZ -tCS -orT -sph -nTA -qZI -sGC -stl -jUx -wBE -oNs -imP -qZB -oNs -hRl -epi -rLN -rtQ -uLp -lLu -fJy -oUh -nWl -lKA -ioy -nAG -see -rIZ -hPu -rIP -bDq -bDq -bDq -bDq -bDq -bDq -qcd -amY -srR -viU -dsV -uKa -hdp -htY -ruP -gSn -eJX -eJX -eJX -eJX -eJX -eJX -nzo -mTI -jvj -qua -qZv -hGk -tfs -aaf -eoU -eoU -eoU -eoU -eoU -aaf -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -jlU -jlU -jlU -jlU -jlU -jlU -snZ -lVB -kXK -uHD -kvT -jlU -jlU -jlU -jlU -jlU -jlU -lMJ -rrt -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(169,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aWl -rrt -rrt -rrt -rrt -rrt -rrt -rrt -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -aox -nqL -nqL -nqL -nqL -nqL -nqL -xIx -lKN -rYc -tCS -kbo -tCS -gDA -sph -owp -tmq -sGC -stl -jUx -bDA -vfk -wKS -qZB -qgi -hRl -xRt -vfk -sJL -uLp -suj -fKg -uhu -rOK -wWN -kTK -gOz -fJy -pHj -aap -wsI -fia -sRW -hKi -quv -lLB -aJz -rzT -cWy -xRZ -xRZ -fdH -gto -dXs -ahV -ruP -eJX -eJX -eJX -vlq -eJX -eJX -lxt -nzo -vuU -iTC -smt -agB -fPw -okV -oId -wPD -vEl -sUo -sUo -eoU -aaf -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -cXP -mtu -gOB -plp -gog -fUx -pst -fkk -vuK -yag -hFz -vdL -gOB -mtu -cXP -aaa -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(170,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -lMJ -aaa -aaa -aaa -aaa -gTh -fHa -oww -xvR -tCS -kbo -tCS -orT -sph -vGw -tmq -sGC -stl -qOz -wBE -oNs -imP -qZB -oNs -hRl -epi -oNs -rtQ -mBo -wkb -fJy -fJy -gHI -gHI -svo -jXz -fJy -bJQ -mRv -hWM -bDq -cqN -ldQ -ldQ -nvr -xxF -hqr -oHE -xVA -ago -nud -gto -dXs -qDt -ruP -eJX -eJX -cyW -cyW -cyW -eJX -eJX -nzo -vuU -dwf -nnD -nLI -smZ -lAh -aaf -gWn -eQs -pfR -wPB -eoU -aaf -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -cXP -mtu -vxa -mtu -jfS -bQQ -lVB -oWa -iWc -ces -elm -mtu -vxa -mtu -cXP -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lKu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(171,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aWl -rrt -rrt -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cpH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -lMJ -aaa -aaa -aav -sxo -qSh -qSh -qXB -qXB -qXB -mSB -tCS -xGr -yli -pmj -pmj -bgs -pWB -mMr -rHn -rHn -rHn -aJv -tft -muu -rHn -rHn -fJP -dnV -wBV -aUP -dgd -dgj -gHI -gHI -fJy -fJy -fJy -pnJ -dKl -fJy -fVk -iFh -yco -bDq -uTZ -laE -eYw -xRZ -lIc -nud -gto -dXs -ahV -ugP -ruP -ruP -ruP -ruP -eJX -eJX -dfS -nzo -vuU -eJX -kEe -kfe -jie -okV -oId -eoj -gYw -cLt -sUo -eoU -aaf -aaa -aaa -aaa -rrt -rrt -lMJ -lMJ -vIJ -jlU -ycd -psU -ycd -gog -jjj -jNo -sgk -klK -aDQ -hFz -ycd -hVn -ycd -jlU -pMS -lMJ -lMJ -lMJ -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(172,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -lMJ -aav -sxo -sxo -sxo -pZG -ltg -nEe -qXB -wrn -psZ -tCS -tCS -kYG -kYG -sGC -kYG -hwt -hSO -pzY -pzY -pzY -mny -iHp -aHh -pzY -pzY -nro -kcV -lLu -sGC -aaa -aYx -dgf -dgj -ack -fJy -mhW -uNl -kTK -fJy -cZW -bWt -unq -bDq -vAz -laE -qSn -rJb -ofM -idW -kAS -qyC -kxH -qhc -qhc -qhc -mRg -hcT -kLi -kLi -kLi -swy -cFa -kLi -sEI -xzg -oLV -uwQ -aaf -eoU -eoU -eoU -eoU -eoU -aaf -aaa -aaa -aaa -rrt -aaa -aaa -bPB -kWc -xiL -gTK -hMv -wKT -vGq -vXi -uBx -wmd -gLH -frt -vGq -qko -gyI -phI -xiL -kvO -bPB -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(173,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -lMJ -lMJ -fLJ -jhd -jhd -jhd -dDP -jhd -rQw -jhd -jhd -jhd -jhd -jhd -jhd -jhd -jhd -jhd -rQw -rQw -jhd -uRa -rff -rRB -rff -jnv -pwy -ozs -etA -psZ -kYn -tCS -aaa -aaa -kKv -lXN -dQP -jmq -gWv -gMB -xHg -cRq -mYE -mDX -gJN -unk -qXj -sgv -ceo -aUP -dge -azd -azd -azd -dgB -fJy -rrj -bQj -tcU -gHI -ejQ -aOY -aOY -bDq -iRh -qcd -bMC -fkb -srx -knU -efd -nwK -fFC -uVf -kRc -vJI -ich -jnQ -tBM -jhn -jaO -hXn -dVT -jhn -svj -rhx -tuo -uwQ -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaa -rrt -aox -aox -aox -hbK -hbK -rMu -xiL -jCO -fdZ -mMK -mLW -mMK -mMK -jxH -tMI -pwZ -dxc -fdZ -fdZ -jvX -xiL -gTS -hbK -hbK -lMJ -lMJ -mxQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(174,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -oIG -aaa -aaa -aaa -aaa -aaa -oIG -aaa -aaa -aaa -aaa -lMJ -aaa -aav -sxo -sxo -sxo -tNU -gFd -lek -buk -ifP -wrn -dOY -tCS -aaa -aaa -aaa -kYG -xYD -sTY -sGC -kYG -kYG -sGC -sGC -sGC -kYG -kYG -sNt -sTY -sGC -kYG -dgf -dgk -dgt -dgk -dgv -fJy -bUC -bQj -jIV -gHI -oAQ -lMJ -lMJ -aaf -ack -qcd -qcd -qcd -qcd -qcd -vhv -quk -quk -quk -quk -mHT -mHT -bRT -lLR -nOp -lXL -ydb -xpi -kUb -dfj -xzg -oFn -uwQ -lMJ -eoU -eoU -eoU -eoU -eoU -lMJ -aaa -rrt -lAu -lAu -lMJ -wrc -oyj -xen -mdo -vAa -vJl -amV -vVx -kyh -iwO -pQj -jzw -thT -jzw -sie -pgM -qiD -nYL -ddK -hAN -wrc -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(175,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -lMJ -aaa -aaa -taz -taz -mYw -taz -taz -aaa -taz -taz -nov -taz -taz -aaa -aaa -lMJ -aaa -aaa -lMJ -aav -sxo -qSh -qSh -qSh -qXB -qXB -wrn -tCS -tCS -aaa -aaa -aaa -kYG -qIS -lDP -aib -qZI -qZI -qZI -cuB -uYH -qZI -qZI -dHM -lDP -qZI -kYG -aWK -dgk -dgt -dgk -dgB -fJy -xcz -mzu -ksU -nyX -tsZ -hns -hns -hns -hns -hns -oGw -oGw -oGw -iLe -vhv -vRS -qem -nlL -fFA -nGq -kRf -uQe -pul -nzo -iGr -gSn -fzM -qOW -nnD -hQj -xXG -oqT -xtZ -hYs -qrt -jRg -jRg -eoU -lMJ -aaa -lMJ -lMJ -lMJ -lMJ -wrc -oyj -xiL -xiL -idA -xVu -dgz -tIe -xVu -hja -vDV -nSC -xVu -pJf -pfP -xVu -idA -xiL -xiL -lmn -wrc -aaa -aaa -mxQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(176,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -rrt -rrt -rrt -aaa -aaa -taz -taz -mYw -taz -taz -aaa -taz -taz -nov -taz -taz -aaa -aaa -lMJ -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -qXB -hjp -gnk -tCS -aaa -aaa -aaa -aaa -kYG -tJb -lDP -lDP -qZI -qZI -qZI -qZI -qZI -qZI -qZI -qLJ -lDP -xKl -kYG -dgg -azd -azd -azd -dgv -fJy -gHI -pDx -gHI -fJy -twf -lMJ -aaa -lMJ -aox -lMJ -aaa -lMJ -lMJ -iFR -fuu -kvK -iPx -qHh -cps -fBc -dGq -uQe -pul -nzo -cQQ -sCW -lNY -sCW -nnD -ybI -oIM -lAh -lMJ -gWn -pnE -wit -lPa -eoU -lMJ -aaa -rrt -lAu -lAu -lMJ -hbK -uhs -xiL -kHt -iOZ -idF -faD -lTi -xVu -cXP -cXP -cXP -xVu -jbk -iWc -pVR -hCw -mCj -xiL -lmn -hbK -aaa -aaa -mxQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(177,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -lMJ -lMJ -oIG -oIG -mYw -oIG -oIG -lMJ -oIG -oIG -nov -oIG -oIG -lMJ -lMJ -aox -aox -aox -aox -aox -aox -aox -aaa -aaa -wRT -wyG -wrn -tCS -aaa -aaa -aaa -aaa -kYG -qoA -aib -irY -qZI -qZI -qZI -cuB -qZI -qZI -qZI -vxJ -aib -vLX -kYG -aWK -dgk -dgt -dgk -dgB -fJy -ahU -wOI -hGL -fJy -oAQ -aaa -aaa -aaa -aox -aaa -aaa -lMJ -aaa -iFR -fuu -dHG -iui -rid -cps -jKG -gpQ -uQe -pul -nzo -jms -rVJ -fzM -sCW -qua -kFP -kBh -qKR -gQf -lpp -eOQ -eJM -jRg -eoU -lMJ -aaa -rrt -aox -aox -aox -wrc -oyj -xiL -eSr -tGS -uKW -faD -iWc -cXP -aJQ -gXw -pZi -cXP -lVB -iWc -pDl -uYP -ljF -xiL -lmn -wrc -lMJ -lMJ -mxQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(178,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -taz -taz -oIG -taz -taz -aaa -taz -taz -nov -taz -taz -aaa -aaa -aox -aaa -aaa -aaa -aaa -aaa -aox -aaa -aaa -qXB -eOR -enK -tCS -aaa -aaa -aaa -aaa -kYG -aib -aib -bNE -kxw -aib -iqc -kYG -phn -aib -aib -twd -aib -qZI -kYG -dgh -dgk -dgk -dgk -dgv -fJy -gHI -rsk -gHI -fJy -twf -aaa -aaa -aaa -aox -aaa -aaa -lMJ -aaa -iFR -fuu -htD -ukq -sdE -cps -jKG -gpQ -uQe -pul -nzo -cQQ -sCW -fzM -sCW -nnD -nbx -oIM -lAh -lMJ -eoU -eoU -eoU -eoU -eoU -lMJ -aaa -rrt -lAu -lAu -lMJ -hbK -oyj -xiL -mtu -iOZ -trL -faD -iWc -cXP -gXw -gXw -vvD -cXP -lVB -iWc -eSC -hCw -mtu -xiL -lmn -hbK -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(179,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -taz -taz -oIG -taz -taz -aaa -taz -taz -oIG -taz -taz -aaa -aaa -aox -aaa -aaa -aaa -aaa -aaa -aox -aaa -aaa -qXB -qXB -cvt -tCS -lMJ -lMJ -lMJ -lMJ -kYG -kYG -kYG -kYG -kYG -kYG -kYG -kYG -kYG -kYG -kYG -kYG -kYG -kYG -kYG -aWK -dgm -dgu -dgm -dgB -fJy -aaa -waq -aaa -fJy -oAQ -lMJ -aaa -lMJ -aox -lMJ -aaa -lMJ -lMJ -iFR -fuu -dhw -xuA -uOp -nOw -cIM -dJK -uQe -pul -nzo -fiE -hur -uel -eJX -nnD -cSt -xXG -oqT -xtZ -hYs -bfa -wJw -wJw -eoU -lMJ -aaa -lMJ -lMJ -lMJ -lMJ -wrc -oyj -xiL -xiL -idA -xVu -faD -iWc -xVu -pXo -jSj -rzz -xVu -lVB -exu -xVu -idA -xiL -xiL -lmn -wrc -aaa -aaa -mxQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(180,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -lMJ -lMJ -oIG -oIG -oIG -oIG -oIG -lMJ -urQ -oIG -oIG -jhd -jhd -uay -uay -uay -aaa -aaa -aaa -aaa -aaa -aox -aox -aox -cvt -sSS -enK -tCS -aaa -aaa -aaa -lMJ -lMJ -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -anS -aaa -aaa -aaa -aaa -lMJ -ack -aye -dgv -aye -dgv -lMJ -aaa -aaa -aaa -lMJ -oAQ -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -ktK -tts -sfu -oFt -hgE -qYY -fXj -vPy -tjG -xmb -mDA -jZz -vlq -gTC -eJX -qzK -tnT -eSZ -lAh -lMJ -gWn -cGV -hDe -xEg -eoU -lMJ -aaa -rrt -lAu -lAu -lMJ -wrc -oyj -oyj -xiL -nEb -bSu -caf -tgm -gKD -fdZ -fdZ -fdZ -iMR -bnQ -psc -wCH -rKg -xiL -lmn -lmn -wrc -aaa -aaa -mxQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(181,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -taz -taz -mYw -taz -taz -aaa -taz -taz -oIG -taz -taz -aaa -aaa -aox -aaa -aaa -aaa -aaa -aaa -gvH -aaa -aaa -qXB -qXB -cvt -tCS -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -nsC -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -lMJ -oAQ -aaa -aaa -aaa -aaa -aaa -aaa -vhv -vhv -vhv -sCp -mUL -isr -eDc -vhv -isr -ldK -tqY -pul -nzo -fzM -rZt -jZz -eJX -ccK -wFv -kBh -qKR -gQf -lpp -wEf -ojv -wJw -eoU -lMJ -aaa -rrt -aox -aox -aox -hbK -hbK -oyj -xiL -nkq -rwx -byP -dac -evD -pJf -ycv -tIe -min -min -tqw -ohD -dQa -xiL -lmn -hbK -hbK -lMJ -lMJ -mxQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(182,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -taz -taz -mYw -taz -taz -aaa -taz -taz -nov -taz -taz -aaa -aaa -aox -aaa -aaa -aaa -aaa -aaa -aox -aaa -aaa -lMJ -aaa -aox -tCS -lMJ -lMJ -rrt -rrt -rrt -lMJ -lMJ -rrt -rrt -rrt -lMJ -lMJ -lMJ -anS -lMJ -lMJ -lMJ -rrt -rrt -rrt -lMJ -lMJ -lMJ -lMJ -lMJ -aaa -aav -aaa -lMJ -oAQ -aaa -aaa -aaa -aaa -aaa -aaa -vhv -sZI -trG -hEX -vTX -coX -gSu -saB -isr -isr -kKq -fym -nzo -kNx -jtf -rdv -lxt -nnD -nbx -oIM -lAh -lMJ -eoU -eoU -eoU -eoU -eoU -lMJ -aaa -aaa -aaa -rrt -aaa -aaa -wrc -oyj -xiL -jgq -imw -aft -ygF -rrL -fMF -min -irp -sCv -ixR -shY -eOP -jgq -xiL -lmn -wrc -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(183,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -lMJ -lMJ -oIG -oIG -mYw -oIG -oIG -lMJ -oIG -oIG -nov -oIG -oIG -lMJ -lMJ -cpH -aaa -aaa -aaa -aaa -aaa -cpH -lMJ -lMJ -tlE -lMJ -aox -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -lMJ -aaa -lMJ -aaa -aaa -aaa -anS -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -cpH -aaa -gFa -aaa -cpH -twf -lMJ -lMJ -blx -gFb -aaa -aaa -fuu -xJK -vTX -vTX -vTX -vTX -lYP -vTX -vTX -isr -isr -dks -nzo -qVi -uhx -psl -eJX -nnD -eFw -xXG -oqT -xtZ -hYs -yfx -ets -ets -eoU -lMJ -aaa -aaa -aaa -rrt -aaa -aaa -wrc -oyj -xiL -mtu -mtu -vHm -shY -qvQ -aft -diq -shY -gjv -aft -xCA -mtu -mtu -xiL -lmn -wrc -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(184,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -taz -taz -mYw -taz -taz -aaa -taz -taz -nov -taz -taz -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -lMJ -aaa -lMJ -aaa -aaa -aaa -gAe -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -oAQ -aaa -aaa -aaa -aaa -aaa -aaa -fuu -ucw -vTX -eWB -gHY -nBu -gHY -das -vTX -ucE -vhv -bYo -xRc -qTA -jZz -nnD -eJX -nnD -wfM -oIM -lAh -lMJ -gWn -oiI -rvx -dzY -eoU -lMJ -aaa -aaa -aaa -rrt -rrt -rrt -hbK -oyj -xiL -rTi -iXS -vHm -xCA -mtu -vHm -gva -xCA -vxa -vHm -xCA -iXS -lWM -xiL -lmn -hbK -lMJ -lMJ -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(185,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -taz -taz -oIG -taz -taz -aaa -taz -taz -oIG -taz -taz -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -lMJ -lMJ -lMJ -lMJ -lMJ -rrt -rrt -rrt -rrt -lMJ -rrt -rrt -rrt -lMJ -anS -lMJ -rrt -rrt -rrt -lMJ -rrt -rrt -rrt -rrt -lMJ -lMJ -aaa -aaa -aaa -aaa -oAQ -aaa -aaa -aaa -aaa -aaa -aaa -vhv -fRe -vTX -wCS -sHM -kUJ -uWx -dmP -vTX -vTX -bqk -kgV -hed -jgt -jZz -jaq -daT -hTq -aCA -kBh -qKR -gQf -lpp -aLr -aJe -ets -eoU -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -hbK -oyj -xiL -xiL -xiL -xiL -weD -mtu -vHm -gva -xCA -mtu -fVV -xiL -xiL -xiL -xiL -lmn -hbK -aaa -aaa -aaa -aaa -lKu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(186,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -lMJ -lMJ -oIG -oIG -oIG -oIG -oIG -lMJ -oIG -oIG -oIG -oIG -oIG -lMJ -lMJ -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -anS -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -twf -aaa -aaa -aaa -aaa -aaa -aaa -vhv -tng -vTX -iCN -lNP -qxt -mUf -dmP -nAQ -vTX -isr -trM -qwi -jvj -pul -eJX -eJX -plD -wGB -oIM -lAh -lMJ -eoU -eoU -eoU -eoU -eoU -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -hbK -oyj -oyj -goW -msN -xiL -jlU -gEu -lKd -gva -iZJ -rDd -jlU -xiL -qxr -lmn -lmn -hAN -hbK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(187,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -lMJ -aaa -aox -aaa -aaa -aaa -aaa -aaa -aox -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -anS -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oAQ -aaa -aaa -aaa -aaa -aaa -aaa -vhv -xPy -vTX -wCS -uWx -noV -sHM -dmP -vTX -mUQ -dLl -boD -eJX -uDH -xEN -mei -cjl -nkG -phC -wFi -oqT -xtZ -hYs -xWn -kwZ -kwZ -eoU -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -hbK -rDf -rDf -rDf -uhs -fjd -jlU -eJI -sZN -msR -xkv -lOY -jlU -iOJ -lmn -rDf -rDf -utD -hbK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(188,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aWl -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -aWl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cpH -lMJ -nsC -ghL -anS -lMJ -cpH -lMJ -lMJ -lMJ -aaa -aaa -aaa -iGq -jFr -aaf -vDl -lMJ -lMJ -oAQ -lMJ -lMJ -blx -gFb -aaa -aaa -fuu -vTX -vTX -hdg -nqR -ydG -nqR -oog -vTX -jTS -sCp -qFA -eJX -jvj -pul -eJX -eJX -ewU -xoU -oIM -lAh -lMJ -gWn -iiL -kwZ -aWa -eoU -lMJ -nYJ -lMJ -rrt -rrt -rrt -lMJ -hbK -hbK -wMz -rDf -eUe -eSb -nnc -hdy -nnc -rvK -nnc -hdy -aWp -eSb -udp -wHd -uLa -hbK -hbK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(189,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -anS -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -lKu -aaa -aaa -out -aaa -aaa -aaa -aaa -oAQ -aaa -aaa -aaa -aaa -aaa -aaa -fuu -fuu -vTX -vTX -vTX -vTX -tRU -mUQ -mUQ -tIk -vhv -rPF -fhG -jvj -nzP -xkV -dtB -dWN -xFd -rcq -mVG -hwg -rsi -tDR -aNB -kwZ -eoU -lMJ -aaa -aaa -lMJ -aaa -aaa -aaa -lMJ -hbK -hbK -hbK -mgS -hbK -jlU -mtu -mtu -gyK -mtu -mtu -jlU -hbK -mTg -hbK -hbK -hbK -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(190,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -anS -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oAQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -fuu -fuu -vTX -vTX -tVP -vTX -ucw -vmI -qGn -vhv -iZm -ruP -ioc -mei -mei -rHZ -iTX -fLq -sGw -uwQ -lMJ -eoU -eoU -eoU -eoU -eoU -lMJ -aaa -aaa -lMJ -aaa -aaa -aaa -lMJ -aaa -hbK -tmU -fGy -wyo -jlU -dLm -mtu -gyK -mtu -mtu -jlU -qgn -mCV -wyo -hbK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(191,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -anS -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bug -aaa -aaa -aaa -aaa -oAQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -fuu -fuu -vhv -vhv -vhv -vhv -vhv -vhv -vhv -uwQ -uwQ -feF -tmQ -tmQ -nkj -kaS -uyk -wez -gAT -kuD -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -rrt -nYJ -rrt -rrt -rrt -lMJ -lMJ -hbK -pWT -rDf -uLa -jlU -eSr -mtu -jQz -nJr -ljF -jlU -lUS -pHt -rDf -hbK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(192,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -lMJ -gAe -ghL -nsC -lMJ -aox -lMJ -aaa -lMJ -lMJ -lMJ -lMJ -lMJ -blx -iGq -lMJ -lMJ -lMJ -oAQ -lMJ -lMJ -blx -gFb -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cpH -lMJ -nsC -ghL -nsC -lMJ -uwQ -uwQ -lMb -mcl -lKJ -uwQ -uwQ -uwQ -uwQ -aaa -lMJ -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -lMJ -aaa -bPB -hbK -wrc -wrc -jlU -mtu -mtu -mtu -mtu -mtu -jlU -wrc -wrc -hbK -bPB -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(193,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -anS -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -twf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -anS -lMJ -aaa -vlp -uwQ -uwQ -xyT -uwQ -uwQ -wYD -jaH -nGe -aaa -nYJ -aaa -aaa -aaa -nYJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -lMJ -jlU -jlU -bPu -asL -kcu -jlU -jlU -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(194,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -anS -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -oAQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -nsC -lMJ -aaa -hdU -oKp -mHT -fCD -mHT -odp -azu -nye -tAP -lMJ -rrt -rrt -rrt -rrt -rrt -lMJ -lMJ -rrt -rrt -lAu -rrt -rrt -rrt -rrt -rrt -rrt -lMJ -lMJ -lMJ -jlU -jlU -jlU -jlU -jlU -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(195,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -anS -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oAQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -anS -lMJ -aaa -aaa -aaa -mHT -xRh -mHT -lMJ -lMJ -lMJ -lMJ -aaa -lMJ -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -lMJ -lMJ -lMJ -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(196,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aox -lMJ -anS -ghL -gAe -lMJ -aox -lMJ -lMJ -aaa -aaa -lMJ -vnP -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -pSS -lMJ -lMJ -lMJ -aox -lMJ -lMJ -lMJ -aaa -aaa -aaa -aaa -lMJ -aox -lMJ -anS -ghL -anS -lMJ -aox -lMJ -aox -dJN -aox -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lKu -aaa -aaa -lMJ -aaa -lMJ -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(197,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -anS -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -lAu -bno -qzs -brO -mJI -aaa -aox -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -anS -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -rrt -rrt -rrt -rrt -rrt -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -lMJ -aaa -lMJ -aaa -lMJ -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(198,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -anS -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -ceP -lAu -qzs -lAu -xCF -aaa -aox -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -anS -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dxK -aaa -lMJ -aaa -dxK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(199,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -anS -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -lMJ -aox -aox -lMJ -eUu -aaf -qzs -aaf -eUu -lMJ -aox -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -anS -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(200,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cpH -lMJ -nsC -ghL -anS -lMJ -cpH -aaa -aaa -aaa -aaa -aaa -lMJ -aMq -qjC -qjC -aOV -blw -aNw -ajl -aNw -qot -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cpH -lMJ -nsC -ghL -nsC -lMJ -cpH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -yib -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(201,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -anS -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aMq -pyP -pyP -aOV -aMq -xct -jBb -ero -aOV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -anS -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(202,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -anS -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -beq -qmR -cUI -beq -blx -iwp -hml -lHp -blx -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lKu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(203,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -nsC -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aSD -xew -pyP -aOX -bly -gMA -xXK -skt -aOX -aNw -aTQ -aNw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -nsC -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(204,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -anS -lMJ -aaa -aTQ -aNw -aNw -aNw -aNw -aNw -tJV -iKh -wCz -olg -tRm -tRm -eGd -vyM -gey -tRm -tRm -tRm -icG -qCQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -anS -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(205,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aNw -aTQ -mOA -aTQ -aSD -tTu -rHO -rHO -rHO -rHO -rHO -rHO -mtR -aVk -aOY -aOY -aSG -gMA -neG -rHz -eNR -aOY -bcQ -lTt -bAT -aNw -aNw -aNw -aNw -aNw -aNw -aNw -aNw -aTQ -mkZ -aTQ -aNw -jMp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(206,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -flb -blx -lMJ -lMJ -aMr -tmO -rHO -rHO -rHO -rHO -rGG -aVk -aOY -aOY -aOY -aOY -aOY -gfU -aaa -aaa -aaa -osc -lps -mjH -gCS -eNR -aaa -aMq -vKf -rHO -rHO -rHO -rHO -kLG -kLG -ndb -kLG -kLG -kLG -kLG -rHO -rHO -hLx -bBb -lMJ -lMJ -blx -hHO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(207,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aMq -qbF -cAn -ops -aNC -aOY -gfU -aaa -aaa -aaa -aaa -aaa -aaa -gfU -aaa -aaa -gfU -gfU -gfU -iRY -gfU -gfU -aaa -aaa -gfU -aOY -aOY -aOY -aOY -aOY -aOY -gfU -aOY -aOY -aNC -ops -aNC -bcQ -qbF -bgn -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(208,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aMq -qbF -btK -anS -lMJ -lMJ -gfU -aaa -gfU -gfU -gfU -gfU -gfU -gfU -gfU -gfU -gfU -evI -abR -pfe -cok -gfU -eNR -aaa -gfU -aaa -aaa -aaa -aaa -aaa -aaa -gfU -aaa -aaa -lMJ -anS -lMJ -aMr -qbF -bgn -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(209,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aMq -qbF -vvv -anS -anS -anS -gfU -gfU -gfU -aTV -aTV -aTV -gfU -gfU -gfU -gfU -bjP -omF -bnx -vjA -hOl -gfU -gfU -gfU -gfU -gfU -gfU -gfU -gfU -gfU -gfU -gfU -eNR -eNR -xMA -anS -anS -tXy -qbF -bgn -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(210,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aMq -qbF -aOV -aaa -aaa -gfU -gfU -aTV -aTV -aTV -xjb -aTV -aTV -aTV -aTV -aTV -bjP -tri -bny -pfe -brY -giA -giA -giA -giA -giA -jGr -rrZ -aWH -hAE -fnf -gfU -gfU -gfU -gfU -lMJ -lMJ -aMr -vCa -bgn -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(211,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aNw -aSD -qbF -aOV -aaa -aaa -gfU -aTV -aVl -oFC -phN -jEr -lro -odP -aVl -jGa -xkT -bjQ -bjQ -bjQ -dTq -bjQ -giA -blu -kRk -xml -cJx -jGr -ddq -tUA -tUA -juf -uRp -kOq -ubl -gfU -aaa -aaa -aMq -vCa -bAT -aNw -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(212,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aMq -vFk -qim -oqn -aOV -aaa -gfU -gfU -vnm -xQJ -uaE -uaE -tHT -uUX -uUX -uUX -azv -dKG -bjQ -hac -pQv -tSP -pce -giA -mfS -nCu -jGo -lVq -jGr -sNx -oKU -tUA -qCv -sAn -tUA -bXk -gfU -eNR -aaa -aMq -cVP -qim -vCy -bgn -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(213,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aMq -jMP -iQr -oqn -aOV -aaa -gfU -gfU -vnm -aVn -aWN -aTV -qeQ -aTV -aTV -aWN -uUX -bio -bjQ -blF -bnB -tSP -bsb -giA -lJj -pKv -dfC -hxB -hJJ -hJJ -hJJ -gwN -tUA -tUA -tUA -pHi -jGr -gfU -gfU -bly -cVP -uKj -oqn -bgn -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(214,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -gfU -nFL -ddc -dMu -wJv -jZC -pan -pan -wgB -nGv -aWO -fSq -lup -wPo -aTV -rYA -kUm -nFe -bhc -mgj -piw -jvO -wNm -oKA -art -art -nqp -iYP -aVX -ehY -ycj -kyX -kzg -poJ -tnh -tnh -mXb -xgL -qYg -gPX -eNh -orU -ixw -gfU -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(215,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aMq -jMP -iQr -oqn -aOV -aaa -gfU -gfU -vnm -xGF -iCV -aTV -tUF -aTV -aTV -tfz -iCV -bnG -bjQ -nSs -bnD -tSP -bsd -giA -wZk -dfC -vmp -cHb -hJJ -hJJ -hJJ -ssw -dlb -dlb -dlb -czQ -jGr -gfU -gfU -bcQ -cVP -uKj -oqn -bgn -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(216,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aMq -jqB -wmB -oqn -aOV -aaa -gfU -gfU -vnm -xyp -kLg -kLg -sOS -iCV -iCV -iCV -mCL -pIE -bjQ -kxq -rNs -tSP -nMF -giA -eBz -hoY -aVZ -aDA -jGr -pNe -oKU -tUA -pwm -oXl -oPh -fIE -gfU -eNR -aaa -aMq -cVP -wmB -uOm -bgn -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(217,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aOY -bcQ -oDr -aOV -aaa -aaa -gfU -aTV -aVr -iZN -oDc -hyZ -rZy -iZN -aVr -qsV -ubB -bjQ -bjQ -bjQ -txh -bjQ -giA -hSe -itB -pDe -ozQ -jGr -ddq -tUA -tUA -hqE -oln -eNz -kOf -gfU -aaa -aaa -aMq -vCa -aVk -aOY -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(218,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aMq -oDr -aOV -aaa -aaa -gfU -gfU -aTV -aTV -aTV -sLN -aTV -aTV -aTV -aTV -aTV -ldP -sVx -pWR -lnX -asz -giA -giA -giA -giA -giA -jGr -dQH -fKf -eiq -ceF -gfU -gfU -gfU -gfU -aaa -aaa -aMq -vCa -bgn -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(219,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aMq -oDr -aOV -aaa -aaa -aaa -gfU -gfU -gfU -aTV -aTV -aTV -gfU -gfU -gfU -gfU -ldP -xgE -uFw -tXz -hTt -gfU -gfU -gfU -gfU -gfU -gfU -gfU -gfU -gfU -gfU -gfU -eNR -eNR -aaa -aaa -aaa -aMq -vCa -bgn -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(220,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aMq -oDr -aOV -aaa -aaa -aaa -gfU -aaa -gfU -gfU -gfU -gfU -gfU -gfU -gfU -gfU -gfU -gEv -xkw -ryJ -fMT -gfU -eNR -aaa -gfU -aaa -aaa -aaa -aaa -aaa -aaa -gfU -aaa -aaa -aaa -aaa -aaa -aMq -vCa -bgn -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(221,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aMq -oDr -aOX -aNw -aNw -aNw -gfU -aaa -aaa -aaa -aaa -aaa -aaa -gfU -aaa -aaa -gfU -ipR -ktW -wuM -vVE -gfU -aaa -aaa -gfU -aNw -aNw -aNw -aNw -aNw -aNw -gfU -aNw -aNw -aNw -aNw -aNw -bly -vCa -bgn -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(222,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -flb -blx -lMJ -lMJ -aMr -sTF -rHO -rHO -rHO -rHO -mGk -aOX -aNw -aNw -aNw -aNw -aNw -gfU -aaa -aaa -gfU -gfU -gfU -ikC -gfU -gfU -aaa -aMq -bbO -rHO -rHO -rHO -rHO -rHO -rHO -wLC -kLG -kLG -kLG -kLG -kLG -kLG -rVB -bBb -lMJ -lMJ -blx -hHO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMq -nNL -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(223,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aaa -aNC -aOY -aOY -aOY -aSG -vOO -rHO -rHO -rHO -rHO -rHO -rHO -eRF -bgn -aaa -aaa -aaa -aMq -nTJ -bgn -aaa -aaa -aMq -vCa -aVk -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aNC -aaa -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMq -htS -nNL -nNL -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(224,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aNC -aOY -aOY -aOY -aOY -aOY -bcQ -vCa -bgo -aNw -aNw -aNw -aSD -onr -bsj -aNw -aNw -bly -vCa -bgn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -nNL -nNL -nNL -nNL -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(225,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aMq -hZm -rHO -rHO -rHO -rHO -rHO -fTo -rHO -rHO -rHO -rHO -uOm -bgn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -nNL -nNL -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(226,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aNC -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aNC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(227,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lMJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(228,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rrt -rrt -blx -rrt -rrt -rrt -rrt -blx -rrt -rrt -rrt -rrt -rrt -rrt -blx -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -blx -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -rrt -blx -rrt -rrt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(229,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sKY -aaa -aaa -aaa -aaa -wkv -aaa -aaa -aaa -aaa -aaa -aaa -sKY -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sKY -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sKY -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(230,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(231,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(232,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(233,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(234,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(235,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(236,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(237,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(238,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(239,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(240,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(241,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(242,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(243,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(244,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(245,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(246,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(247,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(248,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(249,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(250,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(251,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(252,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(253,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(254,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(255,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} diff --git a/_maps/map_files/tramstation/tramstation_skyrat.dmm b/_maps/map_files/tramstation/tramstation_skyrat.dmm deleted file mode 100644 index 1d45046afe5..00000000000 --- a/_maps/map_files/tramstation/tramstation_skyrat.dmm +++ /dev/null @@ -1,203819 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaj" = ( -/obj/structure/chair/sofa/corp/right, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"aao" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/corner, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"aay" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"aaF" = ( -/obj/effect/turf_decal/tile, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"abl" = ( -/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/white, -/area/station/security/medical) -"abt" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"abC" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"abH" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 6 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/cargo/qm) -"acb" = ( -/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/cable, -/turf/open/floor/iron, -/area/station/science/auxlab) -"acd" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/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/iron/white, -/area/station/medical/medbay/central) -"acj" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder{ - pixel_x = -1; - pixel_y = 8 - }, -/obj/effect/turf_decal/trimline/purple/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/line{ - dir = 8 - }, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 4 - }, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 10 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"acr" = ( -/obj/machinery/computer/warrant{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"acJ" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/trimline/neutral/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, -/obj/structure/cable, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/commons/lounge) -"acK" = ( -/obj/effect/turf_decal/trimline/neutral/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, -/area/station/commons/dorms) -"acV" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 12; - height = 18; - id = "emergency_home"; - name = "Tramstation emergency evac bay"; - width = 32 - }, -/turf/open/space/openspace, -/area/space) -"adh" = ( -/obj/machinery/door/airlock/hatch, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/left) -"adi" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"adM" = ( -/turf/closed/wall, -/area/station/medical/break_room) -"adQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/effect/spawner/random/maintenance/four, -/obj/effect/spawner/random/medical/minor_healing, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/crew_quarters/dorms) -"adT" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/machinery/camera{ - c_tag = "Science - Server Room"; - dir = 9; - network = list("ss13","rd") - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/server) -"aeb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lower) -"aei" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Two" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"aeD" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/candle_box{ - pixel_y = 5 - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"aeT" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table/reinforced, -/turf/open/floor/iron, -/area/station/service/bar) -"afg" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/effect/turf_decal/trimline/neutral/corner, -/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, -/area/station/hallway/secondary/command) -"afm" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"afv" = ( -/obj/effect/turf_decal/sand/plating, -/obj/item/stack/ore/glass, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"afP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"afX" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"afZ" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/obj/structure/closet/l3closet/virology, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"agt" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/effect/turf_decal/trimline/neutral/corner, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"agy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"agH" = ( -/obj/machinery/doppler_array{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"agZ" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/station/security/warden) -"ahc" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 5 - }, -/turf/open/floor/glass/reinforced, -/area/station/security/warden) -"ahm" = ( -/obj/effect/turf_decal/siding/wood, -/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/cable, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"ahn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Prison Garden" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"aho" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Disposal Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) -"ahs" = ( -/obj/machinery/newscaster/directional/north, -/obj/machinery/modular_computer/console/preset/id, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hos) -"ahD" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating/icemoon, -/area/station/engineering/atmos) -"ahG" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/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, -/area/station/commons/fitness/recreation) -"aie" = ( -/obj/structure/cable/multilayer/multiz, -/obj/structure/sign/warning/electric_shock/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"aip" = ( -/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/red/filled/line, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"aiu" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"aiE" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/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 = 6 - }, -/obj/machinery/duct, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/service/janitor) -"aiI" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/cargo/miningdock/cafeteria) -"aiL" = ( -/obj/machinery/exodrone_launcher, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"aiO" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/navigate_destination/minisat_access_ai, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/transit_tube) -"aiP" = ( -/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, -/area/station/science/auxlab) -"aiQ" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"aiS" = ( -/obj/machinery/door/airlock/security{ - name = "Engineering Guard's Office" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engie_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"ajc" = ( -/turf/open/space/basic, -/area/space) -"ajj" = ( -/obj/structure/table/wood, -/obj/effect/landmark/event_spawn, -/obj/effect/spawner/random/entertainment/cigarette_pack, -/obj/effect/spawner/random/entertainment/lighter{ - pixel_x = 9 - }, -/turf/open/floor/carpet, -/area/station/hallway/secondary/entry) -"ajo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) -"ajq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/service/theater) -"ajH" = ( -/obj/vehicle/sealed/mecha/working/ripley/cargo, -/turf/open/floor/iron/recharge_floor, -/area/station/cargo/storage) -"ajO" = ( -/obj/structure/safe, -/obj/item/clothing/head/bearpelt, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/gun/ballistic/revolver/russian, -/obj/item/ammo_box/a357, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"ajS" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"aka" = ( -/obj/structure/bed/roller, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"akb" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/machinery/light/small/directional/east, -/obj/structure/mirror/directional/east, -/turf/open/floor/iron/freezer, -/area/station/security/prison) -"akk" = ( -/obj/effect/turf_decal/tile{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"akl" = ( -/obj/structure/reflector/double/anchored{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"akr" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/storage) -"aku" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"akz" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"akA" = ( -/turf/closed/wall, -/area/station/science/auxlab) -"akC" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 1; - height = 13; - id = "arrivals_stationary"; - name = "arrivals"; - width = 5 - }, -/turf/open/space/openspace, -/area/space) -"akI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/four, -/turf/open/floor/iron/smooth, -/area/station/maintenance/port/aft) -"akN" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"akS" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/structure/table, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"akT" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/spawner/random/food_or_drink/refreshing_beverage{ - spawn_loot_count = 2; - spawn_random_offset = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"ald" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "left_tram_lower"; - name = "Tunnel Access Blast Door" - }, -/obj/machinery/door/airlock/hatch, -/turf/open/floor/plating, -/area/station/maintenance/tram/left) -"alu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"alz" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/iron, -/area/station/science/ordnance/storage) -"alA" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"alB" = ( -/obj/machinery/pdapainter{ - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"alG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing, -/obj/effect/spawner/random/trash/garbage{ - spawn_loot_count = 2; - spawn_random_offset = 1; - spawn_scatter_radius = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/mid) -"alS" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"alV" = ( -/obj/modular_map_root/tramstation{ - key = "maintenance_security_long" - }, -/turf/open/floor/plating, -/area/station/maintenance/department/security) -"amb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"amh" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/structure/bed{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/medical/virology) -"amG" = ( -/obj/machinery/door/airlock/engineering{ - name = "Vacant Office A" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/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/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"anc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/newscaster/directional/south, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"anj" = ( -/obj/effect/turf_decal/trimline/white/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"anB" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"anZ" = ( -/obj/effect/turf_decal/siding/thinplating, -/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, -/area/station/commons/fitness/recreation) -"aob" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"aoi" = ( -/obj/structure/lattice, -/obj/machinery/camera/motion{ - c_tag = "Secure - AI Lower External East"; - dir = 10; - network = list("ss13","minisat") - }, -/turf/open/space/basic, -/area/station/ai_monitored/turret_protected/aisat_interior) -"aoB" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron, -/area/station/security/brig) -"aoI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Atmospherics Maintenance" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"aoK" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"aoX" = ( -/obj/docking_port/stationary/laborcamp_home, -/turf/open/misc/asteroid/airless, -/area/mine/explored) -"aoY" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrigleft"; - name = "Brig" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig_left" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron, -/area/station/security/brig) -"aoZ" = ( -/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/science/xenobiology) -"api" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/purple/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/loading_area/white{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"apC" = ( -/turf/closed/wall, -/area/station/maintenance/department/crew_quarters/dorms) -"apP" = ( -/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/xenobiology) -"apS" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"aqd" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"aqf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/power/apc/auto_name/directional/north{ - areastring = "/area/station/engineering/supermatter" - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"aqh" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"aql" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/spawner/random/engineering/tool, -/obj/effect/spawner/random/engineering/flashlight, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/crew_quarters/dorms) -"aqm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/machinery/meter, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"aqB" = ( -/obj/machinery/door/airlock{ - name = "Water Closet" - }, -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/greater) -"aqK" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"aqR" = ( -/turf/open/misc/asteroid, -/area/mine/explored) -"arh" = ( -/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, -/turf/open/floor/iron/stairs/medium, -/area/station/service/theater) -"arB" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/neutral/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, -/area/station/hallway/secondary/entry) -"arE" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/greater) -"arI" = ( -/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/machinery/light/directional/east, -/obj/item/radio/intercom/prison/directional/east, -/obj/machinery/camera{ - c_tag = "Security - Prison Garden"; - dir = 6; - network = list("ss13","Security","prison") - }, -/obj/item/seeds/tower, -/turf/open/floor/iron/dark, -/area/station/security/prison/garden) -"asG" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/corner{ - dir = 1 - }, -/obj/structure/sign/departments/cargo/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"asQ" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/wall, -/area/station/engineering/atmos) -"asT" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/effect/landmark/navigate_destination/atmos, -/obj/machinery/door/window/left/directional/west{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Atmospherics Front Desk"; - req_access = list("atmospherics") - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/desk_bell{ - pixel_x = -7 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"atg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation/entertainment) -"atH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"atI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/security) -"atO" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Science - Xenobiology Lower South"; - dir = 6; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"atR" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) -"auE" = ( -/obj/structure/sign/warning/vacuum/directional/north, -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/left) -"auG" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/plastic, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"auW" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"avr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"avX" = ( -/obj/machinery/computer/warrant{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron, -/area/station/security/brig) -"awi" = ( -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"awB" = ( -/obj/machinery/camera{ - c_tag = "Security - Interrogation Main"; - dir = 9; - network = list("ss13","Security","interrogation") - }, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"awE" = ( -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"awK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/warning/secure_area/directional/north{ - name = "HIGH SECURITY STORAGE" - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"awN" = ( -/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, -/area/station/ai_monitored/command/storage/eva) -"awS" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"awX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"awY" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/iron/smooth, -/area/station/hallway/primary/tram/right) -"axs" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/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/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"axP" = ( -/obj/structure/kitchenspike, -/turf/open/floor/iron/showroomfloor, -/area/station/service/kitchen/coldroom) -"ayk" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"ayo" = ( -/obj/machinery/door/airlock/security{ - name = "Interrogation" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "interro-court" - }, -/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/general, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"ayE" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/explab) -"ayW" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"azd" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"azm" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 1; - height = 4; - name = "escape pod loader"; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/turf/open/space/openspace, -/area/space) -"azp" = ( -/obj/structure/easel, -/obj/item/canvas/nineteen_nineteen, -/turf/open/misc/asteroid/airless, -/area/mine/explored) -"azu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) -"azy" = ( -/obj/effect/turf_decal/siding/thinplating, -/turf/open/floor/glass/reinforced, -/area/station/security/brig) -"azK" = ( -/obj/structure/disposalpipe/trunk/multiz{ - dir = 1 - }, -/obj/machinery/door/window/left/directional/north{ - dir = 2; - name = "Containment Pen #1"; - req_access = list("xenobiology") - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiotopleft"; - name = "Xenobio Topleft Pen Blast Door" - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"azX" = ( -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/maintenance/radshelter/civil) -"aAc" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - 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/freezer, -/area/station/medical/coldroom) -"aAr" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"aAx" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/obj/machinery/airalarm/mixingchamber{ - dir = 1; - pixel_y = 24 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/freezerchamber) -"aAA" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"aAB" = ( -/obj/effect/landmark/start/head_of_security, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"aAD" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 4 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Secure - AI Minisat Chargebay"; - network = list("ss13","minisat") - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"aBs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/vacuum/directional/south, -/obj/machinery/light/small/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/center) -"aBM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"aBX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) -"aCe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"aCf" = ( -/obj/effect/turf_decal/sand/plating, -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"aCX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/mid) -"aCY" = ( -/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, -/area/station/science/robotics/lab) -"aDg" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"aDk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"aDv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"aDz" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"aDE" = ( -/obj/machinery/modular_computer/console/preset/cargochat/service, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"aDL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"aEo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"aEr" = ( -/obj/structure/table, -/obj/machinery/airalarm/directional/north, -/obj/item/ai_module/reset{ - pixel_y = 8; - pixel_x = 2 - }, -/obj/item/ai_module/supplied/freeform{ - pixel_x = -1 - }, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) -"aEK" = ( -/obj/structure/bookcase/random, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron, -/area/station/security/prison) -"aER" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"aET" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"aEU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lower) -"aEZ" = ( -/obj/machinery/door/airlock{ - id_tag = "private_e"; - name = "Private Quarters E" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"aFo" = ( -/turf/closed/wall, -/area/station/cargo/qm) -"aFq" = ( -/obj/machinery/atmospherics/components/binary/valve/digital/on{ - dir = 4; - name = "Output Release" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"aFs" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"aFx" = ( -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = 28 - }, -/obj/structure/sign/directions/medical{ - dir = 8; - pixel_y = 34 - }, -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = 40 - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw{ - dir = 1 - }, -/obj/structure/sign/directions/upload{ - pixel_y = 22 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"aFL" = ( -/obj/effect/turf_decal/tile{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"aFR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/cargo/storage) -"aGe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/status_display/ai/directional/north, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) -"aGf" = ( -/obj/effect/turf_decal/stripes, -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/sign/warning/test_chamber/directional/south, -/turf/open/floor/iron, -/area/station/science/ordnance/testlab) -"aGg" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/station/solars/starboard) -"aGq" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/department/security) -"aGA" = ( -/obj/structure/cable, -/turf/open/floor/wood/large, -/area/station/service/library) -"aGK" = ( -/obj/structure/filingcabinet, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"aHf" = ( -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"aHm" = ( -/obj/structure/chair/plastic{ - dir = 8 - }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/mine/explored) -"aHA" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 5 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit) -"aHD" = ( -/obj/structure/table/wood, -/obj/item/radio/intercom/directional/north, -/obj/item/modular_computer/laptop/preset/civilian, -/turf/open/floor/wood/large, -/area/station/service/library) -"aHW" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"aIb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/genetics) -"aIf" = ( -/obj/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/security/brig) -"aIi" = ( -/turf/open/floor/iron, -/area/station/security/prison/work) -"aIo" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/taperecorder, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hos) -"aIA" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/closed/wall, -/area/station/cargo/sorting) -"aIL" = ( -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/sand/plating, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"aIT" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"aJg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"aJk" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"aJz" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"aKi" = ( -/obj/effect/turf_decal/sand/plating, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"aKm" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"aKp" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"aKv" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/structure/railing, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw{ - dir = 1 - }, -/obj/machinery/vending/cigarette, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"aKA" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"aKC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/spawner/random/trash/garbage{ - spawn_loot_count = 2; - spawn_random_offset = 1; - spawn_scatter_radius = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/left) -"aKQ" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"aLk" = ( -/obj/structure/rack, -/obj/item/gun/energy/e_gun/dragnet, -/obj/item/gun/energy/e_gun/dragnet, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/melee/hammer, -/obj/item/melee/hammer, -/obj/item/melee/hammer, -/obj/item/melee/hammer, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"aLw" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/iron, -/area/station/science/ordnance/storage) -"aLB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/captain/private) -"aMc" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"aMn" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate_empty, -/obj/effect/spawner/random/maintenance/three, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"aMo" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"aMz" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/food_or_drink/refreshing_beverage, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"aMD" = ( -/obj/machinery/button/tram{ - id = "left_part" - }, -/turf/closed/wall, -/area/station/hallway/primary/tram/left) -"aMI" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"aMU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"aMV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/light/directional/west, -/obj/structure/cable/layer1, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"aNd" = ( -/obj/machinery/meter{ - name = "Mixed Air Tank Out" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"aNm" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/holosign/barrier/atmos/sturdy, -/obj/machinery/camera/directional/south{ - c_tag = "Hallway - North-East Tram Bridge" - }, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/center) -"aNu" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/aisat_interior"; - name = "AI Antechamber turret control"; - pixel_y = -25 - }, -/turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"aNv" = ( -/obj/structure/disposalpipe/segment, -/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, -/area/station/tcommsat/computer) -"aNw" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/layer3, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"aND" = ( -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/corner, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"aNH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/fluff/paper/stack, -/turf/open/floor/plating, -/area/station/maintenance/tram/right) -"aNJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/left) -"aNP" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"aOn" = ( -/turf/closed/wall, -/area/station/engineering/storage/tech) -"aOp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/cook, -/turf/open/floor/iron/white, -/area/station/service/kitchen) -"aOu" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/service/bar) -"aOL" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"aOR" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/light_switch/directional/north, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/processing) -"aOS" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"aPh" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"aPO" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/trimline/white/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"aPP" = ( -/obj/machinery/computer/monitor{ - name = "Bridge Power Monitoring Console" - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Command - Bridge North"; - dir = 9 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"aPQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"aQo" = ( -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/box, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/hallway/primary/central) -"aQw" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"aQL" = ( -/obj/effect/turf_decal/siding/wideplating/corner{ - dir = 8 - }, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) -"aQU" = ( -/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/chapel{ - dir = 8 - }, -/area/station/service/chapel) -"aRi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"aRk" = ( -/obj/machinery/vending/security, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"aRl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"aRx" = ( -/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/engineering/main) -"aRA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"aRD" = ( -/obj/structure/sign/warning/vacuum/directional/north, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/center) -"aRM" = ( -/obj/machinery/flasher/directional/north{ - id = "reeducation" - }, -/turf/open/floor/iron/textured_large, -/area/station/security/execution/education) -"aRN" = ( -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/mine/explored) -"aSe" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/closet/wardrobe/black, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"aSi" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wideplating{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wideplating, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock/oresilo) -"aSo" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 - }, -/obj/machinery/status_display/supply{ - pixel_y = 32 - }, -/obj/machinery/conveyor{ - dir = 5; - id = "QMLoad" - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"aSw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"aSG" = ( -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"aST" = ( -/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/cable, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"aTb" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"aTj" = ( -/obj/structure/table/reinforced, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/machinery/requests_console/directional/north{ - department = "AI"; - departmentType = 5; - name = "AI Requests Console" - }, -/obj/structure/cable/multilayer/connected, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"aTl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/space_heater, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"aTr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/left) -"aTt" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness) -"aTz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/station/maintenance/department/medical) -"aTA" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 5 - }, -/obj/item/kirbyplants, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"aUi" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"aUo" = ( -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/docking_port/stationary{ - dheight = 3; - dir = 2; - dwidth = 8; - height = 11; - id = "ferry_home"; - name = "Port Bay 2"; - width = 20 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"aUp" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"aUt" = ( -/obj/machinery/computer/camera_advanced/base_construction/aux, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"aUA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"aUP" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron, -/area/station/commons/dorms) -"aVd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"aVp" = ( -/obj/structure/flora/bush/lavendergrass/style_random, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/station/science/genetics) -"aVB" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/holosign/barrier/atmos/sturdy, -/obj/effect/landmark/event_spawn, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/right) -"aVE" = ( -/obj/machinery/rnd/server/master, -/turf/open/floor/circuit/telecomms/server, -/area/station/science/server) -"aVM" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - 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, -/area/station/commons/dorms) -"aWf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation/entertainment) -"aWh" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"aWp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/sand/plating, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating/airless, -/area/mine/explored) -"aWt" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"aWy" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"aWD" = ( -/turf/open/floor/iron/stairs/medium{ - dir = 1 - }, -/area/station/service/hydroponics) -"aXc" = ( -/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/chapel) -"aXg" = ( -/obj/machinery/door/airlock{ - id_tag = "private_q"; - name = "Private Quarters Q" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/commons/dorms) -"aXm" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/holosign/barrier/atmos/sturdy, -/obj/effect/landmark/event_spawn, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/left) -"aXo" = ( -/obj/structure/punching_bag, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/fitness) -"aXr" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/glass, -/area/station/service/kitchen/diner) -"aXC" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"aXD" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 6 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"aXM" = ( -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"aXZ" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/quartermaster, -/turf/open/floor/carpet, -/area/station/cargo/qm) -"aYg" = ( -/obj/structure/closet/crate/silvercrate, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot_white/right, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"aYr" = ( -/turf/open/space/openspace, -/area/space) -"aYA" = ( -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"aYB" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/firealarm/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"aYF" = ( -/turf/closed/wall, -/area/station/engineering/main) -"aYG" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/paper_bin/carbon{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/stamp/qm, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/station/cargo/qm) -"aYN" = ( -/obj/structure/reflector/box/anchored{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"aYT" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"aYX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cmoshutter"; - name = "CMO Office Shutters"; - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/command/heads_quarters/cmo) -"aZg" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Pure to Mix" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"aZu" = ( -/obj/effect/spawner/random/structure/crate, -/obj/item/relic, -/turf/open/misc/asteroid/airless, -/area/mine/explored) -"aZX" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"bar" = ( -/obj/structure/industrial_lift/tram{ - icon_state = "titanium_blue" - }, -/obj/structure/chair/comfy/shuttle, -/obj/structure/fluff/tram_rail, -/turf/open/openspace, -/area/station/hallway/primary/tram/center) -"baI" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/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, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"baN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/right) -"bbj" = ( -/turf/closed/wall, -/area/station/engineering/break_room) -"bbz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"bbT" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/station/science/ordnance/burnchamber) -"bbZ" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"bcq" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"bcv" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"bcV" = ( -/obj/structure/table, -/obj/item/plant_analyzer, -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"bcZ" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - 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) -"bdz" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Civilian - Recreational Area South" - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"bdJ" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"bdK" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/effect/landmark/start/chief_medical_officer, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"bdM" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/rack, -/obj/effect/spawner/random/clothing/costume, -/obj/item/clothing/mask/balaclava, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"bdR" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"bdW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"beg" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/port/central) -"bek" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"beB" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/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/ordnance/office) -"beG" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/lesser) -"beJ" = ( -/obj/machinery/atmospherics/components/unary/passive_vent{ - dir = 4; - name = "killroom vent" - }, -/turf/open/floor/circuit/telecomms, -/area/station/science/xenobiology) -"beO" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/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/south, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"bfr" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/holosign/barrier/atmos/sturdy, -/obj/structure/fluff/tram_rail/floor{ - dir = 1 - }, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/center) -"bfu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/secondary/entry) -"bfE" = ( -/obj/item/stack/medical/mesh, -/obj/item/stack/medical/gauze, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/structure/table/glass, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"bfF" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/computer/department_orders/science{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/explab) -"bfG" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"bfM" = ( -/obj/structure/lattice, -/turf/open/openspace/airless/planetary, -/area/space/nearstation) -"bfP" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/purple/filled/line, -/turf/open/floor/iron/white, -/area/station/science/research) -"bfY" = ( -/obj/machinery/duct, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/cigbutt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"bgb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Security Maintenance Hatch" - }, -/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/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/security) -"bge" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/food_packaging, -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"bgg" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"bgn" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 8 - }, -/obj/machinery/recharger, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"bgo" = ( -/obj/structure/closet/crate/bin, -/obj/effect/spawner/random/contraband/prison, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/sign/poster/official/get_your_legs{ - pixel_y = -32 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"bhk" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/hallway/primary/tram/left) -"bhn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"bhp" = ( -/mob/living/carbon/human/species/monkey, -/turf/open/misc/asteroid, -/area/station/science/genetics) -"bhr" = ( -/turf/closed/wall/rock/porous, -/area/station/security/prison/workout) -"bhA" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Medical - Main East"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"bhG" = ( -/obj/machinery/door/airlock/hatch{ - name = "Ladder Access Hatch" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/left) -"bhY" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/white, -/area/station/science/research) -"bia" = ( -/obj/machinery/light/directional/east, -/obj/machinery/modular_computer/console/preset/engineering{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"bic" = ( -/obj/machinery/light/directional/north, -/obj/structure/table, -/obj/item/storage/medkit/regular{ - pixel_x = 6; - pixel_y = -5 - }, -/obj/machinery/status_display/supply{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Cargo - Main Office"; - dir = 9; - network = list("ss13","cargo") - }, -/obj/item/multitool, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/office) -"bin" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/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/white, -/area/station/medical/virology) -"bix" = ( -/obj/effect/turf_decal/tile, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Arrivals - Auxilliary Bay Doors" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"biz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"biC" = ( -/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/freezer, -/area/station/commons/toilet) -"biP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 8 - }, -/obj/machinery/meter, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"biV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/service/chapel) -"biX" = ( -/obj/structure/industrial_lift/tram{ - icon_state = "titanium" - }, -/obj/structure/fluff/tram_rail{ - dir = 1 - }, -/turf/open/openspace, -/area/station/hallway/primary/tram/center) -"bju" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/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, -/area/station/science/lab) -"bjz" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/service/kitchen) -"bjA" = ( -/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/iron, -/area/station/engineering/atmospherics_engine) -"bjF" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"bjK" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/structure/closet/secure_closet/security/cargo, -/obj/item/clothing/mask/whistle, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"bjN" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"bjQ" = ( -/obj/machinery/research/anomaly_refinery, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"bjX" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"bkd" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"bkl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/dorms) -"bkm" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/obj/machinery/camera/directional/north{ - c_tag = "Civilian - Recreational Area North-East" - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"bkv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"bkD" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"bkH" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"bkM" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"bkP" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"bkQ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "pharmacy_shutters_2"; - name = "Pharmacy Shutters"; - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/left/directional/south{ - name = "Chemistry Desk"; - req_access = list("pharmacy") - }, -/obj/structure/desk_bell{ - pixel_x = -7 - }, -/turf/open/floor/iron, -/area/station/medical/pharmacy) -"bkT" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/sign/poster/ripped{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/duct, -/turf/open/floor/iron/freezer, -/area/station/commons/lounge) -"bkX" = ( -/obj/machinery/door/poddoor/massdriver_ordnance, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/station/science/ordnance/testlab) -"blo" = ( -/obj/structure/filingcabinet/security, -/obj/machinery/button/door/directional/east{ - id = "outerbrigright"; - name = "Outer Brig Door Toggle"; - normaldoorcontrol = 1; - pixel_y = -8; - req_access = list("security") - }, -/obj/machinery/button/door/directional/east{ - id = "innerbrigright"; - name = "Inner Brig Door Toggle"; - normaldoorcontrol = 1; - pixel_y = 8; - req_access = list("security") - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"blu" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"blw" = ( -/obj/item/radio/intercom/chapel/directional/east, -/obj/structure/chair/wood, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/wood/tile, -/area/station/service/chapel) -"blx" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison) -"blB" = ( -/obj/effect/turf_decal/tile{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"blX" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/machinery/requests_console/directional/north{ - department = "Kitchen"; - name = "Kithen Requests Console" - }, -/obj/machinery/camera{ - c_tag = "Service - Kitchen North"; - dir = 9; - network = list("ss13","Service") - }, -/turf/open/floor/iron/white, -/area/station/service/kitchen) -"bmb" = ( -/obj/structure/window/reinforced, -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"bmE" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/spawner/random/trash/graffiti{ - pixel_y = 32; - spawn_loot_chance = 50 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"bmF" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"bmW" = ( -/obj/structure/chair/sofa/right{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"bnt" = ( -/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/cable, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"bnx" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electric_shock/directional/south, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"bnD" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"bnF" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/mine/explored) -"bnK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"bnN" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/bottle/beer{ - pixel_x = -8 - }, -/turf/open/floor/plating/airless, -/area/mine/explored) -"bnS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lower) -"bnU" = ( -/obj/machinery/door/airlock/command{ - name = "Gateway Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/command/gateway, -/turf/open/floor/iron, -/area/station/command/gateway) -"bog" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"bom" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"bou" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/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, -/area/station/security/execution/transfer) -"boz" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"boI" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - 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, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"boQ" = ( -/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/siding/wood, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/service/theater) -"boR" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/service/lawoffice) -"boS" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"boY" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"bpa" = ( -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/requests_console/directional/west{ - department = "Robotics"; - departmentType = 2; - name = "Robotics Requests Console"; - receive_ore_updates = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"bpi" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/table, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"bpl" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"bpo" = ( -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"bpp" = ( -/obj/structure/sign/poster/official/space_cops{ - pixel_y = 32 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"bpv" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"bpw" = ( -/obj/machinery/light/dim/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"bpU" = ( -/obj/structure/bed{ - dir = 8 - }, -/obj/item/bedsheet/dorms, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"bqs" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"bqv" = ( -/obj/machinery/vending/assist, -/obj/machinery/requests_console/directional/east{ - department = "Tool Storage"; - name = "Tool Department Requests Console" - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"bqy" = ( -/obj/structure/closet/secure_closet/security/engine, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/item/clothing/mask/whistle, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"bqA" = ( -/obj/effect/turf_decal/sand/plating, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/delivery, -/obj/effect/spawner/random/structure/crate_empty, -/obj/item/storage/toolbox/mechanical, -/obj/item/stack/sheet/iron/twenty, -/obj/item/stock_parts/cell/high, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"bqG" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"bqL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/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/security/prison) -"bqW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Security - Detective's Office"; - dir = 9; - network = list("ss13","Security") - }, -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"bra" = ( -/turf/closed/wall/r_wall, -/area/station/science/ordnance/storage) -"brm" = ( -/turf/open/openspace, -/area/station/hallway/primary/tram/right) -"brr" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/structure/fluff/tram_rail/floor, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/tram/center) -"brG" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"brQ" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"bsf" = ( -/obj/structure/chair, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"bsi" = ( -/obj/effect/turf_decal/trimline/purple/filled/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/iron/white, -/area/station/science/research) -"bso" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/department/crew_quarters/dorms) -"bst" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"bsu" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/corner, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"bsv" = ( -/obj/structure/rack, -/obj/machinery/light/small/directional/north, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/micro_laser, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) -"bsx" = ( -/obj/machinery/light/directional/north, -/obj/structure/sign/painting/library{ - pixel_y = 32 - }, -/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, -/area/station/service/theater) -"bsE" = ( -/obj/structure/table/glass, -/obj/item/storage/secure/briefcase, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"bsK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing, -/turf/open/floor/plating, -/area/station/maintenance/tram/right) -"btw" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"btz" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"btA" = ( -/obj/machinery/computer/med_data{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"btC" = ( -/obj/structure/window/spawner, -/obj/structure/flora/bush/flowers_yw/style_random, -/turf/open/floor/grass, -/area/station/common/cryopods) -"btO" = ( -/obj/machinery/rnd/server, -/turf/open/floor/circuit/telecomms/server, -/area/station/science/server) -"buy" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"buB" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/service/chapel/monastery) -"buH" = ( -/turf/open/floor/iron/dark, -/area/station/science/server) -"buM" = ( -/turf/closed/wall/r_wall, -/area/station/science/research) -"buQ" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/machinery/status_display/evac/directional/east, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"buS" = ( -/obj/machinery/button/door/directional/west{ - id = "private_o"; - name = "Privacy Bolts"; - normaldoorcontrol = 1; - pixel_y = -9; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/commons/dorms) -"buT" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/effect/turf_decal/trimline/neutral/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/hangover, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"buV" = ( -/turf/closed/wall, -/area/station/security/courtroom) -"buW" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/machinery/smartfridge/chemistry/virology/preloaded, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"buX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/south, -/obj/item/radio/intercom/prison/directional/south, -/turf/open/floor/iron, -/area/station/security/prison) -"bvk" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/iron, -/area/station/cargo/miningdock/cafeteria) -"bvm" = ( -/obj/structure/chair/sofa/corner{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/science/breakroom) -"bvH" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table, -/obj/machinery/microwave{ - pixel_y = 6 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock/cafeteria) -"bvI" = ( -/obj/machinery/vending/wardrobe/engi_wardrobe, -/obj/structure/sign/poster/official/safety_eye_protection{ - pixel_x = 32 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"bvK" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"bvM" = ( -/obj/machinery/computer/mech_bay_power_console, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"bvN" = ( -/obj/item/shovel, -/obj/item/storage/bag/ore, -/turf/open/misc/asteroid/airless, -/area/mine/explored) -"bvP" = ( -/obj/machinery/firealarm/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"bvT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron, -/area/service/salon) -"bwd" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"bwf" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/storage/eva) -"bwi" = ( -/obj/item/target, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"bwo" = ( -/obj/item/radio/intercom{ - pixel_y = -29 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"bwv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"bwC" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/structure/displaycase/forsale/kitchen, -/turf/open/floor/iron, -/area/station/service/bar) -"bwJ" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lower) -"bwM" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"bwV" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) -"bxh" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/effect/turf_decal/trimline/neutral/filled/warning, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"bxm" = ( -/obj/effect/turf_decal/trimline/neutral/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{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"bxp" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"bxq" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/effect/turf_decal/trimline/neutral/filled/warning, -/obj/structure/sign/departments/science/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"bxs" = ( -/obj/structure/industrial_lift/tram{ - icon_state = "titanium_blue" - }, -/obj/structure/chair/comfy/shuttle{ - dir = 1 - }, -/obj/structure/fluff/tram_rail{ - dir = 1 - }, -/turf/open/openspace, -/area/station/hallway/primary/tram/center) -"bxt" = ( -/obj/machinery/door/airlock/command/glass{ - name = "EVA Storage" - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/command/eva, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"bxC" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"bxH" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/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, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"bxV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/service/theater) -"byf" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/landmark/start/scientist, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"byu" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/structure/mirror/directional/east, -/obj/machinery/airalarm/directional/north, -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/freezer, -/area/station/commons/lounge) -"byG" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"byO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electric_shock/directional/north, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/left) -"byX" = ( -/obj/structure/railing{ - dir = 10 - }, -/turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"byY" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner, -/obj/effect/turf_decal/trimline/brown/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, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"bzc" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/siding/thinplating/dark/corner, -/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/machinery/duct, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"bzd" = ( -/obj/structure/tank_dispenser, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"bze" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"bzj" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"bzz" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"bzG" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"bzM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"bzP" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"bzT" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/lesser) -"bAf" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"bAq" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/effect/spawner/random/clothing/bowler_or_that, -/turf/open/floor/iron, -/area/station/service/bar) -"bAQ" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/effect/landmark/start/psychologist, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"bAS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"bAX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/door/airlock/security/glass{ - name = "Isolation Cell D" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"bBb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/requests_console/directional/north{ - announcementConsole = 1; - department = "Telecomms Admin"; - departmentType = 5; - name = "Telecomms Requests Console" - }, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"bBc" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/machinery/disposal/bin{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/auxlab) -"bBh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"bBr" = ( -/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, -/area/station/cargo/miningdock) -"bBs" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"bBy" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/structure/table/reinforced, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/blood_filter, -/obj/machinery/light_switch/directional/east{ - pixel_x = 22; - pixel_y = -9 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/fore) -"bBM" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/structure/railing, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_cw{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"bBX" = ( -/obj/effect/turf_decal/trimline/neutral/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, -/area/station/hallway/secondary/exit) -"bCc" = ( -/obj/machinery/status_display/evac/directional/north, -/turf/open/misc/asteroid, -/area/station/security/prison/workout) -"bCj" = ( -/obj/machinery/door/window{ - name = "HoP's Desk"; - req_access = list("hop") - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hop) -"bCm" = ( -/obj/structure/chair/plastic, -/obj/machinery/light/blacklight/directional/north, -/turf/open/floor/eighties/red, -/area/station/commons/fitness/recreation/entertainment) -"bCp" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/white/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"bCu" = ( -/obj/structure/mirror/directional/north, -/obj/structure/sink{ - pixel_y = 17 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/captain/private) -"bCR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"bCT" = ( -/obj/machinery/computer/security/mining{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"bDo" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrigright"; - name = "Brig" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig_right" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/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/brig) -"bDq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "holodeck" - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"bDu" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Treatment Center" - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/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/medical/general, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"bDz" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"bDJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/port/aft) -"bEe" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/chief_engineer, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"bEh" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/filled/warning{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"bEi" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"bEn" = ( -/obj/structure/lattice/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/tram/right) -"bEo" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 9 - }, -/obj/effect/landmark/start/hangover/closet, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit) -"bEt" = ( -/obj/structure/fluff/tram_rail/anchor, -/turf/open/openspace, -/area/station/hallway/primary/tram/left) -"bEB" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 1 - }, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"bEH" = ( -/obj/docking_port/stationary{ - dheight = 4; - dir = 2; - dwidth = 4; - height = 9; - id = "aux_base_zone"; - name = "Aux Base Zone"; - roundstart_template = /datum/map_template/shuttle/aux_base/default; - width = 9 - }, -/turf/open/floor/plating, -/area/station/construction/mining/aux_base) -"bEM" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"bEV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/service/chapel/monastery) -"bFd" = ( -/turf/open/floor/plating, -/area/mine/explored) -"bFf" = ( -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/corner, -/obj/structure/ladder, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bFq" = ( -/turf/closed/wall, -/area/station/medical/psychology) -"bFF" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood/large, -/area/station/service/library) -"bFN" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/science/ordnance/storage) -"bFS" = ( -/obj/structure/cable/multilayer/multiz, -/obj/structure/sign/warning/electric_shock/directional/west, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/tram/right) -"bGr" = ( -/obj/structure/closet/secure_closet/cytology, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"bGu" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "forestarboard"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plating/airless, -/area/station/solars/starboard) -"bGE" = ( -/obj/structure/lattice/catwalk, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "Test Chamber Blast Door" - }, -/turf/open/openspace, -/area/station/science/xenobiology) -"bGI" = ( -/obj/structure/chair/comfy/beige{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"bGV" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 5 - }, -/obj/structure/table, -/obj/item/stack/sheet/cardboard, -/obj/item/food/donkpocket/pizza, -/obj/machinery/camera/directional/east{ - c_tag = "Medical - Virology Break Room"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"bHb" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/corner, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"bHc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "left_tram_lower"; - name = "Tunnel Access Blast Door" - }, -/obj/machinery/door/airlock/hatch, -/turf/open/floor/plating, -/area/station/maintenance/tram/mid) -"bHv" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/lesser) -"bHy" = ( -/obj/effect/turf_decal/bot/right, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmospherics_engine) -"bHK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/spawner/random/engineering/tool, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/science) -"bHL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"bHO" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/item/reagent_containers/glass/watering_can, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"bHP" = ( -/obj/machinery/computer/station_alert{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/structure/sign/poster/official/build{ - pixel_x = 32 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"bHQ" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"bHS" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/genetics) -"bIa" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/machinery/light/directional/west, -/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, -/area/station/commons/dorms) -"bId" = ( -/obj/item/radio/intercom/directional/west, -/obj/structure/table/reinforced/rglass, -/obj/item/reagent_containers/spray/quantum_hair_dye{ - pixel_x = 6 - }, -/obj/item/lipstick/random, -/turf/open/floor/iron, -/area/service/salon) -"bIp" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"bIq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/cable_coil/cut, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"bIw" = ( -/obj/effect/landmark/start/ai/secondary, -/obj/item/radio/intercom/directional/north{ - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = 6 - }, -/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 = 6 - }, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"bIA" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"bII" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/neutral/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, -/area/station/commons/fitness/recreation) -"bIJ" = ( -/obj/structure/bodycontainer/crematorium{ - dir = 8; - id = "crematoriumChapel" - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"bIK" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"bIY" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_cw{ - dir = 1 - }, -/obj/effect/turf_decal/caution{ - dir = 1 - }, -/obj/structure/railing/corner, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"bJb" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"bJc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/mob/living/simple_animal/bot/secbot/pingsky{ - dir = 1 - }, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bJl" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/structure/reagent_dispensers/watertank/high, -/obj/item/reagent_containers/glass/watering_can, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"bJp" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/obj/machinery/newscaster/directional/north, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/camera{ - c_tag = "Hallway - Top Left Service"; - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"bJJ" = ( -/mob/living/simple_animal/bot/floorbot, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"bJN" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"bJT" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/machinery/newscaster/directional/west, -/obj/effect/landmark/start/lawyer, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"bKn" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/security/prison/work) -"bKq" = ( -/obj/structure/fluff/tram_rail/floor{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/tram/left) -"bKt" = ( -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"bKE" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/fitness) -"bKL" = ( -/obj/machinery/button/door/directional/west{ - id = "private_g"; - name = "Privacy Bolts"; - normaldoorcontrol = 1; - pixel_y = -9; - specialfunctions = 4 - }, -/obj/structure/chair/stool/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/dorms) -"bKU" = ( -/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) -"bLe" = ( -/turf/open/floor/carpet, -/area/station/service/library) -"bLk" = ( -/obj/structure/table, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"bLl" = ( -/obj/structure/weightmachine/stacklifter, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"bLP" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/meter, -/obj/machinery/airalarm/engine{ - pixel_y = -24 - }, -/obj/structure/cable/layer3, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"bLQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/closet{ - name = "janitorial supplies" - }, -/obj/item/pushbroom, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"bLR" = ( -/obj/structure/closet/lasertag/red, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/landmark/start/hangover/closet, -/obj/machinery/light/blacklight/directional/east, -/obj/structure/sign/poster/official/random/directional/east, -/turf/open/floor/iron/dark/smooth_large, -/area/station/commons/fitness/recreation/entertainment) -"bLT" = ( -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 4 - }, -/obj/structure/bed/dogbed/mcgriff, -/mob/living/simple_animal/pet/dog/pug/mcgriff, -/turf/open/floor/glass/reinforced, -/area/station/security/warden) -"bMb" = ( -/turf/closed/wall, -/area/station/hallway/primary/tram/right) -"bMc" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/right) -"bMg" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmospherics_engine) -"bMo" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"bMC" = ( -/obj/machinery/door/airlock/hatch, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/right) -"bMG" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/computer/pod/old/mass_driver_controller/chapelgun{ - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/service/chapel/monastery) -"bMN" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "Engineering Security Door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/engineering/main) -"bMP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/item/kirbyplants/random, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/science/breakroom) -"bMQ" = ( -/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, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/lesser) -"bMT" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"bMX" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"bNh" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/machinery/newscaster/directional/east, -/obj/effect/landmark/start/lawyer, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"bNm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"bNz" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/atmospherics_engine) -"bNF" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/station/command/bridge) -"bNR" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/item/clothing/suit/hooded/wintercoat/engineering, -/turf/open/floor/iron, -/area/station/engineering/main) -"bNV" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/telescreen/entertainment/directional/west, -/turf/open/floor/wood/large, -/area/station/service/library) -"bNX" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/table/glass, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/storage/box/masks, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"bOj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/freezer, -/area/station/science/lower) -"bOm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"bOr" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_cw, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"bOs" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig) -"bOC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/item/wirecutters, -/turf/open/floor/iron, -/area/station/maintenance/port/central) -"bOO" = ( -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/reagent_dispensers/water_cooler, -/obj/machinery/firealarm/directional/south, -/obj/structure/cable, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/science/breakroom) -"bOR" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/item/assembly/mousetrap, -/obj/item/food/deadmouse, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"bOV" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/holosign/barrier/atmos/sturdy, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/left) -"bPf" = ( -/obj/item/stack/ore/glass, -/turf/open/misc/asteroid, -/area/station/science/genetics) -"bPj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"bPo" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness) -"bPp" = ( -/obj/structure/sign/poster/official/do_not_question{ - pixel_y = 32 - }, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"bPq" = ( -/obj/effect/turf_decal/trimline/neutral/warning, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"bPu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/tram/right) -"bPE" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/door/airlock/glass{ - name = "Break Room" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron, -/area/station/cargo/miningdock/cafeteria) -"bPK" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/food_packaging, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/central) -"bPY" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/holosign/barrier/atmos/sturdy, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/right) -"bQb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"bQt" = ( -/obj/machinery/button/door/directional/west{ - id = "private_q"; - name = "Privacy Bolts"; - normaldoorcontrol = 1; - pixel_y = 9; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/commons/dorms) -"bQH" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Hallway - Lower Right Command" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"bQL" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"bQQ" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"bRe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/tram/left) -"bRf" = ( -/obj/structure/table/reinforced, -/obj/item/computer_hardware/hard_drive/portable/engineering, -/obj/item/computer_hardware/hard_drive/portable/engineering, -/obj/item/computer_hardware/hard_drive/portable/engineering, -/obj/item/computer_hardware/hard_drive/portable/atmos, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"bRm" = ( -/obj/machinery/door/airlock/research{ - glass = 1; - name = "Slime Euthanization Chamber"; - opacity = 0 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"bRD" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"bRJ" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation B" - }, -/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/medical/virology, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"bRL" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/maintenance/radshelter/service) -"bRP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/lesser) -"bRS" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"bRX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/maintenance/port/central) -"bSc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/research{ - name = "Circuit Laboratory" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/research, -/turf/open/floor/iron, -/area/station/science/auxlab) -"bSd" = ( -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/wood/large, -/area/station/service/library) -"bSE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "rdoffice"; - name = "Research Director's Shutters" - }, -/turf/open/floor/plating, -/area/station/command/heads_quarters/rd) -"bSG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door_buttons/airlock_controller{ - idExterior = "mostleft_lower_eva_external"; - idInterior = "mostleft_lower_eva_internal"; - idSelf = "mostleft_lower_eva_airlock_control"; - name = "External Access Console"; - pixel_y = -24 - }, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/left) -"bSM" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/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, -/area/station/maintenance/tram/mid) -"bSP" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"bSS" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/hallway/secondary/command) -"bTg" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/south{ - c_tag = "Maintenance - West Tram Tunnel 2" - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"bTm" = ( -/obj/machinery/field/generator, -/turf/open/floor/plating, -/area/station/engineering/engine_smes) -"bTq" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/camera/directional/south{ - c_tag = "Science - Restroom"; - network = list("ss13","rd") - }, -/turf/open/floor/iron/freezer, -/area/station/science/lower) -"bTs" = ( -/obj/structure/mirror/directional/west, -/obj/structure/table/reinforced/rglass, -/obj/item/razor{ - pixel_x = -6 - }, -/obj/item/reagent_containers/spray/barbers_aid{ - pixel_x = 6 - }, -/turf/open/floor/iron, -/area/service/salon) -"bTx" = ( -/obj/effect/turf_decal/siding/thinplating, -/turf/open/floor/iron, -/area/station/cargo/storage) -"bTz" = ( -/obj/structure/rack, -/obj/item/tank/internals/oxygen, -/obj/item/clothing/mask/gas, -/obj/item/wrench, -/turf/open/floor/iron/smooth, -/area/station/maintenance/port/fore) -"bTA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"bTJ" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) -"bTP" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron, -/area/station/security/brig) -"bTT" = ( -/obj/structure/fluff/tram_rail/anchor{ - dir = 1 - }, -/turf/open/openspace, -/area/station/hallway/primary/tram/right) -"bTZ" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/miningdock/cafeteria) -"bUj" = ( -/obj/structure/table, -/obj/item/aicard, -/obj/item/ai_module/reset, -/obj/effect/turf_decal/trimline/white/filled/line, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"bUl" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/greater) -"bUt" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/obj/machinery/light/directional/north, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"bUT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"bVp" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"bVN" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 5 - }, -/turf/open/floor/glass/reinforced, -/area/station/security/brig) -"bVW" = ( -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"bWb" = ( -/obj/machinery/suit_storage_unit/hos, -/obj/machinery/keycard_auth/directional/east, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hos) -"bWo" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Robotics Lab" - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/robotics, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"bWq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"bWx" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"bWH" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/door/airlock/engineering{ - name = "Telecommunications" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "tcomms-entrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/engineering/main) -"bWN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"bWU" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/fore) -"bXb" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"bXp" = ( -/obj/item/toy/crayon/orange, -/obj/effect/decal/cleanable/crayon{ - icon_state = "i"; - name = "graffiti"; - paint_colour = "#FF9300"; - pixel_x = 8; - pixel_y = -32 - }, -/obj/effect/decal/cleanable/crayon{ - icon_state = "i"; - name = "graffiti"; - paint_colour = "#FF9300"; - pixel_x = 4; - pixel_y = -32 - }, -/obj/effect/decal/cleanable/crayon{ - icon_state = "i"; - name = "graffiti"; - paint_colour = "#FF9300"; - pixel_y = -32 - }, -/obj/effect/decal/cleanable/crayon{ - icon_state = "i"; - name = "graffiti"; - paint_colour = "#FF9300"; - pixel_x = -4; - pixel_y = -32 - }, -/obj/effect/decal/cleanable/crayon{ - icon_state = "x"; - name = "graffiti"; - paint_colour = "#FF9300"; - pixel_x = 4; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/station/engineering/main) -"bXB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation/entertainment) -"bXG" = ( -/obj/effect/turf_decal/sand/plating, -/obj/machinery/door/airlock/external{ - autoclose = 0; - frequency = 1449; - id_tag = "rightmost_lower_eva_external"; - name = "External Access" - }, -/obj/machinery/door_buttons/access_button{ - idDoor = "rightmost_lower_eva_external"; - idSelf = "rightmost_lower_eva_airlock_control"; - name = "External Access Button"; - pixel_y = -24 - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plating, -/area/station/hallway/primary/tram/right) -"bXW" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - name = "sorting disposal pipe (Xenobiology)"; - sortType = 28 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"bYa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"bYd" = ( -/obj/structure/chair/stool/bar/directional/south, -/obj/effect/landmark/start/assistant, -/turf/open/floor/eighties, -/area/station/commons/fitness/recreation/entertainment) -"bYg" = ( -/obj/structure/flora/bush/flowers_br/style_random, -/obj/structure/flora/bush/flowers_pp/style_random, -/obj/item/toy/plush/lizard_plushie{ - name = "Tends-The-Garden"; - desc = "A cute little lizard plushie. It has some soot on it." - }, -/turf/open/floor/grass, -/area/station/common/cryopods) -"bYk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/station/cargo/sorting) -"bYn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"bYu" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/commons/lounge) -"bYx" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"bYA" = ( -/obj/structure/table, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/iron, -/area/station/security/office) -"bYI" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"bYR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"bZi" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"bZo" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/secure_closet/medical1, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/command/gateway) -"bZu" = ( -/obj/structure/cable, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"bZy" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"bZG" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/corner, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"bZM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"bZR" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/greater) -"caa" = ( -/obj/item/target/alien/anchored, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/camera/preset/ordnance{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"cah" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/bottle/toxin{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/bottle/facid{ - name = "fluorosulfuric acid bottle"; - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/reagent_containers/glass/bottle/morphine{ - name = "nyquil bottle"; - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/syringe{ - pixel_y = 5 - }, -/turf/open/floor/iron/white, -/area/station/security/execution/education) -"cam" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"caw" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"cay" = ( -/obj/structure/rack, -/obj/item/stack/cable_coil/five, -/obj/item/storage/toolbox/electrical, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/left) -"caD" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 10 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"caG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/obj/machinery/door/airlock{ - name = "Water Closet" - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/department/medical) -"caK" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Maintenance - West Tram Tunnel 1"; - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"cbc" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/bot_white, -/obj/machinery/computer/piratepad_control/civilian{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"cbl" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 10 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"cbp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock{ - name = "Kitchen Acces" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"cbr" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/hallway/primary/tram/center) -"cbs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/light/small/directional/east, -/obj/structure/sign/poster/contraband/d_day_promo{ - pixel_x = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"cbu" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw, -/obj/effect/turf_decal/caution, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"cbG" = ( -/obj/effect/landmark/start/security_officer, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"cbV" = ( -/obj/effect/spawner/random/trash/soap{ - spawn_scatter_radius = 1 - }, -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"ccj" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/turf/open/floor/iron, -/area/station/cargo/office) -"ccs" = ( -/obj/machinery/dna_scannernew, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"ccx" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/multitool, -/obj/item/clothing/glasses/meson, -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"ccH" = ( -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"ccO" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/research) -"ccQ" = ( -/obj/machinery/computer/atmos_control/nocontrol/master{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ccX" = ( -/obj/machinery/vending/engivend, -/turf/open/floor/iron, -/area/station/engineering/main) -"cda" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"cdi" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk/multiz/down{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"cdy" = ( -/turf/open/floor/plating, -/area/station/cargo/storage) -"cdK" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron, -/area/station/commons/dorms) -"cdN" = ( -/obj/machinery/button/ignition/incinerator/atmos, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"cdT" = ( -/obj/structure/chair/stool/bar/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, -/area/station/security/prison) -"cdV" = ( -/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" - }, -/turf/open/floor/iron, -/area/station/common/cryopods) -"cen" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"cer" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"ces" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 - }, -/obj/structure/sign/poster/official/safety_internals{ - pixel_x = -32 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Cargo - Public Mining Dock"; - network = list("ss13","cargo") - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"cew" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor"; - name = "Supply Dock Loading Door" - }, -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad" - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"ceC" = ( -/obj/structure/table, -/obj/item/radio{ - pixel_x = -6; - pixel_y = -3 - }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = 9; - pixel_y = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/machinery/firealarm/directional/west{ - pixel_y = 5 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"ceI" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"cfk" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/power/apc/auto_name/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/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/port/fore) -"cfq" = ( -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 6 - }, -/obj/item/paper_bin{ - pixel_x = -3 - }, -/obj/item/pen{ - pixel_x = -3 - }, -/obj/item/folder/yellow{ - pixel_x = 4 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"cfu" = ( -/obj/structure/table/reinforced, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"cfy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/left) -"cfz" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"cfG" = ( -/obj/machinery/door/airlock{ - name = "Water Closet" - }, -/obj/machinery/duct, -/obj/effect/mapping_helpers/airlock/access/all/service/janitor, -/turf/open/floor/plating, -/area/station/service/janitor) -"cfR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"cfS" = ( -/obj/structure/industrial_lift/tram{ - icon_state = "titanium_blue" - }, -/obj/structure/fluff/tram_rail, -/obj/effect/landmark/start/hangover, -/obj/structure/chair/comfy/shuttle, -/turf/open/openspace, -/area/station/hallway/primary/tram/center) -"cfY" = ( -/obj/structure/table/wood, -/obj/machinery/light/dim/directional/north, -/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 - }, -/turf/open/floor/carpet, -/area/station/service/chapel/monastery) -"cgc" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/light/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Security - Main South"; - network = list("ss13","Security") - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"cgj" = ( -/obj/structure/chair/stool/bar/directional/east, -/obj/effect/turf_decal/trimline/neutral/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/machinery/bluespace_vendor/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"cgn" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/landmark/start/barber, -/turf/open/floor/iron, -/area/service/salon) -"cgs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/garbage{ - spawn_loot_count = 2; - spawn_random_offset = 1; - spawn_scatter_radius = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/station/maintenance/tram/right) -"cgA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"cgM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/machinery/light/directional/north, -/obj/item/screwdriver, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/central) -"cgN" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 9 - }, -/obj/item/storage/medkit/regular, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"cgR" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"cgX" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"cha" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Custom Agent's Office Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/customs, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"chg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"chs" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall, -/area/station/hallway/secondary/entry) -"cht" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"chE" = ( -/obj/machinery/light/dim/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"chH" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"chM" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/structure/railing, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"chV" = ( -/obj/item/storage/secure/safe/directional/south, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/closet/secure_closet/barber, -/turf/open/floor/iron, -/area/service/salon) -"chX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hos) -"cif" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"cih" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/spawner/random/trash/graffiti{ - pixel_y = -32; - spawn_loot_chance = 50 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"cit" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/structure/fluff/tram_rail/floor, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"ciy" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"ciA" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"ciF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/smooth, -/area/station/hallway/primary/tram/right) -"ciG" = ( -/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/red/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron, -/area/station/security/processing) -"cjd" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"cjq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/gravity_generator) -"cjr" = ( -/obj/machinery/air_sensor/ordnance_burn_chamber, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"cjs" = ( -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"cjv" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/camera/motion{ - c_tag = "Secure - AI Core South"; - dir = 9; - network = list("aicore") - }, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"cjx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/lesser) -"cjy" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/main) -"cjE" = ( -/obj/machinery/computer/robotics, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/command/heads_quarters/rd) -"cjG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"cjN" = ( -/obj/machinery/door/airlock/research{ - id_tag = "ResearchExt"; - name = "Research Division" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-entrance-left" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron, -/area/station/science/research) -"cjO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"cjT" = ( -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"cjW" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Secure - AI Upper Ring North"; - network = list("ss13","aicore") - }, -/turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"ckb" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/service/chapel) -"ckg" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/light/directional/south, -/obj/structure/cable, -/obj/structure/closet/wardrobe/mixed, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron, -/area/station/commons/fitness) -"cks" = ( -/obj/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/carpet, -/area/station/command/heads_quarters/hos) -"ckt" = ( -/obj/structure/table/wood, -/obj/item/paicard, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/wood/large, -/area/station/service/library) -"ckB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/research) -"ckH" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/tcomms_all, -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"ckM" = ( -/turf/closed/wall, -/area/station/service/hydroponics/garden) -"ckN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ckW" = ( -/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/directional/east, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"cli" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/item/experi_scanner{ - pixel_x = -4 - }, -/obj/item/experi_scanner{ - pixel_x = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"clu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"clE" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/filled/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/service/hydroponics) -"clM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"clT" = ( -/turf/closed/wall, -/area/station/security/checkpoint/medical) -"cmb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"cml" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"cmn" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"cmq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/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, -/area/station/maintenance/disposal) -"cmr" = ( -/turf/open/floor/iron/stairs/medium, -/area/station/engineering/transit_tube) -"cmM" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"cnv" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"cnA" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"cnE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"cnH" = ( -/obj/machinery/vending/wardrobe/bar_wardrobe, -/turf/open/floor/wood, -/area/station/service/bar) -"cnV" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"coz" = ( -/obj/machinery/computer/upload/ai{ - dir = 8 - }, -/obj/machinery/flasher/directional/east{ - id = "AI" - }, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) -"coM" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) -"coN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"coO" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/effect/turf_decal/trimline/neutral/corner, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"coU" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/turf/open/floor/wood, -/area/station/service/library) -"coZ" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"cpb" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 10 - }, -/obj/machinery/button/door/directional/west{ - id = "cytologylockdown"; - name = "Cytology Lockdown" - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"cpf" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/stripes/asteroid/line, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/mine/explored) -"cpg" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/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, -/area/station/commons/fitness/recreation) -"cpj" = ( -/obj/structure/rack, -/obj/item/tank/jetpack/carbondioxide{ - pixel_x = 4; - pixel_y = -1 - }, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/tank/jetpack/carbondioxide{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"cpl" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"cpn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/security) -"cpw" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/newscaster/directional/east, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"cpy" = ( -/obj/structure/table, -/obj/machinery/microwave, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"cpG" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"cpK" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Tunnel Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/greater) -"cpT" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"cqg" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"cqh" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/stool/directional/west, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/lounge) -"cql" = ( -/obj/machinery/door/airlock/security{ - name = "Security Checkpoint" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"cqn" = ( -/obj/structure/table, -/obj/machinery/camera/directional/south{ - c_tag = "Medical - Virology Patient Room A"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron, -/area/station/medical/virology) -"cqp" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/filled/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"cqy" = ( -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation/entertainment) -"cqK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"cqL" = ( -/obj/machinery/light/directional/south, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/machinery/modular_computer/console/preset/engineering{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"cqO" = ( -/obj/effect/turf_decal/trimline/white/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/white/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/white/filled/corner{ - dir = 8 - }, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/south, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"cqS" = ( -/obj/machinery/button/door/directional/south{ - id = "Sciencelockdown"; - name = "Science Lockdown Toggle"; - pixel_x = -6; - req_access = list("research") - }, -/obj/machinery/button/door/directional/south{ - id = "rndlab1"; - name = "Research Lab Shutter Control"; - pixel_x = 6; - req_access = list("research") - }, -/obj/machinery/button/door/directional/south{ - id = "xenobiomain"; - name = "Xenobiology Containmenr Blast Door"; - pixel_x = -6; - pixel_y = -34; - req_access = list("xenobiology") - }, -/obj/machinery/button/door/directional/south{ - id = "misclab"; - name = "Test Chamber Blast Doors"; - pixel_x = 6; - pixel_y = -34; - req_access = list("xenobiology") - }, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) -"cqT" = ( -/obj/structure/chair/plastic, -/obj/effect/landmark/start/assistant, -/turf/open/floor/eighties/red, -/area/station/commons/fitness/recreation/entertainment) -"cqZ" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - pixel_y = 2 - }, -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) -"crb" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"crq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"crr" = ( -/obj/structure/table/glass, -/obj/item/book/manual/wiki/cytology{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/biopsy_tool{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"cru" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"crz" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/iron, -/area/station/engineering/main) -"crL" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"crR" = ( -/obj/machinery/requests_console/directional/north{ - announcementConsole = 1; - department = "Head of Personnel's Desk"; - departmentType = 5; - name = "Head of Personnel's Requests Console" - }, -/obj/structure/table/wood, -/obj/item/storage/secure/briefcase{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/storage/box/silver_ids{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/assembly/flash/handheld{ - pixel_x = -8 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"cse" = ( -/obj/structure/table/wood, -/obj/item/food/baguette, -/turf/open/floor/iron/white/side{ - dir = 4 - }, -/area/station/service/theater) -"csL" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/sofa/corp/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/lounge) -"csM" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Gas to Cooling Loop" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"csP" = ( -/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, -/area/station/security/brig) -"csQ" = ( -/obj/machinery/camera{ - c_tag = "Security - Interrogation Observation"; - dir = 6; - network = list("ss13","Security") - }, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"csS" = ( -/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/cafeteria, -/area/station/security/prison/mess) -"csY" = ( -/obj/machinery/vending/coffee, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"csZ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating, -/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, -/area/station/hallway/primary/tram/center) -"ctd" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/cargo/storage) -"cts" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/structure/sign/gym/mirrored{ - pixel_y = -32 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"ctA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"ctC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"ctF" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"ctK" = ( -/obj/structure/falsewall, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"ctU" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrigleft"; - name = "Brig" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig_left" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/brig) -"ctW" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"cum" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/siding/thinplating/dark, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"cur" = ( -/obj/effect/turf_decal/trimline/yellow/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/pharmacy) -"cuG" = ( -/obj/structure/fluff/paper/stack{ - dir = 1 - }, -/obj/structure/fluff/paper/stack, -/obj/item/paper, -/obj/effect/decal/cleanable/dirt, -/obj/item/food/cheese/wheel, -/turf/open/floor/plating, -/area/station/maintenance/tram/right) -"cuX" = ( -/obj/item/stack/ore/glass, -/turf/open/misc/asteroid/airless, -/area/mine/explored) -"cvf" = ( -/obj/effect/turf_decal/trimline/neutral/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/commons/dorms) -"cvj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"cvv" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/service/kitchen) -"cvw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"cvA" = ( -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"cvF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 10 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/transit_tube) -"cvI" = ( -/obj/structure/table, -/obj/item/airlock_painter, -/obj/item/rcl/pre_loaded, -/obj/item/chisel{ - pixel_y = 7 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron, -/area/station/commons/storage/art) -"cvY" = ( -/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/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/interrogation) -"cwf" = ( -/turf/closed/wall/rock/porous, -/area/station/maintenance/department/security) -"cwg" = ( -/obj/effect/turf_decal/bot, -/obj/vehicle/ridden/janicart, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/turf_decal/trimline/purple/filled/warning, -/turf/open/floor/iron, -/area/station/service/janitor) -"cwh" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"cwn" = ( -/turf/closed/wall/r_wall, -/area/station/security/execution/transfer) -"cwr" = ( -/obj/effect/turf_decal/sand/plating, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating/airless, -/area/mine/explored) -"cwG" = ( -/turf/open/floor/iron, -/area/station/cargo/office) -"cwW" = ( -/obj/machinery/monkey_recycler, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"cxg" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"cxi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/central) -"cxq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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, -/area/station/hallway/primary/tram/center) -"cxr" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"cxs" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"cxA" = ( -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"cxB" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"cxN" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/turf/open/floor/iron, -/area/service/salon) -"cxR" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/science/xenobiology) -"cxS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"cxV" = ( -/obj/machinery/light/directional/east, -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"cxY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 4 - }, -/obj/structure/railing, -/turf/open/floor/plating, -/area/station/maintenance/tram/right) -"cyh" = ( -/obj/structure/closet/secure_closet/brig{ - id = "medcell"; - name = "Medical Cell Locker" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"cyt" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"cyQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/machinery/button/door/directional/east{ - id = "right_tram_lower"; - req_access = list("maint_tunnels") - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"cyU" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cyY" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/turf/open/floor/iron, -/area/station/science/ordnance/storage) -"cyZ" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"czd" = ( -/obj/machinery/smartfridge/chemistry/preloaded, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "pharmacy_shutters_2"; - name = "Pharmacy Shutters" - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"czi" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"czl" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"czB" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 10 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"czG" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner, -/turf/open/floor/iron/white, -/area/station/science/lower) -"czI" = ( -/obj/structure/cable, -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - dir = 4; - name = "old sink"; - pixel_x = -12 - }, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"czK" = ( -/turf/open/openspace/airless/planetary, -/area/space) -"czW" = ( -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/plating, -/area/station/security/processing) -"cAn" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/firealarm/directional/east, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"cAp" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Civilian - Chapel West" - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"cAs" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"cAt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/lower) -"cAy" = ( -/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/trimline/purple/filled/corner, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - name = "sorting disposal pipe (Toxins)"; - sortType = 25 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lower) -"cAz" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"cAP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plating, -/area/station/science/lower) -"cBd" = ( -/obj/structure/closet/firecloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/central) -"cBo" = ( -/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) -"cBv" = ( -/obj/machinery/door/airlock{ - id_tag = "private_f"; - name = "Private Quarters F" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/dorms) -"cBw" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Lounge" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) -"cBB" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/landmark/start/hangover, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"cBE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"cBF" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Break Room" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/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/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"cBG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/main) -"cBP" = ( -/obj/machinery/light/directional/north, -/turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) -"cCa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/head/cone{ - pixel_x = -9; - pixel_y = 8 - }, -/obj/item/clothing/head/cone{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/port/fore) -"cCj" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"cCr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cCv" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 10 - }, -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/mask/surgical, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -10; - pixel_y = -1 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"cCE" = ( -/obj/item/circuitboard/machine/mechfab, -/obj/structure/closet, -/obj/item/bodypart/l_arm/robot/surplus, -/obj/item/bodypart/r_arm/robot/surplus, -/obj/item/bodypart/r_arm/robot/surplus, -/obj/item/bodypart/l_arm/robot/surplus, -/obj/item/bodypart/r_leg/robot/surplus, -/obj/item/bodypart/r_leg/robot/surplus, -/obj/item/bodypart/l_leg/robot/surplus, -/obj/item/bodypart/l_leg/robot/surplus, -/obj/item/stack/cable_coil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) -"cCW" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"cCZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/port/aft) -"cDf" = ( -/obj/structure/window/reinforced/spawner, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"cDk" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/structure/railing, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"cDu" = ( -/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/security/prison/garden) -"cDx" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "tcomms-entrance" - }, -/obj/machinery/door/airlock/engineering{ - name = "Telecommunications" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/engineering/main) -"cDF" = ( -/obj/machinery/door/window/left/directional/south{ - name = "Armory"; - req_access = list("armory") - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"cDM" = ( -/obj/machinery/duct, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"cDN" = ( -/obj/machinery/telecomms/bus/preset_four, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"cDX" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/flasher/directional/east{ - id = "hopflash" - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"cDZ" = ( -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"cEe" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/security/brig) -"cEt" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"cEy" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/warning{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"cEz" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/mid) -"cEB" = ( -/obj/structure/window/reinforced, -/obj/machinery/modular_computer/console/preset/id{ - dir = 1 - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/command/heads_quarters/rd) -"cEC" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/hallway/primary/tram/right) -"cEH" = ( -/obj/item/kirbyplants/dead, -/obj/machinery/requests_console/directional/north{ - announcementConsole = 1; - department = "Research Director's Desk"; - departmentType = 5; - name = "Research Director's Requests Console"; - pixel_x = 30; - receive_ore_updates = 1 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/command/heads_quarters/rd) -"cEN" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"cEP" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"cFb" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"cFd" = ( -/obj/structure/table/glass, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 4 - }, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 10 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/clothing/glasses/science, -/obj/machinery/requests_console/directional/west{ - department = "Pharmacy"; - departmentType = 2; - name = "Pharmacy Requests Console"; - receive_ore_updates = 1 - }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"cFk" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/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, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/greater) -"cFn" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album{ - pixel_y = -4 - }, -/obj/item/camera{ - pixel_y = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"cFs" = ( -/turf/open/openspace, -/area/station/hallway/primary/tram/left) -"cFM" = ( -/obj/effect/spawner/random/structure/crate, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/engineering/flashlight, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/lesser) -"cGm" = ( -/obj/effect/turf_decal/bot, -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/trimline/neutral/line, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"cGp" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cGC" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/blue/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/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-right" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"cGS" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"cHn" = ( -/obj/structure/flora/bush/lavendergrass/style_random, -/turf/open/floor/grass, -/area/station/medical/virology) -"cHz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/maintenance/port/central) -"cHC" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron, -/area/station/security/office) -"cHE" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/left/directional/south{ - name = "Desk Door"; - req_access = list("brig_entrance") - }, -/turf/open/floor/plating, -/area/station/security/checkpoint) -"cHP" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"cIm" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"cIn" = ( -/obj/machinery/seed_extractor, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/garden) -"cIB" = ( -/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/structure/cable, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/service/kitchen) -"cIC" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"cIF" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"cIG" = ( -/obj/structure/window/reinforced/spawner/north, -/obj/structure/reagent_dispensers/watertank/high, -/obj/item/reagent_containers/glass/watering_can, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"cIL" = ( -/turf/open/floor/wood, -/area/station/service/theater) -"cIM" = ( -/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/cable, -/obj/machinery/door/airlock/grunge{ - name = "Medical Maintenance" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/medical) -"cIO" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"cIQ" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/port/fore) -"cIW" = ( -/obj/structure/window/reinforced/spawner, -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/iron/dark/smooth_corner{ - dir = 1 - }, -/area/station/commons/fitness) -"cJb" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Tunnel Access" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) -"cJj" = ( -/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/neutral/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - 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, -/area/station/hallway/secondary/command) -"cJk" = ( -/obj/structure/closet/l3closet/janitor, -/obj/machinery/firealarm/directional/south, -/obj/machinery/light_switch/directional/east, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/service/janitor) -"cJm" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"cJp" = ( -/obj/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/spawner/structure/window, -/obj/structure/curtain/cloth/fancy/mechanical{ - id = "barbershopcurtains" - }, -/turf/open/floor/plating, -/area/service/salon) -"cJt" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/shower{ - pixel_y = 18 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"cJD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"cJL" = ( -/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/white, -/area/station/medical/medbay/central) -"cJO" = ( -/obj/machinery/door/airlock{ - id_tag = "private_p"; - name = "Private Quarters P" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"cJX" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"cJZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"cKa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"cKw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"cKC" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/mine/explored) -"cKE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weldingtool, -/turf/open/floor/iron/smooth, -/area/station/maintenance/port/central) -"cKS" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/structure/sign/departments/restroom/directional/west, -/turf/open/floor/iron, -/area/station/commons/dorms) -"cKT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/light/small/directional/north, -/obj/effect/landmark/start/cyborg, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) -"cKZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"cLd" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/turf/open/floor/iron, -/area/station/security/brig) -"cLl" = ( -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/sand/plating, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"cLp" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Civilian - Dormitories South-East" - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"cLq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door_buttons/airlock_controller{ - idExterior = "rightmost_upper_eva_external"; - idInterior = "rightmost_upper_eva_internal"; - idSelf = "rightmost_upper_eva_airlock_control"; - name = "External Access Console"; - pixel_y = 24 - }, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/right) -"cLB" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"cLV" = ( -/obj/effect/turf_decal/trimline/neutral/line, -/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, -/area/station/hallway/secondary/entry) -"cMa" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/camera/directional/south{ - c_tag = "Medical - Main North-East"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"cMd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cMr" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Restroom Maintenance Access" - }, -/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/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/smooth, -/area/station/commons/toilet) -"cMs" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"cMT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"cNl" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"cNm" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"cNo" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-right" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "Bridge Blast Door" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"cNS" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/station/science/explab) -"cNU" = ( -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/engineering/supermatter) -"cOh" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/stool/directional/west, -/obj/structure/noticeboard/directional/south, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/lounge) -"cOi" = ( -/obj/structure/closet/crate, -/obj/item/pickaxe/mini, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/engineering/flashlight, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/greater) -"cOl" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"cOn" = ( -/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{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/turf/open/floor/iron, -/area/station/engineering/transit_tube) -"cOo" = ( -/obj/machinery/vending/sustenance, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"cOr" = ( -/obj/structure/stairs/south, -/turf/open/floor/iron/stairs/medium{ - dir = 1 - }, -/area/station/service/hydroponics) -"cOx" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/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, -/area/station/hallway/primary/central) -"cOF" = ( -/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) -"cOI" = ( -/obj/machinery/power/apc/auto_name/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{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/iron, -/area/service/salon) -"cOX" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/camera{ - c_tag = "Arrivals - Lounge"; - dir = 6 - }, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"cPg" = ( -/obj/machinery/light_switch/directional/east, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/command/gateway) -"cPD" = ( -/obj/machinery/computer/atmos_control/air_tank{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cPE" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard) -"cPM" = ( -/turf/closed/wall, -/area/station/engineering/atmos) -"cPO" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_cw, -/obj/machinery/camera/directional/east{ - c_tag = "Hallway - Port Tram Platform South" - }, -/obj/effect/turf_decal/caution, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"cPS" = ( -/obj/structure/industrial_lift/tram{ - icon_state = "titanium" - }, -/obj/structure/fluff/tram_rail, -/obj/structure/chair/comfy/shuttle, -/turf/open/openspace, -/area/station/hallway/primary/tram/center) -"cPW" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/service/library) -"cQr" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/obj/structure/table, -/turf/open/floor/iron, -/area/station/security/prison) -"cQD" = ( -/obj/structure/table/reinforced, -/obj/structure/reagent_dispensers/servingdish, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"cQS" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/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/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/greater) -"cRh" = ( -/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/grimy, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"cRi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"cRn" = ( -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"cRr" = ( -/obj/effect/turf_decal/box/white{ - color = "#EFB341" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmospherics_engine) -"cRA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"cRJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"cRM" = ( -/obj/machinery/light/directional/north, -/turf/open/misc/asteroid, -/area/station/security/prison/workout) -"cRQ" = ( -/obj/structure/closet/secure_closet/brig/genpop, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"cRW" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"cSd" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"cSk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/sorting/mail{ - name = "sorting disposal pipe (Custodial Closet)"; - sortType = 22 - }, -/obj/machinery/duct, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"cSp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"cSr" = ( -/turf/closed/wall, -/area/station/service/library) -"cSu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/tank/internals/emergency_oxygen/double/empty, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/mid) -"cSy" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/lesser) -"cSH" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - 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 = 10 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningdock/cafeteria) -"cSU" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/left/directional/north{ - name = "Hydroponics Desk"; - req_access = list("hydroponics") - }, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"cTc" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/machinery/reagentgrinder, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 10 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"cTg" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/open/floor/iron/smooth, -/area/station/commons/dorms) -"cTl" = ( -/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, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/service/kitchen) -"cTr" = ( -/obj/machinery/light/directional/east, -/turf/open/floor/iron/smooth, -/area/station/command/gateway) -"cTE" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"cTH" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/components/unary/passive_vent{ - dir = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cTT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable/layer1, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"cTU" = ( -/turf/closed/wall, -/area/station/cargo/storage) -"cUh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"cUO" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cUT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"cVa" = ( -/obj/machinery/light/small/directional/north, -/turf/open/openspace, -/area/station/science/xenobiology) -"cVp" = ( -/obj/machinery/door/airlock/atmos{ - name = "Turbine Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"cVu" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/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 = "Escape Wing" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"cVz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"cVG" = ( -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) -"cVN" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/cargo) -"cVQ" = ( -/obj/machinery/prisongate, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"cVR" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_cw, -/obj/effect/turf_decal/caution, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"cWf" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/spawner/random/trash/graffiti{ - pixel_y = -32; - spawn_loot_chance = 50 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"cWx" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"cWI" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"cWJ" = ( -/obj/machinery/door/airlock{ - id_tag = "private_j"; - name = "Private Quarters J" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/commons/dorms) -"cWO" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/table/reinforced/rglass, -/obj/item/hairbrush, -/turf/open/floor/iron, -/area/service/salon) -"cWY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"cXb" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"cXj" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/mask/balaclava, -/obj/structure/sign/poster/official/here_for_your_safety{ - pixel_y = 32 - }, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/security) -"cXq" = ( -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"cXx" = ( -/turf/closed/wall, -/area/station/hallway/secondary/service) -"cXE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"cXJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera/emp_proof/directional/south{ - c_tag = "Engineering - Engine Room South-East"; - network = list("ss13","engine","engineering") - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"cXL" = ( -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"cXV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/circuit/telecomms, -/area/station/science/xenobiology) -"cXW" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/science/breakroom) -"cYC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/landmark/start/cyborg, -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the ai_upload."; - dir = 1; - name = "AI Upload Monitor"; - network = list("aiupload"); - pixel_y = -27 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) -"cYE" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"cYT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"cYV" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"cZf" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/closet/l3closet/scientist, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"cZn" = ( -/obj/machinery/door/airlock{ - name = "Law Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/lawyer, -/turf/open/floor/wood, -/area/station/security/courtroom) -"cZp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"cZz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/textured_large, -/area/station/security/execution/education) -"cZA" = ( -/obj/structure/closet/radiation, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"cZS" = ( -/obj/effect/turf_decal/siding/thinplating, -/obj/effect/turf_decal/siding/thinplating{ - 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/turf_decal/bot, -/obj/machinery/holopad, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"dac" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/machinery/button/door/directional/south{ - id = "xenobiobottomright"; - name = "Xenobio Bottom Right Blast Door Toggle"; - req_access = list("xenobiology") - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"dag" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/sand/plating, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/random/structure/girder, -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/plating/airless, -/area/mine/explored) -"daq" = ( -/obj/machinery/light/dim/directional/west, -/obj/machinery/duct, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"daw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/robot_debris/old, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"dax" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"daB" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/machinery/shower{ - dir = 8; - pixel_x = -7 - }, -/obj/item/bikehorn/rubberducky, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"daJ" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"daY" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"dbb" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Cargo - Warehouse East"; - dir = 6; - network = list("ss13","cargo") - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/cargo/storage) -"dbc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"dbd" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/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, -/area/station/hallway/secondary/command) -"dbe" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/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/junction/yjunction{ - dir = 8 - }, -/obj/structure/cable/layer3, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"dbg" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/lesser) -"dbK" = ( -/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, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"dbR" = ( -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"dbV" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"dbY" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"dch" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Command - Captain's Office" - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"dcs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/poddoor/preopen{ - id = "ceprivacy"; - name = "Privacy Shutter" - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/door/airlock/command{ - name = "Chief Engineer" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"dcR" = ( -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/station/maintenance/department/security) -"ddh" = ( -/obj/structure/railing/corner, -/turf/open/floor/glass, -/area/station/commons/fitness/recreation) -"ddi" = ( -/obj/machinery/power/shieldwallgen/xenobiologyaccess, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"ddo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/cigbutt, -/obj/effect/decal/cleanable/cobweb, -/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, -/area/station/maintenance/department/security) -"ddu" = ( -/obj/machinery/door/airlock{ - id_tag = "private_k"; - name = "Private Quarters K" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"ddA" = ( -/turf/closed/wall, -/area/station/construction/mining/aux_base) -"ddI" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/service/theater) -"ddJ" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/fluff/tram_rail/floor, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"ddP" = ( -/obj/effect/spawner/structure/window, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"ddU" = ( -/obj/effect/turf_decal/trimline/neutral/line{ - 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, -/area/station/hallway/secondary/entry) -"ded" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/command/gateway) -"deg" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/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/science/lobby) -"deh" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/computer/med_data, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"dek" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"dez" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"deC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/shaft_miner, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"deU" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/lesser) -"dfd" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Security Maintenance Hatch" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/security) -"dfe" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"dfh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/effect/landmark/event_spawn, -/turf/open/floor/grass, -/area/station/medical/virology) -"dfi" = ( -/obj/machinery/camera/motion{ - c_tag = "Secure - AI Upper Ring Telecomms Relay"; - dir = 9; - network = list("aicore","ss13") - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"dfj" = ( -/obj/item/storage/secure/safe/directional/north, -/obj/machinery/light_switch/directional/north{ - pixel_x = 9 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"dfz" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw, -/obj/effect/spawner/random/vending/colavend, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"dfA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/carpet, -/area/station/cargo/miningdock) -"dfM" = ( -/obj/structure/chair, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"dga" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"dgw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"dgx" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 8 - }, -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - Lobby South"; - dir = 6; - network = list("ss13","engineering") - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"dgD" = ( -/obj/structure/railing, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk/multiz/down{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/end, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"dgG" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/sofa/corp/left{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/commons/lounge) -"dgN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/light/small/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"dgR" = ( -/obj/structure/table, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/item/folder/white{ - pixel_y = 4 - }, -/obj/item/pen/red, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron, -/area/station/medical/virology) -"dgV" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/mix_input{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"dhe" = ( -/turf/closed/mineral/random/stationside/asteroid/porus, -/area/mine/explored) -"dhl" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"dhm" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/door/window/left/directional/north{ - name = "Beekeeper Room"; - req_access = list("hydroponics") - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"dhw" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"dhy" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 9 - }, -/obj/effect/turf_decal/stripes{ - 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, -/area/station/science/ordnance/storage) -"dhA" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/checkpoint) -"dhC" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/virology) -"dhH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) -"dhL" = ( -/turf/closed/wall, -/area/station/security/prison/work) -"did" = ( -/obj/structure/table, -/obj/item/assembly/signaler{ - pixel_y = 8 - }, -/obj/item/assembly/signaler{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/assembly/signaler{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/assembly/signaler{ - pixel_x = 6; - pixel_y = 5 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"dif" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"dik" = ( -/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/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"diq" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"diA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/medical) -"diL" = ( -/obj/effect/turf_decal/trimline/purple/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 = 5 - }, -/obj/machinery/firealarm/directional/west, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/science/auxlab) -"dja" = ( -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/effect/turf_decal/stripes, -/obj/effect/turf_decal/caution/stand_clear/red{ - dir = 8 - }, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/center) -"djg" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/engineering/main) -"djl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) -"djs" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating/airless, -/area/mine/explored) -"djA" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/sand/plating, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating/airless, -/area/mine/explored) -"djE" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/paper/guides/jobs/medical/morgue{ - pixel_x = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"djG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/commons/dorms) -"djJ" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/bed/roller, -/obj/machinery/light/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Medical - Lobby"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"djT" = ( -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/iron/dark/smooth_edge{ - dir = 8 - }, -/area/station/commons/fitness) -"dkb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation/entertainment) -"dkd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/line, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"dkl" = ( -/obj/effect/spawner/random/trash/mess, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/lesser) -"dkm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/station/maintenance/disposal/incinerator) -"dku" = ( -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) -"dkw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"dkD" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"dkO" = ( -/turf/open/floor/iron, -/area/station/security/brig) -"dkS" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"dkW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron/dark, -/area/station/medical/treatment_center) -"dla" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"dlv" = ( -/obj/machinery/computer/camera_advanced/xenobio, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"dlC" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/cable/layer3, -/turf/open/floor/iron, -/area/station/engineering/main) -"dlF" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/table/glass, -/obj/item/storage/box/monkeycubes{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/storage/box/monkeycubes{ - pixel_x = -5; - pixel_y = 1 - }, -/obj/item/storage/box/syringes, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/dropper{ - pixel_y = -5 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"dlL" = ( -/obj/structure/cable, -/turf/open/floor/iron/chapel{ - dir = 10 - }, -/area/station/service/chapel) -"dme" = ( -/obj/machinery/holopad, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/secondary/entry) -"dmf" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/commons/fitness/recreation) -"dmt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"dne" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/security/medical) -"dnn" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 10 - }, -/obj/structure/table/wood, -/obj/structure/window/reinforced/spawner/north, -/obj/structure/window/reinforced/spawner/east, -/obj/effect/spawner/random/decoration/ornament, -/turf/open/floor/iron/grimy, -/area/station/service/lawoffice) -"dnp" = ( -/obj/effect/turf_decal/sand/plating, -/obj/machinery/door/airlock/external{ - autoclose = 0; - frequency = 1449; - id_tag = "middleleft_lower_eva_external"; - name = "External Access" - }, -/obj/machinery/door_buttons/access_button{ - idDoor = "middleleft_lower_eva_external"; - idSelf = "middleleft_lower_eva_airlock_control"; - name = "External Access Button"; - pixel_y = -24 - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plating, -/area/station/hallway/primary/tram/center) -"dnB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"dnE" = ( -/obj/machinery/telecomms/server/presets/service, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"doa" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"dob" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"doe" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"dok" = ( -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"doo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/four, -/turf/open/floor/iron/smooth, -/area/station/maintenance/port/central) -"dox" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"doD" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"doH" = ( -/obj/effect/turf_decal/trimline/purple/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/white, -/area/station/science/lab) -"doK" = ( -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"dpd" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"dpo" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - 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, -/area/station/hallway/primary/tram/left) -"dps" = ( -/obj/structure/chair/stool/bar/directional/west, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison) -"dpt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"dpA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/left) -"dpD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"dpE" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"dpG" = ( -/obj/machinery/holopad, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"dpM" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/item/computer_hardware/hard_drive/portable/quartermaster, -/obj/item/computer_hardware/hard_drive/portable/quartermaster, -/obj/item/clipboard, -/turf/open/floor/iron, -/area/station/cargo/qm) -"dpX" = ( -/obj/structure/table, -/obj/machinery/light/small/directional/west, -/obj/item/radio/intercom/prison/directional/west, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Security - Prison Cell 1"; - network = list("ss13","Security","prison","pcell") - }, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"dpZ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/neutral/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, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"dqh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"dqm" = ( -/obj/machinery/teleport/station, -/turf/open/floor/plating, -/area/station/command/teleporter) -"dqo" = ( -/obj/effect/landmark/start/security_officer, -/obj/structure/chair{ - 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/security/office) -"dqr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate_empty, -/obj/effect/spawner/random/maintenance/three, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/security) -"dqw" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south{ - freerange = 1; - frequency = 1447; - listening = 0; - name = "Private Channel" - }, -/obj/structure/cable, -/turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"dqx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/layer3, -/turf/open/floor/iron, -/area/station/engineering/main) -"dqQ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"dqS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/dorms) -"dqV" = ( -/obj/effect/turf_decal/trimline/purple/filled/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 = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"dqY" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"drb" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Science - Research & Development"; - dir = 9; - network = list("ss13","rd") - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"drl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"drq" = ( -/obj/structure/table, -/obj/item/flashlight/lamp, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"drs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/engineering{ - name = "Power Access Hatch" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"drx" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/smartfridge/organ, -/obj/structure/sign/warning/cold_temp/directional/west, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/freezer, -/area/station/medical/coldroom) -"drz" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner, -/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/miningdock) -"drB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/door/airlock/security/glass{ - name = "Isolation Cell B" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"drR" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/engineering/transit_tube) -"drW" = ( -/obj/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/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/button/curtain{ - id = "barbershopcurtains"; - pixel_x = 25; - pixel_y = -24 - }, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/iron, -/area/service/salon) -"dsd" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/service/lawoffice) -"dsj" = ( -/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/item/stack/tile/wood, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"dsl" = ( -/obj/structure/chair/pew/right, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/chapel{ - dir = 5 - }, -/area/station/service/chapel) -"dsq" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"dss" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"dsC" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - 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/commons/fitness/recreation) -"dsF" = ( -/turf/open/floor/iron/smooth, -/area/station/command/gateway) -"dsG" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"dsH" = ( -/obj/structure/closet/secure_closet/atmospherics, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"dsJ" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 5 - }, -/obj/machinery/light/directional/north, -/obj/machinery/requests_console/directional/north{ - department = "Cargo Bay"; - departmentType = 2; - name = "Cargo Bay Requests Console" - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"dsK" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/wood/large, -/area/station/service/library) -"dsP" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - 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, -/area/station/tcommsat/computer) -"dsV" = ( -/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, -/area/station/security/brig) -"dta" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron, -/area/station/security/brig) -"dth" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/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/iron, -/area/station/science/research) -"dtu" = ( -/obj/machinery/computer/atmos_alert, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/item/storage/secure/safe/caps_spare/directional/north, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"dtw" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/door/airlock{ - name = "Theatre Backstage" - }, -/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/iron, -/area/station/service/theater) -"dty" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Maintenance - East Tram Tunnel 3"; - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"dtE" = ( -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw, -/obj/structure/sign/directions/supply{ - dir = 4; - pixel_y = -28 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = -34 - }, -/obj/structure/sign/directions/command{ - dir = 1; - pixel_y = -40 - }, -/obj/machinery/light/directional/south, -/obj/structure/sign/directions/vault{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"dtY" = ( -/obj/structure/railing/corner, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/corner, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"duf" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/vending/wardrobe/medi_wardrobe, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"duj" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks/beer, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/service/bar) -"duB" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison/garden) -"duL" = ( -/obj/machinery/hydroponics/constructable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"duT" = ( -/turf/open/space/basic, -/area/mine/explored) -"duU" = ( -/turf/closed/wall/r_wall, -/area/mine/explored) -"duY" = ( -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"dvn" = ( -/obj/structure/easel, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas, -/obj/item/canvas, -/obj/item/canvas, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/commons/storage/art) -"dvB" = ( -/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/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"dvD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"dvI" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"dvK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"dvQ" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"dvW" = ( -/obj/effect/turf_decal/sand, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"dwg" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"dwj" = ( -/obj/machinery/button/door/directional/west{ - id = "private_p"; - name = "Privacy Bolts"; - normaldoorcontrol = 1; - pixel_y = 9; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"dwp" = ( -/obj/machinery/light/directional/north, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/structure/flora/bush/grassy/style_random, -/turf/open/floor/grass, -/area/station/commons/dorms) -"dww" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"dwy" = ( -/obj/machinery/light/blacklight/directional/south, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/eighties, -/area/station/commons/fitness/recreation/entertainment) -"dwA" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"dwB" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/asteroid/corner{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/mine/explored) -"dwH" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating/corner, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"dwK" = ( -/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, -/area/station/commons/vacant_room/office) -"dwR" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/tcommsat/computer) -"dxi" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/anesthetic_mix, -/turf/open/floor/iron/dark, -/area/station/medical/treatment_center) -"dxk" = ( -/obj/machinery/rnd/destructive_analyzer, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/science/lab) -"dxo" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"dxq" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"dxw" = ( -/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/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Medical - Main South"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"dxC" = ( -/turf/closed/wall/r_wall, -/area/station/command/gateway) -"dxL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"dxR" = ( -/obj/effect/turf_decal/bot, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/janitor) -"dyc" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/landmark/start/bartender, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/bar) -"dye" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"dyi" = ( -/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/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/tram/left) -"dyk" = ( -/obj/machinery/igniter/incinerator_ordmix, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"dyl" = ( -/obj/structure/flora/bush/leavy/style_random, -/turf/open/floor/grass, -/area/station/medical/virology) -"dyq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/spawner/random/trash/garbage{ - spawn_loot_count = 2; - spawn_random_offset = 1; - spawn_scatter_radius = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/mid) -"dys" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Air Outlet Pump" - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"dyw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/button/door/directional/east{ - id = "evashutter"; - pixel_y = 24 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"dyB" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/surgery/fore) -"dyI" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"dyS" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/security/armory) -"dzm" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"dzu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/crew_quarters/dorms) -"dzx" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/machinery/camera{ - c_tag = "Hallway - Port Tram Platform South-East"; - dir = 6 - }, -/obj/effect/turf_decal/caution, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"dzF" = ( -/obj/structure/weightmachine/stacklifter, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/fitness) -"dzK" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/turf/open/floor/iron, -/area/station/security/courtroom) -"dzU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/left) -"dAh" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"dAl" = ( -/obj/machinery/computer/shuttle/mining{ - dir = 8; - req_access = null - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Cargo - Mining North-East"; - dir = 6; - network = list("ss13","cargo") - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"dAm" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"dAn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"dAq" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/door/airlock/glass{ - name = "Prison Laundry" - }, -/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) -"dAu" = ( -/obj/structure/cable/multilayer/multiz, -/obj/machinery/camera{ - c_tag = "Service - Lower Power Hatch"; - dir = 9; - network = list("ss13","Service") - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/obj/structure/sign/warning/electric_shock/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"dAR" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"dAU" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"dBb" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"dBd" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"dBj" = ( -/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/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/door/airlock/security{ - name = "Re-Education Center" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/turf/open/floor/iron/white, -/area/station/security/execution/education) -"dBr" = ( -/obj/structure/chair/sofa/left{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"dBu" = ( -/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/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/storage/art) -"dBM" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"dBQ" = ( -/obj/structure/bed{ - dir = 8 - }, -/obj/item/bedsheet/dorms, -/obj/effect/landmark/start/assistant, -/turf/open/floor/wood, -/area/station/commons/dorms) -"dCd" = ( -/turf/closed/wall/rock/porous, -/area/station/maintenance/starboard/lesser) -"dCh" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/solars/port/aft) -"dCr" = ( -/obj/effect/turf_decal/sand, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Security - Rec Room West"; - network = list("ss13","Security","prison") - }, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"dCt" = ( -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/light/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Security - Main Office South"; - network = list("ss13","Security") - }, -/turf/open/floor/iron, -/area/station/security/office) -"dCz" = ( -/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, -/turf/open/floor/carpet, -/area/station/service/chapel) -"dCA" = ( -/obj/effect/turf_decal/sand/plating, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/mine/explored) -"dCD" = ( -/obj/structure/bookcase/random/reference, -/turf/open/floor/wood/large, -/area/station/service/library) -"dCF" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/obj/item/storage/backpack/duffelbag/med/surgery, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"dCL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/service/library) -"dCU" = ( -/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, -/turf/open/floor/iron, -/area/station/cargo/storage) -"dDe" = ( -/obj/machinery/holopad, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) -"dDk" = ( -/obj/machinery/button/door/directional/west{ - id = "private_a"; - name = "Privacy Bolts"; - normaldoorcontrol = 1; - pixel_x = 24; - pixel_y = 9; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"dDp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/security/processing) -"dDv" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/closet/secure_closet/freezer/cream_pie, -/obj/machinery/camera{ - c_tag = "Civilian - Theatre Backstage"; - dir = 6 - }, -/turf/open/floor/iron, -/area/station/service/theater) -"dDA" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"dDG" = ( -/turf/open/misc/asteroid/airless, -/area/mine/explored) -"dDH" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/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 = 5 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"dDI" = ( -/obj/effect/turf_decal/trimline/white/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"dEi" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - 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/disposalpipe/segment, -/obj/machinery/light_switch/directional/east{ - pixel_x = 22; - pixel_y = 9 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"dEy" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/navigate_destination/bar, -/obj/machinery/duct, -/obj/structure/cable, -/obj/effect/spawner/xmastree, -/turf/open/floor/iron, -/area/station/commons/lounge) -"dER" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"dFf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/space_heater, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/cargo) -"dFg" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/cargo/storage) -"dFo" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/machinery/button/door/directional/east{ - id = "cargowarehouse" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/storage) -"dFt" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"dFG" = ( -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/white/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/white/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/machinery/camera{ - c_tag = "Secure - tech_storage"; - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"dFI" = ( -/obj/structure/table/wood, -/obj/item/storage/box/seccarts{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/storage/box/deputy, -/obj/item/radio/intercom/directional/west, -/obj/machinery/button/door/directional/west{ - id = "HOSOffice"; - name = "Emergency Blast Doors"; - pixel_y = -8; - req_access = list("hos") - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hos) -"dFJ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"dFP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"dFS" = ( -/obj/structure/table, -/obj/item/folder/yellow, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/carpet, -/area/station/cargo/qm) -"dFY" = ( -/obj/structure/sign/poster/official/here_for_your_safety{ - pixel_y = -32 - }, -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -7 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"dGe" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/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, -/area/station/hallway/primary/tram/right) -"dGn" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"dGo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"dGz" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/cargo/storage) -"dGH" = ( -/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) -"dGJ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/monastery) -"dGK" = ( -/obj/machinery/pipedispenser/disposal, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"dGW" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"dHf" = ( -/obj/machinery/teleport/hub, -/turf/open/floor/plating, -/area/station/command/teleporter) -"dHv" = ( -/obj/structure/table/glass, -/turf/open/floor/iron/dark, -/area/station/medical/treatment_center) -"dHw" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/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/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"dHV" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"dIa" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/structure/chair/stool/bar/directional/south, -/obj/effect/turf_decal/siding/thinplating/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"dIh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"dIo" = ( -/obj/machinery/light/directional/south, -/turf/open/openspace, -/area/station/hallway/primary/tram/right) -"dIB" = ( -/obj/structure/fluff/tram_rail/end{ - dir = 4 - }, -/turf/open/openspace, -/area/station/hallway/primary/tram/left) -"dIC" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/center) -"dIF" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw, -/obj/effect/turf_decal/caution, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"dIM" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Service - Hydroponics North"; - dir = 9 - }, -/obj/machinery/chem_master/condimaster{ - desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; - name = "SapMaster XP" - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"dIY" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "Xenolab"; - name = "Test Chamber Blast Doors"; - pixel_x = 4; - pixel_y = -3; - req_access = list("xenobiology") - }, -/obj/machinery/button/ignition{ - id = "Xenobio"; - pixel_x = -6; - pixel_y = -3 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"dJF" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"dJJ" = ( -/turf/closed/wall, -/area/station/hallway/primary/central) -"dJM" = ( -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"dJS" = ( -/obj/structure/bed, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/landmark/start/prisoner, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"dJV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"dKd" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"dKp" = ( -/obj/effect/landmark/start/mime, -/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 = 5 - }, -/turf/open/floor/iron/white/side{ - dir = 4 - }, -/area/station/service/theater) -"dKv" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - Atmospherics Mixing Chamber"; - dir = 9; - network = list("ss13","engineering") - }, -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"dKC" = ( -/obj/machinery/conveyor{ - id = "packageSort2" - }, -/obj/structure/plasticflaps, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"dKI" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"dKM" = ( -/turf/closed/wall/r_wall, -/area/station/science/robotics/mechbay) -"dKN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"dLc" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/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/cable, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"dLi" = ( -/obj/structure/railing/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/railing{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"dLB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/security/office) -"dLK" = ( -/obj/machinery/atmospherics/components/tank, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"dLQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"dMf" = ( -/obj/machinery/sparker/directional/west{ - id = "Xenobio" - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"dMt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/showcase/cyborg/old{ - pixel_y = 20 - }, -/obj/machinery/camera{ - c_tag = "Secure - AI Antechamber South"; - dir = 9; - network = list("ss13","minisat") - }, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) -"dME" = ( -/turf/closed/wall, -/area/station/service/theater) -"dMN" = ( -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw{ - dir = 1 - }, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = 28 - }, -/obj/structure/sign/directions/medical{ - pixel_y = 34 - }, -/obj/structure/sign/directions/engineering{ - pixel_y = 40 - }, -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/directions/upload{ - dir = 4; - pixel_y = 22 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"dMU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/iron/smooth, -/area/station/maintenance/port/aft) -"dMZ" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/item/airlock_painter, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"dNa" = ( -/obj/effect/turf_decal/stripes/line{ - 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/engine, -/area/station/engineering/supermatter/room) -"dNc" = ( -/obj/machinery/door/morgue{ - name = "Private Study"; - req_access = list("library") - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/engine/cult, -/area/station/service/library) -"dNg" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"dNs" = ( -/obj/effect/turf_decal/tile, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Arrivals - Auxilliary Docking Ports" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"dNE" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"dNO" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"dNS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"dOb" = ( -/obj/effect/turf_decal/trimline/neutral/filled/arrow_cw, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = -28 - }, -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_y = -34 - }, -/obj/structure/sign/directions/engineering{ - dir = 4; - pixel_y = -40 - }, -/obj/machinery/light/directional/south, -/obj/structure/sign/directions/upload{ - dir = 4; - pixel_y = -22 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"dOi" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/mine/explored) -"dOk" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/stool/bar/directional/south, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/commons/lounge) -"dOs" = ( -/obj/item/radio/intercom/directional/north, -/obj/structure/easel, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas, -/obj/item/canvas, -/obj/item/canvas, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/commons/storage/art) -"dOx" = ( -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/iron/white/smooth_corner, -/area/station/security/execution/education) -"dOM" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"dOU" = ( -/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, -/area/station/hallway/primary/tram/right) -"dPc" = ( -/obj/effect/turf_decal/trimline/neutral/filled/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{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"dPe" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"dPn" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/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/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/transit_tube) -"dPz" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=6-TunnelRightBottom"; - location = "5-TunnelRight" - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"dPS" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 8 - }, -/obj/machinery/keycard_auth/directional/north, -/obj/machinery/button/door/directional/north{ - id = "cmoshutter"; - name = "CMO Privacy Shutters"; - pixel_y = 38; - req_access = list("cmo") - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"dPT" = ( -/obj/structure/table/wood, -/obj/item/radio/intercom/directional/north, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/machinery/camera/directional/north{ - c_tag = "Civilian - Chapel Monastary" - }, -/turf/open/floor/carpet, -/area/station/service/chapel/monastery) -"dPY" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"dPZ" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/item/paper_bin, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"dQn" = ( -/obj/machinery/power/supermatter_crystal/engine, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"dQQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/three, -/obj/item/clothing/mask/gas, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"dQX" = ( -/obj/machinery/door/morgue{ - name = "Relic Closet"; - req_access = list("chapel_office") - }, -/turf/open/floor/cult, -/area/station/service/chapel/office) -"dQZ" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/effect/landmark/start/botanist, -/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/hydroponics) -"dRr" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"dRB" = ( -/obj/structure/table, -/obj/item/restraints/handcuffs, -/obj/item/assembly/timer, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/security/office) -"dRK" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"dRM" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"dSe" = ( -/turf/closed/wall, -/area/station/security/prison/mess) -"dSr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"dSu" = ( -/obj/structure/chair, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"dSC" = ( -/obj/machinery/portable_atmospherics/canister/plasma, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"dSI" = ( -/obj/machinery/duct, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"dSL" = ( -/obj/structure/industrial_lift/tram{ - icon_state = "plating" - }, -/obj/structure/grille/tram, -/obj/structure/window/reinforced/shuttle/tram, -/turf/open/openspace, -/area/station/hallway/primary/tram/center) -"dSN" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"dTc" = ( -/obj/machinery/biogenerator, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 10 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"dTe" = ( -/obj/structure/industrial_lift/tram{ - icon_state = "titanium_blue" - }, -/obj/structure/fluff/tram_rail, -/obj/structure/chair/comfy/shuttle, -/turf/open/openspace, -/area/station/hallway/primary/tram/center) -"dTk" = ( -/turf/open/floor/iron/recharge_floor, -/area/station/science/robotics/mechbay) -"dTr" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"dTH" = ( -/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) -"dTL" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"dTO" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/neutral/filled/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/iron, -/area/station/hallway/primary/central) -"dTS" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Science - Main Lower Right"; - dir = 10; - network = list("ss13","rd") - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"dTT" = ( -/obj/effect/turf_decal/trimline/purple/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{ - c_tag = "Science - Main AI Access Hall"; - dir = 6; - network = list("ss13","rd") - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"dUg" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"dUm" = ( -/obj/structure/closet/secure_closet/psychology, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"dUO" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"dUR" = ( -/obj/machinery/computer/shuttle/mining, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"dUY" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"dVc" = ( -/obj/machinery/door/airlock/security{ - name = "Security Checkpoint" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"dVd" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"dVh" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"dVl" = ( -/obj/modular_map_root/tramstation{ - key = "maintenance_miningsolar" - }, -/turf/open/misc/asteroid/airless, -/area/mine/explored) -"dVo" = ( -/obj/structure/table/wood, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"dVx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"dVA" = ( -/obj/effect/spawner/random/structure/closet_private, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"dVN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/shaft_miner, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"dVP" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/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/tram/center) -"dVQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"dWh" = ( -/obj/machinery/door/airlock/research{ - glass = 1; - name = "Slime Euthanization Chamber"; - opacity = 0 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/line, -/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) -"dWj" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - Atmospherics CO2 Chamber"; - dir = 9; - network = list("ss13","engineering") - }, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"dXd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/tank_dispenser/oxygen{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"dXm" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/obj/machinery/vending/cigarette, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Civilian - Dormitories East" - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"dXo" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/chem_pack{ - pixel_x = 10; - pixel_y = 10 - }, -/obj/item/storage/box/rxglasses{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/stack/medical/gauze{ - pixel_x = 8 - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"dXR" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/wood/large, -/area/station/service/library) -"dXW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/service/chapel/monastery) -"dYc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/right) -"dYD" = ( -/obj/structure/table, -/obj/item/clothing/gloves/boxing, -/obj/item/clothing/gloves/boxing/blue{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/airalarm/directional/south, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"dYT" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/hallway/primary/tram/left) -"dZw" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"dZD" = ( -/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/line, -/obj/machinery/light/directional/south, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/explab) -"dZP" = ( -/obj/machinery/door/airlock{ - id_tag = "private_n"; - name = "Private Quarters N" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"dZS" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron, -/area/station/cargo/storage) -"dZT" = ( -/obj/machinery/door/airlock{ - id_tag = "private_b"; - name = "Private Quarters B" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/commons/dorms) -"dZW" = ( -/obj/effect/turf_decal/sand, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/greater) -"dZX" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"dZY" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner, -/turf/open/floor/iron, -/area/station/cargo/storage) -"eam" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Crematorium" - }, -/obj/machinery/door/firedoor, -/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/service/crematorium, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"eaq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"eay" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"eaz" = ( -/obj/machinery/door/airlock{ - id_tag = "private_a"; - name = "Private Quarters A" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"eaQ" = ( -/obj/structure/table/wood, -/obj/item/gavelblock, -/obj/item/gavelhammer, -/obj/structure/cable, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"ebh" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Hallway - Lower Left Command" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"ebj" = ( -/obj/structure/table, -/obj/machinery/light/small/directional/west, -/obj/item/radio/intercom/prison/directional/west, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Security - Prison Cell 3"; - network = list("ss13","Security","prison","pcell") - }, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"ebn" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/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/security/prison) -"ebw" = ( -/obj/structure/bodycontainer/morgue{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"ebA" = ( -/turf/open/openspace, -/area/station/service/kitchen/diner) -"ebE" = ( -/obj/structure/table, -/obj/item/storage/box/chemimp{ - pixel_x = 6 - }, -/obj/item/storage/box/trackimp{ - pixel_x = -3 - }, -/obj/item/storage/lockbox/loyalty, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"ebF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"ebH" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"ebN" = ( -/obj/effect/turf_decal/stripes, -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/effect/landmark/tram/middle_part, -/obj/machinery/computer/tram_controls, -/obj/structure/industrial_lift/tram{ - icon_state = "titanium" - }, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/center) -"ebW" = ( -/turf/closed/wall/r_wall, -/area/station/science/robotics/lab) -"ech" = ( -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/grass, -/area/station/science/genetics) -"eci" = ( -/obj/structure/table/wood, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"ecj" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron/white, -/area/station/science/research) -"ecn" = ( -/obj/structure/table/glass, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/suture, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"ecH" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"ecW" = ( -/obj/structure/table/glass, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"edm" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"edw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/department/medical) -"edI" = ( -/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/structure/cable, -/obj/structure/sign/departments/chemistry/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"edK" = ( -/obj/structure/table/wood, -/obj/machinery/light/small/directional/south, -/turf/open/floor/wood/parquet, -/area/station/service/library) -"edL" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/mine/explored) -"edM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/white, -/area/station/science/explab) -"edN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/station_engineer, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/layer3, -/turf/open/floor/iron, -/area/station/engineering/main) -"edR" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/sign/warning/biohazard/directional/west, -/obj/structure/window/reinforced/spawner, -/turf/open/floor/catwalk_floor, -/area/station/command/gateway) -"een" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/checkpoint/supply) -"eeo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 8 - }, -/obj/structure/railing, -/turf/open/floor/plating, -/area/station/maintenance/tram/left) -"eer" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/brown/filled/corner, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/corner, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"eeE" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"eeJ" = ( -/obj/structure/window/reinforced/spawner, -/turf/open/floor/iron/dark/smooth_edge, -/area/station/commons/fitness) -"eeN" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"eeO" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 9 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit) -"eeR" = ( -/obj/structure/railing, -/obj/structure/chair/sofa/left{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"eeU" = ( -/obj/structure/chair/pew, -/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) -"efG" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/structure/fluff/tram_rail/floor{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/tram/left) -"efT" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/white, -/area/station/science/research) -"egx" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"egP" = ( -/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/trimline/purple/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lower) -"egY" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/machinery/camera{ - c_tag = "Secure - AI Upper Ring West"; - dir = 6; - network = list("ss13","aicore") - }, -/turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"ehd" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor/right/directional/east{ - name = "Security Front Desk"; - req_access = list("security") - }, -/obj/machinery/door/window/left/directional/west, -/turf/open/floor/iron, -/area/station/security/brig) -"ehy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/siding/wideplating{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"ehz" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"ehD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-maint-passthrough" - }, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"ehI" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - 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, -/area/station/hallway/primary/central) -"ehJ" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"ehV" = ( -/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/cable, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"eim" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space/openspace, -/area/station/solars/port/aft) -"eix" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"eiC" = ( -/obj/effect/turf_decal/siding/thinplating, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron, -/area/station/science/lower) -"eiJ" = ( -/obj/structure/disposalpipe/trunk/multiz/down, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/left) -"eiV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/external{ - autoclose = 0; - frequency = 1449; - id_tag = "mostleft_upper_eva_internal"; - name = "External Access" - }, -/obj/machinery/door_buttons/access_button{ - idDoor = "mostleft_upper_eva_internal"; - idSelf = "mostleft_upper_eva_airlock_control"; - name = "External Access Button"; - pixel_y = 24 - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/left) -"ejp" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"ejL" = ( -/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/maintenance/radshelter/civil) -"ejM" = ( -/obj/effect/turf_decal/trimline/red/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, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"ejS" = ( -/obj/effect/turf_decal/sand/plating, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plating/airless, -/area/mine/explored) -"ejX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/duct, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/service/janitor) -"ejY" = ( -/obj/effect/turf_decal/trimline/purple/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"ekc" = ( -/obj/structure/cable, -/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/white, -/area/station/medical/surgery/fore) -"ekg" = ( -/obj/machinery/disposal/delivery_chute{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"eko" = ( -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"ekr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/light/small/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"eks" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Mining Maintenance Access" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/greater) -"ekx" = ( -/obj/effect/turf_decal/trimline/purple/filled/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/white, -/area/station/science/research) -"ekG" = ( -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"ekL" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad" - }, -/obj/structure/plasticflaps, -/turf/open/floor/plating, -/area/station/cargo/storage) -"ekP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"ekT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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/cable, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"elo" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Head of Security" - }, -/obj/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/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/hos, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hos) -"elr" = ( -/turf/closed/wall, -/area/station/commons/dorms) -"els" = ( -/obj/structure/closet/lasertag/blue, -/obj/effect/turf_decal/tile/blue/full, -/obj/effect/landmark/start/hangover/closet, -/obj/machinery/light/blacklight/directional/east, -/obj/structure/sign/poster/official/random/directional/east, -/turf/open/floor/iron/dark/smooth_large, -/area/station/commons/fitness/recreation/entertainment) -"elF" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"elK" = ( -/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, -/area/station/service/hydroponics/garden) -"elV" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"elW" = ( -/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/treatment_center) -"elX" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"emf" = ( -/obj/machinery/door/airlock/research{ - id_tag = "ResearchExt"; - name = "Research Division" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-entrance-right" - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "Sciencelockdown"; - name = "Research Lockdown Blastdoor" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/obj/effect/mapping_helpers/airlock/access/any/command/minisat, -/obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, -/obj/effect/mapping_helpers/airlock/access/any/science/general, -/turf/open/floor/iron, -/area/station/science/research) -"emr" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"ems" = ( -/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/cyan/visible, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"emT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"enj" = ( -/obj/structure/weightmachine/weightlifter, -/obj/effect/turf_decal/sand, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"enq" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/restaurant_portal/bar, -/turf/open/floor/iron, -/area/station/commons/lounge) -"enF" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"enQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"enY" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 10 - }, -/obj/machinery/camera/motion{ - c_tag = "Secure - ai_upload Access"; - dir = 10; - network = list("ss13","aiupload") - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) -"eoh" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"eok" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"eot" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"eoG" = ( -/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/cable, -/turf/open/floor/iron, -/area/station/commons/dorms) -"ept" = ( -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"epz" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"epF" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/prison) -"epX" = ( -/obj/effect/spawner/random/trash/food_packaging, -/turf/open/misc/asteroid/airless, -/area/mine/explored) -"eqf" = ( -/turf/open/floor/iron, -/area/station/command/gateway) -"eqi" = ( -/obj/effect/landmark/navigate_destination/tcomms, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"eqq" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"equ" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 10 - }, -/obj/machinery/newscaster/directional/south, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"eqI" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"eqL" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"eqN" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"eqW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line{ - 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, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"eqY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmospherics_engine) -"era" = ( -/obj/machinery/camera/motion{ - c_tag = "Secure - AI Upper External West"; - dir = 6; - network = list("aicore") - }, -/turf/open/space/openspace, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"erO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) -"erP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/office) -"erQ" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"esc" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"ese" = ( -/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/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/computer/rdconsole, -/turf/open/floor/iron, -/area/station/science/lab) -"esA" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/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/white, -/area/station/science/research) -"esC" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/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/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/commons/dorms) -"esQ" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 5 - }, -/obj/effect/landmark/start/hangover/closet, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/tram/right) -"esY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"etb" = ( -/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, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"etm" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"etp" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"ets" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/obj/structure/disposalpipe/junction/flip, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"ett" = ( -/obj/machinery/computer/cargo, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Cargo - Warehouse North"; - dir = 9; - network = list("ss13","cargo") - }, -/obj/machinery/button/door/directional/north{ - id = "QMLoaddoor"; - pixel_x = -6 - }, -/obj/machinery/button/door/directional/north{ - id = "QMLoaddoor2"; - pixel_x = 6 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"etC" = ( -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"etH" = ( -/obj/effect/turf_decal/siding/thinplating/end{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/station/security/warden) -"etO" = ( -/obj/machinery/duct, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"eug" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/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/white, -/area/station/medical/virology) -"euj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/grille_or_waste, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/science) -"eus" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"euC" = ( -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"euI" = ( -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/station/hallway/secondary/entry) -"evg" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"evk" = ( -/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/structure/disposalpipe/sorting/mail{ - sortType = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"evp" = ( -/obj/machinery/light/directional/east, -/turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"evs" = ( -/obj/effect/landmark/start/assistant, -/turf/open/floor/wood/parquet, -/area/station/service/library) -"ewk" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/book/manual/wiki/infections{ - pixel_y = 7 - }, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/reagent_containers/syringe/antiviral, -/obj/machinery/light/directional/west, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"ewt" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"ewx" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/obj/machinery/disposal/bin, -/obj/machinery/newscaster/directional/north, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron, -/area/station/engineering/main) -"ewF" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/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 - }, -/obj/machinery/door/window/left/directional/west{ - name = "Secure Medical Storage"; - req_access = list("medical") - }, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"ewK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/lesser) -"ewW" = ( -/obj/structure/railing/corner, -/turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"ewX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/status_display/ai/directional/east, -/obj/structure/cable/layer3, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"exi" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - Chief Engineer's Office"; - dir = 10; - network = list("ss13","engineering") - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"exk" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"exl" = ( -/obj/machinery/computer/atmos_control/nitrogen_tank{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"exm" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/chapel, -/area/station/service/chapel) -"exo" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"exT" = ( -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/machinery/cryopod{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/common/cryopods) -"eyc" = ( -/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/white, -/area/station/science/research) -"eyi" = ( -/obj/structure/sign/warning/vacuum/directional/north, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/right) -"eyG" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"eyR" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"eyX" = ( -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/station/science/genetics) -"eza" = ( -/obj/structure/grille, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/security) -"ezs" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"ezw" = ( -/turf/open/openspace, -/area/station/science/research) -"ezF" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"ezL" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Commons Area" - }, -/obj/machinery/door/firedoor, -/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, -/area/station/commons/fitness/recreation) -"ezX" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/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, -/area/station/hallway/secondary/command) -"eAg" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"eAk" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"eAr" = ( -/obj/machinery/light/directional/south, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"eAz" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"eAD" = ( -/obj/machinery/light_switch/directional/west, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"eAG" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/hallway/primary/tram/right) -"eAN" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"eAS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"eAZ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/iron, -/area/station/commons/dorms) -"eBf" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/radshelter/service) -"eBj" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/spawner/random/structure/barricade{ - spawn_loot_chance = 50 - }, -/turf/open/floor/plating/airless, -/area/mine/explored) -"eBz" = ( -/obj/structure/bed, -/obj/effect/spawner/random/contraband/prison, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/landmark/start/prisoner, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"eBF" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"eBM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/greater) -"eCa" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/iron, -/area/station/security/courtroom) -"eCj" = ( -/turf/open/floor/iron, -/area/station/science/ordnance/storage) -"eCp" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"eCs" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/filled/corner, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"eCv" = ( -/obj/structure/table/wood, -/obj/item/holosign_creator/robot_seat/bar, -/turf/open/floor/wood, -/area/station/service/bar) -"eCP" = ( -/obj/effect/landmark/start/customs_agent, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/chair, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"eCQ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/light/directional/south, -/obj/structure/closet/masks, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron, -/area/station/commons/fitness) -"eDd" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) -"eDh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"eDo" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/engine, -/area/station/science/explab) -"eDG" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/structure/table, -/turf/open/floor/iron, -/area/station/commons/dorms) -"eDI" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/commons/dorms) -"eDO" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/item/defibrillator/loaded{ - pixel_y = 6 - }, -/obj/effect/turf_decal/siding/white, -/obj/machinery/door/window/left/directional/west{ - name = "Secure Medical Storage"; - req_access = list("medical") - }, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/glasses/blindfold, -/obj/item/clothing/glasses/blindfold, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/ears/earmuffs, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"eDR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/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, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"eDW" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"eDY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/medical) -"eEg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) -"eEm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/item/wrench, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"eEp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"eED" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/command/heads_quarters/rd) -"eEK" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/air_input{ - dir = 1 - }, -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"eFr" = ( -/obj/effect/turf_decal/trimline/blue/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/white, -/area/station/command/heads_quarters/cmo) -"eFt" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/obj/structure/table/wood, -/obj/structure/window/reinforced/spawner/west, -/obj/structure/window/reinforced/spawner/north, -/obj/effect/spawner/random/decoration/ornament, -/turf/open/floor/iron/grimy, -/area/station/service/lawoffice) -"eFu" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/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 = "Chapel" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/station/service/chapel) -"eFx" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/effect/turf_decal/siding/wideplating/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wideplating/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock/oresilo) -"eFy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"eFJ" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Recreation Area Maintenance Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/commons/fitness/recreation) -"eFO" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/landmark/blobstart, -/obj/machinery/duct, -/obj/effect/spawner/random/trash/graffiti{ - pixel_x = -32; - spawn_loot_chance = 25 - }, -/obj/effect/spawner/random/trash/graffiti{ - pixel_y = 32; - spawn_loot_chance = 25 - }, -/turf/open/floor/iron/freezer, -/area/station/commons/lounge) -"eFQ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"eFY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) -"eGg" = ( -/obj/effect/turf_decal/arrows/white{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmospherics_engine) -"eGi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"eGl" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lantern{ - pixel_y = 7 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"eGn" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"eGp" = ( -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"eGt" = ( -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/tram/right) -"eHf" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/table, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/pen, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"eHg" = ( -/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, -/area/station/cargo/miningdock) -"eHh" = ( -/obj/effect/turf_decal/trimline/green/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 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"eHk" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"eHr" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/ordnance_freezer_chamber_input, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"eHG" = ( -/obj/machinery/firealarm/directional/north, -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = -32 - }, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"eHK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"eHY" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"eIb" = ( -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison/work) -"eIk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"eIt" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"eIw" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/firealarm/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"eIy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat_interior) -"eIM" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrogen_input{ - dir = 1 - }, -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"eIX" = ( -/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/cable, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"eJn" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"eJI" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"eJM" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) -"eJP" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 11; - height = 22; - id = "whiteship_home"; - name = "SS13: Auxiliary Dock, Station-Port"; - width = 35 - }, -/turf/open/space/openspace, -/area/space) -"eJW" = ( -/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/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/structure/sign/warning/secure_area/directional/east, -/turf/open/floor/iron/white, -/area/station/science/lower) -"eKj" = ( -/obj/effect/turf_decal/trimline/red/arrow_cw{ - dir = 8 - }, -/obj/effect/landmark/start/customs_agent, -/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/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"eKt" = ( -/turf/open/openspace, -/area/station/security/checkpoint/supply) -"eKA" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Genetics Lab" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/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/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/genetics, -/turf/open/floor/iron/white, -/area/station/science/genetics) -"eKD" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"eKO" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 1 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"eKQ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/machinery/door/window/left/directional/west{ - dir = 1; - name = "Cargo Desk"; - req_access = list("cargo") - }, -/obj/structure/desk_bell{ - pixel_x = -7 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"eKZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/tram/mid) -"eLc" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"eLe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"eLp" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"eLr" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) -"eLs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"eLY" = ( -/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/security/prison) -"eMs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"eMA" = ( -/obj/effect/landmark/carpspawn, -/turf/open/space/openspace, -/area/space) -"eMY" = ( -/obj/structure/table, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"eMZ" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/structure/fluff/tram_rail/floor{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/tram/center) -"eNs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"eNv" = ( -/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/security/processing) -"eNx" = ( -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) -"eNz" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 6 - }, -/obj/structure/table, -/obj/item/stock_parts/cell/high{ - pixel_x = -8; - pixel_y = 9 - }, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/turf/open/floor/iron, -/area/station/science/auxlab) -"eNF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/large, -/area/station/hallway/secondary/entry) -"eNG" = ( -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/machinery/light/directional/south, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/airalarm/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Departures - South Main" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"eNH" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/machinery/computer/pandemic, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"eNP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"eNS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"eOg" = ( -/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/iron, -/area/station/cargo/warehouse) -"eOi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/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/tram/center) -"eOk" = ( -/turf/open/floor/glass, -/area/station/cargo/storage) -"eOv" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness) -"eON" = ( -/obj/effect/landmark/navigate_destination/bridge, -/obj/effect/spawner/random/engineering/tracking_beacon, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"eOU" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"ePj" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/incinerator_input{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"ePl" = ( -/obj/structure/disposalpipe/segment, -/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/cafeteria{ - dir = 5 - }, -/area/station/science/breakroom) -"ePL" = ( -/obj/structure/table/wood, -/obj/structure/reagent_dispensers/wall/peppertank/directional/east, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hos) -"ePW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/security/armory) -"ePZ" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/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, -/turf/open/floor/iron/white, -/area/station/science/research) -"eQr" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/south, -/obj/machinery/camera{ - c_tag = "Service - Hydroponics South"; - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"eQy" = ( -/obj/effect/turf_decal/siding/thinplating, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron, -/area/station/science/lower) -"eQQ" = ( -/obj/machinery/mech_bay_recharge_port{ - dir = 2 - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"eQV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"eQY" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"eQZ" = ( -/obj/effect/turf_decal/delivery/white{ - color = "#52B4E9" - }, -/obj/effect/mapping_helpers/dead_body_placer, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"eRi" = ( -/obj/machinery/computer/prisoner/gulag_teleporter_computer{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/processing) -"eRn" = ( -/obj/structure/table/glass, -/obj/item/stack/medical/mesh, -/obj/item/stack/medical/gauze, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Medical - Treatment South-East"; - network = list("ss13","medbay") - }, -/obj/machinery/vending/wallmed/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"eRv" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/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, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"eRw" = ( -/obj/machinery/hydroponics/soil, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/garden) -"eRK" = ( -/obj/machinery/door/airlock/security{ - name = "Interrogation" - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/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/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"eRM" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/fluff/tram_rail/floor{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"eRO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"eRU" = ( -/obj/structure/table/wood, -/obj/machinery/firealarm/directional/north, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/turf/open/floor/carpet, -/area/station/service/chapel/monastery) -"eSf" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/effect/turf_decal/trimline/neutral/filled/warning, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"eSx" = ( -/turf/closed/wall, -/area/station/service/kitchen) -"eSz" = ( -/turf/open/openspace, -/area/station/hallway/primary/tram/center) -"eSD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/office) -"eSI" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/requests_console/directional/west{ - department = "Engineering"; - departmentType = 4; - name = "Engineering Requests Console" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"eST" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/cargo) -"eTb" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"eTv" = ( -/obj/machinery/modular_computer/console/preset/engineering{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"eTz" = ( -/obj/machinery/door/airlock/security{ - name = "Security Office" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron, -/area/station/security/office) -"eTI" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"eTU" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"eUk" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/trimline/white/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"eUn" = ( -/obj/machinery/door/airlock{ - name = "Service Lathe Access" - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/service/general, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"eUo" = ( -/obj/structure/table, -/obj/item/stock_parts/micro_laser{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/stock_parts/micro_laser{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/stock_parts/micro_laser{ - pixel_x = 2 - }, -/obj/item/stock_parts/micro_laser{ - pixel_x = 6; - pixel_y = -2 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"eUp" = ( -/obj/machinery/door/airlock/external{ - name = "Common Mining Dock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit) -"eUF" = ( -/obj/structure/bed{ - dir = 8 - }, -/obj/item/bedsheet/dorms, -/obj/effect/landmark/start/assistant, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"eUH" = ( -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/security/processing) -"eUJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/girder, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/greater) -"eUS" = ( -/obj/structure/bed{ - dir = 4 - }, -/obj/item/bedsheet/dorms{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"eUZ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/obj/structure/cable, -/obj/structure/closet/athletic_mixed, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/camera/directional/south{ - c_tag = "Civilian - Fitness Center South-East" - }, -/turf/open/floor/iron, -/area/station/commons/fitness) -"eVh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"eVi" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=7-TunnelRightBottomDoor"; - location = "6-TunnelRightBottom" - }, -/obj/machinery/camera/directional/south{ - c_tag = "Maintenance - East Tram Tunnel 4" - }, -/mob/living/simple_animal/bot/secbot/beepsky/officer, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"eVv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/east, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"eWl" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/freezer, -/area/station/science/lower) -"eXr" = ( -/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/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Medical - Main South-West"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"eXB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"eXH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/railing, -/turf/open/floor/plating, -/area/station/maintenance/tram/mid) -"eXL" = ( -/obj/effect/turf_decal/siding/thinplating/corner, -/obj/structure/railing/corner, -/obj/effect/turf_decal/trimline/red/corner, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"eXN" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) -"eYa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"eYe" = ( -/obj/machinery/suit_storage_unit/rd, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/command/heads_quarters/rd) -"eYq" = ( -/obj/effect/turf_decal/trimline/neutral/filled/arrow_cw{ - dir = 1 - }, -/obj/structure/sign/directions/supply{ - dir = 4; - pixel_y = 28 - }, -/obj/structure/sign/directions/security{ - dir = 8; - pixel_y = 34 - }, -/obj/structure/sign/directions/command{ - dir = 8; - pixel_y = 40 - }, -/obj/machinery/light/directional/north, -/obj/structure/sign/directions/vault{ - dir = 8; - pixel_y = 22 - }, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment{ - 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/tram/center) -"eYv" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"eYC" = ( -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/freezer, -/area/station/science/lower) -"eYF" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/security/brig) -"eYR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"eZb" = ( -/obj/structure/fluff/paper/stack{ - dir = 4 - }, -/obj/item/paper, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/station/maintenance/tram/right) -"eZk" = ( -/obj/docking_port/stationary/mining_home/common{ - dir = 4 - }, -/turf/open/misc/asteroid/airless, -/area/mine/explored) -"eZT" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/structure/chair/office, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"faf" = ( -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"fag" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/firealarm/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"fal" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/gravity_generator) -"faz" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/public/glass{ - name = "Service Wing Hallway" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"faC" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"faF" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner, -/obj/effect/turf_decal/trimline/purple/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 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"faL" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"faN" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/structure/table, -/turf/open/floor/iron, -/area/station/commons/dorms) -"fba" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - 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/iron, -/area/station/hallway/primary/tram/center) -"fbd" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"fbf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/prison/work) -"fbk" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/structure/fluff/tram_rail/floor{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/tram/center) -"fbo" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/structure/railing/corner, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw{ - dir = 1 - }, -/obj/effect/turf_decal/caution{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"fbq" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"fbt" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/trimline/green/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/white, -/area/station/medical/virology) -"fbx" = ( -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"fbC" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"fbH" = ( -/obj/machinery/light/small/directional/north, -/turf/open/floor/carpet, -/area/station/cargo/miningdock) -"fbM" = ( -/obj/machinery/plumbing/synthesizer{ - dir = 8; - reagent_id = /datum/reagent/water - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/janitor) -"fbP" = ( -/obj/machinery/door/airlock/hydroponics/glass{ - name = "Hydroponics" - }, -/obj/effect/turf_decal/trimline/green/filled/line, -/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, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"fcg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/cargo) -"fcF" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/machinery/modular_computer/console/preset/cargochat/science, -/turf/open/floor/iron/white, -/area/station/science/explab) -"fcN" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/theater) -"fdk" = ( -/obj/structure/sign/warning/vacuum/external/directional/south, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"fdt" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/machinery/light_switch/directional/west{ - pixel_y = -8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"fdz" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/machinery/button/door/directional/north{ - id = "xenobiotopleft"; - name = "Xenobio Top Left Blast Door"; - req_access = list("xenobiology") - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"fdI" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Monitoring" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"fdV" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/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/lobby) -"fdW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/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/security/prison) -"fef" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/storage/toolbox/electrical, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/maintenance/port/central) -"fel" = ( -/obj/effect/turf_decal/trimline/brown/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{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"fem" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/engineering_all, -/obj/effect/turf_decal/trimline/white/filled/line, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"few" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 6 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Science - AI Station Access Exterior"; - network = list("ss13","rd") - }, -/turf/open/floor/iron, -/area/station/engineering/transit_tube) -"feW" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"feZ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"ffo" = ( -/obj/machinery/camera{ - c_tag = "Science - Maintenance Intersection"; - dir = 6; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) -"ffA" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"ffE" = ( -/obj/machinery/door/airlock{ - id_tag = "Toilet1"; - name = "Unit 1" - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"ffU" = ( -/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/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/port/fore) -"ffV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/command/glass{ - name = "EVA Storage" - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/command/eva, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"fgi" = ( -/turf/closed/wall, -/area/station/cargo/lobby) -"fgB" = ( -/obj/structure/holohoop{ - dir = 4 - }, -/turf/open/misc/asteroid, -/area/station/security/prison/workout) -"fgG" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 9 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Hallway - Mid Right Command" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"fgV" = ( -/obj/machinery/computer/cargo{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/machinery/status_display/supply{ - pixel_x = -32 - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"fhv" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 6 - }, -/obj/machinery/firealarm/directional/east, -/obj/structure/table, -/obj/item/clothing/gloves/cargo_gauntlet, -/obj/item/clothing/gloves/cargo_gauntlet, -/obj/item/clothing/gloves/cargo_gauntlet, -/turf/open/floor/iron, -/area/station/cargo/storage) -"fhy" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"fhz" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/obj/structure/table, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"fhB" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/button/door/directional/west{ - id = "Toilet5"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"fhD" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchencounter"; - name = "Kitchen Counter Shutters" - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"fhN" = ( -/obj/item/kirbyplants{ - icon_state = "plant-18" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"fhO" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/commons/dorms) -"fig" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"fij" = ( -/obj/effect/turf_decal/trimline/red/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, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"fik" = ( -/obj/effect/turf_decal/siding/wood, -/obj/structure/window/reinforced/spawner, -/turf/open/floor/wood, -/area/station/service/theater) -"fir" = ( -/obj/machinery/door/poddoor/incinerator_ordmix, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"fiy" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"fiA" = ( -/obj/machinery/light/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Civilian - Disposals"; - dir = 10 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"fiX" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"fjb" = ( -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"fjk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Security - Upper Power Hatch"; - dir = 9; - network = list("ss13","Security") - }, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/security) -"fjo" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) -"fjq" = ( -/turf/open/floor/iron/stairs/medium, -/area/station/hallway/secondary/construction/engineering) -"fjQ" = ( -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"fkb" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"fke" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 10 - }, -/obj/structure/table, -/obj/item/multitool/circuit{ - pixel_x = 7 - }, -/obj/item/multitool/circuit, -/obj/item/multitool/circuit{ - pixel_x = -8 - }, -/turf/open/floor/iron/white, -/area/station/science/explab) -"fkh" = ( -/obj/structure/sign/warning/docking, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"fkm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/flasher/directional/west{ - id = "AI"; - pixel_y = -26 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"fkv" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/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/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"fkB" = ( -/turf/closed/wall/r_wall, -/area/station/science/explab) -"fkH" = ( -/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 = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"fkL" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Plasma Outlet Pump" - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"fkR" = ( -/obj/machinery/chem_master, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"fkU" = ( -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/grass, -/area/station/science/genetics) -"fla" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"flb" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - 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/power/apc/auto_name/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"fll" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"flw" = ( -/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/red/filled/line, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"flZ" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/sofa/corner, -/turf/open/floor/iron, -/area/station/cargo/miningdock/cafeteria) -"fma" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/obj/structure/sign/warning/electric_shock/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/department/medical) -"fmd" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/holosign/barrier/atmos/sturdy, -/obj/structure/fluff/tram_rail/floor{ - dir = 1 - }, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/right) -"fmo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, -/obj/machinery/meter/monitored/distro_loop, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"fmu" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"fmv" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/railing, -/turf/open/floor/plating/airless, -/area/mine/explored) -"fmy" = ( -/turf/closed/wall, -/area/station/hallway/secondary/exit/departure_lounge) -"fmB" = ( -/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, -/area/station/command/heads_quarters/hop) -"fmE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/ai_monitored/security/armory) -"fmJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"fmL" = ( -/obj/structure/cable, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/security/prison/work) -"fnb" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/structure/railing/corner, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"fnF" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/security/office) -"fnO" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"fnS" = ( -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/effect/turf_decal/stripes, -/obj/effect/turf_decal/caution/stand_clear/red{ - dir = 8 - }, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/right) -"fnU" = ( -/obj/machinery/firealarm/directional/west, -/obj/machinery/power/solar_control{ - id = "aicore"; - name = "AI Core Solar Control" - }, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"fog" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/vending/cigarette, -/obj/machinery/light/directional/north, -/obj/machinery/airalarm/directional/north, -/obj/machinery/camera{ - c_tag = "Cargo - Mining Break Room"; - dir = 9; - network = list("ss13","cargo") - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock/cafeteria) -"foi" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/yellow/filled/warning, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"foj" = ( -/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/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/office) -"foy" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"foD" = ( -/obj/structure/table/glass, -/obj/item/computer_hardware/hard_drive/portable/chemistry, -/obj/item/computer_hardware/hard_drive/portable/medical, -/obj/item/computer_hardware/hard_drive/portable/medical, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"foE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"foF" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 10 - }, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/construction/plumbing, -/obj/item/construction/plumbing, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"foG" = ( -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/showroomfloor, -/area/station/service/kitchen/coldroom) -"foL" = ( -/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/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/greater) -"foT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/station/engineering/break_room) -"fpf" = ( -/obj/structure/flora/bush/leavy/style_random, -/obj/structure/flora/tree/palm/style_random, -/turf/open/floor/grass, -/area/station/medical/virology) -"fpg" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"fpo" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 9 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"fpp" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/structure/chair/stool/bar/directional/south, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"fpt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/security) -"fpA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"fpB" = ( -/obj/modular_map_root/tramstation{ - key = "maintenance_enginelong" - }, -/turf/open/floor/plating, -/area/space) -"fpE" = ( -/obj/structure/industrial_lift/tram{ - icon_state = "titanium_white" - }, -/obj/machinery/door/window/left/tram, -/turf/open/openspace, -/area/station/hallway/primary/tram/center) -"fpM" = ( -/obj/effect/landmark/start/cyborg, -/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/grimy, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"fpQ" = ( -/obj/structure/fluff/tram_rail/anchor{ - dir = 1 - }, -/turf/open/openspace, -/area/station/hallway/primary/tram/center) -"fpR" = ( -/obj/effect/landmark/start/captain, -/obj/structure/chair/office, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"fpU" = ( -/obj/machinery/conveyor{ - id = "packageSort2" - }, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"fqi" = ( -/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 = "sorting disposal pipe (Theatre)"; - sortType = 18 - }, -/turf/open/floor/iron/white/side{ - dir = 4 - }, -/area/station/service/theater) -"fql" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/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/security/prison/safe) -"fqo" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/cargo/miningdock/cafeteria) -"fqq" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/mine/explored) -"fqt" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"fqX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/grille_or_waste, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/greater) -"frf" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"frm" = ( -/obj/structure/chair/sofa{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"frp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"frr" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/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/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "tcomms-entrance" - }, -/obj/machinery/door/airlock/engineering{ - name = "Telecommunications" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"frN" = ( -/obj/effect/spawner/structure/window/reinforced/plasma, -/turf/open/floor/plating, -/area/station/engineering/supermatter) -"frT" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"fst" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/science/lower) -"fsu" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"fsy" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate/freezer/blood, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron/freezer, -/area/station/medical/coldroom) -"fsC" = ( -/turf/closed/wall, -/area/station/commons/fitness/recreation) -"fsP" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"fsQ" = ( -/obj/structure/closet{ - name = "Evidence Closet 1" - }, -/turf/open/floor/iron/dark, -/area/station/security/office) -"fsZ" = ( -/obj/structure/table, -/obj/item/clothing/mask/balaclava, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"fte" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Command Wing Hallway" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"ftt" = ( -/obj/structure/table/glass, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/spawner/random/food_or_drink/seed{ - spawn_all_loot = 1; - spawn_random_offset = 1 - }, -/obj/effect/spawner/random/food_or_drink/seed{ - spawn_all_loot = 1; - spawn_random_offset = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"ftP" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/machinery/shower{ - dir = 8; - pixel_x = -7 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"ftQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"ftU" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/turf_decal/box/red, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"fue" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/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) -"fuj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"fur" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"fuI" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"fuV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/door/airlock/command{ - name = "Chief Medical Officer's Office" - }, -/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/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/medical/cmo, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"fuX" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/turf/open/openspace, -/area/station/science/xenobiology) -"fvn" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - Atmospherics Entry Airlock"; - dir = 9; - network = list("ss13","engineering") - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -8 - }, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"fvA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/crew_quarters/dorms) -"fvH" = ( -/obj/structure/transit_tube/crossing, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"fvJ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"fvM" = ( -/obj/structure/stairs/north, -/turf/open/floor/iron/stairs/medium, -/area/station/cargo/miningdock) -"fvR" = ( -/obj/structure/table, -/obj/item/training_toolbox, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness) -"fvS" = ( -/obj/structure/cable, -/obj/machinery/camera/directional/north{ - c_tag = "Civilian - Chapel North" - }, -/turf/open/floor/iron/chapel{ - dir = 6 - }, -/area/station/service/chapel) -"fvX" = ( -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"fwa" = ( -/obj/structure/disposalpipe/trunk/multiz{ - dir = 2 - }, -/obj/machinery/door/window/left/directional/north{ - base_state = "right"; - icon_state = "right"; - name = "Containment Pen #5"; - req_access = list("xenobiology") - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiobottomleft"; - name = "Xenobio Bottom Left Pen Blast Door" - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"fwe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/girder, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/lesser) -"fwF" = ( -/obj/effect/spawner/random/entertainment/arcade{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"fwG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/obj/item/relic, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"fwK" = ( -/obj/machinery/door/airlock/research{ - id_tag = "ResearchExt"; - name = "Research Division" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-entrance-left" - }, -/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, -/turf/open/floor/iron, -/area/station/science/research) -"fwS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"fwT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/auxlab) -"fwW" = ( -/obj/machinery/status_display/ai/directional/north, -/obj/item/stack/ore/glass, -/turf/open/misc/asteroid, -/area/station/security/prison/workout) -"fxo" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/box/red, -/obj/machinery/airalarm/mixingchamber{ - dir = 1; - pixel_y = 24 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/burnchamber) -"fxq" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible{ - dir = 4 - }, -/turf/closed/wall, -/area/station/medical/treatment_center) -"fxC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/window/brigdoor{ - dir = 1; - id = "scicell"; - name = "Science Holding Cell"; - req_access = list("brig_entrance") - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"fxF" = ( -/obj/structure/sign/barsign{ - pixel_y = 32 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/commons/lounge) -"fxK" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"fxM" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"fyd" = ( -/turf/open/openspace, -/area/station/science/xenobiology) -"fyg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-maint-passthrough" - }, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"fyG" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/machinery/firealarm/directional/north, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"fyU" = ( -/obj/machinery/door/airlock/hatch{ - name = "Ladder Access Hatch" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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, -/area/station/hallway/primary/tram/left) -"fza" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"fzg" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/layer2{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"fzj" = ( -/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 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"fzz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/spawner/random/trash/graffiti{ - pixel_y = -32; - spawn_loot_chance = 25 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"fzC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"fzL" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/siding/white, -/obj/machinery/door/window/right/directional/east{ - name = "Secure Medical Storage"; - req_access = list("medical") - }, -/obj/item/storage/medkit/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/storage/medkit/regular, -/obj/item/storage/medkit/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"fzN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"fzU" = ( -/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/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"fAi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/service/kitchen/coldroom) -"fAo" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Secure - AI Antechamber East"; - dir = 10; - network = list("ss13","minisat") - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"fAF" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/caution{ - dir = 1 - }, -/obj/machinery/crossing_signal/southwest, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"fAH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/ai_monitored/security/armory) -"fAK" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/chair/comfy/barber_chair{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/service/salon) -"fAU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"fAY" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/random/contraband/prison, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/radio/intercom/prison/directional/east, -/turf/open/floor/plating, -/area/station/security/prison/work) -"fAZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"fBk" = ( -/obj/effect/landmark/start/security_officer, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/office) -"fBm" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/science/ordnance/storage) -"fBp" = ( -/obj/machinery/door/airlock{ - id_tag = "private_l"; - name = "Private Quarters L" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/commons/dorms) -"fBq" = ( -/obj/structure/ladder, -/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/science/xenobiology) -"fBR" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/sign/warning/deathsposal/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"fCf" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Kitchen" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/duct, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, -/turf/open/floor/iron, -/area/station/service/kitchen) -"fCh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"fCi" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/right/directional/south{ - name = "Kitchen Desk"; - req_access = list("kitchen") - }, -/turf/open/floor/iron, -/area/station/service/kitchen) -"fCm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/wideplating/corner{ - dir = 1 - }, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) -"fCp" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_cw{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Hallway - Port Tram Platform North"; - dir = 10 - }, -/obj/effect/turf_decal/caution{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"fCD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/research) -"fCK" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/door/airlock/public/glass{ - name = "Prison Cafeteria" - }, -/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/cafeteria, -/area/station/security/prison/mess) -"fCL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"fCN" = ( -/obj/structure/chair/sofa/corp/right{ - dir = 1 - }, -/obj/effect/turf_decal/tile, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"fCO" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/filingcabinet, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"fDw" = ( -/obj/machinery/door/airlock/hatch, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/mid) -"fDz" = ( -/obj/effect/turf_decal/trimline/neutral/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 = 6 - }, -/obj/machinery/duct, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"fDJ" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"fDL" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"fDX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate_empty, -/obj/effect/spawner/random/maintenance/four, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/lesser) -"fEc" = ( -/obj/machinery/gravity_generator/main, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"fEe" = ( -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/effect/turf_decal/stripes, -/obj/machinery/firealarm/directional/east, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/science/ordnance/storage) -"fEu" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Four"; - space_dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/security/office) -"fEB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/grille, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/central) -"fEJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"fEK" = ( -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"fEQ" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/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, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"fFi" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Foyer" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/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, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, -/obj/effect/mapping_helpers/airlock/access/any/engineering/general, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"fFx" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"fFE" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/space/basic, -/area/space/nearstation) -"fFF" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/right) -"fFO" = ( -/obj/effect/turf_decal/trimline/neutral/filled/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/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"fFX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"fGc" = ( -/obj/effect/turf_decal/siding/thinplating, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"fGo" = ( -/turf/closed/wall/r_wall, -/area/station/security/checkpoint/escape) -"fGx" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_y = 2 - }, -/obj/item/paper_bin, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/bureaucracy/pen, -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) -"fGM" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/commons/dorms) -"fGN" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"fGU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"fHb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/purple/line{ - dir = 9 - }, -/obj/effect/turf_decal/loading_area, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"fHf" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/spawner/random/structure/furniture_parts, -/obj/item/relic, -/turf/open/floor/plating/airless, -/area/mine/explored) -"fHy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/central) -"fHz" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - Atmospherics Air Chamber"; - dir = 6; - network = list("ss13","engineering") - }, -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"fHU" = ( -/obj/machinery/computer/apc_control{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/ce{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/requests_console/directional/south{ - announcementConsole = 1; - department = "Chief Engineer's Desk"; - departmentType = 3; - name = "Chief Engineer's Request Console" - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"fHW" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/storage/box/lights/mixed, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"fIb" = ( -/obj/machinery/light/blacklight/directional/west, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation/entertainment) -"fIr" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"fIy" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"fIE" = ( -/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, -/area/station/commons/dorms) -"fIR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"fIT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/caution{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/left) -"fIZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/sign/poster/official/safety_report{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Security - Equipment Room"; - dir = 9; - network = list("ss13","Security") - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"fJf" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/obj/machinery/camera/directional/east{ - c_tag = "Security - Main East"; - network = list("ss13","Security") - }, -/turf/open/floor/iron, -/area/station/security/brig) -"fJi" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"fJk" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"fJn" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"fJr" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/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/door/window/right/directional/east{ - name = "Secure Medical Storage"; - req_access = list("medical") - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"fJt" = ( -/obj/machinery/vending/hydroseeds{ - slogan_delay = 700 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"fJw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/ordnance/storage) -"fJB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"fJS" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/west, -/obj/structure/disposalpipe/trunk/multiz{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"fKg" = ( -/obj/machinery/air_sensor/nitrogen_tank, -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"fKk" = ( -/obj/structure/sign/warning/radiation/rad_area/directional/north, -/obj/effect/turf_decal/siding/wideplating{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"fKr" = ( -/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 = "Permabrig Maintenance" - }, -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"fKF" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/central) -"fKO" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/command/heads_quarters/hop) -"fKQ" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/structure/chair/stool/bar/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/iron/cafeteria, -/area/station/service/kitchen/diner) -"fLb" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"fLr" = ( -/turf/open/floor/wood, -/area/station/service/library) -"fLR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/landmark/start/orderly, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"fLW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/effect/mapping_helpers/airlock/locked, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"fLY" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/computer/security/telescreen/vault{ - pixel_y = 30 - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"fLZ" = ( -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/ai_monitored/command/nuke_storage) -"fMs" = ( -/obj/structure/window/reinforced, -/obj/structure/table/wood, -/obj/item/storage/secure/briefcase{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/storage/lockbox/medal, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"fMD" = ( -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"fMN" = ( -/turf/closed/wall/r_wall, -/area/station/command/teleporter) -"fNf" = ( -/obj/machinery/newscaster/directional/east, -/obj/machinery/camera{ - c_tag = "Service - Kitchen Diner North"; - dir = 9; - network = list("ss13","Service") - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"fNi" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/machinery/camera{ - c_tag = "Secure - AI Upper Ring East"; - dir = 10; - network = list("ss13","aicore") - }, -/turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"fNv" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/turf_decal/trimline/purple/filled/warning, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/janitor) -"fNx" = ( -/obj/structure/urinal/directional/north, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"fNB" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/fitness) -"fND" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/obj/effect/turf_decal/siding/blue, -/turf/open/floor/iron/dark/telecomms, -/area/station/science/server) -"fNH" = ( -/obj/structure/chair/sofa/left, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"fNW" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/landmark/start/hangover, -/obj/effect/spawner/random/trash/graffiti{ - pixel_y = -32; - spawn_loot_chance = 50 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"fNY" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 9 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"fOr" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/sign/warning/no_smoking/directional/north, -/obj/item/experi_scanner{ - pixel_x = 5 - }, -/obj/item/experi_scanner, -/obj/item/experi_scanner{ - pixel_x = -5 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"fOs" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/turf/open/floor/wood, -/area/station/commons/dorms) -"fOv" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/clothing/head/welding, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"fOw" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Science - Security Outpost"; - network = list("ss13","rd","Security") - }, -/obj/effect/landmark/start/science_guard, -/obj/structure/reagent_dispensers/wall/peppertank/directional/south, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"fOG" = ( -/obj/structure/toilet{ - pixel_y = 13 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/captain/private) -"fOQ" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Command - Upper Power Hatch" - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"fOW" = ( -/obj/machinery/vending/assist, -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"fPu" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating/airless, -/area/mine/explored) -"fPy" = ( -/obj/structure/chair/stool/bar/directional/east, -/turf/open/floor/iron, -/area/station/security/prison) -"fPM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hos) -"fPN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/service/kitchen) -"fQz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/brig) -"fQK" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Medical - Main West"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"fQV" = ( -/obj/structure/tank_dispenser/oxygen{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/machinery/camera{ - c_tag = "Secure - Gateway South"; - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/command/gateway) -"fRb" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/item/radio/intercom/directional/south, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"fRc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"fRi" = ( -/obj/structure/stairs/south, -/turf/open/floor/iron/stairs/medium, -/area/station/science/lower) -"fRm" = ( -/obj/machinery/door/firedoor, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/filled/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/service/hydroponics) -"fRu" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"fRz" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/stool/directional/north, -/turf/open/floor/iron, -/area/station/commons/lounge) -"fRA" = ( -/turf/closed/wall/r_wall, -/area/station/science/ordnance) -"fRZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/external{ - autoclose = 0; - frequency = 1449; - id_tag = "middleleft_lower_eva_internal"; - name = "External Access" - }, -/obj/machinery/door_buttons/access_button{ - idDoor = "middleleft_lower_eva_internal"; - idSelf = "middleleft_lower_eva_airlock_control"; - name = "External Access Button"; - pixel_y = -24 - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/center) -"fSa" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"fSe" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - 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/white, -/area/station/medical/medbay/central) -"fSi" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/iron/freezer, -/area/station/medical/coldroom) -"fSm" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"fSr" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 10 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"fSM" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 - }, -/obj/item/kirbyplants/random, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/cargo/office) -"fST" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) -"fSY" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/security/telescreen{ - dir = 4; - name = "Cargo Camera Monitor"; - network = list("ss13","cargo") - }, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"fTa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/central) -"fTi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"fTp" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"fTu" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/obj/machinery/button/door/directional/west{ - id = "commissarydoor"; - name = "Commissary Shutter Access" - }, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"fTz" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/turf/open/floor/wood, -/area/station/service/library) -"fTC" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - 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, -/area/station/commons/fitness/recreation) -"fTH" = ( -/obj/effect/turf_decal/trimline/red/arrow_cw{ - dir = 4 - }, -/obj/effect/landmark/start/customs_agent, -/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/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"fTK" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/filled/warning{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"fUe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/food_packaging, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/mid) -"fUh" = ( -/obj/structure/chair, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron/dark, -/area/station/maintenance/radshelter/civil) -"fUp" = ( -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"fUy" = ( -/obj/structure/chair/comfy/beige{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"fUQ" = ( -/obj/machinery/door/airlock/hatch{ - name = "Ladder Access Hatch" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/right) -"fVe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"fVh" = ( -/obj/machinery/shieldgen, -/turf/open/floor/plating, -/area/station/engineering/engine_smes) -"fVC" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"fVE" = ( -/obj/effect/turf_decal/siding/thinplating, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"fVI" = ( -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"fWd" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"fWn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter/room) -"fWw" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"fWA" = ( -/turf/open/floor/plating, -/area/station/hallway/secondary/exit) -"fWB" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation/entertainment) -"fWG" = ( -/obj/structure/bed{ - dir = 4 - }, -/obj/item/bedsheet/dorms{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"fWJ" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/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, -/area/station/security/office) -"fXa" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"fXh" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/caution, -/obj/structure/cable, -/obj/machinery/crossing_signal/northwest, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"fXq" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/navigate_destination/research, -/turf/open/floor/iron/white, -/area/station/science/lab) -"fXr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"fXt" = ( -/obj/structure/table, -/obj/item/phone, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 5 - }, -/obj/machinery/airalarm/directional/east, -/obj/item/radio/intercom/directional/north{ - frequency = 1447; - name = "ai intercom" - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) -"fXv" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Medical - Surgery B"; - network = list("ss13","medbay") - }, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/machinery/vending/wallmed/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"fXB" = ( -/obj/structure/chair/pew, -/turf/open/floor/iron/chapel{ - dir = 4 - }, -/area/station/service/chapel) -"fXD" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/structure/disposalpipe/segment{ - 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/surgery/aft) -"fXR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/iron/smooth, -/area/station/maintenance/port/aft) -"fXT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/space_heater, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/lesser) -"fYf" = ( -/turf/open/floor/iron/textured_large, -/area/station/security/execution/education) -"fYm" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair/stool/bar/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/sorting/mail/flip{ - name = "sorting disposal pipe (Bar)"; - sortType = 19 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/lounge) -"fYo" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"fYu" = ( -/obj/structure/bodycontainer/morgue{ - dir = 2 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"fYw" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/stool/bar/directional/south, -/obj/effect/landmark/start/assistant, -/obj/machinery/duct, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/commons/lounge) -"fYy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"fYD" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/lesser) -"fYR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"fZj" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/south, -/obj/machinery/camera{ - c_tag = "Command - Bridge Left Airlock"; - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"fZm" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/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, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"fZz" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/item/computer_hardware/hard_drive/portable/ordnance, -/obj/item/computer_hardware/hard_drive/portable/ordnance, -/obj/item/computer_hardware/hard_drive/portable/ordnance, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/command/heads_quarters/rd) -"fZH" = ( -/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{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) -"fZK" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/service/lawoffice) -"fZS" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"fZX" = ( -/obj/machinery/door/airlock{ - name = "Prison Stall" - }, -/turf/open/floor/iron/freezer, -/area/station/security/prison) -"fZY" = ( -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/structure/table, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"gab" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/port/aft) -"gaf" = ( -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"gag" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/machinery/camera{ - c_tag = "Science - Right Entry Airlock"; - dir = 6; - network = list("ss13","rd") - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/research) -"gai" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/commons/lounge) -"gap" = ( -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/mine/explored) -"gaq" = ( -/obj/structure/bookcase/random/fiction, -/turf/open/floor/wood/large, -/area/station/service/library) -"gas" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"gaV" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"gbB" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/crowbar, -/obj/item/radio, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"gbU" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"gbZ" = ( -/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/line, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/explab) -"gcf" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Arrivals - Landing Bay" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"gcm" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = 12 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"gcn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"gcp" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/left) -"gcN" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"gcP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"gcS" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/science/ordnance/storage) -"gcV" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/item/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/syringe, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"gdd" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"gdh" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/lower) -"gdn" = ( -/obj/machinery/air_sensor/nitrous_tank, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"gdt" = ( -/turf/closed/wall/r_wall, -/area/station/cargo/storage) -"gdF" = ( -/obj/machinery/vending/wardrobe/det_wardrobe, -/obj/structure/sign/poster/official/dick_gum{ - pixel_y = -32 - }, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"gdJ" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/obj/structure/sign/poster/contraband/atmosia_independence{ - pixel_y = 32 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"gdN" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/janitor) -"gdW" = ( -/obj/structure/disposalpipe/segment, -/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/hallway/primary/central) -"gen" = ( -/obj/effect/turf_decal/tile{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/north, -/obj/machinery/camera{ - c_tag = "Arrivals - North Docking Wing"; - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"geA" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"geG" = ( -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"geI" = ( -/obj/structure/table, -/obj/effect/spawner/random/food_or_drink/condiment, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"geK" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/camera{ - c_tag = "Cargo - Warehouse West"; - dir = 9; - network = list("ss13","cargo") - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"geO" = ( -/obj/effect/turf_decal/sand/plating, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating/airless, -/area/mine/explored) -"geT" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"gfd" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/obj/structure/fluff{ - desc = "What, you think the water just magically soaks into the metallic flooring?"; - icon = 'icons/obj/lavaland/survival_pod.dmi'; - icon_state = "fan_tiny"; - name = "shower drain" - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"gfK" = ( -/turf/closed/wall/r_wall, -/area/station/security/execution/education) -"gfN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"gfP" = ( -/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/red/filled/corner, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"gfQ" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/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/corner, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"gfV" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/neutral/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, -/area/station/commons/dorms) -"ggi" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/item/stamp/rd{ - pixel_x = 3; - pixel_y = -2 - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/command/heads_quarters/rd) -"ggp" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/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/lobby) -"ggv" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/suit/radiation, -/obj/item/clothing/head/radiation, -/obj/item/clothing/glasses/meson, -/obj/item/geiger_counter, -/obj/item/geiger_counter, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"ggw" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor2"; - name = "Supply Dock Loading Door" - }, -/obj/machinery/conveyor{ - id = "QMLoad2" - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"ggz" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high{ - pixel_x = -8; - pixel_y = 9 - }, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"ggB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/space_heater, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/greater) -"ggK" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"ggL" = ( -/obj/structure/closet/crate/trashcart/laundry, -/obj/item/clothing/under/rank/prisoner/skirt, -/obj/item/clothing/under/rank/prisoner/skirt, -/obj/item/clothing/under/rank/prisoner/skirt, -/obj/item/clothing/shoes/sneakers/orange, -/obj/effect/spawner/random/contraband/prison, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison) -"ggR" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/lower) -"ggV" = ( -/obj/structure/table/wood, -/obj/item/food/grown/poppy{ - pixel_y = 2 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"gha" = ( -/turf/open/floor/iron/stairs/medium{ - dir = 1 - }, -/area/station/commons/lounge) -"ghh" = ( -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"ghz" = ( -/turf/closed/wall, -/area/station/hallway/secondary/construction/engineering) -"ghB" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/structure/sign/gym/right{ - pixel_y = -32 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"ghE" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/security/armory) -"ghM" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"gia" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/iron, -/area/service/salon) -"gif" = ( -/obj/structure/ore_box, -/turf/open/misc/asteroid, -/area/mine/explored) -"gii" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Public Garden Maintenance Access" - }, -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/smooth, -/area/station/service/hydroponics/garden) -"gil" = ( -/obj/structure/closet/secure_closet/research_director, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/command/heads_quarters/rd) -"gio" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"gip" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"gir" = ( -/obj/machinery/light/directional/north, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"gis" = ( -/obj/effect/turf_decal/trimline/white/filled/line{ - 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, -/area/station/engineering/storage/tech) -"giu" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/neutral/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, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"giP" = ( -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"gjf" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/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/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"gjm" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/structure/sign/gym{ - pixel_y = -32 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"gjC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/machinery/atmospherics/components/binary/pump/off{ - name = "Mix to Incinerator" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"gjG" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"gkc" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Cargo - Security Outpost"; - network = list("ss13","Security","cargo") - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/button/door/directional/west{ - id = "crgdoor"; - name = "Cargo Cell Control"; - normaldoorcontrol = 1; - req_access = list("brig_entrance") - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"gke" = ( -/obj/effect/turf_decal/trimline/white/corner, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"gki" = ( -/turf/closed/wall, -/area/station/security/brig) -"gkq" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/line, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"gkr" = ( -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"gkw" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) -"gkQ" = ( -/obj/machinery/computer/atmos_control/mix_tank{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"gkW" = ( -/turf/closed/wall/rock/porous, -/area/station/maintenance/starboard/greater) -"glh" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/greater) -"glm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison) -"glw" = ( -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"glA" = ( -/obj/machinery/chem_master/condimaster, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/service/kitchen) -"glD" = ( -/obj/structure/closet{ - name = "Evidence Closet 1" - }, -/obj/item/storage/secure/safe/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/office) -"glJ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/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, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"glP" = ( -/obj/structure/chair/plastic, -/turf/open/floor/eighties/red, -/area/station/commons/fitness/recreation/entertainment) -"glY" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/tram/left) -"gmc" = ( -/obj/item/kirbyplants/random, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/light/directional/west, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"gmv" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/sofa/corp/left{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/lounge) -"gmB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"gmH" = ( -/obj/structure/destructible/cult/item_dispenser/archives/library, -/turf/open/floor/engine/cult, -/area/station/service/library) -"gmL" = ( -/obj/effect/turf_decal/sand/plating, -/obj/machinery/button/door/directional/east{ - id = "hiddendock"; - name = "Dock Access" - }, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"gmN" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/science/breakroom) -"gmP" = ( -/obj/structure/rack, -/obj/item/storage/box/lights/tubes{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/lights/tubes, -/obj/item/wrench, -/obj/item/stack/cable_coil, -/turf/open/misc/asteroid, -/area/station/medical/chemistry) -"gmX" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Permanent Convict Item Storage" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/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/security/general, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"gnf" = ( -/obj/effect/spawner/random/trash/garbage, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/central) -"gnj" = ( -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/effect/turf_decal/stripes, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/left) -"gnp" = ( -/obj/machinery/door/airlock{ - name = "Bathroom" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron/freezer, -/area/station/science/lower) -"gnr" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"gnu" = ( -/obj/machinery/camera{ - c_tag = "Service - Radstorm Shelter"; - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/maintenance/radshelter/service) -"gnI" = ( -/obj/structure/chair/sofa/right{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/medical/psychology) -"gnM" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/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, -/area/station/hallway/secondary/command) -"gnO" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/door/airlock/medical/glass{ - name = "Medical Freezer" - }, -/obj/machinery/door/firedoor, -/obj/machinery/duct, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, -/turf/open/floor/iron/freezer, -/area/station/medical/surgery/aft) -"gnQ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/vending/coffee, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron, -/area/station/commons/dorms) -"gnU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/left) -"goe" = ( -/obj/structure/sign/warning/radiation/rad_area/directional/north{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"gos" = ( -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"goR" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Chapel Office" - }, -/obj/structure/cable, -/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 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"goX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/station/medical/virology) -"gpd" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/radio/intercom/directional/east, -/obj/machinery/duct, -/obj/effect/spawner/random/entertainment/lighter, -/turf/open/floor/iron, -/area/station/service/bar) -"gph" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"gpj" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"gpl" = ( -/turf/open/floor/iron, -/area/station/science/auxlab) -"gpp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/port/central) -"gpr" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/wood, -/area/station/service/bar) -"gps" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Gas to Filter" - }, -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - Engine Room Airlock"; - dir = 10; - network = list("ss13","engine","engineering") - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"gpR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/computer/shuttle/arrivals/recall, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"gpS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"gqb" = ( -/obj/structure/chair/stool/bar/directional/west, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"gqf" = ( -/obj/machinery/door/airlock/engineering/glass/critical{ - heat_proof = 1; - name = "Supermatter Chamber" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"gqp" = ( -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"gqv" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/effect/landmark/start/scientist, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"gqz" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/maintenance/radshelter/service) -"gqJ" = ( -/obj/machinery/light/small/directional/east, -/turf/open/misc/asteroid/airless, -/area/mine/explored) -"gqL" = ( -/obj/machinery/atmospherics/components/trinary/mixer/airmix{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"gqS" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw, -/obj/effect/turf_decal/caution, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"gqV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"grc" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/machinery/shower{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"grf" = ( -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"grm" = ( -/obj/effect/turf_decal/stripes/white/corner, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/center) -"grp" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/stripes/box, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electric_shock/directional/west, -/turf/open/floor/plating, -/area/station/hallway/primary/central) -"grA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"grU" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"gsa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/dorms) -"gsg" = ( -/obj/machinery/iv_drip, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"gsk" = ( -/obj/effect/turf_decal/trimline/neutral/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, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"gsB" = ( -/obj/machinery/duct, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"gsF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"gsT" = ( -/obj/structure/easel, -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/twentythree_nineteen, -/obj/item/canvas/twentythree_twentythree, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) -"gsU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/library) -"gtp" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/dorms) -"gtv" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/filled/corner, -/obj/structure/disposalpipe/segment{ - 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/iron/white, -/area/station/medical/virology) -"gtx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "engi-entrance" - }, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/engineering/main) -"gtZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/seven, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/greater) -"guj" = ( -/obj/machinery/light/small/directional/south, -/turf/open/misc/asteroid/airless, -/area/mine/explored) -"guQ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/warning{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"guT" = ( -/obj/structure/railing, -/turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"guY" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/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/iron, -/area/station/cargo/warehouse) -"gvx" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/door/airlock/command{ - name = "Teleport Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/command/teleporter, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"gvI" = ( -/turf/closed/wall, -/area/station/security/prison) -"gvK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/structure/cable/layer3, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"gvM" = ( -/obj/structure/chair/stool/bar/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"gwf" = ( -/obj/effect/turf_decal/siding/thinplating, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"gwq" = ( -/obj/structure/chair/pew/right, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/chapel{ - dir = 4 - }, -/area/station/service/chapel) -"gws" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/stamp/hos, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hos) -"gwy" = ( -/obj/structure/sign/warning/no_smoking{ - pixel_x = -28 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/machinery/computer/atmos_control/nocontrol/incinerator{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"gwR" = ( -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"gxc" = ( -/obj/machinery/turretid{ - control_area = "/area/station/ai_monitored/turret_protected/ai_upload"; - name = "AI Upload Turret Control"; - pixel_x = 25; - req_access = list("minisat") - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) -"gxh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"gxk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/robot_debris, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/lesser) -"gxw" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"gxx" = ( -/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, -/area/station/engineering/main) -"gxy" = ( -/obj/structure/closet/emcloset{ - anchored = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"gxG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"gxN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/obj/structure/chair/plastic{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"gxY" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/obj/structure/closet/boxinggloves, -/obj/machinery/camera/directional/south{ - c_tag = "Civilian - Fitness Center South-West" - }, -/turf/open/floor/iron, -/area/station/commons/fitness) -"gyf" = ( -/obj/effect/turf_decal/trimline/green/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/corner, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"gyk" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Air to Distro" - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/medical/virology) -"gyn" = ( -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/effect/spawner/random/vending/colavend, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"gyr" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 4 - }, -/obj/item/kirbyplants/photosynthetic, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"gyt" = ( -/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/carpet, -/area/station/service/chapel) -"gyx" = ( -/obj/structure/chair/office, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"gyA" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 9 - }, -/obj/machinery/vending/cigarette, -/obj/structure/sign/departments/restroom/directional/north, -/turf/open/floor/iron/dark, -/area/station/commons/lounge) -"gyB" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/machinery/light/directional/south, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/white, -/area/station/science/research) -"gyC" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"gyH" = ( -/obj/structure/bed/double, -/obj/item/bedsheet/dorms_double, -/obj/effect/landmark/start/assistant, -/turf/open/floor/wood, -/area/station/commons/dorms) -"gyJ" = ( -/turf/closed/wall, -/area/station/commons/storage/tools) -"gyP" = ( -/obj/structure/rack, -/obj/item/healthanalyzer{ - pixel_x = -3; - pixel_y = -4 - }, -/obj/item/healthanalyzer{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/medkit{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/storage/medkit{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/assembly/prox_sensor, -/obj/item/assembly/prox_sensor, -/obj/item/assembly/prox_sensor, -/obj/item/assembly/prox_sensor, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"gyS" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"gzJ" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 4 - }, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"gzU" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"gAk" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/button/door/directional/west{ - id = "Toilet6"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/obj/machinery/recharge_station, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"gAp" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"gAE" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/obj/item/flashlight, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/pipe_dispenser, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"gAF" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"gAG" = ( -/obj/machinery/conveyor{ - id = "packageSort2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"gAH" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"gAO" = ( -/obj/structure/railing/corner, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/station/security/brig) -"gAS" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Security - Prison Main South-West"; - network = list("ss13","Security","prison") - }, -/turf/open/floor/iron, -/area/station/security/prison) -"gBh" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Hallway - Starboard Tram Platform South-West"; - dir = 10 - }, -/obj/effect/turf_decal/caution, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"gBm" = ( -/obj/effect/spawner/random/vending/colavend, -/turf/open/floor/wood, -/area/station/service/bar) -"gBr" = ( -/obj/structure/chair/pew, -/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) -"gBz" = ( -/obj/machinery/door/airlock/medical{ - name = "Psychology" - }, -/obj/structure/disposalpipe/segment{ - 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/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/medical/psychology, -/turf/open/floor/iron/white, -/area/station/medical/psychology) -"gBE" = ( -/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/catwalk_floor, -/area/station/maintenance/port/central) -"gBL" = ( -/obj/structure/chair/comfy/beige, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/commons/dorms) -"gBW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/hatch{ - name = "Ladder Access Hatch" - }, -/turf/open/floor/iron/smooth, -/area/station/hallway/primary/tram/left) -"gCc" = ( -/obj/machinery/door/window/brigdoor{ - dir = 4; - id = "crgcell"; - name = "Cargo Holding Cell"; - req_access = list("brig_entrance") - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"gCd" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/item/folder/yellow, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -3; - pixel_y = -2 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"gCn" = ( -/obj/machinery/atmospherics/components/unary/passive_vent{ - name = "server vent" - }, -/turf/open/floor/circuit/telecomms/server, -/area/station/science/server) -"gCD" = ( -/obj/structure/sign/warning/vacuum/directional/south, -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/left) -"gCH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"gCX" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"gDh" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/surgery/fore) -"gDp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/greater) -"gDr" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"gDA" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/sofa/corp/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/lounge) -"gFb" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 1 - }, -/obj/machinery/light/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"gFg" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/dark/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/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 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"gFn" = ( -/turf/open/floor/iron/stairs{ - dir = 4 - }, -/area/station/hallway/secondary/entry) -"gFu" = ( -/obj/structure/chair/stool/directional/north, -/turf/open/floor/circuit/green, -/area/station/science/robotics/mechbay) -"gFJ" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/science/breakroom) -"gFV" = ( -/obj/machinery/computer/operating{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/iron/white, -/area/station/medical/surgery/fore) -"gFX" = ( -/obj/effect/turf_decal/sand, -/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/security/prison/workout) -"gGd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron, -/area/service/salon) -"gGg" = ( -/obj/machinery/duct, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"gGi" = ( -/turf/closed/wall, -/area/station/maintenance/port/fore) -"gGn" = ( -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/courtroom) -"gGs" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/machinery/camera/directional/north{ - c_tag = "Medical - Morgue"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"gGx" = ( -/obj/structure/grille, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"gGy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/engineering_guard, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"gGD" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"gGG" = ( -/obj/structure/chair/stool/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison) -"gGL" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/command/heads_quarters/rd) -"gGV" = ( -/obj/structure/table, -/obj/item/instrument/harmonica, -/turf/open/floor/iron, -/area/station/security/prison) -"gGZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"gHd" = ( -/obj/structure/stairs/south, -/turf/open/floor/iron/stairs/medium{ - dir = 1 - }, -/area/station/security/execution/transfer) -"gHh" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"gHE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"gHQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"gHX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/door/airlock/security/glass{ - name = "Isolation Cell C" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"gIg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "cytologysecure"; - name = "Secure Pen Lockdown" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/cytology) -"gIu" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/item/airlock_painter/decal, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"gIA" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/west, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"gIG" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"gIT" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Server Room" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"gJd" = ( -/obj/structure/disposalpipe/segment{ - 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, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"gJh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate_empty, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/lesser) -"gJq" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/effect/turf_decal/trimline/neutral/corner, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"gJI" = ( -/obj/structure/chair/comfy/black, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hos) -"gJK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"gJR" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"gKi" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/secure_closet/exile, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/command/gateway) -"gKj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"gKp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"gKs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"gKA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/line, -/turf/open/floor/iron/white, -/area/station/science/genetics) -"gKB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"gKJ" = ( -/obj/machinery/suit_storage_unit/ce, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/ce) -"gLd" = ( -/obj/machinery/field/generator, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/engineering/engine_smes) -"gLm" = ( -/obj/machinery/door/window/brigdoor/right/directional/east{ - id = "medcell"; - name = "Medical Holding Cell"; - req_access = list("brig_entrance") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"gLH" = ( -/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/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"gLO" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 5 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"gLT" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/closed/wall, -/area/station/cargo/sorting) -"gLZ" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"gMi" = ( -/obj/machinery/air_sensor/air_tank, -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"gMl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/external{ - autoclose = 0; - frequency = 1449; - id_tag = "middleleft_upper_eva_external"; - name = "External Access" - }, -/obj/machinery/door_buttons/access_button{ - idDoor = "middleleft_upper_eva_external"; - idSelf = "middleleft_upper_eva_airlock_control"; - name = "External Access Button"; - pixel_y = 24 - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/center) -"gMr" = ( -/obj/machinery/computer/telecomms/server{ - dir = 1; - network = "tcommsat" - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"gMy" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/structure/window/reinforced/spawner/east, -/obj/structure/window/reinforced/spawner/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"gMZ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/turf_decal/trimline/neutral/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, -/area/station/hallway/primary/tram/center) -"gNf" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/bottle/beer{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/bottle/beer{ - pixel_x = -1; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/drinks/bottle/beer{ - pixel_x = -8 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock/cafeteria) -"gNk" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"gNp" = ( -/obj/machinery/light/directional/south, -/turf/open/openspace, -/area/station/science/xenobiology) -"gNy" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/left) -"gNB" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/barman_recipes, -/obj/item/reagent_containers/glass/rag, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/bar) -"gNE" = ( -/obj/structure/bed/pod{ - desc = "An old medical bed, just waiting for replacement with something up to date."; - dir = 8; - name = "medical bed" - }, -/obj/machinery/defibrillator_mount/directional/east, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"gNK" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Armory Desk"; - req_access = list("armory") - }, -/obj/machinery/door/window/left/directional/south{ - name = "Reception Desk"; - req_access = list("security") - }, -/turf/open/floor/plating, -/area/station/security/warden) -"gNN" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/tram/center) -"gNQ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"gNS" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/public/glass{ - name = "Command Wing Hallway" - }, -/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/hallway/secondary/command) -"gNX" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/junction/flip, -/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, -/area/station/hallway/secondary/command) -"gNY" = ( -/obj/structure/lattice, -/turf/open/space/openspace, -/area/space/nearstation) -"gOa" = ( -/obj/structure/closet/crate/trashcart/laundry, -/obj/item/clothing/under/rank/prisoner/skirt, -/obj/item/clothing/under/rank/prisoner/skirt, -/obj/item/clothing/under/rank/prisoner/skirt, -/obj/item/clothing/shoes/sneakers/orange, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison) -"gOd" = ( -/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/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"gOp" = ( -/obj/structure/rack, -/obj/item/reagent_containers/glass/bottle/ethanol{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/carbon{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/chlorine{ - pixel_x = 1 - }, -/turf/open/floor/iron/dark/textured_corner{ - dir = 1 - }, -/area/station/medical/medbay/central) -"gOs" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/machinery/button/door/directional/west{ - id = "ordnancestorage"; - name = "Ordnance Storage Shutters"; - req_access = list("ordnance") - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/science/ordnance/storage) -"gOF" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/structure/fluff/tram_rail/floor{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/tram/right) -"gOJ" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/left/directional/south{ - name = "Research Lab Desk"; - req_access = list("science") - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rndlab1"; - name = "Research and Development Shutter"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/folder{ - pixel_x = 5 - }, -/obj/structure/desk_bell{ - pixel_x = -7 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"gOK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"gPb" = ( -/obj/structure/mirror/directional/north, -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/freezer, -/area/station/science/lower) -"gPo" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"gPr" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/yellow/corner, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"gPs" = ( -/obj/structure/chair/stool/directional/south{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"gPt" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/turf/open/space/basic, -/area/space/nearstation) -"gPA" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm/directional/east, -/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/brig) -"gPB" = ( -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"gPL" = ( -/turf/open/floor/engine, -/area/station/science/explab) -"gPS" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/turf_decal/trimline/yellow/corner, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"gPX" = ( -/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/directional/east, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"gQn" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"gQA" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"gQB" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"gQC" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"gQH" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"gQO" = ( -/turf/closed/mineral/random/stationside/asteroid/porus, -/area/station/security/prison) -"gQP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation/entertainment) -"gQU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"gRc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/maintenance/radshelter/service) -"gRd" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron, -/area/station/security/courtroom) -"gRe" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/station/medical/virology) -"gRg" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/storage) -"gRl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"gRo" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/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 = 9 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"gRy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/obj/structure/closet, -/obj/item/tank/internals/emergency_oxygen, -/obj/effect/spawner/random/maintenance/three, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"gRz" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/service/theater) -"gRF" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/maintenance/radshelter/service) -"gRU" = ( -/obj/machinery/door/airlock{ - id_tag = "private_m"; - name = "Private Quarters M" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/dorms) -"gSf" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/service_all, -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"gSj" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "packageSort2" - }, -/obj/machinery/requests_console/directional/north{ - department = "Cargo Bay"; - departmentType = 2; - name = "Cargo Bay Requests Console" - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 5 - }, -/obj/machinery/camera{ - c_tag = "Cargo - Mail Office"; - dir = 9; - network = list("ss13","cargo") - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"gSK" = ( -/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/grimy, -/area/station/service/chapel/office) -"gSV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"gTc" = ( -/obj/structure/chair/stool/directional/south, -/obj/machinery/light/directional/west, -/obj/machinery/camera{ - c_tag = "Science - Mech Bay"; - dir = 10; - network = list("ss13","rd") - }, -/turf/open/floor/circuit, -/area/station/science/robotics/mechbay) -"gTi" = ( -/obj/effect/turf_decal/trimline/green/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/corner, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"gTm" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron, -/area/service/salon) -"gTr" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/item/storage/box/syringes{ - pixel_y = 4 - }, -/obj/item/storage/box/syringes, -/obj/item/mod/module/plasma_stabilizer, -/obj/item/mod/module/thermal_regulator, -/obj/item/gun/syringe, -/obj/machinery/door/window/left/directional/west{ - name = "Secure Medical Storage"; - req_access = list("medical") - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"gTu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"gTJ" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/glass, -/area/station/commons/fitness/recreation) -"gTM" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/water_vapor, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Service - Custodial Closet"; - dir = 9; - network = list("ss13","Service") - }, -/turf/open/floor/iron, -/area/station/service/janitor) -"gTN" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"gTO" = ( -/obj/machinery/door/airlock{ - id_tag = "miningdorm1"; - name = "Room 1" - }, -/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/supply/mining, -/turf/open/floor/carpet, -/area/station/cargo/miningdock) -"gTP" = ( -/obj/structure/ladder, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"gTU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/command/heads_quarters/hos) -"gTZ" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1; - name = "sorting disposal pipe (Robotics)"; - sortType = 14 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"gUd" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Escape Wing" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"gUf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/firealarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"gUk" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/brown/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/storage) -"gUu" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 5 - }, -/obj/machinery/light/directional/north, -/obj/machinery/component_printer, -/turf/open/floor/iron, -/area/station/science/auxlab) -"gUE" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"gUH" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"gUO" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/genetics) -"gVu" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - 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/science/lab) -"gVw" = ( -/obj/machinery/button/door/directional/west{ - id = "private_h"; - name = "Privacy Bolts"; - normaldoorcontrol = 1; - pixel_y = -9; - specialfunctions = 4 - }, -/obj/structure/chair/stool/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"gVD" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"gVM" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start/science_guard, -/obj/machinery/light/directional/south, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"gVO" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/break_room) -"gVS" = ( -/obj/machinery/mechpad, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"gVW" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/radio, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"gWj" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/turf/open/floor/iron, -/area/station/security/courtroom) -"gWE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/lesser) -"gWV" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/medical/virology) -"gWX" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Art Storage" - }, -/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/storage/art) -"gXb" = ( -/obj/structure/closet/secure_closet/security/cargo, -/obj/item/clothing/mask/whistle, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"gXd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/food_packaging, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"gXj" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - 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, -/area/station/hallway/primary/tram/center) -"gXv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"gXx" = ( -/obj/structure/window/reinforced, -/obj/structure/closet/secure_closet/hop, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hop) -"gXy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/ai_monitored/command/nuke_storage) -"gXz" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 1; - pixel_y = -29 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"gXF" = ( -/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/secondary/entry) -"gXP" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/south, -/obj/machinery/duct, -/turf/open/floor/iron/dark, -/area/station/commons/lounge) -"gXT" = ( -/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, -/area/station/engineering/main) -"gYe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"gYg" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/camera/directional/west{ - c_tag = "Medical - Chief Medical Officer's Office"; - network = list("ss13","medbay") - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"gYl" = ( -/obj/structure/chair/stool/bar/directional/west, -/obj/effect/landmark/start/prisoner, -/turf/open/floor/iron, -/area/station/security/prison) -"gYu" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 10 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/sign/warning/deathsposal/directional/south, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"gYz" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"gYC" = ( -/obj/effect/landmark/navigate_destination/dockescpod2, -/obj/effect/turf_decal/trimline/red/filled/corner, -/turf/open/floor/iron, -/area/station/security/office) -"gYH" = ( -/turf/open/floor/glass, -/area/station/service/kitchen/diner) -"gYX" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Gravity Generator Room"; - req_one_access = list("command","tech_storage") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"gZy" = ( -/obj/machinery/door/poddoor/shutters{ - id = "evashutter"; - name = "E.V.A. Storage Shutter"; - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plating, -/area/station/ai_monitored/command/storage/eva) -"gZE" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"gZG" = ( -/obj/structure/disposalpipe/trunk/multiz{ - dir = 2 - }, -/obj/machinery/door/window/left/directional/north{ - name = "Containment Pen #8"; - req_access = list("xenobiology") - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiobottomright"; - name = "Xenobio Bottom Right Pen Blast Door" - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"gZI" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/science/ordnance/testlab) -"gZU" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/coin/plasma, -/obj/item/paper/fluff/gateway, -/obj/item/melee/chainofcommand, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"haf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Security - Lower Power Hatch"; - dir = 9; - network = list("ss13","Security") - }, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"haj" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/security/brig) -"hao" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation/entertainment) -"haH" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/fitness) -"haO" = ( -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "garbage"; - name = "disposal conveyor" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"haS" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"haV" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1; - name = "sorting disposal pipe (Library)"; - sortType = 16 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"hbg" = ( -/obj/structure/table, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/commons/storage/art) -"hbi" = ( -/obj/structure/chair/sofa/left{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"hbj" = ( -/obj/structure/sign/warning/vacuum/external/directional/west, -/obj/effect/turf_decal/sand/plating, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"hbD" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/garbage, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) -"hbH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/office) -"hbK" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/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{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/security/office) -"hce" = ( -/obj/machinery/light/warm/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"hci" = ( -/obj/effect/turf_decal/siding/thinplating/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/cargo/storage) -"hcu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"hcv" = ( -/obj/effect/spawner/random/entertainment/arcade{ - dir = 1 - }, -/turf/open/floor/eighties, -/area/station/commons/fitness/recreation/entertainment) -"hcw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"hcA" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 4 - }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/mine/explored) -"hcD" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"hcJ" = ( -/obj/machinery/smartfridge/petri/preloaded, -/obj/effect/turf_decal/trimline/purple/filled/line, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"hcT" = ( -/obj/machinery/flasher/directional/east{ - id = "AI"; - pixel_y = 26 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"hdj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"hdo" = ( -/obj/structure/cable, -/turf/open/floor/engine/hull/reinforced, -/area/space/nearstation) -"hdH" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/service/library) -"hdI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison) -"hdL" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/table, -/obj/item/storage/box/prisoner, -/turf/open/floor/iron, -/area/station/security/processing) -"hee" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"hej" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_output{ - dir = 8 - }, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"hel" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"hen" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/door_timer{ - id = "scicell"; - name = "Science Cell"; - pixel_y = 32 - }, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"hes" = ( -/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, -/area/station/maintenance/department/cargo) -"het" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/obj/machinery/firealarm/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"heJ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"heW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"hft" = ( -/obj/structure/cable/multilayer/multiz, -/obj/structure/sign/warning/electric_shock/directional/west, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/science/research) -"hfv" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/clothing/glasses/sunglasses/big{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"hfw" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/trimline/red/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/machinery/status_display/ai/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"hfx" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/obj/machinery/button/door/directional/east{ - id = "miningdorm2"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/carpet, -/area/station/cargo/miningdock) -"hfy" = ( -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"hfN" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/item/radio/intercom/directional/west, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"hga" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/security/office) -"hgc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"hgJ" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/security/office) -"hgK" = ( -/obj/item/stack/ore/glass, -/turf/open/misc/asteroid, -/area/mine/explored) -"hgM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/window/right/directional/north{ - dir = 2; - name = "Research Test Chamber"; - req_access = list("science") - }, -/turf/open/floor/engine, -/area/station/science/explab) -"hgS" = ( -/obj/machinery/computer/rdconsole, -/obj/machinery/computer/security/telescreen/rd{ - pixel_y = 30 - }, -/obj/machinery/camera{ - c_tag = "Science - Research Director's Office"; - dir = 9; - network = list("ss13","rd") - }, -/obj/machinery/light/directional/north, -/obj/item/folder/white, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/command/heads_quarters/rd) -"hhc" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/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) -"hhg" = ( -/obj/effect/turf_decal/bot, -/obj/structure/transit_tube/horizontal{ - dir = 1 - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"hhi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/processing) -"hhv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/medical) -"hhI" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/security/office) -"hhL" = ( -/obj/structure/sign/directions/supply{ - dir = 1; - pixel_y = -28 - }, -/obj/structure/sign/directions/security{ - dir = 8; - pixel_y = -34 - }, -/obj/structure/sign/directions/command{ - dir = 8; - pixel_y = -40 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw, -/obj/structure/sign/directions/vault{ - dir = 8; - pixel_y = -22 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"hhN" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 10 - }, -/turf/open/floor/glass/reinforced, -/area/station/security/warden) -"hhT" = ( -/obj/machinery/vending/wardrobe/gene_wardrobe, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"hik" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 5 - }, -/obj/effect/spawner/random/vending/snackvend, -/obj/structure/sign/departments/restroom/directional/north, -/turf/open/floor/iron/dark, -/area/station/commons/lounge) -"hiq" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"hiB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"hiD" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Gas to Chamber" - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"hiG" = ( -/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{ - dir = 9 - }, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/lesser) -"hiI" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"hiN" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"hiP" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"hiV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/science/ordnance/testlab) -"hiX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/port/fore) -"hjF" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard) -"hjW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/light/small/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"hjX" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"hkn" = ( -/obj/structure/table, -/obj/item/storage/box/prisoner, -/obj/item/storage/box/prisoner{ - pixel_y = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/item/paper/fluff/genpop_instructions, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"hkv" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - 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/airalarm/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"hkF" = ( -/obj/structure/table, -/obj/item/electronics/apc, -/obj/item/electronics/airlock, -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"hkG" = ( -/obj/machinery/airalarm/directional/west, -/turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) -"hkL" = ( -/obj/machinery/newscaster/directional/north, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/effect/landmark/start/botanist, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"hlc" = ( -/turf/closed/wall/r_wall, -/area/station/science/xenobiology) -"hli" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/prison) -"hlC" = ( -/obj/effect/turf_decal/siding/thinplating, -/turf/open/floor/iron, -/area/station/science/lower) -"hlT" = ( -/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{ - dir = 6 - }, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/lesser) -"hlX" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/closet/secure_closet/captains, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Command - Captain's Quarters" - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"hmp" = ( -/obj/item/toy/figure/assistant, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"hmt" = ( -/obj/item/chair, -/obj/item/restraints/handcuffs/cable/red, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating/airless, -/area/mine/explored) -"hmD" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"hmF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hmJ" = ( -/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 = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"hmR" = ( -/obj/structure/table, -/obj/item/phone{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/drinks/britcup{ - pixel_x = -6; - pixel_y = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"hmY" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_cw{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Hallway - Central Tram Platform North"; - dir = 10 - }, -/obj/effect/turf_decal/caution{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"hmZ" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - dir = 8; - name = "old sink"; - pixel_x = 12 - }, -/turf/open/floor/wood, -/area/station/service/bar) -"hnh" = ( -/obj/structure/chair/sofa/bench, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/secondary/entry) -"hnm" = ( -/turf/closed/wall, -/area/station/service/janitor) -"hns" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"hnw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/south{ - c_tag = "Hallway - Upper East Power Hatch" - }, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/right) -"hnC" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/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, -/area/station/security/brig) -"hnE" = ( -/obj/structure/lattice, -/obj/effect/spawner/random/structure/grille, -/turf/open/space/basic, -/area/space/nearstation) -"hnH" = ( -/obj/machinery/newscaster/directional/north, -/turf/open/floor/wood/large, -/area/station/service/library) -"hnW" = ( -/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/effect/turf_decal/trimline/purple/filled/line, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lower) -"hoe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"hom" = ( -/obj/structure/closet/firecloset, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/right) -"hov" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/structure/mirror/directional/west, -/obj/machinery/airalarm/directional/north, -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/freezer, -/area/station/commons/lounge) -"hoI" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"hpn" = ( -/obj/effect/landmark/start/security_officer, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/office) -"hpF" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/machinery/button/door/directional/south{ - id = "xenobiobottomleft"; - name = "Xenobio Bottom Left Blast Door Toggle"; - req_access = list("xenobiology") - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"hqc" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/neutral/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/sorting/mail/flip{ - dir = 8; - name = "sorting disposal pipe (Civilian Wing)"; - sortTypes = list(16,17) - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"hqp" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile, -/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, -/area/station/hallway/secondary/entry) -"hqt" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"hqz" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/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, -/area/station/engineering/break_room) -"hqN" = ( -/obj/structure/weightmachine/weightlifter, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/fitness) -"hqR" = ( -/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 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/wood, -/area/station/service/theater) -"hqV" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"hre" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 9 - }, -/obj/effect/spawner/random/vending/colavend, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"hri" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Commons Area" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"hrk" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/structure/sign/painting/large/library_private{ - dir = 1 - }, -/turf/open/floor/engine/cult, -/area/station/service/library) -"hrs" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/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, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"hrD" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"hrR" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/service/kitchen) -"hrS" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"hrU" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/duct, -/obj/effect/spawner/random/trash/graffiti{ - pixel_y = 32; - spawn_loot_chance = 25 - }, -/obj/effect/spawner/random/trash/graffiti{ - pixel_x = 32; - spawn_loot_chance = 25 - }, -/turf/open/floor/iron/freezer, -/area/station/commons/lounge) -"hsf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"hsg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation/entertainment) -"hst" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"hsT" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"htn" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/structure/fluff/tram_rail/floor, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/tram/right) -"htr" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-right" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"htM" = ( -/obj/item/stack/ore/iron, -/turf/open/misc/asteroid/airless, -/area/mine/explored) -"htT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/smooth_large, -/area/station/service/chapel/monastery) -"hun" = ( -/obj/effect/turf_decal/trimline/neutral/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/secondary/entry) -"huo" = ( -/obj/effect/turf_decal/siding/thinplating, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"huu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"huB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/left) -"huT" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Arrivals - Central Hall"; - dir = 10 - }, -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"huX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/sign/warning/vacuum/external/directional/west, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"hvk" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"hvp" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/effect/turf_decal/tile, -/obj/effect/turf_decal/tile{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"hvs" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Escape Airlock" - }, -/obj/structure/sign/warning/vacuum/external/directional/north, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"hvt" = ( -/obj/effect/turf_decal/tile{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"hvx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/corner, -/obj/structure/frame/computer{ - anchored = 1; - dir = 4 - }, -/obj/item/stack/cable_coil{ - amount = 15 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/iron, -/area/station/maintenance/port/central) -"hvC" = ( -/obj/structure/table/wood, -/obj/item/candle, -/turf/open/floor/iron/chapel{ - dir = 4 - }, -/area/station/service/chapel) -"hvH" = ( -/obj/effect/turf_decal/tile{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - 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, -/area/station/hallway/secondary/entry) -"hvJ" = ( -/turf/closed/wall/r_wall, -/area/station/science/server) -"hvT" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"hvW" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/obj/machinery/newscaster/directional/east, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"hvZ" = ( -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/corner, -/turf/open/floor/glass/reinforced, -/area/station/security/warden) -"hwg" = ( -/obj/structure/lattice/catwalk, -/obj/structure/window/reinforced/spawner, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/secondary/entry) -"hwM" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"hxb" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron, -/area/station/science/ordnance/storage) -"hxl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall, -/area/station/maintenance/department/crew_quarters/dorms) -"hxF" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/service/kitchen) -"hxJ" = ( -/obj/machinery/door/poddoor{ - id = "Secure Storage"; - name = "Secure Storage" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plating, -/area/station/engineering/engine_smes) -"hxK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "left_tram_lower"; - name = "Tunnel Access Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/tram/left) -"hxQ" = ( -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"hyg" = ( -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/tram/center) -"hyw" = ( -/obj/structure/flora/bush/flowers_br/style_random, -/obj/structure/flora/bush/flowers_pp/style_random, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/structure/flora/bush/grassy/style_random, -/turf/open/floor/grass, -/area/station/common/cryopods) -"hyE" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"hyL" = ( -/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") - }, -/obj/structure/cable/layer3, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"hyP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/structure/cable/layer3, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"hze" = ( -/obj/structure/disposalpipe/segment, -/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, -/area/station/hallway/primary/central) -"hzl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/sign/departments/restroom/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lower) -"hzq" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - 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/white, -/area/station/science/research) -"hzt" = ( -/obj/structure/chair/comfy/beige{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"hzz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"hzB" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"hzD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) -"hzR" = ( -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"hzX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"hAr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/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/maintenance/port/central) -"hAv" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"hAD" = ( -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"hAE" = ( -/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, -/area/station/tcommsat/computer) -"hAR" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 9 - }, -/obj/effect/landmark/start/hangover/closet, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit) -"hAW" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/bot, -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - Atmospherics East"; - dir = 10; - network = list("ss13","engineering") - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hBd" = ( -/obj/structure/training_machine, -/turf/open/floor/engine, -/area/station/science/explab) -"hBf" = ( -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"hBy" = ( -/obj/machinery/door/airlock/engineering{ - name = "Power Access Hatch" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/security) -"hBC" = ( -/obj/machinery/requests_console/directional/north{ - department = "Hydroponics"; - departmentType = 2; - name = "Hydroponics Requests Console" - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/effect/landmark/start/botanist, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"hBH" = ( -/obj/machinery/computer/atmos_control/oxygen_tank{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hBQ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"hBR" = ( -/obj/effect/turf_decal/trimline/purple/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 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"hBV" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness) -"hBW" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"hBY" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the turbine vent."; - dir = 8; - name = "turbine vent monitor"; - network = list("turbine"); - pixel_x = 29 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/layer1, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"hCe" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/brig) -"hCf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/space_heater, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/crew_quarters/dorms) -"hCo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hCw" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw{ - dir = 1 - }, -/obj/effect/turf_decal/caution{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"hCH" = ( -/obj/machinery/seed_extractor, -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/machinery/camera{ - c_tag = "Service - Hydroponics Prep"; - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"hCW" = ( -/obj/structure/disposalpipe/segment, -/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, -/area/station/science/robotics/lab) -"hCZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/small/directional/east, -/obj/machinery/suit_storage_unit/industrial/loader, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"hDb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard) -"hDd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/security) -"hDx" = ( -/turf/closed/wall, -/area/station/security/execution/transfer) -"hDI" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"hDO" = ( -/obj/effect/spawner/random/trash/food_packaging, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/cargo) -"hDU" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"hDW" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/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, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"hEa" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/left) -"hEb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"hEj" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate/freezer/blood, -/obj/machinery/camera/directional/west{ - c_tag = "Medical - Main Storage"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/freezer, -/area/station/medical/coldroom) -"hEm" = ( -/obj/machinery/door/airlock/mining{ - name = "Mining Office" - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"hEz" = ( -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/crew_quarters/dorms) -"hEU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/spawner/random/trash/graffiti{ - pixel_y = 32; - spawn_loot_chance = 50 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"hFb" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"hFf" = ( -/obj/machinery/atmospherics/components/unary/passive_vent/layer2{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"hFk" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/obj/machinery/light/small/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/science/research) -"hFq" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/stack/cable_coil, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"hFr" = ( -/turf/closed/wall, -/area/station/maintenance/central/greater) -"hFt" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"hFy" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/holosign/barrier/atmos/sturdy, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/center) -"hFC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/tram/right) -"hFH" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"hFK" = ( -/obj/machinery/chem_master, -/obj/effect/turf_decal/trimline/purple/end{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"hFO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"hFQ" = ( -/obj/effect/turf_decal/tile{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"hFV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"hGc" = ( -/obj/machinery/door/airlock/hatch{ - name = "Radstorm Shelter" - }, -/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/maintenance/radshelter/service) -"hGn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"hGo" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"hGD" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/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/iron, -/area/station/commons/fitness/recreation) -"hGF" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/shower{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"hGG" = ( -/obj/structure/closet/secure_closet/hos, -/obj/item/storage/secure/safe/hos{ - pixel_x = 35 - }, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/structure/sign/poster/official/space_cops{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hos) -"hGI" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/glass, -/area/station/commons/fitness/recreation) -"hGQ" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/structure/railing/corner, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw{ - dir = 1 - }, -/obj/effect/turf_decal/caution{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"hHf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"hHu" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/fitness) -"hHv" = ( -/obj/structure/cable, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/science/breakroom) -"hHw" = ( -/obj/machinery/door/airlock/security{ - name = "Interrogation Monitoring" - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"hHD" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/sofa/corp/corner, -/turf/open/floor/iron, -/area/station/commons/lounge) -"hHI" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"hHP" = ( -/turf/open/floor/iron/dark, -/area/station/maintenance/radshelter/civil) -"hIg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/engine/cult, -/area/station/service/library) -"hIt" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_cw, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"hID" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"hIE" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/right) -"hIM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/security) -"hIO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/structure/reagent_dispensers/fueltank/large, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hIW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hJc" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"hJd" = ( -/turf/open/floor/iron, -/area/station/engineering/main) -"hJm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"hJW" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/pdapainter/research, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"hJX" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) -"hKj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/right) -"hKL" = ( -/obj/item/storage/secure/safe/directional/east, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"hKV" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/vending/snack, -/turf/open/floor/iron, -/area/station/cargo/miningdock/cafeteria) -"hLC" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/obj/structure/sign/warning/electric_shock/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/hallway/primary/tram/right) -"hLR" = ( -/obj/machinery/camera{ - c_tag = "Maintenance - Central Tram Tunnel 3"; - dir = 9 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"hLV" = ( -/obj/machinery/door/airlock/research{ - name = "Robotics Lab" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/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/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/robotics, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"hMc" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue{ - pixel_y = 2 - }, -/obj/item/pen, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"hMo" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Civilian - Recreational Area North-West" - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"hMy" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"hMA" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 6 - }, -/turf/open/floor/glass/reinforced, -/area/station/security/brig) -"hMC" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"hMD" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/trimline/green/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"hME" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"hMI" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"hMK" = ( -/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) -"hMT" = ( -/obj/structure/chair/pew/right, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/chapel{ - dir = 5 - }, -/area/station/service/chapel) -"hMU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/stock_parts/cell/empty, -/obj/effect/spawner/random/engineering/flashlight, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"hNd" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"hNk" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"hNx" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"hNz" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood/large, -/area/station/service/library) -"hNM" = ( -/obj/structure/table, -/obj/item/storage/box/petridish{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/storage/box/petridish{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"hNO" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"hNR" = ( -/obj/structure/table, -/obj/item/transfer_valve{ - pixel_x = -5 - }, -/obj/item/transfer_valve, -/obj/item/transfer_valve{ - pixel_x = 5 - }, -/obj/item/transfer_valve{ - pixel_x = -5 - }, -/obj/item/transfer_valve{ - pixel_x = 5 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"hNT" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"hOh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"hOp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/caution{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"hOE" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/bluespace_sender, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hON" = ( -/obj/structure/cable, -/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, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/prison) -"hOU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/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/medical/morgue) -"hPa" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/directional/east, -/obj/machinery/computer/department_orders/service, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"hPs" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera{ - c_tag = "Hallway - South-East Escape Wing Entry"; - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"hQf" = ( -/obj/effect/landmark/event_spawn, -/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/genetics) -"hQm" = ( -/obj/structure/rack, -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"hQU" = ( -/obj/effect/turf_decal/trimline/green/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, -/area/station/medical/virology) -"hRi" = ( -/obj/machinery/power/emitter, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/engineering/engine_smes) -"hRj" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"hRn" = ( -/obj/machinery/atmospherics/components/tank/air{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/medical/virology) -"hRp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/firealarm/directional/south, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/server) -"hRq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"hRs" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"hRx" = ( -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"hRD" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/tram/mid) -"hSf" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - Main"; - dir = 10; - network = list("ss13","engineering") - }, -/obj/structure/rack, -/obj/item/clothing/glasses/meson/engine{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson/engine{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/pipe_dispenser, -/obj/item/pipe_dispenser, -/obj/item/pipe_dispenser, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"hSm" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing" - }, -/obj/effect/turf_decal/trimline/red/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/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron, -/area/station/security/brig) -"hSu" = ( -/obj/structure/chair/sofa/corner{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"hSH" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/obj/structure/table, -/obj/item/storage/medkit/regular, -/obj/item/paper/pamphlet/gateway, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron, -/area/station/command/gateway) -"hSJ" = ( -/obj/machinery/telecomms/server/presets/command, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"hSM" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"hTa" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"hTA" = ( -/obj/machinery/icecream_vat, -/obj/machinery/airalarm/kitchen_cold_room{ - dir = 1; - pixel_y = 24 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/service/kitchen/coldroom) -"hTG" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/turf/open/floor/iron/white, -/area/station/science/research) -"hTH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"hTJ" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"hTL" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"hTS" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/structure/window, -/obj/structure/window{ - dir = 8 - }, -/turf/open/floor/iron, -/area/service/salon) -"hTX" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"hUr" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge" - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/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_multi{ - cycle_id = "bridge-left" - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "Bridge Blast Door" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"hUy" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/structure/chair/stool/bar/directional/south, -/obj/effect/turf_decal/siding/thinplating, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"hUT" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/directional/east{ - c_tag = "Hallway - Starboard Tram Platform North-East" - }, -/obj/effect/turf_decal/caution{ - dir = 1 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"hUV" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/structure/rack, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"hVa" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/structure/flora/bush/grassy/style_random, -/turf/open/floor/grass, -/area/station/commons/dorms) -"hVg" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/robot_debris/limb, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/lesser) -"hVi" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/medical/treatment_center) -"hVl" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/firealarm/directional/east, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"hVp" = ( -/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, -/area/station/hallway/primary/central) -"hVG" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"hVJ" = ( -/obj/structure/chair/stool/directional/north, -/obj/machinery/button/door/directional/west{ - id = "private_j"; - name = "Privacy Bolts"; - normaldoorcontrol = 1; - pixel_x = 24; - pixel_y = -9; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/commons/dorms) -"hVO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"hVY" = ( -/obj/machinery/computer/teleporter{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/command/teleporter) -"hWg" = ( -/obj/structure/chair/pew/left, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/chapel{ - dir = 9 - }, -/area/station/service/chapel) -"hWi" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/command/heads_quarters/rd) -"hWn" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/trimline/purple/line, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"hWt" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"hWw" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/airalarm/directional/north, -/obj/structure/closet/crate/hydroponics{ - name = "Beekeeper Starter Kit" - }, -/obj/item/queen_bee/bought, -/obj/item/honey_frame, -/obj/item/honey_frame, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"hWJ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 1 - }, -/obj/machinery/bluespace_vendor/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"hWK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Tunnel Access" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/tram/mid) -"hXh" = ( -/obj/machinery/flasher/directional/south{ - id = "AI"; - pixel_x = 20 - }, -/obj/machinery/door/window{ - atom_integrity = 300; - base_state = "rightsecure"; - dir = 1; - icon_state = "rightsecure"; - name = "Primary AI Core Access"; - req_access = list("ai_upload") - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"hXp" = ( -/obj/effect/turf_decal/trimline/white/line, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"hXs" = ( -/obj/structure/railing/corner, -/obj/effect/turf_decal/siding/thinplating/corner, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner, -/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/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"hXF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/newscaster/directional/north, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"hXO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing, -/obj/effect/spawner/random/trash/garbage{ - spawn_loot_count = 2; - spawn_random_offset = 1; - spawn_scatter_radius = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/left) -"hXT" = ( -/obj/machinery/porta_turret/ai, -/obj/machinery/light/directional/north, -/obj/structure/cable/layer1, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"hYk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"hYl" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/security/prison) -"hYu" = ( -/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/effect/turf_decal/trimline/purple/filled/line, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/white, -/area/station/science/lower) -"hYv" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/structure/railing/corner, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/caution{ - dir = 1 - }, -/obj/machinery/crossing_signal/southeast, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"hYx" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "Engineering Security Door" - }, -/obj/effect/turf_decal/delivery, -/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/engineering/main) -"hYH" = ( -/obj/structure/table, -/turf/open/floor/iron/white, -/area/station/service/kitchen) -"hYJ" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_cw, -/obj/effect/turf_decal/caution, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"hYK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"hYM" = ( -/obj/structure/chair{ - dir = 1; - name = "Prosecution" - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/courtroom) -"hYN" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/corner, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/station/security/brig) -"hYT" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"hZb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"hZc" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/caution{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"hZe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/maintenance/radshelter/civil) -"hZi" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"hZr" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"hZR" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/radshelter/service) -"ial" = ( -/turf/open/floor/iron, -/area/station/engineering/break_room) -"iaC" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lower) -"iaH" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Hallway - Port Tram Platform South-West"; - dir = 10 - }, -/obj/effect/turf_decal/caution, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"iaP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"iaQ" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"iaT" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/prison/garden) -"iaU" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"iaZ" = ( -/obj/structure/bed/dogbed/ian, -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/obj/machinery/firealarm/directional/east, -/mob/living/simple_animal/pet/dog/corgi/ian, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"iba" = ( -/obj/structure/rack, -/obj/item/storage/barricade{ - pixel_y = -5 - }, -/obj/item/storage/barricade, -/obj/item/storage/barricade{ - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"ibk" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"ibs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "mechbay"; - name = "Mech Bay Shutters Control"; - req_access = list("robotics") - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"ica" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"ice" = ( -/obj/structure/table, -/obj/machinery/light/small/directional/east, -/obj/item/radio/intercom/prison/directional/east, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Security - Prison Cell 2"; - dir = 6; - network = list("ss13","Security","prison","pcell") - }, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"icx" = ( -/turf/open/floor/circuit/green, -/area/station/science/robotics/mechbay) -"icz" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Mailing Sorting Office" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/line, -/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/supply/shipping, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"icL" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 10 - }, -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stock_parts/scanning_module{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lab) -"icO" = ( -/obj/effect/turf_decal/siding/thinplating/corner, -/obj/item/banner/cargo/mundane, -/turf/open/floor/iron, -/area/station/cargo/storage) -"icQ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"icT" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"idq" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "O2 to Pure" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"idF" = ( -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"idG" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"idH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"iev" = ( -/obj/structure/training_machine, -/obj/item/target, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness) -"iey" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"ieB" = ( -/obj/structure/lattice/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/mob/living/basic/cockroach, -/turf/open/floor/plating, -/area/station/maintenance/tram/mid) -"ieD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"ieN" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) -"ieS" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/white, -/area/station/science/research) -"ieV" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Science - AI Station Access"; - dir = 9; - network = list("ss13","rd") - }, -/turf/open/floor/iron, -/area/station/engineering/transit_tube) -"ieW" = ( -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/station/holodeck/rec_center) -"ifb" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/sink{ - pixel_y = 15 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"ifk" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/ladder, -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/plating, -/area/mine/explored) -"ifn" = ( -/obj/structure/disposalpipe/segment{ - 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/commons/fitness/recreation) -"ifq" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Medical - Chemistry East"; - network = list("ss13","medbay") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"ifw" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/obj/structure/table, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/dark, -/area/station/service/chapel/monastery) -"ifD" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/machinery/shower{ - dir = 1; - name = "emergency shower" - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/science/research) -"ifN" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"ifU" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/structure/chair, -/obj/machinery/airalarm/directional/north, -/obj/machinery/camera{ - c_tag = "Departures - Holding Wing"; - dir = 10; - network = list("ss13","Security") - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"ifX" = ( -/obj/machinery/portable_atmospherics/canister/plasma, -/turf/open/floor/plating, -/area/station/engineering/engine_smes) -"igj" = ( -/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/maintenance/radshelter/service) -"igw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/commons/dorms) -"igy" = ( -/turf/closed/wall, -/area/station/engineering/supermatter/room) -"igB" = ( -/obj/structure/table/glass, -/obj/machinery/microwave, -/obj/machinery/camera{ - c_tag = "Science - Break Room"; - dir = 9; - network = list("ss13","rd") - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/science/breakroom) -"igE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - name = "sorting disposal pipe (Science General)"; - sortTypes = list(12,13,14,23,28) - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"igF" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"igN" = ( -/obj/effect/turf_decal/siding/wood, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood/large, -/area/station/service/library) -"igO" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"ihg" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - id_tag = "virology_airlock_exterior"; - name = "Virology Exterior Airlock" - }, -/obj/effect/mapping_helpers/airlock/locked, -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"ihk" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/brown/filled/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, -/area/station/cargo/miningdock) -"ihn" = ( -/obj/machinery/power/shieldwallgen, -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/north, -/obj/machinery/camera{ - c_tag = "Secure - Teleporter"; - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"iho" = ( -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"ihB" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/structure/reagent_dispensers/wall/virusfood/directional/east, -/obj/machinery/reagentgrinder{ - pixel_y = 8 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 3 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"ihD" = ( -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"ihI" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"ihM" = ( -/obj/structure/rack, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/clothing/glasses/meson{ - pixel_y = 4 - }, -/obj/item/lighter, -/obj/item/reagent_containers/pill/patch/aiuri, -/obj/item/stock_parts/cell/high, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"iib" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/east, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"iin" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/tram/left) -"iip" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"iiA" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"iiD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/crowbar, -/obj/item/screwdriver, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"iiI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Arrivals" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"iiJ" = ( -/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/grimy, -/area/station/service/library/lounge) -"iiN" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"iiP" = ( -/obj/structure/closet/l3closet, -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"ijf" = ( -/obj/machinery/seed_extractor, -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"ijt" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner, -/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, -/turf/open/floor/iron, -/area/station/cargo/storage) -"ike" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate_empty, -/obj/item/relic, -/obj/effect/spawner/random/maintenance/three, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/greater) -"ikn" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/closet/emcloset, -/obj/effect/landmark/start/hangover/closet, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/hallway/primary/tram/left) -"ikB" = ( -/obj/machinery/door/airlock/hatch{ - name = "Ladder Access Hatch" - }, -/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, -/area/station/hallway/primary/tram/center) -"ikC" = ( -/obj/effect/turf_decal/trimline/green/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/corner, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"ikJ" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/command/gateway) -"ikL" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/candle_box, -/obj/item/storage/fancy/candle_box{ - pixel_x = -2; - pixel_y = 2 - }, -/turf/open/floor/carpet, -/area/station/service/chapel/monastery) -"ilh" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Garden" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"ili" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/commons/dorms) -"ilj" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light_switch/directional/west, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/science/auxlab) -"ilL" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"ilT" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/structure/table/wood/fancy/green, -/obj/effect/spawner/random/aimodule/harmless, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) -"ilW" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron{ - amount = 10 - }, -/obj/item/electropack, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"ima" = ( -/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) -"imr" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"imL" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/siding/thinplating/dark/corner{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/south, -/obj/machinery/duct, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"imP" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access" - }, -/obj/machinery/door/firedoor, -/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/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-left" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"inr" = ( -/turf/closed/wall/r_wall, -/area/station/science/ordnance/burnchamber) -"inu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/navigate_destination/aiupload, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"inv" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"inB" = ( -/obj/effect/landmark/start/engineering_guard, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"inL" = ( -/obj/structure/fluff/paper/stack{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/instrument/musicalmoth, -/turf/open/floor/plating, -/area/station/maintenance/tram/right) -"inQ" = ( -/obj/structure/chair/pew, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/chapel{ - dir = 5 - }, -/area/station/service/chapel) -"inY" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"iok" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"ion" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/station/medical/virology) -"ioo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/item/folder/white{ - pixel_x = 2 - }, -/obj/item/radio/headset/headset_sci{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/storage/pill_bottle/mutadone{ - pixel_x = 11; - pixel_y = 7 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"ioE" = ( -/obj/structure/table/wood/fancy/royalblue, -/obj/structure/sign/painting/library_secure{ - pixel_x = 32 - }, -/obj/structure/window/reinforced/spawner, -/obj/effect/spawner/random/decoration/statue{ - spawn_loot_chance = 50 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/wood/large, -/area/station/service/library) -"ioP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"ioR" = ( -/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/cable, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 - }, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) -"ipe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"iph" = ( -/obj/effect/turf_decal/tile{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"ipk" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"ipr" = ( -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/machinery/cryopod{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/common/cryopods) -"ipC" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"ipG" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/dark/corner, -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/south, -/obj/structure/sign/painting/library{ - pixel_y = -32 - }, -/turf/open/floor/iron, -/area/station/commons/lounge) -"ipS" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/structure/sign/warning/chem_diamond/directional/east, -/obj/structure/chair/office/light, -/obj/effect/landmark/start/chemist, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"ipU" = ( -/obj/structure/closet/emcloset{ - anchored = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/west, -/obj/structure/sign/warning/vacuum/external/directional/north, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"iqh" = ( -/obj/machinery/door/window{ - name = "Captain's Desk"; - req_access = list("captain") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"iqv" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"iqH" = ( -/obj/effect/turf_decal/sand, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"iqL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"iqN" = ( -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) -"iqU" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/lounge) -"iqX" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"ird" = ( -/obj/structure/railing/corner, -/obj/effect/turf_decal/siding/thinplating{ - dir = 9 - }, -/turf/open/floor/glass/reinforced, -/area/station/security/brig) -"irg" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"irv" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 - }, -/obj/structure/table, -/obj/item/phone{ - desc = "He bought?"; - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock/oresilo) -"iry" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"irB" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"irH" = ( -/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/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - name = "sorting disposal pipe (Head of Security's Office)"; - sortType = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"irI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/plumbing/synthesizer{ - reagent_id = /datum/reagent/water - }, -/turf/open/floor/plating, -/area/station/maintenance/department/medical) -"isi" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"ist" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/gun_vendor, -/turf/open/floor/iron, -/area/station/ai_monitored/security/armory) -"isK" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 6 - }, -/obj/structure/rack, -/obj/machinery/light/directional/south, -/obj/item/controller, -/obj/item/compact_remote, -/obj/item/integrated_circuit/loaded/hello_world, -/obj/item/integrated_circuit/loaded/speech_relay, -/obj/item/compact_remote, -/turf/open/floor/iron, -/area/station/science/auxlab) -"isW" = ( -/turf/closed/wall, -/area/station/security/prison/safe) -"itc" = ( -/obj/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"itk" = ( -/obj/machinery/medical_kiosk, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"itn" = ( -/obj/structure/stairs/north, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/iron/stairs/medium, -/area/station/commons/dorms) -"itA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"itH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/girder, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/crew_quarters/dorms) -"itK" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/trimline/purple/filled/line, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"itW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"iue" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"iug" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"iuh" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Security - Prison Main North-West"; - network = list("ss13","Security","prison") - }, -/turf/open/floor/iron, -/area/station/security/prison) -"iui" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"iun" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/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/cable, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"iuo" = ( -/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"; - pixel_x = -4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/wood, -/area/station/service/bar) -"iuy" = ( -/obj/structure/table, -/obj/item/grenade/barrier{ - pixel_x = 4 - }, -/obj/item/grenade/barrier, -/obj/item/grenade/barrier{ - pixel_x = -4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"iuz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron, -/area/service/salon) -"iuD" = ( -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"iuI" = ( -/obj/machinery/bookbinder, -/obj/machinery/light/directional/north, -/obj/machinery/newscaster/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Civilian - Library North" - }, -/turf/open/floor/wood/large, -/area/station/service/library) -"iuM" = ( -/obj/structure/table/wood/fancy/royalblue, -/obj/machinery/door/window{ - dir = 8; - name = "Secure Art Exhibition"; - req_access = list("library") - }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/structure/sign/painting/large/library{ - dir = 4 - }, -/turf/open/floor/wood/large, -/area/station/service/library) -"iuO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/security/office) -"iuR" = ( -/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/security/prison/work) -"ivd" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"ivg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"ivk" = ( -/obj/structure/table, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/clothing/head/welding{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/multitool, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ivu" = ( -/obj/machinery/door/airlock/hatch{ - name = "Ladder Access Hatch" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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, -/area/station/hallway/primary/tram/right) -"ivx" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"ivH" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/effect/spawner/random/bureaucracy/pen, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"ivN" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner, -/turf/open/floor/iron/white, -/area/station/science/research) -"iwh" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/sign/poster/contraband/rebels_unite{ - pixel_y = 32 - }, -/turf/open/floor/plating/airless, -/area/mine/explored) -"iwi" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/mine/explored) -"iwm" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron, -/area/station/security/brig) -"iwo" = ( -/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, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) -"iwz" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"iwF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/mob/living/simple_animal/hostile/retaliate/goat{ - name = "Pete" - }, -/turf/open/floor/iron/showroomfloor, -/area/station/service/kitchen/coldroom) -"iwJ" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"iwN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"iwT" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"iwV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/lesser) -"iwW" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - 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, -/area/station/hallway/secondary/exit) -"ixa" = ( -/obj/structure/table/wood, -/obj/machinery/light/warm/directional/north, -/obj/item/flashlight/lamp, -/obj/machinery/requests_console/directional/north{ - department = "Chapel"; - departmentType = 1; - name = "Chapel Requests Console" - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"ixc" = ( -/obj/effect/turf_decal/bot/left, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmospherics_engine) -"ixf" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/tram/right) -"ixl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/cigbutt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/security) -"ixs" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - 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, -/area/station/hallway/secondary/entry) -"ixu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/port/fore) -"ixO" = ( -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - color = "#c45c57"; - dir = 8 - }, -/obj/effect/landmark/start/detective, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"ixW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"iyc" = ( -/turf/closed/wall, -/area/station/commons/vacant_room/office) -"iyn" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/neutral/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, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"iyq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/rack, -/obj/item/shovel{ - pixel_x = -5 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"iyr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/brig{ - id = "engcell"; - name = "Engineering Cell Locker" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"iys" = ( -/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 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"iyy" = ( -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/machinery/light_switch/directional/south, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"iyC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/turf/open/floor/iron/white, -/area/station/science/lower) -"iyK" = ( -/obj/machinery/telecomms/bus/preset_two, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"izi" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation/entertainment) -"izo" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"izG" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"izO" = ( -/turf/open/floor/plating, -/area/station/security/processing) -"izR" = ( -/obj/machinery/door/airlock/security{ - name = "Evidence Storage" - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/office) -"izU" = ( -/turf/closed/wall, -/area/station/hallway/primary/tram/center) -"izV" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"iAh" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/structure/bed{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/medical/virology) -"iAo" = ( -/obj/machinery/door/airlock/external{ - name = "Common Mining Dock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit) -"iAp" = ( -/obj/machinery/rnd/production/protolathe/department/science, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/science/lab) -"iAr" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"iAN" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Power Storage" - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/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 - }, -/obj/structure/cable/layer3, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engine_equipment, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"iBm" = ( -/obj/machinery/light/directional/west, -/obj/structure/bed{ - dir = 4 - }, -/turf/open/floor/iron/textured_large, -/area/station/security/execution/education) -"iBx" = ( -/obj/machinery/vending/modularpc, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"iBB" = ( -/obj/structure/cable, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/command/heads_quarters/rd) -"iBD" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"iBN" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/landmark/event_spawn, -/obj/machinery/duct, -/turf/open/floor/iron/freezer, -/area/station/commons/lounge) -"iBP" = ( -/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, -/area/station/security/checkpoint/medical) -"iBV" = ( -/obj/machinery/camera{ - c_tag = "Security - Escape Pod"; - dir = 9; - network = list("ss13","Security") - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/security/office) -"iCe" = ( -/obj/machinery/door/airlock{ - id_tag = "Toilet2"; - name = "Unit 2" - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"iCj" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/chair/comfy/barber_chair{ - dir = 8 - }, -/turf/open/floor/iron, -/area/service/salon) -"iCv" = ( -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/secondary/entry) -"iCA" = ( -/obj/structure/fluff{ - desc = "What, you think the water just magically soaks into the metallic flooring?"; - icon = 'icons/obj/lavaland/survival_pod.dmi'; - icon_state = "fan_tiny"; - name = "shower drain" - }, -/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/freezer, -/area/station/commons/toilet) -"iCT" = ( -/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 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/dorms) -"iCY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/neutral/corner, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"iDb" = ( -/obj/item/crowbar/large, -/obj/structure/rack, -/obj/item/flashlight, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"iDi" = ( -/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/grimy, -/area/station/ai_monitored/command/nuke_storage) -"iDj" = ( -/obj/machinery/flasher/directional/north{ - id = "AI" - }, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"iDl" = ( -/obj/structure/table/optable{ - name = "Robotics Operating Table" - }, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"iDs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 8 - }, -/obj/effect/decal/cleanable/oil, -/obj/item/clothing/glasses/welding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/port/central) -"iDv" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"iDB" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/obj/item/folder/blue, -/obj/item/pen/blue, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"iEb" = ( -/obj/structure/industrial_lift/tram{ - icon_state = "titanium_blue" - }, -/obj/structure/fluff/tram_rail{ - dir = 1 - }, -/obj/structure/chair/comfy/shuttle{ - dir = 1 - }, -/turf/open/openspace, -/area/station/hallway/primary/tram/center) -"iEi" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/camera/directional/west{ - c_tag = "Arrivals - Landing Bay Lounge" - }, -/obj/structure/window/reinforced/spawner, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/secondary/entry) -"iEu" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/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/iron, -/area/station/hallway/secondary/construction/engineering) -"iEx" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/rack/gunrack, -/obj/effect/spawner/armory_spawn/microfusion, -/turf/open/floor/iron, -/area/station/ai_monitored/security/armory) -"iEI" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"iEJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"iFO" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/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, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/security/brig) -"iFP" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"iFV" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/commons/fitness) -"iGl" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/inspector, -/obj/item/inspector{ - pixel_x = -5; - pixel_y = 12 - }, -/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/security/office) -"iGz" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/holosign/barrier/atmos/sturdy, -/obj/structure/fluff/tram_rail/floor{ - dir = 1 - }, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/left) -"iGT" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"iGV" = ( -/obj/structure/table, -/obj/item/hand_labeler, -/obj/machinery/requests_console/directional/north{ - department = "Cargo Bay"; - departmentType = 2; - name = "Cargo Bay Requests Console" - }, -/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp, -/obj/effect/turf_decal/tile/brown/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/storage) -"iHd" = ( -/obj/machinery/door/airlock/external{ - autoclose = 0; - frequency = 1449; - id_tag = "rightmost_upper_eva_external"; - name = "External Access" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door_buttons/access_button{ - idDoor = "rightmost_upper_eva_external"; - idSelf = "rightmost_upper_eva_airlock_control"; - name = "External Access Button"; - pixel_y = 24 - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/right) -"iHp" = ( -/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, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"iHr" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/effect/turf_decal/trimline/neutral/line, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"iHK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"iHT" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) -"iIc" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"iIm" = ( -/obj/structure/disposalpipe/segment, -/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/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lower) -"iIJ" = ( -/obj/machinery/power/smes, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electric_shock/directional/north, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/solars/port/aft) -"iIK" = ( -/obj/structure/closet{ - name = "Evidence Closet 1" - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/office) -"iJi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"iJw" = ( -/obj/machinery/vending/wardrobe/hydro_wardrobe, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"iJx" = ( -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay" - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"iJy" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/effect/landmark/start/paramedic, -/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/white, -/area/station/medical/treatment_center) -"iJO" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating/airless, -/area/mine/explored) -"iKj" = ( -/obj/effect/turf_decal/stripes{ - 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/science/ordnance/testlab) -"iKo" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/structure/cable, -/obj/structure/sign/departments/holy/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/iron, -/area/station/commons/fitness/recreation) -"iKr" = ( -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"iKt" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"iKC" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"iKF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"iKP" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/green/filled/warning{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"iKQ" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Medical - Main Storage"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"iKY" = ( -/obj/effect/turf_decal/trimline/purple/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"iLa" = ( -/obj/structure/falsewall, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/tram/right) -"iLi" = ( -/obj/effect/turf_decal/siding/thinplating, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/service/kitchen) -"iLs" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/siding/thinplating, -/turf/open/floor/glass/reinforced, -/area/station/security/warden) -"iLN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/tram/left) -"iMg" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/newscaster/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"iMp" = ( -/obj/structure/lattice/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/tram/mid) -"iMy" = ( -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) -"iMH" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/main) -"iMO" = ( -/obj/effect/turf_decal/tile/brown/fourcorners, -/obj/structure/window/reinforced/spawner/east, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock/oresilo) -"iMU" = ( -/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, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/crew_quarters/dorms) -"iNg" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 5 - }, -/obj/effect/landmark/start/hangover/closet, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"iNo" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation/entertainment) -"iNr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"iNw" = ( -/obj/structure/table/wood, -/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/grimy, -/area/station/service/library/lounge) -"iNA" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"iNV" = ( -/obj/structure/table, -/obj/item/plate, -/obj/item/kitchen/fork/plastic, -/obj/item/knife/plastic{ - pixel_x = 9 - }, -/turf/open/floor/eighties/red, -/area/station/commons/fitness/recreation/entertainment) -"iOc" = ( -/obj/machinery/stasis{ - dir = 8 - }, -/obj/machinery/defibrillator_mount/directional/north, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"iOd" = ( -/obj/structure/fluff/tram_rail, -/turf/open/openspace, -/area/station/hallway/primary/tram/right) -"iOi" = ( -/turf/open/floor/wood/large, -/area/station/service/library) -"iOq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"iOy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/siding/wideplating{ - dir = 10 - }, -/obj/machinery/camera/motion/directional/north{ - c_tag = "Secure - Nuclear Storage"; - network = list("ss13","secure") - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"iPi" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"iPs" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/sofa/corp/left, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/commons/lounge) -"iPu" = ( -/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/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"iPD" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/obj/machinery/modular_computer/console/preset/id{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"iPQ" = ( -/obj/machinery/button/door/directional/west{ - id = "private_c"; - name = "Privacy Bolts"; - normaldoorcontrol = 1; - pixel_x = 24; - pixel_y = 9; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"iQy" = ( -/obj/effect/turf_decal/siding/thinplating, -/obj/machinery/duct, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/service/kitchen) -"iQC" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 6 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/machinery/camera{ - c_tag = "Science - Lobby"; - dir = 6; - network = list("ss13","rd") - }, -/obj/effect/landmark/start/hangover, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"iQF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"iQH" = ( -/obj/structure/table, -/obj/item/multitool, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/south{ - c_tag = "Hallway - Lower West Power Hatch" - }, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/left) -"iQO" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"iQU" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"iQY" = ( -/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/structure/disposalpipe/junction/flip, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"iRu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/obj/machinery/door/airlock{ - name = "Water Closet" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/dorms) -"iRz" = ( -/obj/structure/grille, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/lesser) -"iRA" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"iRB" = ( -/obj/structure/chair/pew, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/chapel{ - dir = 9 - }, -/area/station/service/chapel) -"iRL" = ( -/turf/closed/wall, -/area/station/maintenance/starboard/greater) -"iRQ" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/left) -"iRS" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/solars/port/aft) -"iRX" = ( -/obj/effect/landmark/start/hangover, -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"iRY" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"iRZ" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/security/interrogation) -"iSj" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"iSm" = ( -/obj/machinery/disposal/bin{ - pixel_x = 5 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 9 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/white, -/area/station/science/lab) -"iSu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/button/door/directional/east{ - id = "miningdorm1"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/carpet, -/area/station/cargo/miningdock) -"iSv" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/greater) -"iSy" = ( -/obj/effect/spawner/random/structure/table, -/obj/item/paper/pamphlet/radstorm, -/obj/item/paper/pamphlet/radstorm, -/obj/item/paper/pamphlet/radstorm, -/turf/open/floor/iron/dark, -/area/station/maintenance/radshelter/service) -"iTc" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/firealarm/directional/north, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"iTf" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"iTr" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/fluff/tram_rail/floor{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"iTt" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 8 - }, -/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/structure/disposalpipe/segment{ - dir = 9 - }, -/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/white, -/area/station/medical/virology) -"iTx" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"iTL" = ( -/obj/structure/closet/crate, -/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/stock_parts/cell/high, -/obj/item/stack/sheet/mineral/plasma{ - amount = 30 - }, -/turf/open/floor/plating, -/area/station/engineering/engine_smes) -"iTN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/mid) -"iTP" = ( -/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/command/heads_quarters/captain/private) -"iTS" = ( -/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/command/heads_quarters/cmo) -"iUc" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/siding/thinplating/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 = 9 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"iUd" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/fluff/tram_rail/floor, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"iUh" = ( -/turf/closed/wall, -/area/station/security/warden) -"iUr" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"iUs" = ( -/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, -/area/station/service/chapel) -"iUw" = ( -/obj/structure/ladder, -/turf/open/floor/iron/showroomfloor, -/area/station/service/kitchen/coldroom) -"iUy" = ( -/obj/structure/window/reinforced/plasma{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/structure/cable, -/obj/machinery/power/energy_accumulator/grounding_rod/anchored, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"iUB" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"iUE" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "prisondorm"; - name = "Prison Dorm 3" - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/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, -/area/station/security/prison/safe) -"iUK" = ( -/obj/structure/table/glass, -/obj/item/storage/box/beakers, -/obj/item/storage/box/bodybags{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/item/radio/intercom/directional/east, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"iVj" = ( -/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/filled/corner, -/turf/open/floor/iron, -/area/station/security/prison) -"iVk" = ( -/turf/closed/wall, -/area/station/commons/vacant_room/commissary) -"iVs" = ( -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/obj/effect/turf_decal/arrows/white{ - color = "#0000FF"; - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmospherics_engine) -"iVF" = ( -/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{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"iWc" = ( -/obj/structure/sign/directions/supply{ - dir = 1; - pixel_y = 28 - }, -/obj/structure/sign/directions/security{ - dir = 8; - pixel_y = 34 - }, -/obj/structure/sign/directions/command{ - dir = 8; - pixel_y = 40 - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_cw{ - dir = 1 - }, -/obj/structure/sign/directions/vault{ - dir = 8; - pixel_y = 22 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"iWl" = ( -/obj/effect/turf_decal/trimline/blue/filled/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/white, -/area/station/medical/storage) -"iWs" = ( -/obj/machinery/button/door/directional/west{ - id = "private_f"; - name = "Privacy Bolts"; - normaldoorcontrol = 1; - pixel_x = 24; - pixel_y = -9; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/commons/dorms) -"iWE" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/door/airlock/security{ - name = "Courtroom Holding Area" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"iWP" = ( -/obj/effect/turf_decal/tile{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"iWU" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - 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, -/area/station/hallway/secondary/exit/departure_lounge) -"iWY" = ( -/obj/structure/railing, -/obj/structure/chair/sofa/right{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"iWZ" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/rice, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"iXc" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/obj/machinery/button/door/directional/west{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_y = 8; - req_access = list("atmospherics") - }, -/obj/machinery/button/door/directional/west{ - id = "Secure Storage"; - name = "Engineering Secure Storage"; - req_access = list("engine_equip") - }, -/obj/machinery/button/door/directional/west{ - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_y = -8; - req_access = list("engineering") - }, -/mob/living/simple_animal/parrot/poly, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"iXo" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/bar) -"iXw" = ( -/obj/structure/table/glass, -/obj/item/storage/medkit/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/neck/stethoscope, -/obj/machinery/requests_console/directional/south{ - announcementConsole = 1; - department = "Chief Medical Officer's Console"; - departmentType = 5; - name = "Chief Medical Officer's Request Console" - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"iXD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"iXW" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/caution, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"iYb" = ( -/obj/machinery/pdapainter/supply, -/turf/open/floor/carpet, -/area/station/cargo/qm) -"iYm" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"iYu" = ( -/obj/structure/railing/corner, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"iYW" = ( -/turf/closed/wall, -/area/station/science/xenobiology) -"iZb" = ( -/turf/closed/wall, -/area/station/security/office) -"iZe" = ( -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/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, -/area/station/maintenance/central/greater) -"iZf" = ( -/obj/machinery/airalarm/directional/north, -/obj/structure/table/glass, -/obj/item/reagent_containers/spray/pepper, -/obj/item/assembly/flash/handheld{ - pixel_x = -6 - }, -/turf/open/floor/iron/white, -/area/station/security/execution/education) -"iZh" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/medbay/lobby) -"iZi" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/obj/machinery/light_switch/directional/west, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"iZj" = ( -/obj/structure/table/wood, -/obj/machinery/light/small/directional/west, -/obj/item/storage/photo_album/library, -/obj/item/camera, -/turf/open/floor/engine/cult, -/area/station/service/library) -"iZk" = ( -/obj/machinery/vending/wardrobe/chap_wardrobe, -/obj/machinery/camera/directional/south{ - c_tag = "Civilian - Chapel Office" - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"iZz" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/lab) -"iZH" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"iZM" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"jab" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"jap" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"jaw" = ( -/obj/structure/window/reinforced{ - dir = 8; - pixel_y = 2 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"jaz" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/obj/machinery/camera{ - c_tag = "Hallway - Lower Right Service"; - dir = 5 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"jaD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jaH" = ( -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"jaP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/south{ - c_tag = "Science - Lower Power Hatch"; - network = list("ss13","rd") - }, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/lesser) -"jaQ" = ( -/obj/machinery/rnd/production/techfab/department/medical, -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"jaV" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/closet/crate/wooden/toy, -/turf/open/floor/iron, -/area/station/service/theater) -"jba" = ( -/obj/structure/chair/pew, -/turf/open/floor/iron/chapel{ - dir = 9 - }, -/area/station/service/chapel) -"jbs" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"jcf" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/office) -"jcu" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"jcC" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable/layer1, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"jcF" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Tunnel Access" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) -"jcP" = ( -/obj/structure/table, -/obj/item/fuel_pellet, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"jdf" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electric_shock/directional/south, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"jdr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad/secure, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) -"jdz" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Civilian - Holodeck South"; - name = "holodeck camera" - }, -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/station/holodeck/rec_center) -"jdN" = ( -/obj/machinery/vending/tool, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/red/corner, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"jdR" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/dorms) -"jdX" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/commons/dorms) -"jef" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Chamber Hallway" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, -/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"jek" = ( -/obj/effect/turf_decal/trimline/green/corner, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 1 - }, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"jeB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"jeJ" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/shower{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"jeO" = ( -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"jfd" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) -"jfm" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"jfp" = ( -/obj/effect/turf_decal/bot, -/obj/effect/landmark/navigate_destination/hop, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"jfs" = ( -/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/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"jfv" = ( -/obj/machinery/door/airlock/security{ - name = "Science Guard's Office" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - 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, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/sci_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"jfw" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"jfN" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"jfR" = ( -/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, -/area/station/hallway/secondary/exit) -"jgm" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"jgD" = ( -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/command/heads_quarters/rd) -"jgE" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/obj/machinery/airlock_sensor/incinerator_ordmix{ - pixel_y = 24 - }, -/turf/open/floor/engine, -/area/station/science/ordnance/burnchamber) -"jgH" = ( -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/effect/turf_decal/stripes, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/right) -"jgM" = ( -/obj/structure/stairs/south, -/turf/open/floor/iron/stairs/medium, -/area/station/security/checkpoint/supply) -"jgQ" = ( -/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/secondary/exit) -"jhi" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/dark/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"jhl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/warning/secure_area/directional/north{ - name = "HIGH SECURITY STORAGE" - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"jho" = ( -/obj/effect/turf_decal/trimline/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, -/turf/open/floor/iron, -/area/station/security/brig) -"jht" = ( -/obj/machinery/conveyor{ - id = "garbage" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor{ - id = "disposals"; - name = "Disposals Blast Door" - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"jhz" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Testing Room" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"jhU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"jhV" = ( -/obj/effect/spawner/random/vending/snackvend, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - Lobby North"; - dir = 9; - network = list("ss13","engineering") - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"jif" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"jih" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"jim" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/machinery/meter, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jiy" = ( -/obj/machinery/modular_computer/console/preset/cargochat/medical, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"jiB" = ( -/obj/machinery/power/emitter/welded{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"jiO" = ( -/obj/structure/tank_dispenser, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"jje" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"jjn" = ( -/obj/machinery/power/apc/auto_name/directional/west, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"jjw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/freezer, -/area/station/science/lower) -"jjx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"jjL" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/research) -"jjS" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/brown/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"jjX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"jkk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"jkl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"jkm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"jkt" = ( -/turf/open/floor/carpet, -/area/station/service/chapel) -"jkv" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/holosign/barrier/atmos/sturdy, -/obj/structure/fluff/tram_rail/floor, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/center) -"jkw" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"jkx" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation A" - }, -/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/medical/virology, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"jkD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hop"; - name = "Privacy Shutters" - }, -/turf/open/floor/plating, -/area/station/command/heads_quarters/hop) -"jkO" = ( -/obj/machinery/processor/slime, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"jkQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"jkU" = ( -/obj/structure/cable, -/obj/machinery/camera{ - c_tag = "Civilian - Lower Power Hatch"; - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/crew_quarters/dorms) -"jlb" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"jlh" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"jlo" = ( -/obj/machinery/conveyor/inverted{ - dir = 9; - id = "QMLoad2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"jmd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"jmA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/commons/dorms) -"jmD" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/effect/turf_decal/siding/wideplating/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wideplating/corner, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock/oresilo) -"jmP" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"jnc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/service/kitchen) -"jnk" = ( -/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/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/medical/surgery/fore) -"jnq" = ( -/turf/closed/wall, -/area/station/maintenance/central/lesser) -"jnD" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/cargo/lobby) -"jnG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/science) -"jnO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/security/brig) -"joe" = ( -/obj/structure/bed/double, -/obj/item/bedsheet/dorms_double, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/commons/dorms) -"jof" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"joi" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"jor" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness) -"jou" = ( -/obj/structure/chair/stool/directional/west, -/obj/effect/landmark/xeno_spawn, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white/side{ - dir = 4 - }, -/area/station/service/theater) -"joA" = ( -/obj/vehicle/ridden/wheelchair, -/obj/effect/turf_decal/bot, -/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/medbay/central) -"joB" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"joF" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/item/storage/toolbox/emergency, -/obj/item/wrench, -/obj/item/assembly/signaler, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"joG" = ( -/obj/structure/table, -/obj/item/book/manual/chef_recipes, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"joR" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"jpp" = ( -/obj/structure/window/reinforced/spawner/north, -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/iron/dark/smooth_corner{ - dir = 8 - }, -/area/station/commons/fitness) -"jpw" = ( -/obj/structure/cable, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"jpx" = ( -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"jpF" = ( -/turf/open/floor/engine/hull, -/area/space/nearstation) -"jpV" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"jql" = ( -/obj/machinery/door/airlock/command{ - name = "Research Division Server Room" - }, -/obj/machinery/door/firedoor, -/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/access/all/science/rd, -/turf/open/floor/iron/dark, -/area/station/science/server) -"jqv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/spawner/random/engineering/flashlight, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"jqB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 9 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/engineering/transit_tube) -"jqF" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"jqP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - 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 = 5 - }, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"jqS" = ( -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"jre" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/service/library) -"jrl" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"jrJ" = ( -/obj/structure/chair/pew/left, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/chapel{ - dir = 1 - }, -/area/station/service/chapel) -"jrQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "Test Chamber Blast Door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"jsg" = ( -/obj/effect/turf_decal/trimline/green/filled/corner, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"jsr" = ( -/obj/machinery/atmospherics/components/binary/valve/digital, -/turf/open/floor/iron, -/area/station/science/ordnance/storage) -"jsw" = ( -/obj/machinery/door/airlock/hatch{ - name = "Radstorm Shelter" - }, -/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/maintenance/radshelter/civil) -"jsA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/effect/turf_decal/tile{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"jsF" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"jsL" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/holosign/barrier/atmos/sturdy, -/obj/machinery/camera/directional/south{ - c_tag = "Hallway - North-East Tram Bridge" - }, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/right) -"jsN" = ( -/obj/structure/closet/crate, -/obj/item/reagent_containers/glass/bowl, -/obj/effect/spawner/random/contraband/prison, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/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/machinery/light/directional/south, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"jsO" = ( -/obj/effect/turf_decal/siding/thinplating, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"jsV" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/lower) -"jsW" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"jsX" = ( -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"jtg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/south{ - c_tag = "Hallway - Upper West Power Hatch" - }, -/turf/open/floor/iron/smooth, -/area/station/hallway/primary/tram/left) -"jtp" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 9 - }, -/obj/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/firealarm/directional/south, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"jtr" = ( -/turf/closed/wall, -/area/station/medical/treatment_center) -"jts" = ( -/obj/structure/bed/pod{ - desc = "An old medical bed, just waiting for replacement with something up to date."; - dir = 4; - name = "medical bed" - }, -/obj/machinery/defibrillator_mount/directional/west, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"jtt" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light/small/directional/north, -/obj/machinery/button/door/directional/north{ - id = "trammaintdock"; - name = "Tram Maintenance Dock Access"; - pixel_x = -8 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"jtN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"jtP" = ( -/obj/machinery/lapvend, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"jtQ" = ( -/obj/structure/sign/warning/radiation/rad_area/directional/north{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"jtW" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"jtZ" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"jue" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"juf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "Sciencelockdown"; - name = "Research Lockdown Blastdoor" - }, -/turf/open/floor/plating, -/area/station/science/research) -"juD" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"juJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"juN" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/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 = 10 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"juP" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"juV" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"jva" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/tram/left) -"jvf" = ( -/turf/closed/wall, -/area/station/command/heads_quarters/hop) -"jvj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=8-TunnelMidBottom"; - location = "7-TunnelRightBottomDoor" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/right) -"jvk" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/lobby) -"jvo" = ( -/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, -/area/station/service/theater) -"jvp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"jvM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/button/door/directional/east{ - id = "right_tram_lower"; - req_access = list("maint_tunnels") - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"jwr" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/spawner/random/structure/girder, -/turf/open/floor/plating/airless, -/area/mine/explored) -"jww" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/port/central) -"jwx" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/right) -"jwD" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"jwM" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 1 - }, -/obj/structure/showcase/cyborg/old{ - pixel_y = 20 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"jwQ" = ( -/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, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"jwV" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"jxb" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"jxi" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Science Maintenance" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/science) -"jxl" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/service/kitchen) -"jxr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"jxv" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) -"jxF" = ( -/obj/structure/table, -/obj/item/crowbar, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"jxG" = ( -/obj/structure/cable, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/iron, -/area/station/security/processing) -"jxH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/head/cone{ - pixel_x = -9; - pixel_y = 8 - }, -/obj/item/clothing/head/cone{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/item/chair/greyscale, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/security) -"jxK" = ( -/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, -/area/station/service/chapel) -"jxL" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/right) -"jxM" = ( -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole/bookmanagement, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/service/library) -"jxS" = ( -/obj/structure/cable, -/obj/machinery/airalarm/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/solar_control{ - dir = 4; - id = "portsolar"; - name = "Port Quarter Solar Control" - }, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/solars/port/aft) -"jyl" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Chamber Hallway" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"jyo" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"jyz" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/firealarm/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/lounge) -"jyF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"jyH" = ( -/turf/closed/wall, -/area/station/medical/pharmacy) -"jyK" = ( -/obj/machinery/requests_console/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/science/ordnance/testlab) -"jyM" = ( -/obj/machinery/power/turbine/core_rotor{ - dir = 4; - mapping_id = "main_turbine" - }, -/obj/structure/cable/layer1, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"jyV" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/item/storage/medkit/brute, -/turf/open/floor/iron, -/area/station/commons/fitness) -"jyZ" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/science/genetics) -"jzn" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/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, -/area/station/cargo/lobby) -"jzt" = ( -/obj/structure/bookcase/random/reference, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"jzz" = ( -/obj/effect/turf_decal/tile/neutral/full, -/obj/machinery/status_display/evac/directional/north, -/obj/structure/table, -/turf/open/floor/iron/large, -/area/station/commons/dorms) -"jzF" = ( -/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/ordnance/office) -"jzG" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"jzK" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/landmark/start/orderly, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"jzU" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"jzV" = ( -/obj/effect/spawner/structure/window/reinforced, -/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/security/prison/garden) -"jAa" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/camera{ - c_tag = "Cargo - Mining South-East"; - dir = 10; - network = list("ss13","cargo") - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"jAh" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Tunnel Access" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/tram/mid) -"jAk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/port/central) -"jAp" = ( -/obj/structure/table, -/obj/machinery/light/small/directional/west, -/obj/item/radio/intercom/prison/directional/west, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Security - Prison Cell 5"; - network = list("ss13","Security","prison","pcell") - }, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"jAF" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Security - Prison Main North"; - network = list("ss13","Security","prison") - }, -/turf/open/floor/iron, -/area/station/security/prison) -"jAW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/three, -/turf/open/floor/iron/smooth, -/area/station/maintenance/port/central) -"jAZ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/machinery/camera/directional/east{ - c_tag = "Science - Xenobiology Lower East"; - network = list("ss13","rd","xeno") - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"jBn" = ( -/obj/machinery/door/airlock/engineering/glass/critical{ - heat_proof = 1; - name = "Supermatter Chamber" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"jBu" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating/airless, -/area/mine/explored) -"jBy" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"jBO" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/departments/evac/directional/east{ - pixel_y = -32 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"jCf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/science/server) -"jCw" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"jCx" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/plate, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/item/food/deadmouse{ - pixel_x = -1; - pixel_y = 7 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"jCy" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating/airless, -/area/mine/explored) -"jCP" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/machinery/camera/motion{ - c_tag = "Secure - AI Upper Ring Access"; - dir = 9; - network = list("aicore","ss13") - }, -/obj/item/radio/intercom/directional/north{ - freerange = 1; - frequency = 1447; - name = "Private Channel" - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"jCT" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - Atmospherics South-West"; - dir = 10; - network = list("ss13","engineering") - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/structure/reagent_dispensers/watertank/high, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jDd" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/rnd_secure_all, -/obj/effect/turf_decal/trimline/white/filled/line, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"jDi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/camera/directional/south{ - c_tag = "Command - Bridge South" - }, -/obj/machinery/newscaster/directional/south, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/command/bridge) -"jDm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/mid) -"jDN" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album/chapel, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"jDT" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"jDU" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/l3closet/scientist, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/command/gateway) -"jEd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jEm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/greater) -"jEu" = ( -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"jEI" = ( -/obj/structure/disposalpipe/segment, -/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/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) -"jEO" = ( -/obj/machinery/button/tram{ - id = "middle_part" - }, -/turf/closed/wall, -/area/station/hallway/primary/tram/center) -"jEP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cytologylockdown"; - name = "Cytology Lockdown"; - dir = 8 - }, -/turf/open/floor/plating, -/area/station/science/cytology) -"jEQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"jEY" = ( -/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/chapel) -"jFb" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"jFJ" = ( -/turf/closed/wall, -/area/station/service/chapel/office) -"jGg" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/trimline/white/line{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"jGi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/clothing/head/cone{ - pixel_x = -8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/greater) -"jGo" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - 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, -/area/station/cargo/office) -"jGs" = ( -/obj/machinery/door/airlock{ - name = "Service Lathe Access" - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/service/general, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"jGB" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/science/research) -"jGE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/obj/effect/spawner/random/trash/cigbutt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/science) -"jGJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Cargo - Lower Power Hatch"; - dir = 9; - network = list("ss13","cargo") - }, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/greater) -"jGX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"jGZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jHh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/engineering{ - name = "Power Access Hatch" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/greater) -"jHl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/engineering/main) -"jHr" = ( -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"jHw" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/security/prison) -"jHG" = ( -/obj/machinery/firealarm/directional/south, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/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) -"jHK" = ( -/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/carpet, -/area/station/service/library) -"jHN" = ( -/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, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"jIu" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"jIx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/obj/item/tank/internals/emergency_oxygen, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/left) -"jIy" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/rnd_all, -/obj/effect/turf_decal/trimline/white/filled/line, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"jIA" = ( -/obj/structure/chair/pew/right, -/turf/open/floor/iron/chapel{ - dir = 5 - }, -/area/station/service/chapel) -"jIC" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"jIE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/server) -"jIG" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/central/lesser) -"jII" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/item/stack/sheet/mineral/coal/ten, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/siding/thinplating/corner, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/service/kitchen) -"jIV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"jIX" = ( -/obj/machinery/door/airlock/engineering{ - name = "Power Access Hatch" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/central) -"jJc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 4 - }, -/obj/machinery/button/door/directional/south{ - id = "trammaintdock"; - name = "Tram Maintenance Dock Access"; - pixel_x = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/central) -"jJt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/robot_debris/old, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) -"jJE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"jJO" = ( -/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) -"jJV" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw{ - dir = 1 - }, -/obj/effect/turf_decal/caution{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"jJZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"jKb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor/massdriver_trash, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"jKd" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"jKi" = ( -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 5 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/disposalpipe/trunk/multiz/down, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"jKq" = ( -/turf/closed/wall, -/area/station/security/interrogation) -"jKx" = ( -/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/carpet, -/area/station/service/chapel) -"jKB" = ( -/obj/machinery/door/airlock/grunge{ - name = "Morgue External Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"jKL" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix Outlet Pump" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"jKN" = ( -/obj/machinery/light/small/blacklight/directional/south, -/turf/open/floor/cult, -/area/station/service/chapel/office) -"jKZ" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"jLf" = ( -/turf/open/floor/iron/chapel, -/area/station/service/chapel) -"jLj" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/shower{ - dir = 1 - }, -/turf/open/floor/iron/freezer, -/area/station/security/prison) -"jLF" = ( -/obj/structure/flora/bush/leavy/style_random, -/obj/structure/flora/tree/palm/style_random, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/grass, -/area/station/science/genetics) -"jLJ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"jLK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - 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, -/area/station/medical/break_room) -"jLU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"jLX" = ( -/obj/structure/table, -/obj/item/storage/box/teargas{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/flashbangs{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/gun/grenadelauncher, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"jMn" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Service Wing Hallway" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"jMo" = ( -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"jMu" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"jMx" = ( -/obj/effect/mapping_helpers/iannewyear, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"jMD" = ( -/obj/structure/table/glass, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/science/breakroom) -"jMH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jMM" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/spawner/random/food_or_drink/donkpockets, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"jNb" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"jNg" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/entertainment/musical_instrument{ - spawn_loot_count = 2; - spawn_loot_double = 0; - spawn_random_offset = 1 - }, -/turf/open/floor/wood, -/area/station/service/theater) -"jNM" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Civilian - Dormitories West" - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"jNO" = ( -/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/catwalk_floor, -/area/station/maintenance/central/greater) -"jNP" = ( -/obj/structure/table/wood/fancy/red, -/obj/effect/spawner/random/aimodule/harmful, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/left/directional/south{ - dir = 1; - name = "High-Risk Modules"; - req_access = list("captain") - }, -/obj/item/ai_module/reset/purge{ - pixel_y = 11 - }, -/turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) -"jNR" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/security/brig) -"jNS" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw{ - dir = 1 - }, -/obj/effect/turf_decal/caution{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"jNT" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/structure/chair, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"jOc" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/commons/dorms) -"jOf" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/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, -/area/station/security/prison) -"jOB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"jOC" = ( -/obj/structure/cable/multilayer/multiz, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/small/directional/south, -/obj/structure/sign/warning/electric_shock/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"jOD" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"jOM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/carpet, -/area/station/cargo/miningdock) -"jON" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"jPe" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/door/firedoor, -/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/iron/white, -/area/station/medical/medbay/central) -"jPm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/mopbucket, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/security) -"jPq" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Civilian - Chapel South" - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"jPx" = ( -/obj/machinery/gulag_teleporter, -/obj/machinery/camera/directional/south{ - c_tag = "Security - Labor Dock"; - network = list("ss13","Security") - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/processing) -"jPy" = ( -/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, -/obj/effect/turf_decal/trimline/red/corner{ - 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/white, -/area/station/science/research) -"jPM" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"jPQ" = ( -/obj/structure/industrial_lift/tram{ - icon_state = "titanium_white" - }, -/obj/machinery/door/window/left/tram/directional/north, -/turf/open/openspace, -/area/station/hallway/primary/tram/center) -"jPU" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/duct, -/turf/open/floor/iron/freezer, -/area/station/medical/coldroom) -"jPX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/food_packaging, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/cargo) -"jQh" = ( -/obj/effect/landmark/start/station_engineer, -/obj/structure/cable/multilayer/connected, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"jQC" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/ai_monitored/security/armory) -"jQD" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile, -/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, -/area/station/hallway/secondary/entry) -"jQJ" = ( -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/station/medical/chemistry) -"jQM" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"jQS" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/lounge) -"jRa" = ( -/obj/effect/spawner/structure/window, -/obj/structure/curtain/cloth/fancy/mechanical{ - id = "barbershopcurtains" - }, -/turf/open/floor/plating, -/area/service/salon) -"jRk" = ( -/obj/structure/disposalpipe/segment{ - 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/wood/parquet, -/area/station/medical/psychology) -"jRr" = ( -/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/machinery/duct, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"jRA" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"jRB" = ( -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"jRF" = ( -/obj/effect/turf_decal/siding/wideplating{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"jRG" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/machinery/firealarm/directional/south, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/processing) -"jRX" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/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 = 10 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"jSa" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/bureaucracy/briefcase{ - spawn_loot_count = 2; - spawn_random_offset = 1 - }, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"jSi" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/computer/security/telescreen/entertainment/directional/west, -/turf/open/floor/iron, -/area/station/commons/dorms) -"jSj" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"jSr" = ( -/obj/machinery/mineral/ore_redemption, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/office) -"jTj" = ( -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/security) -"jTk" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice, -/turf/open/space/basic, -/area/mine/explored) -"jTx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"jTy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jTF" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"jTN" = ( -/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/filled/corner, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/corner, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/hangover, -/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, -/area/station/hallway/secondary/command) -"jUh" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics" - }, -/obj/machinery/door/firedoor, -/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/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jUj" = ( -/obj/structure/window/reinforced/plasma{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/structure/cable, -/obj/machinery/power/energy_accumulator/tesla_coil/anchored, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"jUr" = ( -/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{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/explab) -"jUz" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty, -/obj/item/storage/belt/utility, -/obj/item/t_scanner, -/obj/item/t_scanner, -/obj/item/t_scanner, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/structure/plaque/static_plaque/atmos{ - pixel_x = -32 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jUF" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"jUI" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/central) -"jUO" = ( -/obj/machinery/pipedispenser/disposal, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jUW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"jVb" = ( -/obj/structure/transit_tube, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"jVl" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/security/courtroom) -"jVw" = ( -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"jVT" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/effect/spawner/random/bureaucracy/pen, -/turf/open/floor/iron, -/area/station/commons/fitness) -"jWg" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/item/storage/toolbox/drone, -/turf/open/floor/iron, -/area/station/ai_monitored/security/armory) -"jWj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/obj/item/weldingtool, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"jWk" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"jWo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"jWG" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/closet/firecloset, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/smooth, -/area/station/hallway/primary/tram/right) -"jWL" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"jWO" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"jWQ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"jWR" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"jWV" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Antechamber" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, -/turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"jWW" = ( -/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/airalarm/directional/north, -/obj/machinery/camera{ - c_tag = "Civilian - Theatre"; - dir = 9 - }, -/turf/open/floor/wood, -/area/station/service/theater) -"jWZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"jXf" = ( -/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, -/area/station/maintenance/starboard/lesser) -"jXm" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/structure/sign/warning/engine_safety/directional/west, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"jXn" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Prisoner Processing" - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/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/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron, -/area/station/security/processing) -"jXo" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/security/office) -"jXp" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"jXH" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"jXL" = ( -/obj/machinery/light/directional/west, -/turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"jXR" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/item/stack/rods/fifty, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"jXY" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters" - }, -/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/access/all/command/captain, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"jYf" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"jYx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Science - Genetics Pen"; - network = list("ss13","rd") - }, -/turf/open/floor/grass, -/area/station/science/genetics) -"jYy" = ( -/obj/effect/turf_decal/tile{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"jYA" = ( -/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, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jYD" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"jYE" = ( -/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/teleporter) -"jYG" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/effect/turf_decal/siding/wideplating/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) -"jYK" = ( -/obj/machinery/light/directional/south, -/turf/open/openspace, -/area/station/hallway/primary/tram/left) -"jYO" = ( -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"jYP" = ( -/obj/effect/turf_decal/siding/thinplating/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, -/area/station/commons/fitness/recreation) -"jYQ" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"jYS" = ( -/turf/closed/wall, -/area/station/medical/chemistry) -"jYU" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge" - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/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, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-right" - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "Bridge Blast Door" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"jYX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/food_packaging, -/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, -/area/station/maintenance/port/central) -"jYY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/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, -/area/station/security/execution/transfer) -"jZb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/door/directional/east{ - id = "disposals"; - name = "Disposals Blast Door Control"; - pixel_x = 27; - pixel_y = 7 - }, -/obj/machinery/computer/pod/old/mass_driver_controller/trash{ - pixel_x = 27; - pixel_y = -5 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"jZe" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"jZj" = ( -/obj/machinery/button/crematorium{ - id = "crematoriumChapel"; - pixel_y = -26 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Civilian - Chapel Crematorium" - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"jZD" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/prison) -"jZM" = ( -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/station/security/prison/workout) -"jZN" = ( -/obj/effect/turf_decal/siding/wood/corner, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/service/theater) -"kaa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/meter/monitored/waste_loop, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"kaA" = ( -/obj/effect/turf_decal/trimline/white/filled/line, -/obj/effect/turf_decal/trimline/white/filled/corner{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"kaF" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"kaO" = ( -/obj/structure/disposalpipe/segment, -/obj/item/assembly/mousetrap/armed, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) -"kbl" = ( -/obj/machinery/door/airlock/grunge{ - name = "Morgue" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"kbq" = ( -/obj/machinery/door/airlock/engineering{ - name = "Power Access Hatch" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/crew_quarters/dorms) -"kbv" = ( -/obj/machinery/computer/teleporter{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"kbS" = ( -/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/catwalk_floor/iron, -/area/station/security/prison) -"kce" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"kcm" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/lesser) -"kcA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/food_packaging, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/left) -"kcB" = ( -/obj/machinery/conveyor{ - id = "garbage" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/garbage{ - spawn_loot_count = 3; - spawn_random_offset = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"kcF" = ( -/obj/structure/chair/stool/directional/west, -/obj/effect/landmark/start/roboticist, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"kcK" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"kcV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"kcZ" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/carpet, -/area/station/medical/psychology) -"kdh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"kdk" = ( -/obj/effect/turf_decal/siding/thinplating{ - 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/door/firedoor/border_only{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"kdo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"kdu" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"kdL" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"kdV" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"ket" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/vending/wardrobe/atmos_wardrobe, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"keD" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"keX" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"kfb" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"kff" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"kfl" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/structure/railing/corner, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/caution{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"kfx" = ( -/obj/machinery/light/directional/west, -/obj/machinery/camera/motion{ - c_tag = "Secure - ai_upload"; - dir = 10; - network = list("ss13","aiupload") - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"kfz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/tram/mid) -"kfO" = ( -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"kfR" = ( -/obj/effect/turf_decal/sand/plating, -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating/airless, -/area/station/engineering/supermatter/room) -"kfZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/food_packaging, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"kgc" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard) -"kgd" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood/large, -/area/station/service/library) -"kgh" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Security Maintenance Hatch" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/security) -"kgl" = ( -/obj/structure/closet/secure_closet/brig{ - id = "scicell"; - name = "Science Cell Locker" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/corner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"kgr" = ( -/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/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/obj/machinery/light/small/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) -"kgA" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"kgQ" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - 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 = 6 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"khl" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/science/lower) -"khA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"khE" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"khF" = ( -/obj/machinery/door/airlock{ - id_tag = "private_g"; - name = "Private Quarters G" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/dorms) -"khH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/left) -"khN" = ( -/obj/machinery/door/airlock{ - id_tag = "private_c"; - name = "Private Quarters C" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"khV" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/item/stock_parts/cell/high, -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"khX" = ( -/obj/machinery/smartfridge/chemistry/preloaded, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "pharmacy_shutters_2"; - name = "Pharmacy Shutters"; - dir = 1 - }, -/turf/open/floor/iron, -/area/station/medical/pharmacy) -"khY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door_buttons/airlock_controller{ - idExterior = "middleright_upper_eva_external"; - idInterior = "middleright_upper_eva_internal"; - idSelf = "middleright_upper_eva_airlock_control"; - name = "External Access Console"; - pixel_y = 24 - }, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/center) -"kic" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"kil" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"kin" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"kis" = ( -/obj/machinery/computer/atmos_alert{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"kiA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/obj/machinery/destructive_scanner, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"kiF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"kiK" = ( -/obj/machinery/light_switch/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/wood, -/area/station/service/theater) -"kiT" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/landmark/start/customs_agent, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/machinery/requests_console/directional/north{ - department = "Security"; - departmentType = 5 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"kja" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/turf/open/floor/iron, -/area/station/security/office) -"kjl" = ( -/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{ - dir = 4 - }, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/lesser) -"kjr" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"kjv" = ( -/obj/effect/turf_decal/trimline/green/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/corner, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"kjB" = ( -/obj/structure/sign/poster/contraband/space_cube{ - pixel_y = 32 - }, -/obj/effect/landmark/start/scientist, -/turf/open/floor/engine, -/area/station/science/explab) -"kjK" = ( -/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, -/area/station/cargo/miningdock) -"kjV" = ( -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/dark, -/area/station/maintenance/radshelter/service) -"kkc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"kkd" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw, -/obj/machinery/vending/coffee, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"kkg" = ( -/obj/structure/chair{ - pixel_y = -2 - }, -/turf/open/floor/carpet, -/area/station/service/chapel/monastery) -"kkq" = ( -/obj/machinery/autolathe, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"kkt" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"kkw" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/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 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"kkz" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/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, -/area/station/hallway/primary/tram/right) -"kkI" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"kkO" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/service/hydroponics) -"kkP" = ( -/obj/structure/bookcase/random/religion, -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/wood/large, -/area/station/service/library) -"kkT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/cigbutt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/cargo) -"klj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"kll" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/neutral/filled/warning, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"klx" = ( -/obj/structure/chair/stool/directional/north, -/obj/machinery/button/door/directional/west{ - id = "private_l"; - name = "Privacy Bolts"; - normaldoorcontrol = 1; - pixel_x = 24; - pixel_y = -9; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/commons/dorms) -"klE" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"klG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"klI" = ( -/obj/effect/turf_decal/trimline/white/filled/line, -/obj/machinery/camera{ - c_tag = "Secure - Tech Secure Storage"; - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"klL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Research Maintnenace" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/catwalk_floor, -/area/station/science/lower) -"klQ" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"klT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/primary/tram/left) -"klX" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/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, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/science/auxlab) -"kme" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/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/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"kmk" = ( -/obj/structure/disposalpipe/segment, -/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, -/area/station/hallway/secondary/command) -"kmq" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"kmy" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/security/brig) -"kmF" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"kmI" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/radshelter/service) -"kmJ" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - dir = 4; - pixel_y = 2 - }, -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) -"kmP" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 4 - }, -/obj/machinery/cell_charger{ - pixel_y = 4 - }, -/obj/item/stock_parts/cell/high, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"knd" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"knj" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/wood/parquet, -/area/station/service/library) -"knk" = ( -/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/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lower) -"knt" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"knw" = ( -/obj/structure/flora/tree/palm/style_random, -/turf/open/floor/grass, -/area/station/medical/virology) -"knJ" = ( -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"knM" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"knO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"knR" = ( -/obj/machinery/door/airlock{ - name = "Courtroom" - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"knS" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"koa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"kob" = ( -/obj/effect/turf_decal/stripes{ - dir = 9 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"koq" = ( -/obj/machinery/air_sensor/oxygen_tank, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"koy" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 - }, -/obj/structure/rack, -/obj/item/gps/mining{ - pixel_x = -5; - pixel_y = -2 - }, -/obj/item/gps/mining{ - pixel_x = -2; - pixel_y = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"koB" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"koP" = ( -/turf/closed/wall, -/area/station/science/ordnance/bomb) -"koQ" = ( -/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/showroomfloor, -/area/station/security/lockers) -"koW" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engine Room" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "engi-entrance" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/engineering/main) -"kpd" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"kpe" = ( -/obj/machinery/atmospherics/components/binary/valve/digital, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/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, -/area/station/science/ordnance/storage) -"kpg" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"kpq" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Distribution Loop" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"kpv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/station/cargo/miningdock) -"kpC" = ( -/obj/structure/chair/comfy/beige{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"kpE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_output{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"kpG" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating/dark/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"kpL" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/corner, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"kpQ" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/machinery/door/airlock/virology/glass{ - name = "Test Subject Cell" - }, -/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/medical/virology, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"kpX" = ( -/obj/machinery/door/airlock/vault{ - name = "High Security Vault" - }, -/obj/effect/mapping_helpers/airlock/locked, -/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/access/all/supply/vault, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"kqf" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"kqs" = ( -/obj/structure/filingcabinet, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"kqv" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm/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/security/brig) -"kqx" = ( -/obj/structure/chair/sofa{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"kqy" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"kqD" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Air to Mix" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"kqJ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"kqP" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"kqW" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/lesser) -"kre" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"kro" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"krE" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"krF" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"ksa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ksh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/central) -"ksu" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"ksB" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"ksJ" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"ktp" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/mine/explored) -"ktq" = ( -/obj/effect/turf_decal/tile, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"ktt" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/machinery/camera/emp_proof/directional/south{ - c_tag = "Engineering - Atmospherics South-East"; - network = list("ss13","engineering") - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/machinery/firealarm/directional/south, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ktG" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/science/auxlab) -"ktJ" = ( -/obj/machinery/vending/tool, -/obj/machinery/airalarm/directional/east, -/obj/machinery/camera{ - c_tag = "Civilian - Primary Tool Storage"; - dir = 6 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"ktX" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrigleft"; - name = "Brig" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig_left" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron, -/area/station/security/brig) -"kuw" = ( -/obj/machinery/holopad/secure, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"kuJ" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 10 - }, -/obj/machinery/requests_console/directional/west, -/obj/item/holosign_creator/atmos{ - pixel_x = -5 - }, -/obj/item/book/manual/wiki/ordnance{ - pixel_x = 5; - pixel_y = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"kuX" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"kvb" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/ordnance/testlab) -"kve" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) -"kvf" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/office) -"kvj" = ( -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"kvn" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw, -/obj/effect/turf_decal/caution, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"kvH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/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, -/area/station/medical/morgue) -"kvW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"kwg" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 10 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/station/science/lower) -"kwk" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/garden) -"kwo" = ( -/obj/structure/table/wood, -/obj/item/taperecorder, -/obj/item/tape, -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/turf/open/floor/wood/large, -/area/station/service/library) -"kwp" = ( -/obj/structure/table, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -8 - }, -/obj/item/clothing/mask/breath{ - pixel_x = 4 - }, -/obj/item/clothing/mask/breath{ - pixel_x = 4 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -8 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"kwq" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/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, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"kwr" = ( -/obj/structure/window/reinforced/plasma{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/structure/cable, -/obj/machinery/power/energy_accumulator/grounding_rod/anchored, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"kwA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/science/breakroom) -"kwD" = ( -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/glass, -/area/station/cargo/storage) -"kwI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"kwK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/machinery/status_display/ai/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lower) -"kwN" = ( -/obj/machinery/computer/holodeck{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"kwU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"kwY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/security) -"kxb" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"kxe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) -"kxf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/security/office) -"kxg" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"kxs" = ( -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/effect/turf_decal/stripes, -/turf/open/floor/iron, -/area/station/science/ordnance/storage) -"kxB" = ( -/turf/closed/wall/r_wall, -/area/station/science/lower) -"kxS" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"kxZ" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"kyc" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"kye" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"kyw" = ( -/obj/structure/table/wood, -/obj/machinery/reagentgrinder, -/obj/machinery/light/small/directional/north, -/obj/machinery/camera{ - c_tag = "Civilian - Bar Backroom"; - dir = 9 - }, -/turf/open/floor/wood, -/area/station/service/bar) -"kyz" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"kyF" = ( -/obj/structure/table, -/obj/item/storage/backpack/duffelbag/sec{ - pixel_y = 7 - }, -/obj/item/clothing/mask/gas/sechailer{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/iron, -/area/station/security/office) -"kyG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"kyJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/secure_area/directional/south{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM" - }, -/turf/open/floor/plating, -/area/station/science/server) -"kzm" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/commons/storage/primary) -"kzw" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Arrival Airlock"; - space_dir = 1 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"kzy" = ( -/obj/effect/turf_decal/trimline/blue/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, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"kzA" = ( -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/warning, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"kzQ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/commons/fitness) -"kzT" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/service/chapel) -"kzX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/greater) -"kzZ" = ( -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/station/security/processing) -"kAi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"kAl" = ( -/obj/structure/table/wood, -/obj/item/nullrod{ - pixel_x = 4 - }, -/obj/item/reagent_containers/food/drinks/bottle/holywater{ - pixel_x = -2; - pixel_y = 2 - }, -/turf/open/floor/cult, -/area/station/service/chapel/office) -"kAL" = ( -/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, -/area/station/maintenance/department/security) -"kAW" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"kBk" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"kBm" = ( -/obj/structure/bed{ - dir = 8 - }, -/obj/item/bedsheet/dorms, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/commons/dorms) -"kBo" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/security/brig) -"kBx" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"kBC" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/chair/stool/bar/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/lounge) -"kBE" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"kBS" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/structure/filingcabinet/employment, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"kCl" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"kCm" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -7; - pixel_y = 5 - }, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"kCr" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1; - name = "sorting disposal pipe (Head of Personnel's Office)"; - sortType = 15 - }, -/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, -/area/station/hallway/secondary/command) -"kCz" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"kCB" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/corner, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"kCN" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/command_all, -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 1 - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"kCV" = ( -/obj/effect/turf_decal/trimline/neutral/filled/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 = 4 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"kDi" = ( -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"kDj" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"kDl" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"kDq" = ( -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/service/chapel) -"kDz" = ( -/obj/structure/fluff/tram_rail/floor, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/tram/center) -"kDB" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"kDC" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/janitor) -"kDF" = ( -/obj/structure/closet/wardrobe/miner, -/obj/effect/turf_decal/tile/brown/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"kDH" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit) -"kDK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"kDS" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 - }, -/obj/machinery/light/directional/south, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"kEc" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/turf/open/floor/iron, -/area/station/security/brig) -"kEd" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/machinery/firealarm/directional/west, -/obj/structure/plaque/static_plaque/golden/captain{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"kEk" = ( -/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/cable, -/turf/open/floor/iron, -/area/station/cargo/office) -"kEm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"kEp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"kEy" = ( -/turf/open/floor/wood, -/area/station/service/lawoffice) -"kEA" = ( -/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/white, -/area/station/science/research) -"kEI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"kES" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = 11; - pixel_y = -2 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"kEX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/external{ - autoclose = 0; - frequency = 1449; - id_tag = "mostleft_upper_eva_external"; - name = "External Access" - }, -/obj/machinery/door_buttons/access_button{ - idDoor = "mostleft_upper_eva_external"; - idSelf = "mostleft_upper_eva_airlock_control"; - name = "External Access Button"; - pixel_y = 24 - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/left) -"kFf" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 4 - }, -/obj/structure/cable/layer3, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"kFp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/tram/mid) -"kFu" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/structure/table, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"kFP" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"kFW" = ( -/obj/structure/bed{ - dir = 8 - }, -/obj/item/bedsheet/dorms, -/turf/open/floor/wood, -/area/station/commons/dorms) -"kFY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"kGd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/tank_holder/extinguisher, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/crew_quarters/dorms) -"kGk" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/firealarm/directional/east, -/obj/machinery/camera{ - c_tag = "Hallway - Mid-Left Service"; - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"kGA" = ( -/obj/structure/railing, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/glass, -/area/station/commons/fitness/recreation) -"kGQ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/command/heads_quarters/rd) -"kGV" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"kGZ" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/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 = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"kHa" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 1"; - space_dir = 2 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"kHr" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/dorms) -"kHt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/obj/machinery/air_sensor/incinerator_tank, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"kHy" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"kHB" = ( -/turf/open/floor/grass, -/area/station/medical/virology) -"kHS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Command Wing Hallway" - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"kHT" = ( -/obj/structure/table, -/turf/open/floor/iron, -/area/station/security/prison) -"kHZ" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/catwalk_floor, -/area/station/command/gateway) -"kIj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/cargo/storage) -"kIo" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/machinery/newscaster/directional/north, -/obj/machinery/recharger, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hop) -"kIt" = ( -/obj/structure/cable, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"kIv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/south{ - c_tag = "Solar - Aft Port Power Hatch" - }, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/solars/port/aft) -"kIw" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/station/science/ordnance/burnchamber) -"kIB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"kIG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"kIO" = ( -/obj/machinery/atmospherics/components/unary/passive_vent{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"kJg" = ( -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"kJh" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"kJy" = ( -/obj/effect/turf_decal/siding/thinplating, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/brown/filled/corner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"kJM" = ( -/obj/structure/chair{ - name = "Defense" - }, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"kJU" = ( -/obj/structure/chair/comfy/beige, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"kKe" = ( -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "QMLoad"; - name = "Loading Conveyor"; - pixel_x = -13; - pixel_y = -5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"kKn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/right) -"kKp" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/common/cryopods) -"kKt" = ( -/obj/structure/chair/stool/bar/directional/west, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"kKu" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/structure/window/reinforced/spawner/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"kKS" = ( -/obj/structure/lattice/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/tram/left) -"kLy" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/brig) -"kLz" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison/work) -"kLC" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Treatment Center" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/door/firedoor, -/obj/machinery/duct, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"kLV" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"kLZ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/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, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"kMd" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"kMf" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"kMh" = ( -/turf/open/openspace/airless/planetary, -/area/mine/explored) -"kMm" = ( -/obj/structure/table/wood, -/obj/item/food/grown/harebell, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"kMw" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"kMz" = ( -/turf/open/floor/engine/cult, -/area/station/service/library) -"kMH" = ( -/obj/machinery/button/door/directional/east{ - id = "armory"; - name = "Armory Shutters"; - req_access = list("armory") - }, -/obj/machinery/status_display/ai/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"kMI" = ( -/obj/structure/table, -/obj/item/folder/red{ - pixel_x = 7 - }, -/obj/item/storage/box/evidence{ - pixel_x = -5; - pixel_y = 12 - }, -/obj/item/toy/crayon/white{ - pixel_y = -4 - }, -/obj/item/toy/crayon/white{ - pixel_x = -5; - pixel_y = -4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"kMJ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"kML" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/mob/living/simple_animal/bot/medbot/autopatrol, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"kMM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"kMW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/cargo/qm) -"kNb" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/table, -/turf/open/floor/iron, -/area/station/security/brig) -"kNe" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/door/airlock/glass{ - name = "Break Room" - }, -/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/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron, -/area/station/cargo/miningdock/cafeteria) -"kNf" = ( -/obj/structure/closet/secure_closet/brig{ - id = "crgcell"; - name = "Cargo Cell Locker" - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"kNn" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"kNT" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/tram/center) -"kOc" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table, -/obj/machinery/reagentgrinder, -/turf/open/floor/iron, -/area/station/cargo/miningdock/cafeteria) -"kOr" = ( -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/neutral/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, -/area/station/commons/fitness/recreation) -"kOy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/duct, -/obj/machinery/light/directional/west, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"kOz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/transit_tube, -/turf/open/floor/plating, -/area/station/engineering/transit_tube) -"kOD" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"kOE" = ( -/turf/closed/wall, -/area/station/security/detectives_office) -"kOL" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/obj/structure/bed{ - dir = 4 - }, -/obj/effect/landmark/start/virologist, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"kOY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/door/airlock/security/glass{ - name = "Isolation Cell A" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"kPh" = ( -/obj/structure/chair/sofa/bench/right, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/secondary/entry) -"kPj" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/computer/secure_data, -/obj/machinery/light/directional/north, -/obj/machinery/airalarm/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Departures - Security Outpost"; - network = list("ss13","Security") - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"kPq" = ( -/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, -/area/station/hallway/secondary/service) -"kPr" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/commons/dorms) -"kPz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"kPC" = ( -/turf/closed/wall/rust, -/area/station/security/prison/workout) -"kPD" = ( -/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/line, -/obj/machinery/camera/directional/south{ - c_tag = "Science - Xenobiology South"; - network = list("ss13","rd","xeno") - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"kPM" = ( -/obj/structure/rack, -/obj/item/pickaxe, -/obj/item/storage/bag/ore, -/obj/item/shovel, -/obj/item/clothing/glasses/meson{ - slowdown = 2 - }, -/obj/item/stack/marker_beacon/ten, -/obj/item/clothing/gloves/color/yellow/heavy, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"kQd" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/commons/dorms) -"kQg" = ( -/obj/structure/table, -/obj/item/assembly/timer{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/assembly/timer{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/assembly/timer{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/assembly/timer, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"kQx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door_buttons/airlock_controller{ - idExterior = "mostleft_upper_eva_external"; - idInterior = "mostleft_upper_eva_internal"; - idSelf = "mostleft_upper_eva_airlock_control"; - name = "External Access Console"; - pixel_y = 24 - }, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/left) -"kQy" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/computer/crew{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"kQC" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/structure/table, -/obj/item/multitool/circuit{ - pixel_x = 7; - pixel_y = -4 - }, -/obj/item/multitool/circuit{ - pixel_y = -4 - }, -/obj/item/multitool/circuit{ - pixel_x = -8; - pixel_y = -4 - }, -/obj/item/storage/toolbox/electrical{ - pixel_y = 13 - }, -/turf/open/floor/iron, -/area/station/science/auxlab) -"kRq" = ( -/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, -/area/station/hallway/primary/tram/right) -"kRu" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock/oresilo) -"kRz" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/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/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/port/central) -"kRG" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/carpet, -/area/station/cargo/qm) -"kRL" = ( -/turf/closed/wall, -/area/station/medical/coldroom) -"kSa" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/recharge_station, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"kSf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/flasher/directional/north{ - id = "engcell" - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"kSp" = ( -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/station/engineering/engine_smes) -"kSA" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"kSD" = ( -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard) -"kSE" = ( -/obj/structure/closet/crate/coffin, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/station/service/chapel/monastery) -"kSH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"kSI" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Primary Tool Storage" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"kSV" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/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/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Medical - Main South-East"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"kTg" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"kTp" = ( -/obj/machinery/door/airlock{ - id_tag = "miningdorm3"; - name = "Room 3" - }, -/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/supply/mining, -/turf/open/floor/carpet, -/area/station/cargo/miningdock) -"kTr" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/components/unary/passive_vent/layer2{ - dir = 1 - }, -/turf/open/space/openspace, -/area/space/nearstation) -"kTw" = ( -/obj/structure/bed{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/landmark/start/prisoner, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"kTy" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"kTT" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/turf/open/floor/glass/reinforced, -/area/station/security/brig) -"kUa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/port/fore) -"kUf" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/item/storage/box/bodybags, -/obj/item/reagent_containers/glass/bottle/multiver, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/syringe, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/camera{ - c_tag = "Security - Medical Center"; - dir = 10; - network = list("ss13","Security") - }, -/turf/open/floor/iron/white, -/area/station/security/medical) -"kUk" = ( -/obj/effect/turf_decal/sand/plating, -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/station/engineering/supermatter/room) -"kUo" = ( -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"kUx" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"kUD" = ( -/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/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/left) -"kVa" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/structure/closet/radiation, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"kVp" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Science - Xenobiology Lower Containment Chamber"; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"kVs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Commons Area" - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"kVy" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"kVA" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrigleft"; - name = "Brig" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig_left" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron, -/area/station/security/brig) -"kVH" = ( -/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/engineering{ - name = "Power Access Hatch" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/left) -"kVV" = ( -/turf/open/floor/carpet, -/area/station/command/bridge) -"kVZ" = ( -/obj/machinery/door/window/left/directional/south{ - dir = 1; - name = "Maximum Security Test Chamber"; - req_access = list("xenobiology") - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"kWg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"kWr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Cooling Loop Bypass" - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"kWt" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/ordnance/storage) -"kWv" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"kWA" = ( -/obj/effect/turf_decal/box/red/corners{ - dir = 4 - }, -/obj/effect/turf_decal/box/red/corners{ - dir = 8 - }, -/obj/effect/turf_decal/box/red/corners{ - dir = 1 - }, -/obj/effect/turf_decal/box/red/corners, -/obj/machinery/camera{ - c_tag = "Science - Cytology Pen"; - dir = 9; - network = list("ss13","rd") - }, -/obj/machinery/atmospherics/components/unary/outlet_injector, -/turf/open/floor/engine, -/area/station/science/cytology) -"kWI" = ( -/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/neutral/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"kWL" = ( -/obj/structure/girder, -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"kWN" = ( -/obj/structure/table, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation/entertainment) -"kWP" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 6 - }, -/obj/structure/table, -/turf/open/floor/iron/dark, -/area/station/science/lower) -"kWR" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"kWV" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"kWY" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"kXd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard) -"kXf" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 4 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Hallway - Engineering Entry East" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"kXm" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/bin{ - pixel_x = -2; - pixel_y = -2 - }, -/turf/open/floor/iron/dark, -/area/station/science/lower) -"kXr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/mob/living/simple_animal/bot/cleanbot, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) -"kXw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/window/right/directional/north{ - dir = 2; - name = "Research Test Chamber"; - req_access = list("science") - }, -/turf/open/floor/engine, -/area/station/science/explab) -"kXI" = ( -/obj/structure/closet/crate, -/obj/item/crowbar, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"kXL" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Cargo - Lower Security Outpost"; - dir = 6; - network = list("ss13","Security","cargo") - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"kXO" = ( -/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/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) -"kXP" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/machinery/light/small/directional/west, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"kYi" = ( -/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{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/lesser) -"kYm" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"kYy" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) -"kYH" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"kYI" = ( -/obj/machinery/power/smes{ - capacity = 9e+006; - charge = 10000 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"kYP" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/office) -"kYZ" = ( -/obj/machinery/airalarm/server{ - dir = 4; - pixel_x = 22 - }, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"kZh" = ( -/turf/open/floor/eighties/red, -/area/station/commons/fitness/recreation/entertainment) -"kZr" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/three, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/lesser) -"kZt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"kZI" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/food_packaging, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"kZO" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"lai" = ( -/obj/structure/chair, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"lal" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space/basic, -/area/station/solars/starboard) -"lat" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"lav" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"laz" = ( -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"laA" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"laM" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"laT" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"lbi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/vacuum/directional/north, -/obj/machinery/light/small/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/center) -"lbq" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/machinery/camera{ - c_tag = "Hallway - Upper Left Command"; - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"lbv" = ( -/obj/machinery/telecomms/receiver/preset_right, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"lbz" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/button/door/directional/north{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_x = -6; - req_access = list("brig_entrance") - }, -/obj/machinery/button/door/directional/north{ - desc = "A door remote control switch for the engineering security airlocks."; - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_x = 6; - req_access = list("brig_entrance") - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"lbP" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"lcn" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/item/storage/box/prisoner{ - pixel_y = 8 - }, -/obj/item/storage/box/prisoner, -/turf/open/floor/iron, -/area/station/security/brig) -"lco" = ( -/obj/machinery/computer/shuttle/mining/common{ - dir = 8 - }, -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"lcG" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"lde" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Personnel" - }, -/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 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/command/hop, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"ldm" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/public/glass{ - name = "Command Wing Hallway" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"ldp" = ( -/obj/machinery/door_timer{ - id = "crgcell"; - name = "Cargo Cell"; - pixel_x = 32 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"ldu" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"ldz" = ( -/obj/machinery/computer/rdconsole{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"ldC" = ( -/obj/machinery/door/airlock{ - name = "Bathroom" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron/freezer, -/area/station/science/lower) -"ldK" = ( -/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/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"ldZ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/machinery/meter, -/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/science/ordnance/storage) -"lej" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"lem" = ( -/obj/structure/rack, -/obj/item/wirecutters, -/obj/item/screwdriver{ - pixel_y = 6 - }, -/obj/item/pickaxe/mini{ - pixel_x = 5; - pixel_y = -1 - }, -/turf/open/misc/asteroid, -/area/mine/explored) -"leJ" = ( -/obj/structure/fluff/tram_rail/anchor, -/turf/open/openspace, -/area/station/hallway/primary/tram/center) -"leX" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"lfc" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"lfg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"lfh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/science/research) -"lfp" = ( -/obj/structure/table/wood/fancy/blue, -/obj/effect/spawner/random/aimodule/neutral, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window{ - base_state = "right"; - icon_state = "right"; - name = "Core Modules"; - req_access = list("ai_upload") - }, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai_upload) -"lft" = ( -/obj/structure/chair/sofa/corner{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"lfB" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"lfD" = ( -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/station/engineering/supermatter/room) -"lfE" = ( -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"lfO" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"lfP" = ( -/obj/structure/disposalpipe/segment{ - 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, -/area/station/commons/fitness/recreation) -"lfQ" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/science/lobby) -"lgt" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/toy/crayon/spraycan, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"lgu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/crew_quarters/dorms) -"lgy" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"lgB" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"lgM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"lgN" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"lgP" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/structure/rack, -/obj/item/tank/jetpack/oxygen, -/obj/item/tank/jetpack/oxygen{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/plating, -/area/station/engineering/engine_smes) -"lgV" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 10 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Medical - Chemistry Airlock"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"lgX" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/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/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/cargo) -"lhw" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/neutral/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, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"lhA" = ( -/obj/structure/table/glass, -/obj/effect/spawner/random/food_or_drink/refreshing_beverage, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/science/breakroom) -"lhB" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/science/breakroom) -"lhW" = ( -/obj/machinery/door/airlock/engineering{ - name = "Tech Storage" - }, -/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/engineering/construction, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"lia" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/disposalpipe/junction/yjunction, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating/airless, -/area/mine/explored) -"lib" = ( -/obj/machinery/telecomms/server/presets/security, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"lik" = ( -/obj/structure/chair{ - dir = 4; - name = "Judge" - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"lis" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"liI" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Medical - Surgery Room A"; - network = list("ss13","medbay") - }, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/machinery/status_display/evac/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/surgery/fore) -"liL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"ljh" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_cw{ - dir = 1 - }, -/obj/effect/turf_decal/caution{ - dir = 1 - }, -/obj/structure/railing/corner, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"ljv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"ljw" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"ljC" = ( -/obj/structure/table, -/obj/structure/cable, -/obj/item/radio/intercom/prison, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison) -"ljO" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/cargo/miningdock/cafeteria) -"ljZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/oxygen_output{ - dir = 1 - }, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"lko" = ( -/obj/structure/toilet{ - dir = 4; - pixel_y = 8 - }, -/obj/effect/spawner/random/trash/graffiti{ - pixel_y = 32; - spawn_loot_chance = 25 - }, -/obj/effect/spawner/random/trash/graffiti{ - pixel_x = -32; - spawn_loot_chance = 25 - }, -/obj/effect/spawner/random/trash/graffiti{ - pixel_y = -32; - spawn_loot_chance = 25 - }, -/turf/open/floor/iron/freezer, -/area/station/commons/lounge) -"lkp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"lkv" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/item/paper_bin, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"lkx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"lkJ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchencounter"; - name = "Kitchen Counter Shutters" - }, -/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/cafeteria, -/area/station/service/kitchen) -"lkN" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/door/airlock/medical/glass{ - name = "Medical Freezer" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, -/turf/open/floor/iron/freezer, -/area/station/medical/surgery/fore) -"lkV" = ( -/obj/machinery/computer/cargo/request{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"lla" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"llf" = ( -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"llj" = ( -/obj/structure/chair/office/light, -/turf/open/floor/iron, -/area/station/science/auxlab) -"llm" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"llz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/storage/belt/utility/atmostech, -/obj/structure/sign/poster/official/wtf_is_co2{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"llC" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"llU" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"lmb" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - 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/start/assistant, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"lml" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/pumproom) -"lms" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"lmt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) -"lmy" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/commons/dorms) -"lmG" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"lmK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/blobstart, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/science/breakroom) -"lmR" = ( -/obj/modular_map_root/tramstation{ - key = "maintenance_miningsolar_cavetunnel" - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"lmZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"lnh" = ( -/obj/machinery/door/poddoor/massdriver_chapel, -/turf/open/floor/plating, -/area/station/service/chapel/monastery) -"lnj" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/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/iron, -/area/station/command/gateway) -"lno" = ( -/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, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"lnC" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/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, -/area/station/security/prison/safe) -"lnN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/large, -/area/station/hallway/secondary/entry) -"lnZ" = ( -/obj/structure/table, -/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/security/prison) -"lof" = ( -/obj/item/toy/balloon, -/turf/open/floor/eighties/red, -/area/station/commons/fitness/recreation/entertainment) -"loh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, -/area/station/commons/fitness) -"lon" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/sofa/corp/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/lounge) -"loo" = ( -/obj/effect/turf_decal/tile{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"loq" = ( -/turf/open/openspace, -/area/station/service/hydroponics) -"loy" = ( -/obj/structure/closet/secure_closet/contraband/armory, -/obj/effect/spawner/random/contraband/armory, -/obj/effect/spawner/random/maintenance/three, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"loD" = ( -/turf/open/floor/wood/parquet, -/area/station/service/library) -"loJ" = ( -/obj/machinery/mech_bay_recharge_port{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/science/robotics/mechbay) -"lpn" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/left) -"lpq" = ( -/obj/machinery/hydroponics/soil, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/garden) -"lpu" = ( -/obj/structure/table, -/obj/item/camera, -/obj/item/camera_film, -/obj/item/hand_labeler, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Civilian - Art Storage" - }, -/turf/open/floor/iron, -/area/station/commons/storage/art) -"lpF" = ( -/obj/vehicle/ridden/wheelchair, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"lpK" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"lqj" = ( -/obj/effect/turf_decal/trimline/brown/corner, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"lqy" = ( -/obj/machinery/light/directional/south, -/obj/machinery/modular_computer/console/preset/id{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"lqD" = ( -/obj/modular_map_root/tramstation{ - key = "maintenance_engine_east" - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"lqP" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/security/medical) -"lqT" = ( -/obj/machinery/door/window{ - name = "Gateway Chamber"; - req_access = list("gateway") - }, -/turf/open/floor/iron/stairs/medium, -/area/station/command/gateway) -"lra" = ( -/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) -"lrv" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Secure - AI Antechamber West"; - dir = 6; - network = list("ss13","minisat") - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"lrw" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - Atmospherics O2 Chamber"; - dir = 6; - network = list("ss13","engineering") - }, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"lrB" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/book/manual/wiki/engineering_guide{ - pixel_x = -2 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"lrG" = ( -/obj/effect/turf_decal/sand/plating, -/obj/item/flashlight/flare, -/turf/open/floor/plating, -/area/station/medical/chemistry) -"lrQ" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/medical/treatment_center) -"lrU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"lrV" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/structure/window/reinforced/spawner, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/effect/landmark/start/chemist, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"lrX" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"lrZ" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"lsd" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"lsA" = ( -/obj/effect/turf_decal/trimline/neutral/filled/arrow_cw{ - dir = 1 - }, -/obj/structure/sign/directions/supply{ - dir = 4; - pixel_y = 28 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = 34 - }, -/obj/structure/sign/directions/command{ - dir = 1; - pixel_y = 40 - }, -/obj/machinery/light/directional/north, -/obj/structure/sign/directions/vault{ - dir = 1; - pixel_y = 22 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"lsH" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/courtroom) -"lsK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "right_tram_lower"; - name = "Tunnel Access Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/tram/right) -"lsV" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"lta" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/engine, -/area/station/science/cytology) -"ltd" = ( -/obj/machinery/vending/autodrobe, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/white/side{ - dir = 4 - }, -/area/station/service/theater) -"lto" = ( -/obj/machinery/deepfryer, -/turf/open/floor/iron/white, -/area/station/service/kitchen) -"ltp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"ltq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"ltt" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"ltw" = ( -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/captain/private) -"ltA" = ( -/obj/effect/turf_decal/arrows/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, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"ltE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible, -/obj/machinery/meter, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"ltH" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/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/machinery/duct, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"ltZ" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 5 - }, -/obj/structure/chair/comfy, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit) -"luj" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/trimline/white/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"lum" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/structure/disposalpipe/segment{ - 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/pharmacy) -"lun" = ( -/obj/structure/table, -/obj/structure/cable, -/obj/item/radio/intercom/prison, -/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/security/prison) -"luo" = ( -/obj/structure/disposalpipe/segment{ - 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/white, -/area/station/science/cytology) -"luy" = ( -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation/entertainment) -"luM" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchencounter"; - name = "Kitchen Counter Shutters"; - dir = 4 - }, -/obj/machinery/door/window/left/directional/west{ - name = "Pick Up Window"; - req_access = list("kitchen") - }, -/turf/open/floor/plating, -/area/station/service/kitchen) -"luP" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/library) -"luY" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"lvi" = ( -/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/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"lvm" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/office) -"lvv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"lvw" = ( -/turf/closed/wall, -/area/mine/explored) -"lvE" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/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/structure/cable/layer3, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"lvN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/green/filled/corner, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/garden) -"lvQ" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "prisondorm"; - name = "Prison Dorm 5" - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/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, -/area/station/security/prison/safe) -"lvX" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/lobby) -"lwp" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"lwK" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/chem_dispenser, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"lwL" = ( -/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/line, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/science/explab) -"lwV" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - Atmospherics Plasma Chamber"; - dir = 9; - network = list("ss13","engineering") - }, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"lwY" = ( -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"lxf" = ( -/obj/effect/turf_decal/stripes, -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/structure/industrial_lift/tram{ - icon_state = "titanium" - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/center) -"lxk" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"lxm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-maint-passthrough" - }, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"lxr" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/machinery/light/small/directional/east, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"lxv" = ( -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/solars/port/aft) -"lxB" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/dark/corner{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Civilian - Bar South" - }, -/obj/structure/sign/painting/library{ - pixel_y = -32 - }, -/turf/open/floor/iron, -/area/station/commons/lounge) -"lxI" = ( -/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/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/highsecurity{ - name = "AI Upload Access" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) -"lxM" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"lxQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"lxT" = ( -/obj/effect/turf_decal/trimline/green/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/white, -/area/station/medical/virology) -"lxW" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/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/line{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lower) -"lyd" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"lyh" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/brig) -"lyn" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"lyq" = ( -/obj/structure/displaycase/labcage, -/obj/machinery/light/directional/south, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"lyz" = ( -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"lyD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"lyF" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/spawner/random/trash/graffiti{ - pixel_y = -32; - spawn_loot_chance = 50 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"lyK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Air to Pure" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"lyN" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"lyR" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"lyS" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"lyV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"lyW" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"lzu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/grass, -/area/station/science/genetics) -"lzw" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/random/maintenance/four, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/cargo) -"lzD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=5-TunnelRight"; - location = "4-TunnelMidDoor" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/tram/right) -"lzS" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness) -"lAA" = ( -/obj/structure/chair/stool/bar/directional/west, -/turf/open/floor/iron, -/area/station/security/prison) -"lAO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"lAV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/port/central) -"lAW" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"lBb" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/obj/structure/cable, -/obj/structure/table/glass, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"lBf" = ( -/obj/effect/turf_decal/sand/plating, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/mine/explored) -"lBt" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/captain/private) -"lBu" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/structure/sign/departments/cargo/directional/north, -/obj/effect/turf_decal/trimline/neutral/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, -/area/station/hallway/primary/tram/right) -"lBB" = ( -/obj/machinery/computer/secure_data, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"lBQ" = ( -/turf/closed/wall, -/area/station/medical/surgery/aft) -"lCd" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/tram/left) -"lCk" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/machinery/portable_atmospherics/canister/anesthetic_mix, -/turf/open/floor/iron/dark, -/area/station/medical/treatment_center) -"lCq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/spawner/random/trash/garbage, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/port/fore) -"lCy" = ( -/turf/closed/wall/r_wall, -/area/station/hallway/secondary/exit) -"lCE" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/hallway/primary/tram/right) -"lCH" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/sofa/corp/right, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/lounge) -"lCO" = ( -/obj/machinery/light/directional/north, -/turf/open/openspace, -/area/station/security/brig) -"lCT" = ( -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"lCW" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"lDg" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/white, -/area/station/science/lab) -"lDl" = ( -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"lDs" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/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, -/area/station/commons/vacant_room/commissary) -"lDt" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/station/medical/medbay/lobby) -"lDK" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/machinery/requests_console/directional/west{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge Requests Console" - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"lDP" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/trimline/green/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"lDT" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/hydroponics/glass{ - name = "Hydroponics" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"lEf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"lEl" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/ticket_machine/directional/north, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"lEp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"lEz" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/structure/mirror/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/freezer, -/area/station/commons/lounge) -"lEE" = ( -/obj/machinery/power/solar_control{ - dir = 8; - id = "forestarboard"; - name = "Starboard Solar Control" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard) -"lEH" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/janitor) -"lEL" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"lEN" = ( -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"lET" = ( -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/item/multitool, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"lEU" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - name = "sorting disposal pipe (Genetics)"; - sortType = 23 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"lEV" = ( -/obj/effect/turf_decal/loading_area, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"lFk" = ( -/turf/open/misc/asteroid, -/area/station/security/prison/workout) -"lFt" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/peppermill{ - desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; - pixel_x = -8; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - layer = 3.1; - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_x = 9; - pixel_y = 3 - }, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"lFz" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"lFC" = ( -/obj/structure/industrial_lift/tram{ - icon_state = "plating" - }, -/obj/structure/tramwall/titanium, -/obj/structure/shuttle/engine/propulsion/in_wall/tram{ - dir = 8; - pixel_x = -32 - }, -/turf/open/openspace, -/area/station/hallway/primary/tram/center) -"lFX" = ( -/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/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/obj/machinery/light/small/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) -"lFZ" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/item/radio/intercom/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"lGg" = ( -/obj/structure/cable/multilayer/connected, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"lGl" = ( -/obj/structure/cable, -/obj/structure/sink{ - pixel_y = 15 - }, -/turf/open/floor/iron/freezer, -/area/station/security/prison) -"lGz" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"lGF" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/rack/gunrack, -/obj/effect/spawner/armory_spawn/cmg, -/turf/open/floor/iron, -/area/station/ai_monitored/security/armory) -"lGO" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/plastic, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"lGY" = ( -/obj/machinery/camera/motion{ - c_tag = "Secure - AI Upper External South"; - dir = 9; - network = list("aicore") - }, -/obj/structure/lattice, -/turf/open/space/openspace, -/area/space/nearstation) -"lHz" = ( -/obj/structure/chair/pew, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/chapel{ - dir = 4 - }, -/area/station/service/chapel) -"lHH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"lHN" = ( -/obj/item/wheelchair/gold, -/turf/open/misc/asteroid/airless, -/area/mine/explored) -"lHY" = ( -/obj/effect/turf_decal/bot, -/obj/structure/transit_tube/station/reverse{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"lIs" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/turf/open/floor/iron/white, -/area/station/science/lab) -"lIC" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"lIG" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - 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/camera/directional/south{ - c_tag = "Science - Ordnance Mix Lab"; - network = list("ss13","rd") - }, -/obj/item/radio/intercom/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"lIK" = ( -/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, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"lIN" = ( -/obj/structure/sign/warning/pods/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/cable_coil/cut, -/obj/item/wirecutters, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/central) -"lIQ" = ( -/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/wood, -/area/station/service/theater) -"lJn" = ( -/obj/structure/chair/stool/directional/west, -/obj/effect/landmark/start/scientist, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/science/breakroom) -"lJo" = ( -/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/cable, -/obj/effect/spawner/random/trash/garbage, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"lJv" = ( -/obj/structure/table, -/obj/machinery/light/small/directional/east, -/obj/item/radio/intercom/prison/directional/east, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Security - Prison Cell 6"; - dir = 6; - network = list("ss13","Security","prison","pcell") - }, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"lJx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm/directional/west{ - pixel_y = 5 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"lJC" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Treatment Center" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/duct, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"lJH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"lJS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron/dark, -/area/station/maintenance/radshelter/service) -"lJU" = ( -/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/siding/thinplating/corner{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"lKf" = ( -/obj/machinery/door/airlock/engineering{ - name = "Port Quarter Solars Power Hatch" - }, -/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/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/solars/port/aft) -"lKo" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/effect/turf_decal/siding/white/corner, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"lKI" = ( -/obj/structure/chair/stool/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"lKL" = ( -/obj/machinery/door/airlock/command{ - name = "MiniSat Access" - }, -/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/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/command/minisat, -/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/turf/open/floor/iron, -/area/station/engineering/transit_tube) -"lLd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"lLg" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"lLl" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/auxlab) -"lLu" = ( -/obj/machinery/camera{ - c_tag = "Secure - EVA Secure Storage"; - dir = 10 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"lLw" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/door/airlock/hydroponics/glass{ - name = "Hydroponics" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/open/floor/iron, -/area/station/service/hydroponics) -"lLx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"lLC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/ai/directional/north, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) -"lLK" = ( -/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, -/area/station/cargo/lobby) -"lLM" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/security/brig) -"lLS" = ( -/obj/structure/rack, -/obj/item/weldingtool, -/obj/item/crowbar, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"lMg" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Security - Prison Main South"; - network = list("ss13","Security","prison") - }, -/turf/open/floor/iron, -/area/station/security/prison) -"lMw" = ( -/obj/machinery/door/airlock{ - id_tag = "Toilet3"; - name = "Unit 3" - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"lMA" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/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, -/area/station/hallway/primary/central) -"lMC" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Gravity Generator Area"; - req_one_access = list("command","tech_storage") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"lMD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/service/chapel/monastery) -"lML" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Maintenance - East Tram Tunnel 1"; - dir = 9 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"lMU" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"lNa" = ( -/obj/machinery/grill, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/service/kitchen) -"lNi" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/science/lower) -"lNj" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/newscaster/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, -/area/station/hallway/primary/tram/center) -"lNN" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"lNP" = ( -/obj/structure/fluff/tram_rail, -/turf/open/openspace, -/area/station/hallway/primary/tram/left) -"lNQ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - 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/tram/center) -"lOi" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Teleporter" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/command/minisat, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"lOk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"lOt" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison) -"lOD" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/science/explab) -"lOE" = ( -/obj/structure/weightmachine/weightlifter, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"lOJ" = ( -/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) -"lOM" = ( -/obj/structure/table, -/obj/item/storage/box/tail_pin, -/obj/item/clothing/head/festive, -/turf/open/floor/eighties/red, -/area/station/commons/fitness/recreation/entertainment) -"lPe" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/explab) -"lPf" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"lPh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/spawner/random/trash/garbage, -/obj/item/stack/rods, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/greater) -"lPj" = ( -/obj/effect/turf_decal/trimline/red/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, -/turf/open/floor/iron, -/area/station/security/brig) -"lPl" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/cargo/storage) -"lPo" = ( -/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, -/turf/open/floor/iron, -/area/station/security/brig) -"lPz" = ( -/obj/effect/turf_decal/sand/plating, -/obj/item/stack/ore/glass, -/turf/open/floor/plating/airless, -/area/mine/explored) -"lPO" = ( -/obj/machinery/door/poddoor/incinerator_atmos_main, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"lPP" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/structure/railing, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_cw{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"lPY" = ( -/obj/effect/turf_decal/loading_area, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "HoP Queue Shutters" - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"lQd" = ( -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"lQf" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"lQn" = ( -/turf/closed/wall/r_wall, -/area/station/hallway/secondary/entry) -"lQo" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/obj/item/storage/belt/utility, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"lQp" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"lQq" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"lQr" = ( -/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/effect/turf_decal/siding/thinplating/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/dorms) -"lQx" = ( -/obj/machinery/hydroponics/soil, -/obj/machinery/status_display/ai/directional/south, -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/item/cultivator, -/turf/open/floor/iron/dark, -/area/station/security/prison/garden) -"lQC" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"lQD" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"lQM" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/port/central) -"lRr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/four, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/lesser) -"lRu" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/landmark/navigate_destination/dockescpod1, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"lRE" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"lRR" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/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, -/area/station/commons/dorms) -"lSe" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable/layer3, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"lSo" = ( -/turf/open/floor/glass/reinforced, -/area/station/security/brig) -"lSp" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"lSW" = ( -/obj/structure/table, -/obj/machinery/status_display/ai/directional/south, -/obj/machinery/camera{ - c_tag = "Secure - AI Minisat Entry"; - dir = 10; - network = list("ss13","minisat") - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"lTc" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/effect/landmark/start/paramedic, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"lTj" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/structure/table, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"lTx" = ( -/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/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) -"lTF" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/structure/desk_bell{ - pixel_x = 7 - }, -/turf/open/floor/iron, -/area/station/service/bar) -"lTR" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/command/gateway) -"lTV" = ( -/obj/machinery/computer/warrant{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"lTX" = ( -/obj/item/storage/toolbox/electrical, -/turf/open/misc/asteroid/airless, -/area/mine/explored) -"lUb" = ( -/obj/structure/window/reinforced/spawner/north, -/obj/structure/closet{ - name = "Beekeeper Uniform" - }, -/obj/item/clothing/suit/beekeeper_suit, -/obj/item/clothing/head/beekeeper_head, -/obj/item/melee/flyswatter, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"lUf" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"lUo" = ( -/obj/structure/rack, -/obj/item/storage/briefcase{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/secure/briefcase, -/obj/effect/turf_decal/trimline/green/filled/corner, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/security/courtroom) -"lUW" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"lVg" = ( -/obj/machinery/door/airlock{ - name = "Law Office" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/service/lawyer, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"lVo" = ( -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"lVE" = ( -/obj/machinery/computer/scan_consolenew{ - dir = 1 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"lVU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/transit_tube) -"lWa" = ( -/obj/structure/weightmachine/weightlifter, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"lWh" = ( -/obj/machinery/light_switch/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"lWi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"lWj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/station/ai_monitored/command/nuke_storage) -"lWw" = ( -/obj/machinery/portable_atmospherics/pump{ - name = "Lil Pump" - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"lWR" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/red/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/security/office) -"lXb" = ( -/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{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) -"lXc" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"lXk" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Monastary" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, -/turf/open/floor/iron/dark, -/area/station/service/chapel/monastery) -"lXt" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/effect/landmark/navigate_destination/bar, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"lXv" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"lXy" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/co2, -/turf/open/floor/iron/dark, -/area/station/medical/treatment_center) -"lXH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"lXR" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Control Room" - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"lYb" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) -"lYl" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"lYo" = ( -/obj/structure/fluff/tram_rail/floor, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/tram/left) -"lYr" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/item/stamp{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stamp/denied{ - pixel_x = 4; - pixel_y = -2 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"lYK" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/multitool, -/obj/machinery/camera/emp_proof{ - c_tag = "Secure - Telecomms Control Room"; - dir = 9 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"lYN" = ( -/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/cable, -/turf/open/floor/iron, -/area/station/ai_monitored/security/armory) -"lYV" = ( -/obj/structure/grille, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"lYY" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"lZw" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"lZA" = ( -/obj/machinery/firealarm/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, -/area/station/service/chapel/office) -"lZV" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"lZW" = ( -/turf/closed/wall, -/area/station/maintenance/department/cargo) -"lZY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"mac" = ( -/obj/machinery/newscaster/directional/north, -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/security/courtroom) -"mai" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/scientist, -/turf/open/floor/iron, -/area/station/science/lab) -"may" = ( -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"maH" = ( -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"maI" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/cargo) -"maN" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"maS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/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/security/prison) -"maU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/service/theater) -"mbj" = ( -/obj/structure/showcase/cyborg/old{ - pixel_y = 20 - }, -/obj/machinery/camera/motion{ - c_tag = "Secure - AI Core North"; - dir = 9; - network = list("aicore") - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"mbm" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/sign/poster/official/high_class_martini{ - pixel_y = -32 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/service/bar) -"mbv" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/sand/plating, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating/airless, -/area/mine/explored) -"mbA" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/station/hallway/secondary/entry) -"mbG" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/table, -/obj/machinery/recharger, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"mbJ" = ( -/turf/closed/wall, -/area/station/maintenance/tram/right) -"mcg" = ( -/obj/machinery/vending/boozeomat, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"mcM" = ( -/obj/effect/landmark/start/security_officer, -/obj/structure/chair{ - 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/security/office) -"mcW" = ( -/obj/effect/turf_decal/siding/thinplating/corner, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 8 - }, -/obj/structure/ladder, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"mdj" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - name = "sorting disposal pipe (Research Director's Office)"; - sortType = 13 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"mdn" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/lesser) -"mdv" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/mine/explored) -"mdy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/service/chapel) -"mdD" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Security - Armory"; - network = list("ss13","Security") - }, -/obj/structure/rack/gunrack, -/obj/effect/spawner/armory_spawn/shotguns, -/turf/open/floor/iron, -/area/station/ai_monitored/security/armory) -"mdP" = ( -/obj/machinery/suit_storage_unit/medical, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"mdY" = ( -/obj/effect/turf_decal/trimline/neutral/line, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"mei" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"mer" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"mew" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/machinery/light/directional/east, -/obj/item/radio/intercom/prison/directional/east, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison) -"meF" = ( -/obj/effect/turf_decal/trimline/neutral/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{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"meK" = ( -/obj/machinery/door/airlock/security{ - name = "Custom Agent's Office" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/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, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/supply/customs, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"meO" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"meP" = ( -/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/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/genetics) -"mfj" = ( -/obj/structure/ladder, -/turf/open/floor/iron/grimy, -/area/station/ai_monitored/command/nuke_storage) -"mfC" = ( -/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/line{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lower) -"mfF" = ( -/obj/structure/sign/painting/library_private{ - pixel_y = -32 - }, -/turf/open/floor/engine/cult, -/area/station/service/library) -"mfT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/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/catwalk_floor, -/area/station/maintenance/central/greater) -"mfU" = ( -/obj/structure/frame/machine, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/starboard/central) -"mfX" = ( -/obj/machinery/telecomms/receiver/preset_left, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"mgc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"mgv" = ( -/obj/item/shard, -/turf/open/misc/asteroid, -/area/mine/explored) -"mgB" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - 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/cargo/miningdock/cafeteria) -"mgN" = ( -/obj/machinery/vending/wardrobe/science_wardrobe, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 5 - }, -/obj/machinery/requests_console/directional/east{ - announcementConsole = 1; - department = "Research Lab"; - departmentType = 5; - name = "Research Requests Console"; - receive_ore_updates = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"mgS" = ( -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"mgX" = ( -/obj/structure/lattice/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/tram/mid) -"mhi" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/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/ai_monitored/security/armory) -"mhj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/port/central) -"mhr" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line, -/turf/open/floor/iron, -/area/station/engineering/transit_tube) -"mhE" = ( -/obj/effect/turf_decal/sand/plating, -/obj/machinery/door/airlock/external{ - autoclose = 0; - frequency = 1449; - id_tag = "middleright_lower_eva_external"; - name = "External Access" - }, -/obj/machinery/door_buttons/access_button{ - idDoor = "middleright_lower_eva_external"; - idSelf = "middleright_lower_eva_airlock_control"; - name = "External Access Button"; - pixel_y = -24 - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plating, -/area/station/hallway/primary/tram/center) -"mhF" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor/left/directional/east{ - dir = 1; - name = "Access Desk"; - req_access = list("hop") - }, -/obj/machinery/door/poddoor/preopen{ - id = "hop"; - name = "Privacy Shutters" - }, -/obj/machinery/door/window/right/directional/west{ - dir = 2; - name = "Access Queue" - }, -/obj/structure/desk_bell{ - pixel_x = -7 - }, -/turf/open/floor/plating, -/area/station/command/heads_quarters/hop) -"mhN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"mhX" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/bluespace_vendor/directional/east, -/obj/structure/cable, -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"mhZ" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/tram/left) -"mih" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"mik" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/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, -/area/station/hallway/primary/tram/center) -"min" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/structure/table, -/obj/item/radio/intercom/directional/east, -/obj/item/paper{ - info = "buy more donk pockets"; - name = "To-Do List" - }, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"miE" = ( -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"miJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"miQ" = ( -/obj/machinery/door/airlock/command{ - name = "Research Director's Office" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/rd, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/command/heads_quarters/rd) -"miU" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "External Gas to Loop" - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"mjh" = ( -/obj/machinery/status_display/ai/directional/west, -/obj/structure/chair/office{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"mjm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"mjt" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard) -"mjI" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"mjM" = ( -/turf/closed/wall, -/area/station/security/medical) -"mjO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/processing) -"mjP" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"mjW" = ( -/obj/machinery/newscaster/directional/north, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/structure/window{ - dir = 8 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Salon" - }, -/turf/open/floor/iron, -/area/service/salon) -"mkj" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"mkA" = ( -/obj/effect/turf_decal/sand/plating, -/obj/item/crowbar, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"mkD" = ( -/obj/effect/turf_decal/trimline/green/filled/corner, -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"mkE" = ( -/obj/effect/turf_decal/stripes{ - dir = 6 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"mkG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"mkJ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/service/janitor) -"mkK" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/item/radio/intercom/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"mkZ" = ( -/obj/structure/bed/double, -/obj/item/bedsheet/dorms_double, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"mla" = ( -/obj/structure/rack, -/obj/item/reagent_containers/glass/bottle/phosphorus{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/potassium{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/sodium{ - pixel_x = 1 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Medical - Chemical Storage"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/dark/textured_corner{ - dir = 4 - }, -/area/station/medical/medbay/central) -"mlg" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/camera{ - c_tag = "Science - Xenobiology Airlock"; - dir = 6; - network = list("ss13","rd") - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"mli" = ( -/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/chapel) -"mlu" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 1" - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"mlv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/corner, -/turf/open/floor/iron, -/area/station/security/prison) -"mlC" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit) -"mlH" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/service/chapel/monastery) -"mlJ" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/light/warm/directional/north, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/service/salon) -"mmj" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/box/red, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"mmk" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"mmp" = ( -/obj/machinery/door/airlock{ - id_tag = "private_o"; - name = "Private Quarters O" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/dorms) -"mmv" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"mmy" = ( -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"mmA" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"mmC" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/manifold/layer2, -/obj/machinery/atmospherics/components/unary/vent_scrubber, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"mmG" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"mmH" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/meter, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"mmL" = ( -/obj/machinery/door/morgue{ - name = "Confession Booth (Chaplain)"; - req_access = list("chapel_office") - }, -/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/chapel/office) -"mmN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"mmR" = ( -/obj/machinery/door/poddoor/shutters{ - id = "mechbay"; - name = "Mech Bay"; - dir = 4 - }, -/turf/open/floor/plating, -/area/station/science/robotics/mechbay) -"mnv" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/components/unary/passive_vent{ - dir = 1; - name = "server vent" - }, -/turf/open/floor/circuit/telecomms/server, -/area/station/science/server) -"mnB" = ( -/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{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lower) -"mnH" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"mnV" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_cw, -/obj/machinery/camera/directional/east{ - c_tag = "Hallway - Central Tram Platform South" - }, -/obj/effect/turf_decal/caution, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"mnX" = ( -/obj/machinery/vending/medical, -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"mod" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) -"mos" = ( -/turf/closed/wall, -/area/station/tcommsat/server) -"moy" = ( -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/white/filled/corner, -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"moz" = ( -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"moA" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-maint-passthrough" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"moD" = ( -/turf/open/floor/grass, -/area/station/service/hydroponics) -"moK" = ( -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/sand/plating, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/any/command/minisat, -/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/turf/open/floor/plating, -/area/station/engineering/transit_tube) -"moP" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/wood, -/area/station/service/library) -"moW" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"mpa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/commons/vacant_room/office) -"mpf" = ( -/obj/effect/turf_decal/trimline/white/filled/line, -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"mpm" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"mpq" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"mpw" = ( -/obj/machinery/hydroponics/soil, -/turf/open/floor/grass, -/area/station/service/hydroponics/garden) -"mpz" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/caution{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/crossing_signal/southwest, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"mpA" = ( -/obj/structure/chair, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/corner, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"mpQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"mqs" = ( -/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/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/office) -"mqt" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"mqw" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"mqz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"mqP" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/obj/machinery/newscaster/directional/west, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"mqQ" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/corner, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"mqR" = ( -/obj/modular_map_root/tramstation{ - key = "maintenance_bar" - }, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"mqU" = ( -/obj/structure/cable, -/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/freezer, -/area/station/commons/toilet) -"mrm" = ( -/obj/structure/table/wood, -/obj/item/radio/intercom, -/obj/effect/turf_decal/trimline/red/filled/corner, -/turf/open/floor/iron, -/area/station/security/courtroom) -"mro" = ( -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/service/kitchen) -"mry" = ( -/obj/structure/lattice/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/tram/right) -"mrC" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/corner, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/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/hallway/primary/tram/center) -"mrH" = ( -/obj/structure/sign/warning/vacuum/external/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"mrY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/space_heater, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/security) -"msh" = ( -/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/miningdock) -"msi" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/engineering/main) -"msx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/dorms) -"msF" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/carpet, -/area/station/medical/psychology) -"mtb" = ( -/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/chaplain, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"mtw" = ( -/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/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"mtx" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/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/security/prison) -"mtz" = ( -/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/catwalk_floor, -/area/station/maintenance/central/lesser) -"mtK" = ( -/obj/structure/table/glass, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"mtZ" = ( -/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, -/area/station/security/execution/transfer) -"mub" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/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, -/area/station/commons/dorms) -"mum" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/port/central) -"muo" = ( -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"mur" = ( -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/cargo) -"muK" = ( -/obj/machinery/telecomms/server/presets/science, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"muU" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"muY" = ( -/obj/effect/turf_decal/stripes{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"mve" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"mvi" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"mvn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"mvr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/right) -"mvs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"mvy" = ( -/obj/machinery/rnd/production/circuit_imprinter, -/obj/effect/turf_decal/trimline/yellow/filled/end{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"mvL" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"mvN" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/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, -/area/station/security/prison/safe) -"mvS" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Two"; - space_dir = 8 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"mwd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille, -/turf/open/floor/iron/smooth, -/area/station/maintenance/port/central) -"mwe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"mwf" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 5 - }, -/obj/machinery/camera{ - c_tag = "Science - Xenobiology Lower North"; - dir = 9; - network = list("ss13","rd","xeno") - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"mwi" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/service/janitor) -"mwk" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - dir = 4; - pixel_y = 2 - }, -/obj/structure/window/reinforced{ - pixel_y = 2 - }, -/obj/effect/spawner/random/decoration/ornament, -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) -"mwt" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/oxygen_input{ - dir = 1 - }, -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"mwI" = ( -/obj/machinery/door/firedoor, -/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 = "Public Lavaland Mining Dock" - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"mwK" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/lesser) -"mwN" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"mwS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"mxe" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/machinery/keycard_auth/directional/east, -/turf/open/floor/iron, -/area/station/cargo/qm) -"mxj" = ( -/obj/structure/industrial_lift/tram{ - icon_state = "plating" - }, -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/effect/turf_decal/stripes, -/obj/effect/turf_decal/caution/stand_clear/red{ - dir = 4 - }, -/obj/structure/grille/tram, -/obj/structure/window/reinforced/shuttle/tram, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/center) -"mxC" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 9 - }, -/obj/structure/cable, -/obj/structure/table, -/obj/item/reagent_containers/dropper{ - pixel_y = -5 - }, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_y = 6 - }, -/turf/open/floor/iron/white, -/area/station/science/explab) -"mxI" = ( -/obj/effect/turf_decal/trimline/red/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, -/area/station/security/brig) -"mxJ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/obj/structure/table, -/obj/item/radio/off{ - pixel_y = 6 - }, -/obj/item/radio/off{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/radio/off{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/radio/off, -/turf/open/floor/iron, -/area/station/command/gateway) -"mxU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/the_big_gas_giant_truth{ - pixel_x = 32 - }, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/central) -"mxV" = ( -/obj/structure/table/glass, -/obj/machinery/airalarm/directional/north, -/obj/effect/spawner/random/food_or_drink/donkpockets, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/science/breakroom) -"myv" = ( -/turf/open/floor/iron/white, -/area/station/science/cytology) -"myz" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Civilian - Entertainment Center North" - }, -/turf/open/floor/eighties/red, -/area/station/commons/fitness/recreation/entertainment) -"myB" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/security/office) -"myD" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/tram/right) -"myI" = ( -/obj/machinery/door/window/left/directional/east{ - dir = 1; - icon_state = "right"; - name = "Incoming Mail"; - req_access = list("shipping") - }, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"myM" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/holosign/barrier/atmos/sturdy, -/obj/effect/landmark/event_spawn, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/center) -"mzg" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/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, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"mzh" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"mzm" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/chem_dispenser, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"mzs" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness) -"mzQ" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/research_director, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/command/heads_quarters/rd) -"mAb" = ( -/obj/effect/spawner/random/entertainment/arcade{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"mAg" = ( -/obj/machinery/power/smes/engineering, -/obj/machinery/light/directional/west, -/obj/structure/sign/warning/electric_shock/directional/west, -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - SMES"; - dir = 10; - network = list("ss13","engineering") - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"mAj" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/directional/west{ - c_tag = "Hallway - Starboard Tram Platform North-West" - }, -/obj/effect/turf_decal/caution{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"mAn" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/item/assembly/mousetrap/armed, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"mAt" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"mAx" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"mAB" = ( -/obj/item/stack/ore/glass, -/turf/open/misc/asteroid, -/area/station/security/prison/workout) -"mAJ" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"mAK" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/medical/storage) -"mAN" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Security - Prison Block South"; - dir = 6; - network = list("ss13","Security","prison") - }, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"mAP" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"mAT" = ( -/turf/closed/wall, -/area/station/command/heads_quarters/hos) -"mAW" = ( -/obj/structure/table/wood, -/obj/item/folder/yellow, -/obj/item/stamp/law, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"mBa" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"mBd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"mBg" = ( -/obj/machinery/door/airlock{ - id_tag = "miningdorm2"; - name = "Room 2" - }, -/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/supply/mining, -/turf/open/floor/carpet, -/area/station/cargo/miningdock) -"mBk" = ( -/obj/item/stack/ore/glass, -/obj/item/stack/ore/iron, -/turf/open/misc/asteroid, -/area/station/maintenance/port/fore) -"mBq" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/department/medical) -"mBu" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/brig) -"mBC" = ( -/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/landmark/start/hangover, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"mBK" = ( -/obj/machinery/door/airlock{ - name = "Unisex Bathroom" - }, -/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/freezer, -/area/station/commons/lounge) -"mBV" = ( -/obj/structure/rack, -/obj/item/reagent_containers/glass/bottle/mercury{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/nitrogen{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/oxygen{ - pixel_x = 1 - }, -/obj/machinery/firealarm/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark/textured_edge{ - dir = 8 - }, -/area/station/medical/medbay/central) -"mBW" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"mCh" = ( -/obj/machinery/newscaster/directional/west, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"mCw" = ( -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"mCB" = ( -/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/showroomfloor, -/area/station/service/kitchen/coldroom) -"mCQ" = ( -/obj/structure/urinal/directional/north, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"mDg" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/structure/sign/gym/mirrored/right{ - pixel_y = -32 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"mDl" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"mDt" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - 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, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"mDx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/status_display/evac/directional/west, -/obj/structure/cable/layer3, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"mDC" = ( -/obj/machinery/air_sensor/carbon_tank, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"mDE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/obj/effect/spawner/random/maintenance/three, -/obj/structure/closet, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"mDJ" = ( -/obj/machinery/duct, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/service/kitchen) -"mDT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"mDY" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "HoP Queue Shutters" - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"mEs" = ( -/turf/open/floor/iron/chapel{ - dir = 10 - }, -/area/station/service/chapel) -"mEw" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/catwalk_floor, -/area/station/commons/dorms) -"mEF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/engineering{ - name = "Power Access Hatch" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/plating, -/area/station/science/research) -"mEG" = ( -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/effect/turf_decal/stripes, -/obj/effect/turf_decal/caution/stand_clear/red{ - dir = 8 - }, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/left) -"mEJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair/stool/directional/south, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"mEZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/mine/explored) -"mFg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/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, -/area/station/maintenance/tram/mid) -"mFh" = ( -/obj/structure/table, -/turf/open/floor/glass, -/area/station/service/kitchen/diner) -"mFm" = ( -/obj/machinery/mecha_part_fabricator, -/obj/effect/turf_decal/bot, -/obj/machinery/camera{ - c_tag = "Science - Robotics North"; - dir = 9; - network = list("ss13","rd") - }, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"mFu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"mFv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"mFz" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/firealarm/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/commons/lounge) -"mFF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/medical) -"mGa" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiobottomright"; - name = "Xenobio Bottom Right Pen Blast Door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"mGb" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"mGc" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/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/secondary/exit) -"mGf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/item/weldingtool/mini, -/obj/item/clothing/glasses/welding, -/turf/open/floor/iron, -/area/station/maintenance/port/central) -"mGo" = ( -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/effect/turf_decal/trimline/neutral/corner, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"mGt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/garbage, -/turf/open/floor/iron/smooth, -/area/station/maintenance/port/aft) -"mGG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison) -"mGN" = ( -/obj/effect/turf_decal/siding/thinplating/end, -/obj/machinery/button/door{ - id = "Secure Gate"; - name = "Cell Shutters"; - pixel_x = -27; - pixel_y = -2; - req_access = list("armory") - }, -/obj/machinery/button/door{ - id = "briglockdown"; - name = "Prison Wing Lockdown"; - pixel_x = -27; - pixel_y = 8; - req_access = list("armory") - }, -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/warden, -/turf/open/floor/glass/reinforced, -/area/station/security/warden) -"mGX" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/wood/tile, -/area/station/service/chapel) -"mHg" = ( -/obj/effect/turf_decal/sand, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"mHi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/right) -"mHw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"mHA" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"mHM" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/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/fitness/recreation) -"mHZ" = ( -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) -"mIi" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/iron, -/area/station/security/prison) -"mIm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "right_tram_lower"; - name = "Tunnel Access Blast Door" - }, -/obj/machinery/door/airlock/hatch, -/turf/open/floor/plating, -/area/station/maintenance/tram/mid) -"mIz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"mIO" = ( -/obj/machinery/light/warm/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"mIT" = ( -/obj/effect/turf_decal/stripes{ - 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/science/ordnance/testlab) -"mIU" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"mIZ" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"mJc" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/mesh, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"mJn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/machinery/light/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Science - Experimentor Lab"; - network = list("ss13","rd") - }, -/obj/structure/cable, -/obj/structure/rack, -/obj/item/integrated_circuit/loaded/hello_world, -/obj/item/integrated_circuit/loaded/hello_world, -/obj/item/storage/toolbox/electrical{ - pixel_y = 5 - }, -/turf/open/floor/iron/white, -/area/station/science/explab) -"mJq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/junction/flip, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"mJr" = ( -/obj/structure/rack, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 - }, -/obj/structure/rack, -/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/machinery/button/door/directional/south{ - id = "aux_base_shutters"; - name = "Public Shutters Control"; - req_access = list("aux_base") - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"mJv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/r_wall, -/area/station/maintenance/department/cargo) -"mJw" = ( -/obj/effect/landmark/secequipment, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"mJG" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"mJK" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1449; - id_tag = "xeno_airlock_exterior"; - name = "Xenobiology Lab External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiomain"; - name = "Xenobiology Lockdown Blastdoor" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"mJM" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"mKc" = ( -/turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"mKr" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/ai_monitored/command/nuke_storage) -"mKx" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/security) -"mKy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/iron/smooth, -/area/station/maintenance/port/aft) -"mKL" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"mKM" = ( -/obj/effect/turf_decal/trimline/purple/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"mKQ" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/airalarm/directional/south, -/obj/structure/closet/secure_closet/security/science, -/obj/item/clothing/mask/whistle, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"mKW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"mLh" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"mLp" = ( -/obj/effect/turf_decal/siding/thinplating, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"mLq" = ( -/turf/open/floor/engine/hull/reinforced, -/area/space/nearstation) -"mLv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"mLL" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"mLM" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/obj/item/stack/rods/fifty, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/engineering/main) -"mLP" = ( -/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, -/area/station/engineering/main) -"mLT" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"mMa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/right) -"mMc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"mMi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/item/assembly/mousetrap/armed, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"mMj" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating/dark/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"mMl" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/medical) -"mMr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/hatch{ - name = "Test Chamber Maintenance" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/catwalk_floor, -/area/station/science/xenobiology) -"mMQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"mMY" = ( -/obj/effect/turf_decal/trimline/neutral/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, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"mNj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Mining Maintenance Access" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) -"mNp" = ( -/obj/structure/chair{ - 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/security/interrogation) -"mNq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/mine/explored) -"mNu" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"mNN" = ( -/obj/structure/chair/comfy/brown{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"mNP" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/structure/cable, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/commons/fitness) -"mNV" = ( -/obj/machinery/photocopier, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) -"mNZ" = ( -/obj/structure/disposalpipe/segment, -/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, -/area/station/engineering/atmos) -"mOi" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/item/screwdriver, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"mOn" = ( -/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/security/office) -"mOP" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "prisondorm"; - name = "Prison Dorm 1" - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/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, -/area/station/security/prison/safe) -"mPd" = ( -/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/cable, -/turf/open/floor/iron, -/area/station/commons/dorms) -"mPf" = ( -/obj/machinery/photocopier, -/obj/machinery/camera{ - c_tag = "Command - Head of Personnel's Office"; - dir = 9 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"mPo" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - 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{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"mPq" = ( -/obj/effect/turf_decal/siding/thinplating, -/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, -/area/station/commons/fitness/recreation) -"mPr" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen/blue{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/pen/red, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/library) -"mPw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/cargo) -"mPE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/science) -"mPF" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/janitor) -"mPL" = ( -/obj/structure/lattice, -/obj/machinery/camera/motion{ - c_tag = "Secure - AI Lower External North"; - dir = 9; - network = list("ss13","minisat") - }, -/turf/open/space/basic, -/area/station/ai_monitored/turret_protected/aisat_interior) -"mQp" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/glass, -/area/station/commons/fitness/recreation) -"mQq" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "prisondorm"; - name = "Prison Dorm 4" - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/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, -/area/station/security/prison/safe) -"mQE" = ( -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_ordmix{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/science/ordnance/burnchamber) -"mQQ" = ( -/obj/machinery/door/airlock/engineering{ - name = "Power Access Hatch" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"mQS" = ( -/obj/structure/chair/comfy/beige, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron, -/area/station/commons/dorms) -"mRf" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"mRs" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"mRw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/food_packaging, -/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/freezer, -/area/station/commons/lounge) -"mRx" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Isolation Wing" - }, -/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/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"mRy" = ( -/obj/machinery/keycard_auth{ - pixel_y = -24 - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/command/heads_quarters/rd) -"mRD" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"mRE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"mRI" = ( -/obj/structure/table, -/obj/structure/reagent_dispensers/wall/peppertank/directional/west, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"mRV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"mRW" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/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, -/area/station/commons/fitness/recreation) -"mSd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"mSl" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/transit_tube) -"mSn" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/hallway/primary/tram/center) -"mSp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) -"mSq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"mSw" = ( -/obj/effect/turf_decal/trimline/neutral/filled/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, -/area/station/commons/fitness/recreation) -"mSJ" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/computer/slot_machine, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/structure/sign/painting/library{ - pixel_x = -32 - }, -/turf/open/floor/iron, -/area/station/commons/lounge) -"mSQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/greater) -"mTa" = ( -/obj/machinery/rnd/production/techfab/department/security, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/structure/reagent_dispensers/wall/peppertank/directional/west, -/turf/open/floor/iron, -/area/station/security/office) -"mTe" = ( -/obj/structure/chair/sofa/left{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/medical/psychology) -"mTm" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera{ - c_tag = "Security - Prison Block North"; - dir = 6; - network = list("ss13","Security","prison") - }, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"mTQ" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/structure/reagent_dispensers/wall/peppertank/directional/south, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"mTY" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/spawner/random/entertainment/arcade, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/lounge) -"mUd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/air_output{ - dir = 1 - }, -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"mUk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/wirecutters, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"mUn" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 7; - pixel_y = 12 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -4; - pixel_y = 12 - }, -/obj/item/reagent_containers/dropper, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"mUM" = ( -/obj/machinery/door/airlock/security{ - name = "Prison Workshop" - }, -/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, -/area/station/security/prison/work) -"mUR" = ( -/obj/effect/landmark/start/janitor, -/turf/open/floor/iron, -/area/station/service/janitor) -"mUX" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/structure/chair/stool/bar/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"mVb" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ - name = "euthanization chamber freezer" - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"mVg" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/engineering/main) -"mVt" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"mWi" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera{ - c_tag = "Arrivals - South Hall"; - dir = 9 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"mWj" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table, -/obj/effect/spawner/random/food_or_drink/donkpockets, -/turf/open/floor/iron, -/area/station/cargo/miningdock/cafeteria) -"mWp" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"mWD" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room" - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/structure/cable/layer3, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) -"mWK" = ( -/obj/structure/chair/stool/directional/south, -/obj/effect/landmark/start/hangover, -/turf/open/floor/carpet, -/area/station/hallway/secondary/entry) -"mWP" = ( -/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) -"mWR" = ( -/obj/structure/fluff/tram_rail/end, -/turf/open/openspace, -/area/station/hallway/primary/tram/right) -"mWS" = ( -/obj/structure/table, -/obj/item/book/manual/chef_recipes, -/obj/item/knife/kitchen, -/turf/open/floor/iron/white, -/area/station/service/kitchen) -"mWW" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"mXa" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"mXb" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Hallway - Lower Mid-Left Service"; - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"mXd" = ( -/obj/structure/table/optable, -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/iron/white, -/area/station/medical/surgery/fore) -"mXI" = ( -/obj/effect/turf_decal/stripes/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, -/area/station/ai_monitored/security/armory) -"mXK" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 - }, -/obj/structure/closet/toolcloset, -/obj/effect/landmark/start/hangover/closet, -/obj/machinery/camera{ - c_tag = "Civilian - Aux Tool Storage"; - dir = 6 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"mXO" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Kitchen" - }, -/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 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, -/turf/open/floor/iron, -/area/station/service/kitchen) -"mXR" = ( -/obj/docking_port/stationary/mining_home{ - dir = 4 - }, -/turf/open/misc/asteroid/airless, -/area/mine/explored) -"mXU" = ( -/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/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/transit_tube) -"mXZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"mYa" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/service/kitchen/coldroom) -"mYc" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/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/book/manual/wiki/plumbing{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/plunger, -/obj/item/plunger, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"mYA" = ( -/obj/machinery/door/airlock/security{ - name = "Courtroom Holding Area" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "interro-court" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"mYK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/crew_quarters/dorms) -"mYR" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"mYW" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/structure/sign/poster/official/enlist{ - pixel_x = 32 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"mZc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"mZl" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/white, -/area/station/science/research) -"mZo" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/security/medical) -"mZt" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"mZy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"mZC" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/filled/warning{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"naa" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/solars/starboard) -"nab" = ( -/obj/machinery/door/airlock/security{ - name = "Science Guard's Office" - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/science/sci_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"nah" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"naj" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/sign/warning/deathsposal/directional/south, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"nan" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/firealarm/directional/south, -/obj/structure/cable/layer3, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"nav" = ( -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"naz" = ( -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole, -/turf/open/floor/wood/large, -/area/station/service/library) -"naD" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Mix to Distro" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"naG" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/stripes/asteroid/corner, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/mine/explored) -"naX" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"nbf" = ( -/obj/machinery/light/small/directional/east, -/turf/open/misc/asteroid, -/area/station/science/genetics) -"nbl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/mid) -"nbm" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"nbo" = ( -/obj/machinery/recycler, -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"nbq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lower) -"nbS" = ( -/obj/structure/industrial_lift/tram{ - icon_state = "plating" - }, -/obj/structure/tramwall/titanium, -/turf/open/openspace, -/area/station/hallway/primary/tram/center) -"nca" = ( -/turf/open/openspace, -/area/station/security/brig) -"ncc" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation/entertainment) -"nce" = ( -/obj/structure/closet/radiation, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"nct" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/flasher/directional/east{ - id = "scicell" - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"ncF" = ( -/turf/closed/wall, -/area/station/maintenance/tram/left) -"ncG" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Escape Wing" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"ncN" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/multitool, -/obj/effect/spawner/random/maintenance, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"ncS" = ( -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/machinery/door/airlock/research{ - name = "Chemical Storage" - }, -/obj/machinery/door/firedoor, -/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/medical/pharmacy, -/turf/open/floor/iron/textured, -/area/station/medical/medbay/central) -"ncT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc/sm_apc/directional/north, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"ndn" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Engine Coolant Bypass" - }, -/obj/structure/cable/layer3, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"ndE" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"ndP" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/catwalk_floor, -/area/station/command/gateway) -"ned" = ( -/obj/structure/table, -/obj/item/radio/intercom/prison/directional/south, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"neh" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/camera/directional/south{ - c_tag = "Hallway - North-East Escape Wing Entry" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"new" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/structure/window/reinforced/spawner, -/obj/structure/table/glass, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 7; - pixel_y = 12 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -4; - pixel_y = 12 - }, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/syringe, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"ney" = ( -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"neC" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/station/security/brig) -"neE" = ( -/obj/structure/table/optable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"neP" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/landmark/start/scientist, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"neQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"nfc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/mid) -"nfl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/solars/port/aft) -"nfo" = ( -/obj/machinery/power/turbine/inlet_compressor{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"nfs" = ( -/obj/structure/closet/secure_closet/brig, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"nfB" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 - }, -/obj/item/book/manual/wiki/tcomms, -/obj/item/radio/off, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"nfK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"ngg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"ngl" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ngp" = ( -/turf/closed/wall, -/area/station/tcommsat/computer) -"ngv" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - 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, -/area/station/commons/lounge) -"ngQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/tram/mid) -"ngR" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/machinery/camera{ - c_tag = "Science - Xenobiology East"; - dir = 6; - network = list("ss13","rd","xeno") - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"ngS" = ( -/obj/structure/chair/sofa{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/carpet, -/area/station/medical/psychology) -"ngU" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - 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/status_display/evac/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"nhm" = ( -/turf/closed/wall, -/area/station/security/prison/shower) -"nhr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - Atmospherics Incinerator"; - dir = 9; - network = list("ss13","engineering") - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/obj/item/radio/intercom/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"nhL" = ( -/obj/structure/filingcabinet, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot_white/right, -/obj/item/folder/documents, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"nhQ" = ( -/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/engine, -/area/station/engineering/supermatter/room) -"nhV" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"nic" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table/wood/poker, -/obj/effect/spawner/random/entertainment/deck, -/turf/open/floor/iron, -/area/station/commons/lounge) -"nis" = ( -/obj/effect/turf_decal/arrows/white{ - dir = 8 - }, -/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/iron, -/area/station/engineering/atmospherics_engine) -"niv" = ( -/obj/machinery/door_timer{ - id = "medcell"; - name = "Medical Cell"; - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Medical - Security Checkpoint"; - network = list("ss13","medbay","Security") - }, -/obj/structure/closet/secure_closet/security/med, -/obj/item/clothing/mask/whistle, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"niG" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/machinery/airalarm/directional/south, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"niI" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/purple/filled/line, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"niO" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"niS" = ( -/obj/structure/table/glass, -/obj/item/storage/backpack/duffelbag/sec/surgery{ - pixel_y = 5 - }, -/obj/item/clothing/mask/balaclava, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 5 - }, -/obj/structure/sign/poster/official/do_not_question{ - pixel_y = 32 - }, -/obj/machinery/button/flasher{ - id = "reeducation"; - pixel_x = -24; - pixel_y = -8; - req_access = list("brig") - }, -/turf/open/floor/iron/white, -/area/station/security/execution/education) -"nji" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/sorting/mail{ - name = "sorting disposal pipe (Law Office)"; - sortType = 29 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"njk" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) -"njq" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 1 - }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/pen, -/obj/item/folder/blue, -/obj/item/folder/yellow{ - pixel_x = 4; - pixel_y = 3 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"njt" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"njB" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-left" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"njJ" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"njK" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/cargo/miningdock/cafeteria) -"njT" = ( -/obj/structure/industrial_lift/tram{ - icon_state = "plating" - }, -/obj/structure/fluff/tram_rail, -/obj/structure/grille/tram, -/obj/structure/window/reinforced/shuttle/tram, -/turf/open/openspace, -/area/station/hallway/primary/tram/center) -"njV" = ( -/obj/structure/ladder, -/obj/machinery/door/window/left/directional/west{ - name = "Freezer Access"; - req_access = list("kitchen") - }, -/obj/machinery/door/window/right/directional/east{ - name = "Freezer Access"; - req_access = list("kitchen") - }, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/service) -"njX" = ( -/obj/structure/chair/comfy/beige{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"nkh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison/work) -"nkt" = ( -/obj/structure/closet/secure_closet/quartermaster, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/station/cargo/qm) -"nkG" = ( -/obj/effect/turf_decal/trimline/brown/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, -/area/station/cargo/miningdock) -"nkJ" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"nlm" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/machinery/camera/directional/north{ - c_tag = "Civilian - Laundry Room" - }, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"nlp" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/iron/freezer, -/area/station/security/prison) -"nls" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk, -/obj/effect/spawner/random/trash/garbage{ - spawn_loot_count = 2; - spawn_random_offset = 1; - spawn_scatter_radius = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/left) -"nlE" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"nlX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing, -/obj/effect/spawner/random/trash/garbage{ - spawn_loot_count = 2; - spawn_random_offset = 1; - spawn_scatter_radius = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/right) -"nmf" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/wooden_tv, -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"nmg" = ( -/obj/effect/turf_decal/siding/thinplating{ - 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/door/firedoor/border_only{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"nmz" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/carpet, -/area/station/cargo/miningdock) -"nmH" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible/layer2{ - dir = 9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"nmP" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nmV" = ( -/obj/machinery/recharge_station, -/obj/machinery/light/small/directional/east, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"nmY" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"nns" = ( -/obj/machinery/computer/operating{ - dir = 1; - name = "Robotics Operating Computer" - }, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"nnG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/external{ - autoclose = 0; - frequency = 1449; - id_tag = "rightmost_lower_eva_internal"; - name = "External Access" - }, -/obj/machinery/door_buttons/access_button{ - idDoor = "rightmost_lower_eva_internal"; - idSelf = "rightmost_lower_eva_airlock_control"; - name = "External Access Button"; - pixel_y = -24 - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/right) -"nnS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/crowbar, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"nnW" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"nof" = ( -/obj/effect/turf_decal/siding/thinplating{ - 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, -/area/station/commons/fitness/recreation) -"noh" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"now" = ( -/obj/structure/table/wood, -/obj/item/lipstick/random{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/lipstick/random{ - pixel_x = -2; - pixel_y = -2 - }, -/turf/open/floor/iron/white/side{ - dir = 4 - }, -/area/station/service/theater) -"noI" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/vending/wardrobe/sec_wardrobe, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"noK" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/obj/machinery/light/directional/north, -/obj/item/radio/intercom/directional/north, -/obj/machinery/vending/wardrobe/chem_wardrobe, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"noU" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/corner{ - dir = 4 - }, -/obj/machinery/duct, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/service/janitor) -"npf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiobottomleft"; - name = "Xenobio Bottom Left Pen Blast Door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"npi" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Public Garden Maintenance Access" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/service/library, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/service/library/lounge) -"npm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/port/central) -"npM" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"npY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/service/kitchen/coldroom) -"nqh" = ( -/obj/structure/chair, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/flasher/directional/north{ - id = "crgcell" - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"nql" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"nqs" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit) -"nqu" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"nqw" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Arrivals" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"nqH" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/glass, -/area/station/commons/fitness/recreation) -"nra" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"nrn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron, -/area/service/salon) -"nrx" = ( -/obj/structure/tank_holder/extinguisher, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"nrz" = ( -/obj/structure/railing/corner, -/obj/effect/turf_decal/siding/thinplating/corner, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"nrC" = ( -/obj/machinery/door/airlock/research{ - id_tag = "ResearchExt"; - name = "Research Division" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-entrance-right" - }, -/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/engineering/tcoms, -/obj/effect/mapping_helpers/airlock/access/any/command/minisat, -/obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, -/obj/effect/mapping_helpers/airlock/access/any/science/general, -/turf/open/floor/iron, -/area/station/science/research) -"nrF" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Unfiltered to Mix" - }, -/obj/effect/turf_decal/trimline/green/filled/corner, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"nrQ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness) -"nrR" = ( -/obj/structure/table/glass, -/obj/item/book/manual/wiki/surgery{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/book/manual/wiki/medicine, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"nsi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/server) -"nso" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/commons/storage/tools) -"nsA" = ( -/obj/machinery/light_switch/directional/west, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/dryer{ - dir = 4; - pixel_x = -6; - pixel_y = -6 - }, -/turf/open/floor/iron, -/area/service/salon) -"nti" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nto" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"ntp" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"nuc" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/bureaucracy/folder, -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) -"nug" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"num" = ( -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"nuz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/caution{ - dir = 1 - }, -/obj/structure/railing, -/turf/open/floor/plating, -/area/station/maintenance/tram/left) -"nuX" = ( -/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) -"nvg" = ( -/obj/structure/bodycontainer/morgue{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"nvh" = ( -/obj/effect/turf_decal/trimline/neutral/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, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"nvj" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"nvm" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/camera/directional/south{ - c_tag = "Maintenance - East Tram Tunnel 2" - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"nvu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"nvA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nvF" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"nvX" = ( -/obj/structure/table, -/obj/item/storage/box/rubbershot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"nwb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/mob/living/carbon/human/species/monkey/punpun, -/turf/open/floor/iron, -/area/station/service/bar) -"nwd" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"nwj" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"nwo" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) -"nwp" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"nwq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/rack, -/obj/item/mod/module/plasma_stabilizer, -/obj/item/mod/module/thermal_regulator, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"nwv" = ( -/obj/machinery/shower{ - pixel_y = 12 - }, -/obj/structure/curtain, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/captain/private) -"nwx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nwE" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/solars/port/aft) -"nwM" = ( -/obj/structure/disposalpipe/sorting/wrap{ - dir = 4 - }, -/turf/closed/wall, -/area/station/cargo/sorting) -"nwO" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/ordnance/storage) -"nwP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/engineering/atmospherics_engine) -"nwQ" = ( -/obj/machinery/button/tram{ - id = "right_part" - }, -/turf/closed/wall, -/area/station/hallway/primary/tram/right) -"nwS" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/auxlab) -"nwT" = ( -/obj/machinery/door/airlock{ - id_tag = "private_c"; - name = "Private Quarters C" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/dorms) -"nwX" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"nxi" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/research) -"nxm" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Equipment Room" - }, -/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, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"nxq" = ( -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"nxx" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"nxy" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/lounge) -"nxB" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"nxP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/left) -"nxT" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron, -/area/station/engineering/main) -"nyi" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"nyl" = ( -/obj/machinery/light_switch/directional/north{ - pixel_x = 12 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/command/heads_quarters/rd) -"nyt" = ( -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 8 - }, -/turf/open/floor/glass/reinforced, -/area/station/security/brig) -"nyw" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"nyD" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/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/hallway/secondary/exit) -"nyF" = ( -/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, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lab) -"nyG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nyI" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"nyW" = ( -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/bed/pod, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/service/salon) -"nza" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/cargo/storage) -"nzh" = ( -/obj/structure/fluff/tram_rail/end{ - dir = 8 - }, -/turf/open/openspace, -/area/station/hallway/primary/tram/left) -"nzk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"nzm" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 5; - pixel_y = -2 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -2; - pixel_y = 2 - }, -/turf/open/floor/iron, -/area/station/commons/lounge) -"nzz" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"nzC" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 5 - }, -/obj/effect/spawner/random/structure/tank_holder, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"nzE" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/table/glass, -/obj/item/storage/box/bodybags{ - pixel_x = -1; - pixel_y = 6 - }, -/obj/item/storage/box/disks{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 9 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"nzO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 4 - }, -/obj/structure/railing, -/turf/open/floor/plating, -/area/station/maintenance/tram/mid) -"nzR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/greater) -"nzY" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"nAh" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchencounter"; - name = "Kitchen Counter Shutters"; - dir = 8 - }, -/obj/machinery/door/window/right/directional/east{ - name = "Pick Up Window"; - req_access = list("kitchen") - }, -/turf/open/floor/plating, -/area/station/service/kitchen) -"nAK" = ( -/obj/machinery/vending/wardrobe/chef_wardrobe, -/turf/open/floor/iron/showroomfloor, -/area/station/service/kitchen/coldroom) -"nAN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/chair, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/central) -"nAP" = ( -/obj/machinery/button/door/directional/west{ - id = "private_e"; - name = "Privacy Bolts"; - normaldoorcontrol = 1; - pixel_x = 24; - pixel_y = -9; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"nAR" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 8 - }, -/obj/machinery/duct, -/obj/machinery/light/directional/west, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/service/janitor) -"nBa" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/cargo/miningdock/cafeteria) -"nBu" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"nBA" = ( -/turf/open/floor/engine/o2, -/area/station/engineering/atmos) -"nBM" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"nBN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"nBR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"nCw" = ( -/obj/structure/table, -/obj/item/hand_tele, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"nCy" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"nDj" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"nDm" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"nDz" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"nDS" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/purple/filled/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/white, -/area/station/science/research) -"nDT" = ( -/obj/item/ammo_casing/spent, -/turf/open/floor/plating/airless, -/area/mine/explored) -"nDV" = ( -/obj/machinery/conveyor{ - id = "QMLoad2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"nDY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil/slippery, -/turf/open/floor/iron/smooth, -/area/station/maintenance/port/central) -"nEc" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/item/electropack, -/obj/item/assembly/signaler, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/security/brig) -"nEf" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"nEy" = ( -/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, -/area/station/hallway/secondary/entry) -"nEA" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"nEF" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/bottle/nutrient/ez, -/obj/item/reagent_containers/glass/bottle/nutrient/rh{ - pixel_x = 2; - pixel_y = 1 - }, -/obj/item/reagent_containers/spray/pestspray{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/reagent_containers/spray/plantbgone, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"nEU" = ( -/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 = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/crew_quarters/dorms) -"nFs" = ( -/obj/machinery/computer/security/telescreen/ordnance{ - dir = 8; - pixel_x = 30 - }, -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"nFL" = ( -/obj/machinery/suit_storage_unit/atmos, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - Atmospherics West"; - dir = 6; - network = list("ss13","engineering") - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nGt" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"nGB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/junction, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"nGZ" = ( -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/bluespace_vendor/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"nHa" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 - }, -/obj/item/hfr_box/core, -/obj/item/hfr_box/corner, -/obj/item/hfr_box/corner, -/obj/item/hfr_box/corner, -/obj/item/hfr_box/corner, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"nHd" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/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/iron/white, -/area/station/science/research) -"nHz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"nHF" = ( -/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/engineering{ - name = "Power Access Hatch" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/tram/left) -"nHO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"nHT" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/commons/lounge) -"nHX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, -/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, -/area/station/engineering/atmos) -"nHY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"nIc" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/airalarm/directional/east, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"nIj" = ( -/obj/effect/turf_decal/trimline/green/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/white, -/area/station/medical/virology) -"nIM" = ( -/obj/structure/cable, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Security - Isolation Chambers"; - dir = 6; - network = list("ss13","Security","prison") - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"nJf" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/effect/landmark/navigate_destination/kitchen, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"nJo" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Cooling Loop to Gas" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"nJF" = ( -/obj/structure/bookcase/random/adult, -/turf/open/floor/wood/parquet, -/area/station/service/library) -"nJQ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"nJV" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"nJX" = ( -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/tram/left) -"nKg" = ( -/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/engine, -/area/station/engineering/supermatter/room) -"nKu" = ( -/obj/machinery/telecomms/server/presets/common, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"nKC" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "Test Chamber Blast Door" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"nKP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"nKY" = ( -/obj/effect/turf_decal/tile/neutral/full, -/obj/machinery/status_display/ai/directional/north, -/obj/structure/table, -/turf/open/floor/iron/large, -/area/station/commons/dorms) -"nLd" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/sign/poster/official/safety_report{ - pixel_y = 32 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"nLi" = ( -/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, -/area/station/security/brig) -"nLB" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"nLZ" = ( -/obj/structure/table, -/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/interrogation) -"nMg" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"nMu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/greater) -"nMP" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"nMU" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"nMW" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"nMX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"nMZ" = ( -/obj/machinery/gibber, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/showroomfloor, -/area/station/service/kitchen/coldroom) -"nNq" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"nNx" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/structure/fluff/tram_rail/floor, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/tram/center) -"nNz" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"nNM" = ( -/obj/structure/girder, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"nNP" = ( -/obj/machinery/door_timer{ - id = "engcell"; - name = "Engineering Cell"; - pixel_x = -32 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"nNQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"nNV" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/port/central) -"nNY" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nOh" = ( -/obj/effect/turf_decal/bot, -/obj/structure/janitorialcart, -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/service/janitor) -"nOq" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"nOt" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/bluespace_vendor/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"nOC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"nOE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/service/kitchen) -"nPe" = ( -/turf/open/floor/carpet, -/area/station/medical/psychology) -"nPs" = ( -/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/science/xenobiology) -"nPD" = ( -/obj/machinery/firealarm/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Medical - Psychologist's Office"; - network = list("ss13","medbay") - }, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"nPI" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"nPM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nPN" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"nQr" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"nQB" = ( -/obj/effect/turf_decal/sand, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"nQC" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - 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, -/area/station/commons/lounge) -"nQF" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"nQM" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"nQW" = ( -/obj/effect/spawner/random/trash/mess, -/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/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/security) -"nRj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"nRo" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/table, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/security/brig) -"nRu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/east, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"nRv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"nRw" = ( -/obj/structure/table, -/obj/machinery/airalarm/directional/south, -/obj/item/exodrone{ - pixel_y = 8 - }, -/obj/effect/turf_decal/trimline/brown/filled/line, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"nRN" = ( -/obj/structure/table, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = -2 - }, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = 7; - pixel_y = 2 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"nRO" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Departures - East Main"; - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"nRR" = ( -/obj/machinery/chem_heater/withbuffer, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"nRT" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/landmark/start/clown, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/theater) -"nRV" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"nRX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Civilian - Holodeck Controls" - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"nSq" = ( -/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/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) -"nSs" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) -"nSO" = ( -/obj/structure/table, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/reagent_containers/spray/cleaner, -/obj/machinery/newscaster/directional/south, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/turf_decal/trimline/purple/filled/warning, -/turf/open/floor/iron, -/area/station/service/janitor) -"nTg" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/neutral/filled/warning, -/obj/effect/turf_decal/siding/thinplating, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"nTi" = ( -/obj/machinery/door/airlock/hatch{ - name = "Ladder Access Hatch" - }, -/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, -/area/station/hallway/primary/tram/right) -"nTG" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table, -/turf/open/floor/iron, -/area/station/cargo/miningdock/cafeteria) -"nTJ" = ( -/obj/structure/chair, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"nTL" = ( -/obj/structure/table/wood, -/obj/item/instrument/violin, -/turf/open/floor/wood, -/area/station/service/theater) -"nTT" = ( -/obj/machinery/plumbing/synthesizer{ - reagent_id = /datum/reagent/water - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/dorms) -"nUb" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"nUg" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/recharge_station, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"nUk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"nUs" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/crew_quarters/dorms) -"nUt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/stack/sheet/rglass{ - amount = 15 - }, -/obj/item/stack/rods/twentyfive, -/turf/open/floor/iron, -/area/station/maintenance/port/central) -"nUy" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"nUM" = ( -/obj/machinery/computer/communications, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"nUO" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/trimline/green/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 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"nUR" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"nUZ" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/left) -"nVl" = ( -/obj/effect/turf_decal/bot, -/obj/structure/transit_tube, -/turf/open/floor/plating, -/area/station/engineering/transit_tube) -"nVx" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 6 - }, -/obj/machinery/light/directional/east, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/obj/machinery/status_display/ai/directional/south, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"nVF" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"nVX" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/filled/warning{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Hallway - Upper Mid-Left Service"; - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"nWF" = ( -/obj/effect/turf_decal/trimline/neutral/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, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"nWG" = ( -/obj/machinery/space_heater, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) -"nWP" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"nXp" = ( -/obj/structure/floodlight_frame, -/turf/open/misc/asteroid, -/area/station/medical/chemistry) -"nXt" = ( -/obj/machinery/door/airlock{ - name = "Bar Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/obj/effect/mapping_helpers/airlock/access/all/service/bar, -/turf/open/floor/wood, -/area/station/service/bar) -"nXQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"nYk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"nYA" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/stool/directional/west, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/commons/lounge) -"nYJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/space) -"nYL" = ( -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/obj/effect/landmark/start/hangover, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"nYP" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"nYX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/closed/wall, -/area/station/engineering/atmos) -"nYY" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) -"nYZ" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/white, -/area/station/science/lower) -"nZa" = ( -/obj/structure/cable, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"nZg" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/random/trash/graffiti{ - pixel_y = 32; - spawn_loot_chance = 50 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"nZs" = ( -/obj/machinery/computer/mecha, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/command/heads_quarters/rd) -"nZF" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"nZK" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"nZS" = ( -/obj/structure/closet/l3closet/security, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"oaj" = ( -/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 = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/sorting/mail{ - sortType = 24 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lower) -"oam" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"oas" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"oaw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"oaM" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/newscaster/directional/north, -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/white, -/area/station/medical/surgery/fore) -"oaT" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"oaV" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"oaX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/station/security/checkpoint/engineering) -"oby" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"obz" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"obA" = ( -/obj/machinery/door/poddoor/shutters{ - id = "armory"; - name = "Armoury Shutter" - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/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/security/armory) -"obH" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/machinery/airalarm/directional/west, -/obj/machinery/light_switch/directional/north{ - pixel_x = 12 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Medical - Breakroom"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"obR" = ( -/obj/structure/chair/sofa/right{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/science/breakroom) -"obU" = ( -/obj/structure/table, -/obj/item/radio/off, -/obj/item/screwdriver{ - pixel_y = 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, -/area/station/security/office) -"ocd" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"ock" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - 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, -/area/station/security/brig) -"ocp" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"ocz" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/machinery/camera/directional/south{ - c_tag = "Science - Main Central"; - network = list("ss13","rd") - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"ocJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"odl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"odp" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/delivery, -/obj/effect/spawner/random/structure/crate_empty, -/obj/effect/spawner/random/maintenance/four, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"odr" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/glass/reinforced, -/area/station/security/brig) -"oee" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Server Room" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"oef" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"oeg" = ( -/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/engineering{ - name = "Power Access Hatch" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"oeo" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"oeA" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"oeF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 9 - }, -/obj/structure/sign/departments/cargo/directional/west, -/turf/open/floor/iron/white, -/area/station/science/research) -"ofn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison) -"ofq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/science/ordnance/storage) -"ofv" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/maintenance/radshelter/civil) -"ofx" = ( -/obj/structure/rack, -/obj/item/clothing/under/color/red, -/obj/item/clothing/under/color/red, -/obj/item/clothing/under/color/red, -/obj/item/clothing/head/soft/red, -/obj/item/clothing/head/soft/red, -/obj/item/clothing/head/soft/red, -/obj/effect/turf_decal/tile/red/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/commons/fitness/recreation/entertainment) -"ofA" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/hallway/primary/tram/left) -"ofH" = ( -/obj/structure/rack, -/obj/item/book/manual/wiki/robotics_cyborgs, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/electrical, -/obj/item/clothing/head/welding, -/obj/item/clothing/glasses/welding, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"ofJ" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"ofL" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"ofQ" = ( -/obj/machinery/door/airlock/hatch{ - name = "Ladder Access Hatch" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/left) -"ogb" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/neutral/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{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"ogc" = ( -/obj/machinery/door/airlock/hatch{ - name = "Ladder Access Hatch" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/hallway/primary/tram/left) -"ogl" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"ogn" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1449; - id_tag = "xeno_airlock_interior"; - name = "Xenobiology Lab Internal Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiomain"; - name = "Xenobiology Lockdown Blastdoor" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"ogp" = ( -/obj/structure/table/wood, -/turf/open/floor/wood/tile, -/area/station/service/chapel) -"ogR" = ( -/obj/effect/turf_decal/siding/wood, -/obj/structure/window/reinforced/spawner, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/service/theater) -"ogY" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"ohd" = ( -/obj/structure/table, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"ohe" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"ohh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/mine/explored) -"oho" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"ohr" = ( -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"oht" = ( -/obj/structure/closet/secure_closet/brig/genpop, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"ohu" = ( -/obj/machinery/holopad, -/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, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"ohH" = ( -/obj/machinery/camera{ - c_tag = "Science - Experimentor Lab Testing Range"; - dir = 9; - network = list("ss13","rd") - }, -/turf/open/floor/engine, -/area/station/science/explab) -"ohW" = ( -/obj/structure/table/wood, -/obj/machinery/light/dim/directional/north, -/obj/item/storage/book/bible, -/turf/open/floor/carpet, -/area/station/service/chapel/monastery) -"ohY" = ( -/obj/structure/closet/secure_closet/brig/genpop, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"oig" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/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, -/area/station/commons/dorms) -"oih" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = 32 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"oii" = ( -/obj/structure/table/glass, -/obj/item/storage/box/monkeycubes{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/machinery/requests_console/directional/east{ - department = "Genetics"; - name = "Genetics Requests Console" - }, -/obj/machinery/camera{ - c_tag = "Science - Genetics"; - dir = 9; - network = list("ss13","rd") - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"oij" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/loading_area, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/cargo/storage) -"oiy" = ( -/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/machinery/duct, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"oiG" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"oiI" = ( -/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/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/port/fore) -"ojj" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"ojC" = ( -/obj/effect/turf_decal/stripes, -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/structure/industrial_lift/tram{ - icon_state = "titanium" - }, -/obj/effect/landmark/lift_id, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/center) -"ojJ" = ( -/obj/structure/table, -/obj/machinery/ecto_sniffer{ - pixel_x = -4 - }, -/obj/item/assembly/flash/handheld{ - pixel_x = 6; - pixel_y = 13 - }, -/obj/item/assembly/flash/handheld{ - pixel_x = 6; - pixel_y = 13 - }, -/obj/item/assembly/flash/handheld{ - pixel_x = 6; - pixel_y = 13 - }, -/obj/item/assembly/flash/handheld{ - pixel_x = 6; - pixel_y = 13 - }, -/obj/item/assembly/flash/handheld{ - pixel_x = 6; - pixel_y = 13 - }, -/obj/item/assembly/flash/handheld{ - pixel_x = 6; - pixel_y = 13 - }, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"ojM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/iron/stairs{ - dir = 4 - }, -/area/station/hallway/secondary/entry) -"ojS" = ( -/obj/structure/table, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/item/wirecutters, -/obj/item/multitool, -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"ojT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/hallway/primary/tram/left) -"okb" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/filled/warning{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Hallway - Upper Mid-Right Service"; - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"okf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/junction, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"okP" = ( -/obj/machinery/chem_heater, -/obj/effect/turf_decal/trimline/purple/end, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"okT" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"olc" = ( -/obj/structure/table/wood, -/obj/item/camera_film{ - pixel_y = 9 - }, -/obj/item/camera_film{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/wood, -/area/station/service/library) -"olg" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/computer/security/telescreen{ - dir = 1; - name = "Science Camera Monitor"; - network = list("ss13","rd"); - pixel_y = -28 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"olx" = ( -/obj/machinery/door/airlock{ - id_tag = "private_h"; - name = "Private Quarters H" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"olz" = ( -/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, -/area/station/security/interrogation) -"olF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/right) -"omm" = ( -/turf/closed/wall, -/area/station/maintenance/department/security) -"omu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"omx" = ( -/obj/structure/rack, -/obj/item/latexballon, -/obj/item/scooter_frame, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/decal/cleanable/dirt, -/obj/item/screwdriver, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/cargo) -"omS" = ( -/obj/machinery/disposal/bin, -/obj/machinery/airalarm/directional/east, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hos) -"omT" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/commons/dorms) -"onq" = ( -/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/common/cryopods) -"onI" = ( -/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, -/turf/open/floor/iron/white, -/area/station/service/kitchen) -"onW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"ook" = ( -/turf/closed/wall/r_wall, -/area/station/hallway/primary/tram/left) -"ooA" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - 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, -/area/station/security/office) -"ooC" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/machinery/camera{ - c_tag = "Science - Main Upper Left"; - dir = 6; - network = list("ss13","rd") - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"ooK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/machinery/button/door/directional/west{ - id = "left_tram_lower"; - req_access = list("maint_tunnels") - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"ooL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/left) -"ooN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/spawner/random/entertainment/drugs, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/science) -"ooR" = ( -/obj/structure/flora/bush/sunny/style_random, -/obj/item/food/grown/banana, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/grass, -/area/station/medical/virology) -"ooU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"opc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction/flip, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"opp" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Hydroponics Maintenance Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"opr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/food_packaging, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/tram/right) -"opN" = ( -/obj/machinery/power/shieldwallgen, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"opP" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"oqc" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/security_medic, -/turf/open/floor/iron/white, -/area/station/security/medical) -"oqg" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/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 - }, -/obj/machinery/duct, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/service/janitor) -"oqh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/space_heater, -/obj/structure/sign/poster/official/safety_internals{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"oqS" = ( -/obj/structure/chair/pew/left, -/turf/open/floor/iron/chapel{ - dir = 9 - }, -/area/station/service/chapel) -"oqT" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/grassy/style_random, -/turf/open/floor/grass, -/area/station/commons/dorms) -"oqY" = ( -/obj/effect/turf_decal/trimline/green/corner, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"ora" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ore" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/service/library) -"orp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/effect/spawner/random/engineering/tool, -/obj/effect/spawner/random/engineering/tool, -/turf/open/floor/iron/smooth, -/area/station/maintenance/port/aft) -"ory" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"orC" = ( -/obj/effect/spawner/random/trash/soap{ - spawn_scatter_radius = 1 - }, -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"orL" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"orO" = ( -/obj/machinery/computer/camera_advanced/xenobio, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"orQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/port/central) -"orT" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"osa" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/trimline/white/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"osd" = ( -/obj/machinery/telecomms/hub/preset, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"osj" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"osB" = ( -/obj/effect/turf_decal/siding/thinplating, -/turf/open/floor/glass/reinforced, -/area/station/security/warden) -"osE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/airalarm/directional/south, -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/station/cargo/miningdock) -"osK" = ( -/obj/effect/turf_decal/siding/thinplating{ - 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/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"osS" = ( -/obj/machinery/door/airlock/security{ - name = "Labor Shuttle" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron, -/area/station/security/brig) -"osT" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"osZ" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/shutters/window{ - id = "gatewayshutters"; - name = "Gateway Chamber Shutters"; - dir = 4 - }, -/obj/machinery/button/door/directional/south{ - id = "gatewayshutters"; - name = "Gateway Shutters"; - req_access = list("command") - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"otf" = ( -/obj/structure/chair, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/commons/fitness) -"otk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/chair_maintenance{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"otn" = ( -/obj/machinery/hydroponics/soil, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/turf/open/floor/iron/dark, -/area/station/security/prison/garden) -"oto" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/navigate_destination/det, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"ots" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"otz" = ( -/obj/effect/turf_decal/siding/thinplating/corner, -/turf/open/floor/glass/reinforced, -/area/station/security/brig) -"otA" = ( -/obj/effect/turf_decal/delivery/white{ - color = "#52B4E9" - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"ouJ" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 9 - }, -/turf/open/floor/glass/reinforced, -/area/station/security/warden) -"ouO" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/turretid{ - icon_state = "control_stun"; - name = "AI Chamber turret control"; - pixel_x = 3; - pixel_y = -23 - }, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"ouV" = ( -/obj/effect/turf_decal/sand/plating, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plating/airless, -/area/mine/explored) -"ouX" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/computer/slot_machine, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/commons/lounge) -"ovh" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/vending/barbervend, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/service/salon) -"ovj" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"ovx" = ( -/turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) -"ovy" = ( -/obj/machinery/door/airlock/research{ - id_tag = "ResearchExt"; - name = "Research Division" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-entrance-right" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/obj/effect/mapping_helpers/airlock/access/any/command/minisat, -/obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, -/obj/effect/mapping_helpers/airlock/access/any/science/general, -/turf/open/floor/iron, -/area/station/science/research) -"ovz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/greater) -"ovE" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/sign/warning/electric_shock/directional/west, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"ovR" = ( -/obj/machinery/air_sensor/plasma_tank, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"owm" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"owA" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/security/processing) -"owZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/station/cargo/qm) -"oxd" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"oxg" = ( -/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, -/area/station/hallway/secondary/entry) -"oxs" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/landmark/start/hangover, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"oxC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"oxE" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"oxG" = ( -/obj/structure/closet/crate, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/machinery/camera{ - c_tag = "Security - Prison Workshop"; - dir = 6; - network = list("ss13","Security","prison") - }, -/turf/open/floor/plating, -/area/station/security/prison/work) -"oxL" = ( -/turf/closed/wall/r_wall, -/area/station/science/lab) -"oxU" = ( -/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/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/crew_quarters/dorms) -"oya" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - name = "sorting disposal pipe (Xenobiology)"; - sortType = 28 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"oyg" = ( -/obj/machinery/camera{ - c_tag = "Secure - External ai_upload"; - dir = 10 - }, -/turf/open/space/openspace, -/area/station/ai_monitored/turret_protected/ai_upload) -"oys" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/central) -"oyx" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/service/salon) -"oyD" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/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/line, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"oyI" = ( -/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) -"oyL" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Science - Lower Main South"; - dir = 9; - network = list("ss13","rd") - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/white, -/area/station/science/lower) -"oyM" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/sofa/corp{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/lounge) -"oyO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"oyQ" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/service/library) -"oza" = ( -/obj/item/stack/cable_coil, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/mine/explored) -"oze" = ( -/obj/machinery/dna_scannernew, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"ozr" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction/layer2{ - dir = 8 - }, -/obj/machinery/door/airlock/research/glass{ - name = "Ordnance Lab" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"ozD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/security) -"ozZ" = ( -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"oAb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Arrivals" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"oAh" = ( -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/corner, -/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, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"oAo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/blobstart, -/turf/open/floor/wood, -/area/station/commons/dorms) -"oAy" = ( -/obj/docking_port/stationary{ - dwidth = 5; - height = 7; - id = "supply_home"; - name = "Cargo Bay"; - width = 12 - }, -/turf/open/misc/asteroid/airless, -/area/mine/explored) -"oAA" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Garden" - }, -/obj/machinery/door/firedoor, -/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, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"oAD" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"oAG" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/obj/structure/table, -/obj/item/folder/yellow, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"oAI" = ( -/obj/machinery/door/airlock/hatch, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/mid) -"oAP" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/crew_quarters/dorms) -"oAV" = ( -/turf/closed/wall, -/area/station/cargo/office) -"oBm" = ( -/obj/structure/chair, -/obj/structure/window/reinforced/spawner/east, -/obj/structure/window/reinforced/spawner, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"oBx" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"oCr" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/filled/corner, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"oCC" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_cw, -/obj/effect/turf_decal/caution, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"oCG" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/machinery/door/airlock/command/glass{ - name = "AI Core" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "AI Core shutters"; - name = "AI Core Shutters"; - dir = 1 - }, -/obj/machinery/flasher/directional/west{ - id = "AI" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, -/obj/structure/cable/layer1, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"oCN" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/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, -/area/station/hallway/primary/central) -"oCO" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/openspace, -/area/station/science/xenobiology) -"oCV" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"oDj" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"oDq" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Civilian - Library Lounge" - }, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) -"oDs" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"oDy" = ( -/obj/item/radio/intercom/chapel/directional/east, -/obj/structure/chair/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/landmark/start/chaplain, -/turf/open/floor/wood/tile, -/area/station/service/chapel) -"oEt" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - 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/white, -/area/station/medical/virology) -"oEA" = ( -/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, -/area/station/science/research) -"oEH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/main) -"oEN" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison) -"oEV" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Barbershop" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/service/salon) -"oEW" = ( -/obj/structure/cable, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) -"oFd" = ( -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"oFo" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"oFp" = ( -/obj/effect/spawner/random/entertainment/arcade, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron, -/area/station/security/prison) -"oFs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"oFt" = ( -/obj/structure/sign/warning/vacuum/external/directional/west, -/obj/effect/turf_decal/sand/plating, -/obj/machinery/light/small/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"oFx" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"oFI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"oFL" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/effect/turf_decal/trimline/red/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, -/area/station/hallway/secondary/exit/departure_lounge) -"oFT" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/camera/directional/south{ - c_tag = "Maintenance - Central Tram Tunnel 4" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"oFY" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/obj/item/healthanalyzer, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"oGe" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Science Maintenance" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/science) -"oGf" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/t_scanner, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"oGi" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/obj/machinery/newscaster/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Service - Department Lathe Access"; - network = list("ss13","Service") - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"oGv" = ( -/obj/structure/table, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron, -/area/station/medical/virology) -"oGw" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"oGy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/engineering/atmospherics_engine) -"oGF" = ( -/obj/machinery/rnd/production/techfab/department/cargo, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"oGJ" = ( -/turf/closed/mineral/random/stationside/asteroid/porus, -/area/station/medical/chemistry) -"oGK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"oGQ" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"oGY" = ( -/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/effect/landmark/start/assistant, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"oHp" = ( -/obj/structure/bookcase/random/nonfiction, -/turf/open/floor/wood/large, -/area/station/service/library) -"oHw" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard) -"oHC" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"oHR" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/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 = 9 - }, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"oHY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/engineering{ - name = "Power Access Hatch" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/hallway/primary/tram/right) -"oIa" = ( -/turf/closed/wall, -/area/station/medical/morgue) -"oIl" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"oIz" = ( -/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/interrogation) -"oIH" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/mine/explored) -"oIU" = ( -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"oIV" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"oJu" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/table/glass, -/obj/item/storage/box/beakers{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/bodybags, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"oJx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"oJF" = ( -/obj/structure/table, -/obj/item/radio{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/binoculars{ - pixel_x = 3 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"oJN" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"oJR" = ( -/obj/effect/spawner/random/structure/closet_private, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"oJS" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"oJZ" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/security/courtroom) -"oKy" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"oKz" = ( -/obj/machinery/light_switch/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hos) -"oLl" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - id_tag = "virology_airlock_interior"; - name = "Virology Interior Airlock" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door_buttons/access_button{ - idDoor = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_y = 24; - req_access = list("virology") - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/access/all/medical/virology, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"oLs" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/neutral/corner, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"oLt" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Vault Access" - }, -/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/supply/vault, -/turf/open/floor/plating, -/area/station/command/bridge) -"oLv" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Waste In" - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"oLX" = ( -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"oLZ" = ( -/turf/closed/wall/r_wall, -/area/station/security/office) -"oMc" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"oMk" = ( -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"oMm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/crew_quarters/dorms) -"oMz" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"oMM" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - name = "sorting disposal pipe (Civilan Wing)"; - sortTypes = list(16,17) - }, -/obj/structure/sign/warning/docking/directional/north{ - desc = "A warning sign which reads 'KEEP CLEAR OF TRAM DOCKING AREA'."; - name = "KEEP CLEAR: TRAM DOCKING AREA sign" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"oMU" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 10 - }, -/turf/open/floor/glass/reinforced, -/area/station/security/brig) -"oMZ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"oNb" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"oNc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"oNg" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"oNo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/prison) -"oNp" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/sink{ - pixel_y = 15 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock/cafeteria) -"oNq" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"oNr" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/hallway/primary/central) -"oNE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/random/engineering/flashlight, -/obj/effect/spawner/random/maintenance/seven, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/maintenance/port/central) -"oNJ" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/bot_white, -/obj/machinery/piratepad/civilian, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"oNL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/navigate_destination/disposals, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"oNT" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/neutral/filled/warning, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"oNV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"oOF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/port/central) -"oOG" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/structure/closet/secure_closet/warden, -/obj/item/radio/intercom/directional/west, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"oOJ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"oOK" = ( -/turf/closed/mineral/random/stationside/asteroid/porus, -/area/station/maintenance/starboard/greater) -"oOR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - 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/white, -/area/station/medical/chemistry) -"oPf" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 6 - }, -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/stack/cable_coil, -/turf/open/floor/iron/white, -/area/station/science/lab) -"oPn" = ( -/obj/structure/disposalpipe/segment, -/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, -/area/station/maintenance/port/fore) -"oPF" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/item/aicard, -/obj/item/multitool, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"oPP" = ( -/obj/effect/landmark/navigate_destination/minisat_access_ai, -/turf/open/floor/iron/white, -/area/station/science/research) -"oPT" = ( -/turf/closed/wall, -/area/station/command/heads_quarters/rd) -"oQm" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"oQr" = ( -/obj/effect/landmark/secequipment, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"oQu" = ( -/obj/machinery/door/airlock/command/glass{ - name = "EVA Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/command/eva, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"oQx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"oQS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/duct, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"oRc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/radshelter/service) -"oRu" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/structure/closet/toolcloset, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"oRE" = ( -/obj/item/bedsheet/dorms_double{ - dir = 4 - }, -/obj/structure/bed/double{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"oRI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"oRU" = ( -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/four, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/security) -"oSj" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/machinery/camera{ - c_tag = "Security - Prison Main North-East"; - dir = 6; - network = list("ss13","Security","prison") - }, -/turf/open/floor/iron, -/area/station/security/prison) -"oSl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"oSs" = ( -/turf/open/floor/iron/stairs/medium{ - dir = 1 - }, -/area/station/security/execution/transfer) -"oSw" = ( -/obj/machinery/airalarm/directional/south, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/effect/turf_decal/tile, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"oSI" = ( -/obj/effect/turf_decal/trimline/neutral/line{ - 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 = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"oSR" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/camera/directional/south{ - c_tag = "Hallway - North-West Escape Wing Entry" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"oST" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/head/cone{ - pixel_x = 11; - pixel_y = -10 - }, -/obj/item/clothing/head/cone{ - pixel_x = 11; - pixel_y = 13 - }, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"oSX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"oTc" = ( -/obj/machinery/conveyor{ - dir = 6; - id = "QMLoad2" - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 5 - }, -/obj/machinery/status_display/supply{ - pixel_y = 32 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"oTm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/structure/sign/poster/official/science{ - pixel_x = 32 - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/science/breakroom) -"oTn" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/button/door/directional/west{ - id = "Toilet4"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"oTo" = ( -/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/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lower) -"oTr" = ( -/turf/open/floor/plating, -/area/station/science/ordnance/testlab) -"oTt" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/center) -"oTA" = ( -/turf/closed/wall, -/area/station/commons/fitness/recreation/entertainment) -"oTC" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"oTD" = ( -/obj/machinery/mass_driver/chapelgun, -/obj/machinery/door/window{ - dir = 1; - name = "Mass Driver"; - req_access = list("chapel_office") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/smooth_large, -/area/station/service/chapel/monastery) -"oTJ" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/glass/reinforced, -/area/station/security/brig) -"oTM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"oTO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"oUo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) -"oUs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/central) -"oUx" = ( -/obj/effect/landmark/start/security_officer, -/turf/open/floor/iron, -/area/station/security/office) -"oUC" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/airalarm/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Medical - Virology"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"oUL" = ( -/turf/closed/wall, -/area/station/commons/lounge) -"oUP" = ( -/obj/effect/turf_decal/siding/wideplating/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/bridge) -"oUZ" = ( -/obj/machinery/atmospherics/components/tank/oxygen{ - dir = 4 - }, -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"oVg" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/structure/closet/secure_closet/medical1, -/obj/item/radio/intercom/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"oVy" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"oVD" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/obj/structure/sign/warning/electric_shock/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/dorms) -"oVM" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison/mess) -"oVO" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw, -/obj/effect/turf_decal/caution, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"oVU" = ( -/obj/effect/turf_decal/tile{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"oWe" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - 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/tram/center) -"oWr" = ( -/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, -/area/station/security/interrogation) -"oWB" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Security - Rec Room South"; - network = list("ss13","Security","prison") - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"oWO" = ( -/obj/item/stack/ore/glass, -/turf/open/floor/grass, -/area/station/science/genetics) -"oWT" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/iron/stairs/medium, -/area/station/service/janitor) -"oWV" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/solars/port/aft) -"oXk" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/item/radio/intercom/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, -/area/station/commons/fitness/recreation) -"oXq" = ( -/obj/effect/turf_decal/stripes/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, -/area/station/ai_monitored/security/armory) -"oXt" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"oXz" = ( -/obj/machinery/iv_drip, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"oXC" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"oYk" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/commons/lounge) -"oYq" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"oYs" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/public/glass{ - name = "Auxiliary Tool Storage" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"oYu" = ( -/obj/structure/chair/stool/directional/north, -/obj/machinery/button/door/directional/west{ - id = "private_k"; - name = "Privacy Bolts"; - normaldoorcontrol = 1; - pixel_x = 24; - pixel_y = -9; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"oYF" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/turf/open/floor/engine, -/area/station/science/ordnance/burnchamber) -"oYR" = ( -/obj/structure/chair/pew/right, -/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) -"oYV" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"oYY" = ( -/obj/structure/reflector/single/anchored{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"oZc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"oZd" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"oZh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/effect/mapping_helpers/airlock/locked, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_atmos{ - pixel_x = 40; - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"oZm" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/machinery/modular_computer/console/preset/cargochat/cargo, -/turf/open/floor/iron, -/area/station/cargo/office) -"oZA" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"oZC" = ( -/obj/effect/turf_decal/trimline/blue/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/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"oZK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/machinery/button/door/directional/west{ - id = "right_tram_lower"; - req_access = list("maint_tunnels") - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"oZO" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/lattice/catwalk, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"oZZ" = ( -/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, -/obj/structure/cable, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"paf" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock/oresilo) -"pah" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"pai" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/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/service/hydroponics) -"paq" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter/room) -"paz" = ( -/obj/structure/rack, -/obj/item/reagent_containers/glass/bottle/acidic_buffer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/basic_buffer{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/formaldehyde{ - pixel_x = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/dark/textured_edge{ - dir = 4 - }, -/area/station/medical/medbay/central) -"paB" = ( -/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{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/obj/effect/landmark/xeno_spawn, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/transit_tube) -"paE" = ( -/obj/item/clothing/head/cone{ - pixel_y = -8 - }, -/obj/item/clothing/head/cone{ - pixel_y = -4 - }, -/obj/item/clothing/head/cone, -/turf/open/misc/asteroid, -/area/mine/explored) -"paV" = ( -/obj/structure/sign/departments/engineering/directional/east, -/turf/open/openspace, -/area/station/hallway/primary/tram/center) -"pbe" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"pbf" = ( -/obj/machinery/requests_console/directional/east{ - announcementConsole = 1; - department = "Captain's Desk"; - departmentType = 5; - name = "Captain's Requests Console" - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"pbn" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"pbr" = ( -/obj/effect/spawner/random/vending/snackvend, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"pbJ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/large, -/area/station/hallway/secondary/entry) -"pbM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/effect/spawner/random/maintenance/three, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/maintenance/port/central) -"pcu" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/tram/mid) -"pcv" = ( -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/effect/turf_decal/stripes, -/obj/effect/landmark/tram/left_part, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/left) -"pcw" = ( -/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/junction/flip{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) -"pcA" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/lesser) -"pcC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/brig) -"pcD" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=9-TunnelLeftBottomDoor"; - location = "8-TunnelMidBottom" - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"pcO" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"pdd" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"pdf" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Engineering - Security Outpost"; - network = list("ss13","engineering","Security") - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"pdn" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 6 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit) -"pdo" = ( -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"pdp" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"pdr" = ( -/obj/structure/urinal/directional/north, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"pdw" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/structure/railing, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw{ - dir = 1 - }, -/obj/effect/spawner/random/vending/colavend, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"pdE" = ( -/obj/structure/table, -/obj/item/folder/blue, -/obj/item/pen, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"pdI" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/commons/lounge) -"pdK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/solars/port/aft) -"pdW" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/primary/tram/center) -"pee" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"peq" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/warning/docking/directional/north{ - desc = "A warning sign which reads 'KEEP CLEAR OF TRAM DOCKING AREA'."; - name = "KEEP CLEAR: TRAM DOCKING AREA sign" - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"peu" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Service Wing Hallway" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"pev" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/primary/tram/right) -"pew" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) -"peP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison) -"pfb" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"pfk" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"pfo" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"pfu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"pfT" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron, -/area/station/cargo/miningdock/cafeteria) -"pgk" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"pgn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"pgu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"pgw" = ( -/obj/item/ammo_casing/spent, -/obj/item/ammo_casing/spent{ - pixel_x = 4; - pixel_y = 6 - }, -/turf/open/floor/plating/airless, -/area/mine/explored) -"pgz" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/table, -/turf/open/floor/iron/dark, -/area/station/service/chapel/monastery) -"pgK" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"pgL" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix to Engine" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"pgU" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/neutral/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"pgV" = ( -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/engineering/supermatter) -"pgX" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"pha" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/machinery/duct, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"phu" = ( -/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/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"phB" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/turf/open/floor/glass/reinforced, -/area/station/security/brig) -"phE" = ( -/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/freezer, -/area/station/commons/lounge) -"phR" = ( -/obj/machinery/modular_computer/console/preset/cargochat/science{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"phT" = ( -/obj/structure/lattice, -/obj/machinery/camera/motion{ - c_tag = "Secure - AI Lower External West"; - dir = 6; - network = list("ss13","minisat") - }, -/turf/open/space/basic, -/area/station/ai_monitored/turret_protected/aisat_interior) -"phY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"pib" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/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/security/prison) -"pio" = ( -/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/cable, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/medical) -"pis" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"piE" = ( -/obj/structure/chair{ - dir = 4; - name = "Judge" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron, -/area/station/security/courtroom) -"piG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/security) -"piP" = ( -/obj/structure/table, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = 2; - pixel_y = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 6 - }, -/obj/item/computer_hardware/hard_drive/portable/scipaper_program{ - pixel_x = 4; - pixel_y = -2 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"piV" = ( -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/any/command/minisat, -/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/turf/open/floor/plating, -/area/station/engineering/transit_tube) -"piX" = ( -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"pjc" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/camera/directional/south{ - c_tag = "Civilian - Recreational Area South-West" - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"pje" = ( -/obj/machinery/duct, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"pjj" = ( -/obj/effect/turf_decal/siding/thinplating/corner, -/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, -/turf/open/floor/iron, -/area/station/cargo/storage) -"pjs" = ( -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/effect/turf_decal/stripes, -/obj/effect/turf_decal/caution/stand_clear/red{ - dir = 4 - }, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/right) -"pjt" = ( -/obj/machinery/light/directional/south, -/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/south, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"pju" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"pkp" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/engine_smes) -"pkt" = ( -/obj/structure/cable, -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"pku" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/courtroom) -"pkv" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/landmark/start/station_engineer, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"pkw" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/command/heads_quarters/rd) -"pkF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/tank/internals/oxygen, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/mid) -"pkG" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - Entry Airlock"; - dir = 10; - network = list("ss13","engineering") - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"pkL" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/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, -/area/station/cargo/miningdock) -"pkN" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/navigate_destination/med, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"plH" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"plI" = ( -/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/commons/storage/art) -"plJ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - 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, -/area/station/hallway/primary/central) -"plP" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard) -"plU" = ( -/obj/structure/table, -/obj/machinery/computer/libraryconsole/bookmanagement, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/sign/poster/official/here_for_your_safety{ - pixel_y = -32 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"plV" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/structure/sign/departments/chemistry/pharmacy/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"plY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/medical) -"pmc" = ( -/obj/machinery/airalarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"pmg" = ( -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) -"pmo" = ( -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) -"pmt" = ( -/obj/effect/turf_decal/trimline/white/filled/line, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"pmu" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"pmA" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) -"pmQ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"pmZ" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"pnb" = ( -/obj/structure/sign/warning/radiation/rad_area/directional/north, -/obj/effect/turf_decal/siding/wideplating{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"pni" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"pnw" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/auxlab) -"pnU" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"pnV" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/effect/landmark/start/medical_doctor, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"pnW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"poh" = ( -/obj/machinery/light/directional/south, -/turf/open/openspace, -/area/station/hallway/primary/tram/center) -"poo" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/corner, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"pop" = ( -/obj/structure/table, -/obj/item/radio, -/turf/open/floor/plating/airless, -/area/mine/explored) -"pot" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Cargo Escape Airlock" - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"poy" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/corner, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"poA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"poD" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/machinery/camera{ - c_tag = "Hallway - Upper Right Command"; - dir = 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, -/area/station/hallway/secondary/command) -"poG" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/caution, -/obj/machinery/crossing_signal/northeast, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"ppr" = ( -/obj/machinery/computer/security{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron/dark, -/area/station/security/office) -"pps" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"ppu" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/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, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"ppC" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/fluff/tram_rail/floor{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"ppM" = ( -/obj/structure/window/reinforced/tinted/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/science/breakroom) -"ppS" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/mine/explored) -"ppU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/firealarm/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"ppX" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"pqb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"pqn" = ( -/obj/machinery/door/airlock/research{ - id_tag = "ResearchExt"; - name = "Research Division" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-entrance-left" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Sciencelockdown"; - name = "Research Lockdown Blastdoor" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron, -/area/station/science/research) -"pqz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"pqH" = ( -/obj/machinery/light/small/directional/south, -/turf/open/openspace, -/area/station/science/xenobiology) -"pqY" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - 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, -/area/station/commons/fitness/recreation) -"pqZ" = ( -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/heavy, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance_storage, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"prk" = ( -/obj/effect/turf_decal/siding/thinplating/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"prr" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/commons/lounge) -"prA" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/maint) -"prG" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/table, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/item/radio/off, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"psg" = ( -/obj/structure/disposalpipe/trunk/multiz{ - dir = 1 - }, -/obj/machinery/door/window/left/directional/north{ - dir = 2; - name = "Containment Pen #4"; - req_access = list("xenobiology") - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiotopright"; - name = "Xenobio Top Right Pen Blast Door" - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"psh" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/spawner/random/structure/girder, -/obj/item/stack/sheet/iron, -/turf/open/floor/plating/airless, -/area/mine/explored) -"psl" = ( -/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/red/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/turf/open/floor/iron/white, -/area/station/security/execution/education) -"psp" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/duct, -/turf/open/floor/iron/freezer, -/area/station/medical/coldroom) -"psx" = ( -/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/iron, -/area/station/hallway/secondary/entry) -"psB" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"psE" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/decal/cleanable/cobweb, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/server) -"psJ" = ( -/obj/structure/table, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/wirecutters, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"ptb" = ( -/obj/structure/chair/office/light, -/obj/effect/landmark/start/geneticist, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"ptf" = ( -/obj/machinery/camera/motion{ - c_tag = "Secure - AI Upper External East"; - dir = 10; - network = list("aicore") - }, -/turf/open/space/openspace, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"ptp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/effect/spawner/random/maintenance/seven, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/greater) -"ptw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk, -/turf/open/floor/plating, -/area/station/maintenance/tram/left) -"ptz" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) -"ptB" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/caution, -/obj/machinery/crossing_signal/northeast, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"ptE" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 10 - }, -/obj/structure/closet/radiation, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/engine{ - dir = 1; - pixel_y = -32 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"ptO" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/item/storage/box/lights/mixed, -/obj/item/pipe_dispenser, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"ptQ" = ( -/obj/machinery/computer/scan_consolenew, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"ptS" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/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{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"ptT" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/checkpoint/engineering) -"ptU" = ( -/obj/structure/table, -/obj/item/storage/photo_album/prison, -/obj/item/camera, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron, -/area/station/security/prison) -"ptW" = ( -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"puc" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - 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/power/apc/auto_name/directional/south, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"puh" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Telecomms Relay Access" - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"puo" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/medical) -"pux" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"puE" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/sorting/mail/flip{ - name = "sorting disposal pipe (Quartermaster's Office)"; - sortType = 3 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/cargo/qm) -"puH" = ( -/obj/effect/turf_decal/trimline/neutral/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, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"puN" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/wood/large, -/area/station/service/library) -"puT" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 10 - }, -/obj/machinery/light/directional/west, -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/south, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"puY" = ( -/obj/structure/fluff/tram_rail/anchor, -/turf/open/openspace, -/area/station/hallway/primary/tram/right) -"pvc" = ( -/obj/machinery/chem_master, -/obj/machinery/button/door/directional/east{ - id = "pharmacy_shutters_2"; - name = "Pharmacy Privacy Shutters Toggle"; - req_access = list("pharmacy") - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"pvn" = ( -/obj/structure/mirror/directional/north, -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/freezer, -/area/station/science/lower) -"pvA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/service/janitor) -"pvB" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"pvK" = ( -/turf/closed/wall/r_wall, -/area/station/service/janitor) -"pvL" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"pwd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"pwe" = ( -/obj/structure/bed/dogbed/runtime, -/obj/machinery/light/directional/north, -/mob/living/simple_animal/pet/cat/runtime, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"pwm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"pwo" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 9 - }, -/obj/item/kirbyplants/random, -/obj/machinery/status_display/ai/directional/north, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"pwp" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"pwt" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/stripes/asteroid/end{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/mine/explored) -"pwv" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"pwx" = ( -/obj/structure/chair, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"pwG" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/machinery/door/window/left/directional/west{ - name = "Atmospherics Delivery"; - req_access = list("atmospherics") - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"pwH" = ( -/turf/closed/wall, -/area/station/service/lawoffice) -"pwK" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/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/segment, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"pwL" = ( -/obj/machinery/restaurant_portal/restaurant, -/turf/open/floor/glass, -/area/station/service/kitchen/diner) -"pwP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/light/small/directional/south, -/obj/structure/disposalpipe/trunk/multiz/down{ - dir = 2 - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"pwY" = ( -/obj/effect/landmark/start/ai/secondary, -/obj/item/radio/intercom/directional/north{ - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = -6 - }, -/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 = -6 - }, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"pxg" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - 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/duct, -/turf/open/floor/iron/freezer, -/area/station/medical/coldroom) -"pxh" = ( -/obj/modular_map_root/tramstation{ - key = "maintenance_midladder_upper" - }, -/turf/closed/wall/mineral/silver, -/area/station/maintenance/department/cargo) -"pxi" = ( -/turf/closed/wall/r_wall, -/area/station/command/bridge) -"pxj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/effect/turf_decal/bot, -/obj/item/stack/sheet/plasteel/fifty, -/obj/effect/decal/cleanable/dirt, -/obj/item/hfr_box/body/fuel_input, -/obj/item/hfr_box/body/interface, -/obj/item/hfr_box/body/moderator_input, -/obj/item/hfr_box/body/waste_output, -/turf/open/floor/iron, -/area/station/engineering/atmospherics_engine) -"pxo" = ( -/obj/structure/chair/pew, -/turf/open/floor/iron/chapel{ - dir = 1 - }, -/area/station/service/chapel) -"pxD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"pxS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"pxW" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison/safe) -"pyb" = ( -/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, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"pyf" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/neutral/filled/warning, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"pyn" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"pyt" = ( -/obj/structure/chair, -/obj/effect/turf_decal/siding/thinplating{ - dir = 10 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"pyA" = ( -/obj/structure/dresser, -/obj/item/pinpointer/nuke, -/obj/item/disk/nuclear, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"pyL" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"pyP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"pzb" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control" - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"pzo" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/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/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/port/central) -"pzt" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"pzF" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/service/chapel/monastery) -"pzM" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"pzO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"pzV" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"pAc" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/sand/plating, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating/airless, -/area/mine/explored) -"pAl" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/plumbing/synthesizer{ - reagent_id = /datum/reagent/water - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/greater) -"pAB" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"pAD" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Mix to Waste" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"pAL" = ( -/obj/machinery/holopad/secure, -/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) -"pAR" = ( -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"pBe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/hangover, -/turf/open/floor/plating, -/area/station/maintenance/tram/left) -"pBT" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Office" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/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, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron, -/area/station/cargo/office) -"pBV" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/computer/prisoner/management, -/obj/structure/reagent_dispensers/wall/peppertank/directional/north, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"pBW" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/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, -/area/station/hallway/secondary/entry) -"pBZ" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/station/security/brig) -"pCa" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiotopright"; - name = "Xenobio Top Right Pen Blast Door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"pCg" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"pCi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"pCt" = ( -/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 - }, -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/service/lawoffice) -"pCF" = ( -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/machinery/door/window/left/directional/west{ - name = "Monkey Pen"; - req_access = list("genetics") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/grass, -/area/station/science/genetics) -"pCI" = ( -/obj/effect/turf_decal/siding/thinplating, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/neutral/filled/warning, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"pCL" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/miningdock) -"pCY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"pDc" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"pDQ" = ( -/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/structure/cable, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/security/courtroom) -"pDT" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/mine/explored) -"pDV" = ( -/turf/closed/wall, -/area/station/common/cryopods) -"pDX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"pEb" = ( -/obj/machinery/computer/upload/borg{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east{ - frequency = 1447; - name = "ai intercom" - }, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) -"pEc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/machinery/duct, -/turf/open/floor/wood, -/area/station/service/bar) -"pEe" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/bluespace_vendor/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"pEu" = ( -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 8 - }, -/obj/machinery/duct, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/service/janitor) -"pEx" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"pEF" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"pEH" = ( -/obj/structure/disposalpipe/segment{ - 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/catwalk_floor, -/area/station/hallway/primary/tram/center) -"pFb" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner, -/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/miningdock) -"pFe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/cargo) -"pFk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 1 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"pFF" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) -"pFH" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"pFP" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"pFV" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/machinery/button/door/directional/north{ - id = "xenobiotopright"; - name = "Xenobio Top right Blast Door"; - req_access = list("xenobiology") - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"pGw" = ( -/obj/structure/table, -/obj/item/pipe_dispenser{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/item/pipe_dispenser, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 5 - }, -/obj/machinery/firealarm/directional/north, -/obj/machinery/button/door/directional/east{ - id = "ordnancestorage"; - name = "Ordnance Storage Shutters"; - req_access = list("ordnance") - }, -/obj/machinery/camera/directional/east{ - c_tag = "Science - Ordnance Office"; - name = "science camera"; - network = list("ss13","rd") - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"pGx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/station/science/xenobiology) -"pGE" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"pGM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"pGP" = ( -/obj/machinery/door/airlock/engineering{ - name = "Power Access Hatch" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/cargo) -"pGS" = ( -/obj/machinery/telecomms/bus/preset_one, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"pHb" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 5 - }, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/engineering/main) -"pHh" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/geneticist, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"pHq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"pHz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "ceprivacy"; - name = "Privacy Shutter" - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/door/airlock/command{ - name = "Chief Engineer" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"pHS" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/airlock_sensor/incinerator_atmos{ - pixel_y = 24 - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"pIu" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/directional/west, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"pIz" = ( -/obj/effect/turf_decal/siding/thinplating/end, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"pID" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"pJg" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Research Maintnenace" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"pJk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/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, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"pJu" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/service/chapel/monastery) -"pJE" = ( -/obj/structure/chair/comfy/beige{ - dir = 1 - }, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"pJF" = ( -/obj/machinery/door/airlock/research{ - name = "Research and Development Lab" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rndlab1"; - name = "Research and Development Shutter"; - dir = 8 - }, -/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 = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron/white, -/area/station/science/lab) -"pJG" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"pJT" = ( -/obj/structure/sign/warning/radiation/rad_area/directional/north, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"pJW" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/structure/cable, -/obj/structure/sign/departments/holy/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 = 5 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"pKh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"pKk" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"pKl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/assembly/mousetrap/armed, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"pKn" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard) -"pKq" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/computer/accounting{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hop) -"pKr" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/mine/explored) -"pKs" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/cargo/storage) -"pKJ" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"pKL" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=4-TunnelMidDoor"; - location = "3-TunnelMid" - }, -/obj/item/reagent_containers/food/drinks/bottle/beer/almost_empty, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"pKM" = ( -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/corner, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"pKS" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/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 = "Primary Tool Storage" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"pKT" = ( -/obj/effect/turf_decal/sand/plating, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"pKZ" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"pLf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/obj/effect/turf_decal/siding/blue, -/turf/open/floor/iron/dark/telecomms, -/area/station/science/server) -"pLm" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/commons/lounge) -"pLH" = ( -/turf/closed/wall, -/area/station/engineering/engine_smes) -"pLM" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"pLO" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 6 - }, -/turf/open/floor/glass/reinforced, -/area/station/security/warden) -"pLP" = ( -/obj/structure/rack, -/obj/item/pickaxe/rusted, -/obj/effect/decal/cleanable/dirt, -/obj/item/screwdriver, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/lesser) -"pMd" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"pMk" = ( -/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, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"pMo" = ( -/obj/machinery/door/morgue{ - name = "Adult Section" - }, -/turf/open/floor/wood/parquet, -/area/station/service/library) -"pMz" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"pMA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"pMM" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"pMX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/crew_quarters/dorms) -"pNc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/commons/dorms) -"pNd" = ( -/obj/structure/table, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter{ - pixel_x = -8; - pixel_y = -4 - }, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"pNj" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/commons/fitness) -"pNk" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"pNv" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Cargo - Upper Power Hatch"; - dir = 9; - network = list("ss13","cargo") - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"pNB" = ( -/obj/structure/chair/comfy/beige, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"pNF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"pNI" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/item/storage/box/hug{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/razor{ - pixel_x = -8; - pixel_y = 3 - }, -/obj/machinery/camera{ - c_tag = "Security - Gulag Prep"; - dir = 6; - network = list("ss13","Security") - }, -/turf/open/floor/iron, -/area/station/security/brig) -"pNL" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"pNM" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"pOa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/random/structure/crate_empty, -/obj/effect/spawner/random/maintenance/three, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"pOd" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 4 - }, -/obj/structure/showcase/cyborg/old{ - pixel_y = 20 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"pOf" = ( -/obj/effect/turf_decal/trimline/red/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, -/area/station/security/checkpoint/supply) -"pOo" = ( -/obj/structure/table, -/obj/structure/cable, -/obj/item/radio/intercom/prison, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/obj/machinery/light/floor, -/turf/open/floor/iron, -/area/station/security/prison) -"pOp" = ( -/turf/closed/wall/r_wall, -/area/station/science/ordnance/office) -"pOy" = ( -/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/cable, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/right) -"pOU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/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, -/area/station/engineering/atmospherics_engine) -"pOX" = ( -/obj/effect/turf_decal/stripes, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"pPp" = ( -/obj/effect/turf_decal/trimline/neutral/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 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"pPA" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) -"pPC" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/glass, -/area/station/commons/fitness/recreation) -"pPD" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/closet/secure_closet/security/science, -/obj/item/clothing/mask/whistle, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"pPL" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/processing) -"pPV" = ( -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"pQp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"pQE" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation/entertainment) -"pRb" = ( -/obj/structure/kitchenspike, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/showroomfloor, -/area/station/service/kitchen/coldroom) -"pRq" = ( -/obj/structure/chair{ - dir = 1; - name = "Prosecution" - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"pRB" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 1 - }, -/obj/machinery/computer/security/wooden_tv{ - pixel_x = 1; - pixel_y = 6 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"pRM" = ( -/turf/closed/wall, -/area/station/cargo/sorting) -"pRS" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/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/security/execution/transfer) -"pSd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/obj/structure/ore_box, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"pSf" = ( -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/ai_monitored/command/nuke_storage) -"pSh" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/sign/warning/electric_shock/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"pSi" = ( -/obj/structure/rack, -/obj/item/pickaxe, -/obj/item/storage/bag/ore, -/obj/item/shovel, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/gloves/color/yellow/heavy, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"pSm" = ( -/obj/machinery/door/airlock{ - name = "Kitchen Access" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, -/turf/open/floor/iron, -/area/station/service/kitchen) -"pSz" = ( -/obj/effect/turf_decal/trimline/yellow/filled/warning, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"pSV" = ( -/turf/closed/wall, -/area/station/security/checkpoint/escape) -"pTd" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron, -/area/station/commons/dorms) -"pTe" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Civilian - aux_base Construction"; - dir = 9 - }, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"pTh" = ( -/turf/closed/wall, -/area/station/maintenance/department/science) -"pTp" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/structure/sign/departments/medbay/alt/directional/south, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/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/white, -/area/station/security/medical) -"pTr" = ( -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"pTD" = ( -/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/secondary/exit/departure_lounge) -"pUj" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 - }, -/obj/structure/rack, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock/oresilo) -"pUv" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"pUw" = ( -/turf/closed/wall, -/area/station/service/chapel) -"pUF" = ( -/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/explab) -"pUN" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/white, -/area/station/security/medical) -"pUP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/greater) -"pUU" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - 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/status_display/evac/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"pVd" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"pVn" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/obj/structure/cable, -/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/carpet, -/area/station/service/library) -"pVr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"pVy" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"pVA" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/fluff/tram_rail/floor, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"pVT" = ( -/obj/machinery/door/airlock/security{ - name = "Security Office" - }, -/obj/effect/turf_decal/trimline/red/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/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron, -/area/station/security/office) -"pVU" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/sign/warning/biohazard/directional/east, -/obj/structure/window/reinforced/spawner, -/turf/open/floor/catwalk_floor, -/area/station/command/gateway) -"pVW" = ( -/obj/structure/table/glass, -/obj/item/crowbar, -/obj/item/hatchet, -/obj/item/plant_analyzer, -/obj/item/cultivator, -/obj/item/reagent_containers/glass/watering_can, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"pWg" = ( -/obj/structure/table/wood, -/obj/item/gun/ballistic/shotgun/doublebarrel, -/obj/item/reagent_containers/food/drinks/shaker, -/turf/open/floor/wood, -/area/station/service/bar) -"pWi" = ( -/obj/machinery/hydroponics/constructable, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"pWm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/obj/structure/bed/dogbed{ - desc = "A comfy-looking cat bed. You can even strap your pet in, in case the gravity turns off."; - name = "cat bed" - }, -/mob/living/simple_animal/pet/cat/jerry, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"pWp" = ( -/obj/structure/closet/crate, -/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/item/food/meat/rawcutlet/plain, -/obj/item/food/meat/rawcutlet/plain, -/obj/item/food/meat/rawcutlet/plain, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"pWt" = ( -/obj/effect/turf_decal/trimline/neutral/filled/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/sorting/mail/flip{ - dir = 8; - name = "sorting disposal pipe (Medical Wing)"; - sortTypes = list(9,10,11,27) - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"pWC" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/iron/stairs/medium, -/area/station/commons/dorms) -"pWM" = ( -/obj/effect/turf_decal/tile{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Arrivals - Landing Bay Fore" - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"pWW" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"pWZ" = ( -/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, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"pXh" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/structure/reagent_dispensers/wall/peppertank/directional/west, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"pXi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"pXn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"pXv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"pXw" = ( -/obj/machinery/door/airlock/security{ - name = "Detective's Office" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/detective, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"pXJ" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/storage/pill_bottle/mannitol, -/obj/item/reagent_containers/dropper{ - pixel_y = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron/dark, -/area/station/medical/treatment_center) -"pXS" = ( -/obj/structure/window/reinforced/plasma{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/structure/cable, -/obj/machinery/power/energy_accumulator/tesla_coil/anchored, -/turf/open/floor/engine, -/area/station/engineering/supermatter) -"pXT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"pYu" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing/corner, -/obj/machinery/light/small/directional/east, -/turf/open/space/basic, -/area/space/nearstation) -"pYH" = ( -/obj/structure/bed{ - dir = 4 - }, -/obj/item/bedsheet/brown{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/cargo/miningdock) -"pYP" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/rods/fifty, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"pYW" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Cargo - Bank Vault"; - dir = 6; - network = list("ss13","cargo") - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock/oresilo) -"pZn" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) -"pZr" = ( -/mob/living/simple_animal/mouse/brown/tom, -/turf/open/misc/asteroid, -/area/station/security/prison/workout) -"pZu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad/secure, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"pZv" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/obj/machinery/vending/cigarette, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"pZU" = ( -/obj/structure/rack, -/obj/item/clothing/under/color/blue, -/obj/item/clothing/under/color/blue, -/obj/item/clothing/under/color/blue, -/obj/item/clothing/head/soft/blue, -/obj/item/clothing/head/soft/blue, -/obj/item/clothing/head/soft/blue, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/commons/fitness/recreation/entertainment) -"pZW" = ( -/turf/closed/wall, -/area/station/maintenance/port/central) -"pZY" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"qak" = ( -/obj/machinery/light/warm/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"qal" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/sofa/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock/cafeteria) -"qar" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"qaJ" = ( -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab" - }, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/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/heavy, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance_storage, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"qaL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/checkpoint/engineering) -"qaO" = ( -/turf/open/misc/asteroid, -/area/station/medical/chemistry) -"qaV" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"qaX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/crew_quarters/dorms) -"qbu" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"qbJ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"qbM" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"qbW" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"qca" = ( -/obj/effect/spawner/random/trash/food_packaging, -/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/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/security) -"qcw" = ( -/obj/machinery/computer/station_alert{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"qcE" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Civilian - Restroom North" - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"qcF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"qcJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light_switch/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"qcP" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/station/ai_monitored/turret_protected/aisat_interior) -"qcQ" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"qdj" = ( -/turf/closed/wall/r_wall, -/area/station/science/breakroom) -"qdl" = ( -/turf/open/floor/engine, -/area/station/science/xenobiology) -"qdr" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/item/storage/medkit/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/medkit/regular, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/white, -/area/station/security/medical) -"qdB" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/lounge) -"qdK" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"qdL" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Control Room" - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/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/any/command/general, -/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"qdQ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/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/fitness/recreation) -"qdY" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 10 - }, -/turf/open/floor/glass/reinforced, -/area/station/security/brig) -"qea" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"qec" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"qek" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"qeo" = ( -/obj/machinery/door/airlock/research/glass/incinerator/ordmix_interior{ - name = "Burn Chamber Interior Airlock" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_ordmix{ - pixel_y = 32 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/engine, -/area/station/science/ordnance/burnchamber) -"qeD" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Arrivals Dock Maintenance Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/iron/smooth, -/area/station/maintenance/port/aft) -"qeE" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/reagent_dispensers/wall/peppertank/directional/east, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"qeL" = ( -/obj/effect/turf_decal/trimline/neutral/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 = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"qeP" = ( -/obj/structure/table, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"qeQ" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 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, -/area/station/security/brig) -"qeZ" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"qfh" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"qfj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/wood, -/area/station/commons/dorms) -"qfk" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison/work) -"qfC" = ( -/obj/structure/rack, -/obj/item/extinguisher, -/obj/item/chair/plastic, -/obj/item/chair/plastic{ - pixel_y = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"qfK" = ( -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"qfM" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/pen, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"qfO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"qfP" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"qfU" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"qgd" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_y = 4 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/carpet, -/area/station/medical/psychology) -"qgh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/mid) -"qgo" = ( -/obj/machinery/light/directional/north, -/turf/open/openspace, -/area/station/hallway/primary/tram/right) -"qgq" = ( -/obj/machinery/computer/department_orders/science{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"qgs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"qgt" = ( -/turf/closed/wall/rock/porous, -/area/station/medical/chemistry) -"qgx" = ( -/obj/machinery/biogenerator, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Civilian - Public Garden" - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"qgz" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"qgB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"qgP" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/entertainment/directional/east, -/turf/open/floor/iron, -/area/station/commons/dorms) -"qgQ" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/shower{ - dir = 4; - pixel_x = 6 - }, -/obj/item/soap/nanotrasen, -/obj/structure/cable, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"qgR" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"qgT" = ( -/obj/item/kirbyplants/random, -/obj/structure/sign/warning/fire/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/science/ordnance/storage) -"qha" = ( -/obj/machinery/door/poddoor/incinerator_atmos_aux, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"qhb" = ( -/obj/structure/cable/layer1, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"qhe" = ( -/obj/machinery/door/airlock{ - id_tag = "private_R"; - name = "Private Quarters R" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"qhn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/engineering{ - name = "Power Access Hatch" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) -"qhG" = ( -/obj/structure/chair/sofa/bench/left, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/secondary/entry) -"qhJ" = ( -/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, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"qhL" = ( -/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) -"qhN" = ( -/obj/structure/railing{ - dir = 5 - }, -/turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"qhW" = ( -/obj/effect/turf_decal/siding/thinplating{ - 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/door/firedoor/border_only{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/dorms) -"qif" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"qig" = ( -/turf/closed/wall, -/area/station/science/breakroom) -"qik" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"qiw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"qiI" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"qiL" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/greater) -"qiN" = ( -/obj/structure/chair/comfy/brown{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"qjf" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - 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/hallway/primary/tram/center) -"qjw" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/requests_console/directional/north{ - announcementConsole = 1; - department = "Head of Security's Desk"; - departmentType = 5; - name = "Head of Security's Requests Console" - }, -/obj/machinery/camera{ - c_tag = "Security - Head of Security's Office"; - dir = 9; - network = list("ss13","Security") - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hos) -"qjG" = ( -/obj/machinery/hydroponics/soil, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 10 - }, -/obj/item/plant_analyzer, -/turf/open/floor/iron/dark, -/area/station/security/prison/garden) -"qjJ" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/secure_closet/atmospherics, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"qjU" = ( -/turf/closed/wall, -/area/station/maintenance/tram/mid) -"qjW" = ( -/obj/machinery/computer/cargo/request{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"qkh" = ( -/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/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"qki" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/structure/cable/layer3, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"qkj" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_cw{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Hallway - Starboard Tram Platform North"; - dir = 10 - }, -/obj/effect/turf_decal/caution{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"qkr" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Security - Main West"; - network = list("ss13","Security") - }, -/turf/open/openspace, -/area/station/security/brig) -"qkA" = ( -/obj/structure/table, -/obj/machinery/light/small/directional/west, -/obj/item/radio/intercom/prison/directional/north, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"qkH" = ( -/obj/structure/rack, -/obj/item/stack/sheet/iron/ten, -/obj/item/stack/rods/ten, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"qkP" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/closet/secure_closet/freezer/cream_pie, -/turf/open/floor/iron, -/area/station/service/theater) -"qkS" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"qkV" = ( -/obj/machinery/bluespace_beacon, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"qla" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"qld" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/station/commons/lounge) -"qlm" = ( -/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/door/airlock/maintenance_hatch, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) -"qlx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"qlB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille, -/obj/effect/spawner/random/structure/barricade, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/greater) -"qlG" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"qlX" = ( -/obj/effect/spawner/random/trash/garbage, -/turf/open/misc/asteroid, -/area/mine/explored) -"qmf" = ( -/obj/structure/ore_box, -/turf/open/misc/asteroid/airless, -/area/mine/explored) -"qmi" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/structure/cable/layer3, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"qmp" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"qmt" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/common/cryopods) -"qmB" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"qmE" = ( -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"qnl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/door/airlock/hatch{ - name = "Tram Maintenance Dock" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/central) -"qnt" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"qnD" = ( -/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, -/area/station/hallway/secondary/command) -"qnW" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/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/hallway/secondary/command) -"qoK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/duct, -/turf/open/floor/wood, -/area/station/service/bar) -"qoX" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"qoZ" = ( -/obj/structure/disposalpipe/trunk/multiz{ - dir = 1 - }, -/obj/machinery/door/window/left/directional/north{ - dir = 2; - name = "Containment Pen #2"; - req_access = list("xenobiology") - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiotopleft"; - name = "Xenobio Topleft Pen Blast Door" - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"qpa" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood/large, -/area/station/service/library) -"qpc" = ( -/obj/machinery/button/door/directional/west{ - id = "private_m"; - name = "Privacy Bolts"; - normaldoorcontrol = 1; - pixel_y = -9; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/commons/dorms) -"qpj" = ( -/obj/structure/chair/stool/bar/directional/east, -/obj/effect/landmark/start/prisoner, -/turf/open/floor/iron, -/area/station/security/prison) -"qpp" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"qpu" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"qpx" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/light/directional/west, -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - Material Storage"; - dir = 10; - network = list("ss13","engineering") - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"qpF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/button/door/directional/east{ - id = "miningdorm3"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/carpet, -/area/station/cargo/miningdock) -"qpG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/cargo/storage) -"qpL" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"qpY" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/structure/filingcabinet, -/obj/machinery/camera{ - c_tag = "Civilian - Vacant Office"; - dir = 9 - }, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"qpZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/tram/mid) -"qqc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"qqi" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/commons/fitness/recreation) -"qqn" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/machinery/camera{ - c_tag = "Security - Prison Main South-East"; - dir = 6; - network = list("ss13","Security","prison") - }, -/turf/open/floor/iron, -/area/station/security/prison) -"qqp" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/smooth, -/area/station/hallway/primary/tram/center) -"qqx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"qrg" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"qrk" = ( -/obj/structure/chair/sofa/corner{ - dir = 1 - }, -/obj/structure/railing, -/obj/machinery/light/directional/west, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"qro" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"qrp" = ( -/obj/machinery/power/port_gen/pacman, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"qrr" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Secure - Telecomms Server Room"; - dir = 9 - }, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"qrL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"qrR" = ( -/obj/machinery/chem_heater/withbuffer, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"qrW" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"qse" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/cigbutt, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"qsg" = ( -/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 = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload_foyer) -"qsh" = ( -/obj/machinery/air_sensor/mix_tank, -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"qsu" = ( -/obj/machinery/rnd/experimentor, -/turf/open/floor/engine, -/area/station/science/explab) -"qsy" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"qsI" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, -/obj/structure/fireaxecabinet/directional/north, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"qsM" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Air to Port" - }, -/obj/machinery/light/directional/west, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"qsR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/dorms) -"qth" = ( -/obj/structure/chair/sofa/right, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"qtp" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/security/armory) -"qtr" = ( -/obj/structure/ladder, -/obj/effect/turf_decal/sand/plating, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/station/maintenance/department/security) -"qtu" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/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, -/area/station/science/robotics/lab) -"qtw" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/security/telescreen{ - dir = 1; - name = "Test Chamber Monitor"; - network = list("xeno"); - pixel_y = 2 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"qtF" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"qtJ" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/graffiti{ - pixel_y = 32; - spawn_loot_chance = 50 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"qtN" = ( -/obj/structure/bodycontainer/morgue, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"qun" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/wood/parquet, -/area/station/medical/psychology) -"quv" = ( -/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/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"quB" = ( -/obj/machinery/telecomms/server/presets/medical, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"quG" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"quM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light_switch/directional/north{ - pixel_x = 12 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"quR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/table/optable{ - desc = "A cold, hard place for your final rest."; - name = "Morgue Slab" - }, -/obj/machinery/light_switch/directional/west{ - pixel_y = -8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"qvb" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/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, -/area/station/commons/dorms) -"qvE" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/green/corner, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"qvL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing, -/turf/open/floor/plating, -/area/station/maintenance/tram/mid) -"qvM" = ( -/obj/structure/table/wood, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"qvS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/door/airlock/medical/glass{ - name = "Chemistry" - }, -/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/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/medical/pharmacy, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"qwe" = ( -/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/white, -/area/station/service/kitchen) -"qwr" = ( -/obj/machinery/door/airlock/external, -/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/supermatter/room) -"qws" = ( -/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, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"qwy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/iron, -/area/station/security/processing) -"qwF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) -"qwJ" = ( -/obj/structure/fluff/tram_rail/floor{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/tram/right) -"qwU" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 6 - }, -/obj/structure/rack, -/obj/item/storage/bag/money, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock/oresilo) -"qxm" = ( -/turf/closed/wall, -/area/station/maintenance/starboard/central) -"qxt" = ( -/turf/open/floor/plating, -/area/space) -"qxu" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"qxG" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"qxS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/security/brig) -"qxT" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/security/office) -"qxZ" = ( -/obj/structure/chair/office, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"qya" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/lesser) -"qyf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"qyg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"qyA" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/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, -/turf/open/floor/iron/white, -/area/station/science/research) -"qyJ" = ( -/obj/effect/turf_decal/siding/wood/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"qyM" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/commons/dorms) -"qyP" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/turf/open/floor/iron, -/area/station/engineering/main) -"qyU" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/head_of_personnel, -/obj/machinery/light/directional/north, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hop) -"qzf" = ( -/obj/machinery/button/door/directional/east{ - id = "ceprivacy"; - name = "Privacy Shutters Control" - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"qzn" = ( -/obj/machinery/vending/wardrobe/curator_wardrobe, -/turf/open/floor/engine/cult, -/area/station/service/library) -"qzq" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/trimline/green/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"qzu" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"qzD" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/suit/radiation, -/obj/item/clothing/head/radiation, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"qzP" = ( -/obj/item/radio/intercom/directional/south, -/obj/structure/bed/dogbed/renault, -/mob/living/simple_animal/pet/fox/renault, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"qzS" = ( -/obj/machinery/computer/station_alert, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"qAf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 8 - }, -/obj/structure/railing, -/turf/open/floor/plating, -/area/station/maintenance/tram/mid) -"qAg" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/structure/bodycontainer/morgue, -/turf/open/floor/iron/dark, -/area/station/security/medical) -"qAk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"qAm" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchencounter"; - name = "Kitchen Counter Shutters" - }, -/obj/structure/desk_bell{ - pixel_x = -7 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"qAy" = ( -/obj/structure/weightmachine/stacklifter, -/obj/effect/turf_decal/sand, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"qAB" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor/left/directional/west{ - name = "Security Front Desk"; - req_access = list("security") - }, -/obj/machinery/door/window/right/directional/east, -/turf/open/floor/iron, -/area/station/security/brig) -"qAW" = ( -/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, -/area/station/hallway/secondary/entry) -"qAY" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/machinery/light/directional/east, -/obj/machinery/computer/atmos_control/ordnancemix{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"qBe" = ( -/obj/item/radio/intercom/directional/west{ - freerange = 1; - listening = 0; - name = "Common Channel"; - pixel_y = -8 - }, -/obj/item/radio/intercom/directional/south{ - freerange = 1; - frequency = 1447; - listening = 0; - name = "Private Channel" - }, -/obj/item/radio/intercom/directional/east{ - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_y = -8 - }, -/obj/effect/landmark/start/ai, -/obj/machinery/button/door/directional/south{ - id = "AI Core shutters"; - name = "AI Core Shutters Control"; - pixel_x = 24; - req_access = list("ai_upload") - }, -/obj/structure/cable, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai) -"qBg" = ( -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"qBi" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"qBl" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/machinery/airalarm/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Secure - AI Antechamber North"; - network = list("ss13","minisat") - }, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) -"qBE" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/right) -"qBG" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"qBM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/mob/living/simple_animal/bot/cleanbot, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"qBQ" = ( -/obj/structure/table, -/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, -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"qBS" = ( -/obj/docking_port/stationary/random{ - dir = 8; - id = "pod_lavaland"; - name = "lavaland" - }, -/turf/open/space/openspace, -/area/space) -"qCe" = ( -/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 = 5 - }, -/turf/open/floor/carpet, -/area/station/service/library) -"qCo" = ( -/turf/closed/wall, -/area/station/commons/storage/primary) -"qCx" = ( -/obj/machinery/firealarm/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"qCQ" = ( -/obj/effect/turf_decal/trimline/neutral/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{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"qCS" = ( -/obj/machinery/modular_computer/console/preset/engineering{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/item/radio/intercom/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"qCU" = ( -/obj/machinery/power/smes, -/obj/structure/sign/warning/electric_shock/directional/west, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard) -"qDe" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/lounge) -"qDh" = ( -/obj/effect/turf_decal/sand/plating, -/obj/machinery/power/tracker, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/station/solars/starboard) -"qDk" = ( -/obj/effect/turf_decal/caution/stand_clear, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/poddoor/shutters{ - id = "cargowarehouse"; - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"qDp" = ( -/obj/structure/filingcabinet, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron, -/area/station/cargo/qm) -"qDz" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/pen, -/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/security/office) -"qDK" = ( -/obj/machinery/door/airlock/hatch{ - name = "Ladder Access Hatch" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/hallway/primary/tram/right) -"qDR" = ( -/obj/item/pickaxe/rusted, -/turf/open/misc/asteroid/airless, -/area/mine/explored) -"qEd" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"qEh" = ( -/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 = 5 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"qEp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"qEv" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 9 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"qEF" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"qEL" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/engine/cult, -/area/station/service/library) -"qEU" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"qEW" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/plasteel{ - amount = 15 - }, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"qFi" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/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, -/turf/open/floor/iron, -/area/station/science/research) -"qFo" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/south, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"qFr" = ( -/obj/machinery/light/dim/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/duct, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"qFB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/grass, -/area/station/medical/virology) -"qFG" = ( -/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/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"qFK" = ( -/obj/machinery/telecomms/processor/preset_four, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"qFX" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"qGc" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"qGr" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/item/clothing/suit/hooded/wintercoat/engineering, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/engineering/main) -"qGu" = ( -/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/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"qGC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/obj/item/crowbar, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/maintenance/port/central) -"qGE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"qGP" = ( -/obj/machinery/light/directional/north, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/secondary/entry) -"qGS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"qGX" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"qGY" = ( -/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, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"qHa" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/south, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"qHe" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"qHl" = ( -/obj/machinery/door/airlock/research{ - name = "Cytology Access" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cytologylockdown"; - name = "Cytology Lockdown"; - dir = 8 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"qHq" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/newscaster/directional/south, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"qHs" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter/room) -"qHw" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"qHD" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"qHH" = ( -/obj/machinery/door/airlock/hatch{ - name = "Ladder Access Hatch" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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, -/area/station/hallway/primary/tram/center) -"qHM" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/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, -/area/station/cargo/storage) -"qHV" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation/entertainment) -"qHY" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/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, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/commons/dorms) -"qIf" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/machinery/computer/crew, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"qIh" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"qIo" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"qIA" = ( -/obj/structure/barricade/wooden, -/turf/open/misc/asteroid/airless, -/area/mine/explored) -"qIC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"qIG" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/stripes/asteroid/end, -/turf/open/floor/plating/airless, -/area/mine/explored) -"qIM" = ( -/obj/vehicle/ridden/wheelchair, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"qIO" = ( -/obj/machinery/door/airlock/atmos{ - name = "Turbine Access" - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"qIT" = ( -/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/fitness/recreation) -"qJd" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"qJl" = ( -/obj/structure/chair{ - dir = 4; - name = "Judge" - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/camera{ - c_tag = "Civilian - Courtroom"; - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/security/courtroom) -"qJn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"qJo" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/science/research) -"qJy" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"qJz" = ( -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/structure/table, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"qJC" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters{ - id = "commissarydoor"; - name = "Vacant Commissary Shutters"; - dir = 8 - }, -/turf/open/floor/plating, -/area/station/commons/vacant_room/commissary) -"qJE" = ( -/obj/structure/disposalpipe/trunk/multiz{ - dir = 2 - }, -/obj/machinery/door/window/left/directional/north{ - base_state = "right"; - icon_state = "right"; - name = "Containment Pen #7"; - req_access = list("xenobiology") - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiobottomright"; - name = "Xenobio Bottom Right Pen Blast Door" - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"qJL" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"qJM" = ( -/obj/structure/chair, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"qJX" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"qKm" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) -"qKt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"qKy" = ( -/obj/machinery/nuclearbomb/selfdestruct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) -"qKC" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"qKT" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Hallway - Central Escape Wing Entry"; - dir = 10 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"qKW" = ( -/obj/structure/chair/comfy/beige{ - dir = 8 - }, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"qLc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/machinery/door/poddoor/preopen{ - id = "ceprivacy"; - name = "Privacy Shutter" - }, -/turf/open/floor/plating, -/area/station/command/heads_quarters/ce) -"qLp" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot{ - 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, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"qLx" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"qLH" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/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, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"qLR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/central) -"qLX" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/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, -/area/station/hallway/secondary/service) -"qMx" = ( -/turf/closed/wall, -/area/service/salon) -"qMR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/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, -/area/station/cargo/warehouse) -"qMS" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"qMT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/center) -"qNd" = ( -/obj/machinery/button/door/directional/west{ - id = "private_i"; - name = "Privacy Bolts"; - normaldoorcontrol = 1; - pixel_y = -9; - specialfunctions = 4 - }, -/obj/structure/chair/stool/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/dorms) -"qNo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/central) -"qNx" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation/entertainment) -"qNz" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/plating, -/area/station/command/bridge) -"qNI" = ( -/turf/closed/wall, -/area/station/medical/medbay/central) -"qNN" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"qOe" = ( -/obj/structure/chair/pew/right, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/chapel{ - dir = 4 - }, -/area/station/service/chapel) -"qOf" = ( -/obj/structure/chair/plastic{ - dir = 1 - }, -/turf/open/floor/eighties/red, -/area/station/commons/fitness/recreation/entertainment) -"qOv" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"qOw" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/obj/structure/closet/secure_closet/chemical, -/obj/machinery/airalarm/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"qOF" = ( -/turf/closed/wall, -/area/station/commons/dorms/laundry) -"qOJ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/bluespace_vendor/directional/east, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"qOT" = ( -/obj/structure/sign/warning/vacuum/external/directional/west, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"qOX" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"qPa" = ( -/turf/closed/wall/rust, -/area/station/maintenance/port/fore) -"qPw" = ( -/obj/machinery/power/emitter/welded{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/engineering/supermatter/room) -"qPE" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"qPG" = ( -/obj/machinery/telecomms/bus/preset_three, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"qQf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/commons/dorms) -"qQq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/tram/left) -"qQC" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/fitness) -"qQD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"qQN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"qQX" = ( -/obj/structure/fluff/tram_rail/end{ - dir = 1 - }, -/turf/open/openspace, -/area/station/hallway/primary/tram/right) -"qQZ" = ( -/turf/open/floor/iron/white, -/area/station/medical/virology) -"qRg" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"qRk" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/asteroid/corner, -/turf/open/floor/plating/airless, -/area/mine/explored) -"qRn" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/left/directional/west{ - name = "Armoury Desk"; - req_access = list("armory") - }, -/obj/machinery/door/window/left/directional/east{ - name = "Armoury Desk"; - req_access = list("security") - }, -/turf/open/floor/plating, -/area/station/ai_monitored/security/armory) -"qRq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/effect/turf_decal/trimline/yellow/corner, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"qRA" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"qRK" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"qRT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"qSg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"qSm" = ( -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"qSq" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"qSs" = ( -/obj/structure/stairs/north, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/iron/stairs/medium, -/area/station/commons/dorms) -"qSD" = ( -/obj/structure/chair, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"qSE" = ( -/obj/structure/table, -/obj/machinery/computer/security/telescreen/interrogation, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"qSH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=3-TunnelMid"; - location = "2-TunnelLeftDoor" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/tram/mid) -"qSM" = ( -/obj/structure/holohoop{ - dir = 8 - }, -/turf/open/misc/asteroid, -/area/station/security/prison/workout) -"qSP" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 5 - }, -/obj/structure/table/glass, -/obj/machinery/requests_console/directional/east{ - department = "Virology"; - name = "Virology Requests Console"; - receive_ore_updates = 1 - }, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/box/syringes, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"qSS" = ( -/turf/closed/wall/r_wall, -/area/station/science/cytology) -"qTq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"qTE" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/ordnance_burn_chamber_input{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/station/science/ordnance/burnchamber) -"qTI" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - Emitter Room West"; - dir = 10; - network = list("ss13","engine","engineering") - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"qTL" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"qTR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/carbon_output{ - dir = 8 - }, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"qUt" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/computer/slot_machine, -/obj/structure/sign/painting/library{ - pixel_x = -32 - }, -/turf/open/floor/iron, -/area/station/commons/lounge) -"qUA" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/item/paper_bin, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"qUB" = ( -/turf/closed/wall, -/area/station/hallway/secondary/exit) -"qUF" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Civilian - Dormitories North-East" - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"qUJ" = ( -/obj/structure/lattice/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/tram/mid) -"qUT" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"qUV" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"qUX" = ( -/obj/effect/spawner/random/structure/table, -/obj/item/paper/pamphlet/radstorm, -/obj/item/paper/pamphlet/radstorm, -/obj/item/paper/pamphlet/radstorm, -/turf/open/floor/iron/dark, -/area/station/maintenance/radshelter/civil) -"qVb" = ( -/obj/machinery/iv_drip, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"qVo" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron, -/area/station/security/prison) -"qVu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door_buttons/airlock_controller{ - idExterior = "middleleft_lower_eva_external"; - idInterior = "middleleft_lower_eva_internal"; - idSelf = "middleleft_lower_eva_airlock_control"; - name = "External Access Console"; - pixel_y = -24 - }, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/center) -"qVA" = ( -/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/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"qVN" = ( -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"qVO" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/structure/sign/departments/psychology/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"qVT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/left) -"qWn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/mid) -"qWu" = ( -/obj/effect/spawner/random/trash/garbage, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/lesser) -"qWA" = ( -/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/cyan/visible, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"qWE" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/engineering/main) -"qWK" = ( -/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/white, -/area/station/medical/medbay/central) -"qWU" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"qWY" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/structure/fluff/tram_rail/floor, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/tram/left) -"qXj" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Tunnel Access" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) -"qXA" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"qXD" = ( -/obj/structure/cable, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/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/security/prison/safe) -"qXO" = ( -/obj/structure/cable/multilayer/multiz, -/obj/structure/sign/warning/electric_shock/directional/east, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/hallway/primary/tram/left) -"qXS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"qXX" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation/entertainment) -"qYa" = ( -/obj/structure/table, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/rods/fifty, -/obj/item/stack/rods/fifty, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"qYq" = ( -/obj/machinery/door/airlock/research{ - name = "Ordnance Testing Lab" - }, -/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/heavy, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"qYu" = ( -/obj/effect/turf_decal/trimline/white/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"qYx" = ( -/obj/machinery/door/airlock{ - id_tag = "Toilet5"; - name = "Unit 5" - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"qYQ" = ( -/obj/machinery/computer/message_monitor{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"qYW" = ( -/obj/effect/turf_decal/trimline/brown/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, -/area/station/cargo/miningdock) -"qYZ" = ( -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"qZa" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron, -/area/service/salon) -"qZw" = ( -/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, -/obj/structure/cable, -/obj/structure/disposalpipe/junction/yjunction, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"qZJ" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"qZT" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/lounge) -"rag" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/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) -"ram" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"raw" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters" - }, -/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 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/command/captain, -/turf/open/floor/iron, -/area/station/command/heads_quarters/captain) -"raJ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"raM" = ( -/obj/machinery/light/directional/west, -/turf/open/floor/iron/smooth, -/area/station/command/gateway) -"rbj" = ( -/obj/structure/chair/office, -/obj/effect/turf_decal/trimline/brown/filled/corner, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"rbn" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron/white, -/area/station/science/lab) -"rbt" = ( -/obj/effect/turf_decal/trimline/yellow/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, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"rbv" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit) -"rbC" = ( -/obj/machinery/suit_storage_unit/cmo, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"rbH" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/turf_decal/box, -/obj/structure/fluff{ - desc = "What, you think the water just magically soaks into the metallic flooring?"; - icon = 'icons/obj/lavaland/survival_pod.dmi'; - icon_state = "fan_tiny"; - name = "shower drain" - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"rbM" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/turf/open/floor/iron, -/area/station/cargo/miningdock/cafeteria) -"rbP" = ( -/turf/closed/wall, -/area/station/security/execution/education) -"rcf" = ( -/obj/structure/sign/warning/vacuum/directional/south, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/center) -"rch" = ( -/obj/machinery/door/airlock/external{ - name = "Construction Zone" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/station/construction/mining/aux_base) -"rci" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/rack, -/obj/item/pickaxe{ - pixel_x = 5 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"rck" = ( -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"rcD" = ( -/obj/structure/chair/comfy/brown, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/carpet, -/area/station/medical/psychology) -"rcI" = ( -/obj/machinery/blackbox_recorder, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"rcR" = ( -/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, -/area/station/security/checkpoint/science) -"rde" = ( -/obj/effect/turf_decal/trimline/neutral/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/hallway/secondary/exit) -"rdg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/sorting/mail{ - name = "sorting disposal pipe (Research)"; - sortType = 12 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"rdk" = ( -/obj/machinery/door/airlock{ - id_tag = "Toilet6"; - name = "Unit 6" - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"rdm" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/command/heads_quarters/rd) -"rdn" = ( -/obj/effect/turf_decal/trimline/brown/filled/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/cargo/miningdock) -"rdr" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 5 - }, -/obj/machinery/light/directional/north, -/obj/structure/reagent_dispensers/watertank/high, -/obj/item/reagent_containers/glass/watering_can, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"rdO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"rdZ" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/chaplain, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"reU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/south{ - c_tag = "Hallway - Lower East Power Hatch" - }, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/right) -"rfk" = ( -/obj/machinery/computer/operating, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"rfl" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/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) -"rfq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"rfC" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/trimline/white/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"rfI" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"rfJ" = ( -/obj/structure/chair{ - name = "Defense" - }, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"rfQ" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"rfT" = ( -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"rgg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"rgx" = ( -/obj/effect/landmark/navigate_destination/engineering, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/modular_computer/console/preset/cargochat/engineering{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/effect/turf_decal/trimline/yellow/filled/warning, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"rgD" = ( -/obj/structure/cable, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai) -"rgI" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/medical/treatment_center) -"rhi" = ( -/turf/open/floor/iron/stairs/medium{ - dir = 1 - }, -/area/station/science/lower) -"rhl" = ( -/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, -/obj/machinery/light/directional/south, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/security/brig) -"rhx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"rhP" = ( -/obj/machinery/plate_press, -/turf/open/floor/iron, -/area/station/security/prison/work) -"rhR" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/sofa/corp/right{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/lounge) -"rhT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - 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, -/area/station/engineering/main) -"rib" = ( -/obj/structure/fluff/tram_rail/anchor{ - dir = 1 - }, -/turf/open/openspace, -/area/station/hallway/primary/tram/left) -"rih" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/cargo_technician, -/obj/structure/chair/office{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/office) -"ril" = ( -/obj/structure/table, -/obj/item/storage/box/gloves{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/storage/box/masks{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"riv" = ( -/obj/machinery/door/airlock/external, -/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/supermatter/room) -"riK" = ( -/obj/modular_map_root/tramstation{ - key = "maintenance_lowarrivals" - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"riS" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Escape Wing" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"rju" = ( -/obj/structure/table, -/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, -/obj/item/storage/box/lights/mixed, -/obj/item/stack/cable_coil, -/obj/item/stock_parts/cell/emproof, -/obj/item/stock_parts/cell/emproof, -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - SMES Misc"; - dir = 10; - network = list("ss13","engineering") - }, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"rkd" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/item/healthanalyzer, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"rke" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/white, -/area/station/security/execution/education) -"rkf" = ( -/obj/structure/chair/comfy/brown, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"rkp" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"rks" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/medical/medbay/lobby) -"rky" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"rkE" = ( -/obj/machinery/light/small/directional/north, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"rkH" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"rkI" = ( -/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/trimline/purple/filled/corner, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"rkP" = ( -/obj/machinery/hydroponics/soil, -/obj/effect/turf_decal/trimline/green/filled/line, -/turf/open/floor/iron/dark, -/area/station/security/prison/garden) -"rll" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/tram/left) -"rln" = ( -/obj/machinery/suit_storage_unit/security, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"rls" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/effect/turf_decal/trimline/neutral/filled/warning, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"rlu" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/item/assembly/igniter, -/obj/item/assembly/timer{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"rlJ" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"rlU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"rlW" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/obj/structure/sign/warning/rad_shelter/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"rlX" = ( -/obj/machinery/door/airlock{ - id_tag = "Toilet4"; - name = "Unit 4" - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"rmf" = ( -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"rmm" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"rmB" = ( -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/hos) -"rmJ" = ( -/obj/machinery/telecomms/broadcaster/preset_left, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"rmN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/tram/mid) -"rmP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/candle, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/central) -"rnc" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/stamp/captain, -/obj/machinery/door/window{ - base_state = "right"; - icon_state = "right"; - name = "Captain's Desk"; - req_access = list("captain") - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"rnh" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"rnn" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/commons/dorms) -"rnA" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/structure/cable/layer1, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"rnD" = ( -/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/carpet, -/area/station/commons/dorms) -"rnK" = ( -/obj/structure/bookcase{ - name = "Forbidden Knowledge" - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/engine/cult, -/area/station/service/library) -"rnS" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"rnU" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/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, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"rnY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos/pumproom) -"roj" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/door/window/right/directional/south{ - dir = 8; - name = "Bar Door"; - req_one_access = list("bar","kitchen") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera{ - c_tag = "Civilian - Bar North"; - dir = 9 - }, -/obj/machinery/firealarm/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/service/bar) -"ron" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 8 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Secure - AI Minisat Teleporter"; - network = list("ss13","minisat") - }, -/obj/machinery/button/door/directional/south{ - id = "teledoor"; - name = "MiniSat Shutter Control"; - pixel_x = 8; - req_one_access = list("teleporter","minisat") - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"roB" = ( -/turf/closed/wall/r_wall, -/area/station/security/checkpoint/engineering) -"roH" = ( -/obj/item/toy/plush/space_lizard_plushie{ - name = "Bold-And-Brash" - }, -/turf/open/misc/asteroid/airless, -/area/mine/explored) -"roT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/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, -/area/station/hallway/primary/tram/left) -"roV" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/secondary/entry) -"rpi" = ( -/turf/open/floor/plating, -/area/station/maintenance/department/science) -"rpu" = ( -/obj/machinery/door/firedoor, -/obj/structure/railing/corner, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"rpI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"rpP" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/structure/closet/l3closet/virology, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"rpT" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"rpW" = ( -/obj/machinery/door/airlock/security{ - id_tag = "laborexit"; - name = "Labor Shuttle" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/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/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron, -/area/station/security/brig) -"rqi" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - dir = 8; - pixel_y = 2 - }, -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) -"rqp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"rqG" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/structure/railing/corner, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/caution{ - dir = 1 - }, -/obj/machinery/crossing_signal/southeast, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"rqZ" = ( -/obj/effect/turf_decal/sand/plating, -/obj/machinery/door/poddoor/shutters{ - id = "hiddendock"; - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"rrc" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"rrk" = ( -/turf/closed/wall/r_wall, -/area/station/security/interrogation) -"rrp" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"rrr" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"rrv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"rrE" = ( -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/machinery/vending/drugs, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"rrM" = ( -/obj/machinery/photocopier{ - pixel_y = 3 - }, -/turf/open/floor/wood/large, -/area/station/service/library) -"rrO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "ordnancestorage"; - name = "Ordnance Storage Shutters"; - dir = 8 - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plating, -/area/station/science/ordnance/office) -"rrT" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"rsd" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/structure/sign/warning/secure_area/directional/south, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"rsg" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-left" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "Bridge Blast Door" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"rsw" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/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) -"rsz" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"rsA" = ( -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"rsU" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = -2 - }, -/obj/structure/mirror/directional/west, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"rsX" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 5 - }, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/lesser) -"rsY" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 10 - }, -/obj/item/kirbyplants/random, -/obj/effect/landmark/start/hangover, -/obj/machinery/camera/directional/south{ - c_tag = "Civilian - Bar West" - }, -/turf/open/floor/iron/dark, -/area/station/commons/lounge) -"rte" = ( -/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/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron, -/area/station/security/processing) -"rtn" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"rtp" = ( -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation/entertainment) -"rtt" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"rtD" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/security_all, -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"rtK" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/plaque/static_plaque/golden{ - pixel_x = 32 - }, -/turf/open/floor/iron, -/area/station/security/office) -"rtL" = ( -/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/white, -/area/station/medical/treatment_center) -"rtP" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"run" = ( -/turf/closed/wall/r_wall, -/area/station/security/medical) -"ruA" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/station/security/brig) -"ruC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/right) -"ruE" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/security/prison) -"ruI" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/station/holodeck/rec_center) -"ruR" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/dresser, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/service/theater) -"ruW" = ( -/obj/structure/table/wood, -/obj/item/book/granter/action/spell/smoke/lesser{ - name = "mysterious old book of cloud-chasing" - }, -/obj/item/soulstone/anybody/chaplain, -/turf/open/floor/cult, -/area/station/service/chapel/office) -"rvg" = ( -/obj/machinery/light/dim/directional/south, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"rvh" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"rvo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"rvq" = ( -/obj/effect/decal/cleanable/dirt, -/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/cable, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"rvN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/mirror/directional/west, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"rvP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"rvY" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/machinery/duct, -/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/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"rwf" = ( -/obj/machinery/airalarm/directional/north, -/obj/structure/rack, -/obj/machinery/light_switch/directional/east, -/obj/item/clipboard, -/obj/item/chair/plastic, -/obj/item/chair/plastic{ - pixel_y = 5 - }, -/obj/effect/spawner/random/bureaucracy/briefcase, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"rww" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/obj/machinery/light/directional/north, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/structure/table/glass, -/obj/machinery/microwave, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"rwA" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/navigate_destination/cargo, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/office) -"rwH" = ( -/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 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"rwP" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"rxg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "ceprivacy"; - name = "Privacy Shutter" - }, -/turf/open/floor/plating, -/area/station/command/heads_quarters/ce) -"rxo" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/iron/freezer, -/area/station/medical/coldroom) -"rxp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"rxr" = ( -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"rxB" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/machinery/button/door/directional/east{ - id = "pharmacy_shutters_2"; - name = "Pharmacy Privacy Shutters Toggle"; - req_access = list("pharmacy") - }, -/obj/machinery/light_switch/directional/south{ - pixel_x = 26 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/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/pharmacy) -"rxH" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"rxO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/hallway/primary/tram/right) -"rxR" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"rxU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/spawner/random/trash/garbage{ - spawn_loot_count = 2; - spawn_random_offset = 1; - spawn_scatter_radius = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/right) -"rxX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"ryc" = ( -/obj/machinery/mecha_part_fabricator, -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/north, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"ryo" = ( -/turf/closed/wall, -/area/station/security/prison/workout) -"ryA" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced, -/obj/structure/closet/secure_closet/smartgun, -/turf/open/floor/iron, -/area/station/ai_monitored/security/armory) -"ryF" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"ryO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall, -/area/station/maintenance/department/security) -"ryP" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ryZ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"rzL" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/station/engineering/engine_smes) -"rzO" = ( -/obj/structure/chair, -/obj/machinery/airalarm/directional/north, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/maintenance/radshelter/civil) -"rzT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/line{ - dir = 1 - }, -/obj/effect/turf_decal/loading_area, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"rzX" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 6 - }, -/turf/open/floor/glass/reinforced, -/area/station/security/brig) -"rAf" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - Atmospherics N2 Chamber"; - dir = 6; - network = list("ss13","engineering") - }, -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"rAg" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Mix to Port" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"rAl" = ( -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"rAw" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/glass, -/area/station/service/kitchen/diner) -"rAz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"rAK" = ( -/obj/structure/stairs/north, -/turf/open/floor/iron/stairs/medium, -/area/station/engineering/transit_tube) -"rAL" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"rAM" = ( -/obj/structure/window/spawner, -/obj/structure/flora/bush/flowers_br/style_random, -/obj/structure/flora/bush/flowers_pp/style_random, -/turf/open/floor/grass, -/area/station/common/cryopods) -"rAN" = ( -/obj/docking_port/stationary/public_mining_dock, -/turf/open/floor/plating, -/area/station/construction/mining/aux_base) -"rAS" = ( -/turf/closed/wall, -/area/station/service/library/lounge) -"rAZ" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"rBa" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"rBc" = ( -/obj/structure/table, -/obj/structure/cable, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison) -"rBe" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/item/book/manual/wiki/atmospherics, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"rBn" = ( -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/machinery/meter, -/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/science/ordnance/storage) -"rBu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"rBz" = ( -/turf/open/floor/iron, -/area/station/security/prison) -"rBC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/solars/port/aft) -"rBK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"rBM" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"rBQ" = ( -/obj/machinery/duct, -/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, -/area/station/maintenance/central/greater) -"rBR" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/lower) -"rBU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=10-TunnelLeftBottom"; - location = "9-TunnelLeftBottomDoor" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/mid) -"rBZ" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"rCd" = ( -/turf/closed/wall, -/area/station/engineering/atmospherics_engine) -"rCn" = ( -/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/cable, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"rCt" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"rCv" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"rCM" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"rCN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/tram/right) -"rCW" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Three"; - space_dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/turf_decal/sand/plating, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"rCY" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics2"; - name = "Robotics Lab Shutters"; - dir = 4 - }, -/turf/open/floor/plating, -/area/station/science/robotics/lab) -"rDc" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/camera/directional/south{ - c_tag = "Maintenance - Central Tram Tunnel 2" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"rDf" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/lesser) -"rDg" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/iron, -/area/station/cargo/storage) -"rDj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - Atmospherics North"; - dir = 9; - network = list("ss13","engineering") - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"rDn" = ( -/obj/machinery/door/airlock/research{ - id_tag = "ResearchExt"; - name = "Research Division" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-entrance-left" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Sciencelockdown"; - name = "Research Lockdown Blastdoor" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron, -/area/station/science/research) -"rDs" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/ai_upload) -"rDJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"rDL" = ( -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"rEe" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - id_tag = "prisondorm"; - name = "Prison Dorm 6" - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/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, -/area/station/security/prison/safe) -"rEu" = ( -/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/chapel) -"rEB" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"rEG" = ( -/turf/open/misc/asteroid, -/area/station/maintenance/port/fore) -"rEM" = ( -/obj/machinery/button/door/directional/west{ - id = "private_r"; - name = "Privacy Bolts"; - normaldoorcontrol = 1; - pixel_y = 9; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"rEO" = ( -/obj/effect/spawner/random/structure/crate, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/lesser) -"rEQ" = ( -/obj/structure/table, -/obj/item/analyzer, -/obj/item/healthanalyzer, -/obj/machinery/camera/autoname/directional/south, -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"rEV" = ( -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"rEZ" = ( -/obj/structure/table, -/obj/item/paicard, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"rFb" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"rFv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/execution/education) -"rFF" = ( -/obj/structure/bed, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) -"rFG" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"rFM" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - name = "sorting disposal pipe (Lower Research General)"; - sortTypes = list(24,25) - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"rFY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"rGi" = ( -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"rGj" = ( -/obj/structure/table/glass, -/obj/item/storage/box/monkeycubes{ - pixel_x = -5 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"rGx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron/white, -/area/station/science/lower) -"rGz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rndlab1"; - name = "Research and Development Shutter"; - dir = 4 - }, -/turf/open/floor/plating, -/area/station/science/lab) -"rGN" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"rGU" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/item/storage/toolbox/electrical{ - pixel_y = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"rHj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rndlab1"; - name = "Research and Development Shutter"; - dir = 1 - }, -/turf/open/floor/plating, -/area/station/science/lab) -"rHk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"rHq" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 8 - }, -/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, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"rHS" = ( -/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/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"rHW" = ( -/obj/effect/landmark/start/cargo_technician, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"rIi" = ( -/obj/machinery/door/airlock{ - name = "Permabrig Showers" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/iron/freezer, -/area/station/security/prison) -"rIp" = ( -/obj/effect/landmark/start/customs_agent, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/structure/chair, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"rIx" = ( -/obj/machinery/conveyor{ - id = "QMLoad2" - }, -/obj/structure/plasticflaps, -/turf/open/floor/plating, -/area/station/cargo/storage) -"rIz" = ( -/obj/machinery/button/door{ - id = "rdoffice"; - name = "Privacy Shutter Control"; - pixel_x = -6; - pixel_y = -25; - req_access = list("research") - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/command/heads_quarters/rd) -"rIT" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/decoration/ornament, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"rIU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/obj/structure/table, -/obj/machinery/microwave{ - pixel_y = 6 - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"rJm" = ( -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"rJs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/white, -/area/station/science/lower) -"rJt" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Recreation Area Maintenance Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/medical) -"rJw" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Security Checkpoint" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/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/access/all/security/general, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"rJE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"rJG" = ( -/obj/machinery/holopad, -/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/science/xenobiology) -"rJH" = ( -/obj/structure/table, -/obj/effect/landmark/event_spawn, -/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/interrogation) -"rJO" = ( -/obj/effect/turf_decal/sand, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/greater) -"rJS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"rJV" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"rKc" = ( -/obj/machinery/power/shieldwallgen, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"rKd" = ( -/obj/structure/chair/sofa/corp/left{ - dir = 1 - }, -/obj/effect/turf_decal/tile, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"rKj" = ( -/obj/structure/table/wood, -/obj/item/storage/dice, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) -"rKl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/crew_quarters/dorms) -"rKC" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"rKD" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/bottle/beer{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/bottle/beer{ - pixel_x = -8 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"rKI" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"rKM" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/green/filled/warning{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"rKT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/explab) -"rKV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/security/processing) -"rLn" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"rLw" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) -"rLF" = ( -/obj/structure/chair/sofa/right{ - dir = 1 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"rLP" = ( -/obj/effect/landmark/navigate_destination/dockescpod3, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/central) -"rMa" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/button/door/directional/west{ - id = "Toilet1"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"rMk" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/stamp/hop, -/obj/machinery/button/ticket_machine{ - pixel_x = 32 - }, -/obj/machinery/keycard_auth/directional/south{ - pixel_x = 26 - }, -/obj/machinery/light_switch/directional/south{ - pixel_x = 6; - pixel_y = -36 - }, -/obj/machinery/button/door/directional/south{ - id = "hop"; - name = "Privacy Shutters Control"; - pixel_x = -8; - req_access = list("kitchen") - }, -/obj/machinery/button/door/directional/south{ - id = "hopqueue"; - name = "Queue Shutters Control"; - pixel_x = -8; - pixel_y = -34; - req_access = list("kitchen") - }, -/obj/item/trapdoor_remote/preloaded{ - pixel_x = -8 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"rMo" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/atmospheric_technician, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"rMq" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock/cafeteria) -"rMv" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"rMB" = ( -/obj/structure/table, -/obj/item/stock_parts/scanning_module{ - pixel_x = -5; - pixel_y = 7 - }, -/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 - }, -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"rMC" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"rME" = ( -/obj/machinery/telecomms/processor/preset_two, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"rMJ" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/light/floor, -/obj/effect/landmark/event_spawn, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/glass/reinforced, -/area/station/security/brig) -"rMK" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/service/kitchen) -"rMR" = ( -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw{ - dir = 1 - }, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = 28 - }, -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_y = 34 - }, -/obj/structure/sign/directions/engineering{ - dir = 4; - pixel_y = 40 - }, -/obj/machinery/light/directional/north, -/obj/structure/sign/directions/upload{ - dir = 4; - pixel_y = 22 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"rMX" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"rMZ" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"rNc" = ( -/obj/effect/turf_decal/sand/plating, -/obj/machinery/power/tracker, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/station/solars/port/aft) -"rNl" = ( -/obj/machinery/stasis{ - dir = 4 - }, -/obj/machinery/defibrillator_mount/directional/north, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Medical - Treatment North-West"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"rNr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/machinery/button/door/directional/west{ - id = "right_tram_lower"; - req_access = list("maint_tunnels") - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"rNt" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/obj/machinery/vending/wardrobe/viro_wardrobe, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"rNF" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"rNG" = ( -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/engineering/supermatter) -"rNI" = ( -/obj/effect/spawner/random/structure/grille, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"rNJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/wallframe/apc, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"rNL" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"rNQ" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/iron/fifty, -/obj/item/clothing/glasses/welding, -/obj/item/wrench, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/science/lab) -"rOb" = ( -/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 = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"rOe" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"rOp" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"rOq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"rOs" = ( -/obj/structure/bodycontainer/morgue{ - dir = 2 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"rOu" = ( -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"rOB" = ( -/obj/structure/rack, -/obj/item/stack/cable_coil/five, -/obj/item/storage/toolbox/electrical, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/right) -"rOM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/commons/dorms) -"rOU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/food_packaging, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/science) -"rOW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/flora/bush/lavendergrass/style_random, -/turf/open/floor/grass, -/area/station/medical/virology) -"rOZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door_buttons/airlock_controller{ - idExterior = "middleleft_upper_eva_external"; - idInterior = "middleleft_upper_eva_internal"; - idSelf = "middleleft_upper_eva_airlock_control"; - name = "External Access Console"; - pixel_y = 24 - }, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/center) -"rPj" = ( -/obj/effect/turf_decal/box/white{ - color = "#9FED58" - }, -/obj/effect/turf_decal/arrows/white{ - color = "#FF0000"; - dir = 4; - pixel_x = -15 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmospherics_engine) -"rPk" = ( -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/obj/structure/cable, -/obj/effect/turf_decal/sand/plating, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"rPy" = ( -/obj/machinery/vending/wardrobe/cargo_wardrobe, -/obj/effect/turf_decal/tile/brown/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/storage) -"rPJ" = ( -/obj/machinery/button/door/directional/west{ - id = "private_b"; - name = "Privacy Bolts"; - normaldoorcontrol = 1; - pixel_x = 24; - pixel_y = 9; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/commons/dorms) -"rPS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/janitor) -"rPU" = ( -/obj/structure/industrial_lift/tram{ - icon_state = "titanium" - }, -/obj/structure/fluff/tram_rail, -/turf/open/openspace, -/area/station/hallway/primary/tram/center) -"rQp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/shutters{ - id = "trammaintdock" - }, -/turf/open/floor/plating, -/area/station/maintenance/port/central) -"rQK" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"rQM" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/ai_monitored/command/storage/eva) -"rQN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/tram/left) -"rQP" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/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/security/prison/safe) -"rQV" = ( -/obj/structure/reagent_dispensers/cooking_oil, -/obj/machinery/camera{ - c_tag = "Service - Kitchen Freezer"; - dir = 9 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/service/kitchen/coldroom) -"rQW" = ( -/obj/machinery/door/airlock/silver{ - name = "Bathroom" - }, -/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/command/captain, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/captain/private) -"rRa" = ( -/obj/structure/table, -/obj/machinery/light/small/directional/west, -/obj/item/radio/intercom/prison/directional/south, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"rRc" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Air to External" - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"rRi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - Atmospherics Test Room"; - dir = 9; - network = list("ss13","engineering") - }, -/turf/open/floor/iron, -/area/station/engineering/atmospherics_engine) -"rRk" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"rRn" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - 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/medical/break_room) -"rRp" = ( -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) -"rRv" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/sign/warning/secure_area/directional/north, -/obj/machinery/camera{ - c_tag = "Science - Cytology Lab"; - dir = 9; - network = list("ss13","rd") - }, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"rRy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) -"rRD" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/obj/machinery/firealarm/directional/east, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/science/research) -"rRH" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/stripes/asteroid/end{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/mine/explored) -"rRK" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/closet/firecloset, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/smooth, -/area/station/hallway/primary/tram/left) -"rSh" = ( -/obj/structure/sign/warning/vacuum/directional/south, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/right) -"rSv" = ( -/obj/effect/turf_decal/trimline/neutral/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, -/turf/open/floor/iron, -/area/station/commons/dorms) -"rSI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/stack/sheet/cardboard{ - amount = 23 - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"rSK" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/office) -"rSM" = ( -/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) -"rSQ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 6 - }, -/obj/machinery/meter, -/obj/machinery/button/ignition/incinerator/ordmix{ - pixel_x = 32; - pixel_y = 8 - }, -/obj/machinery/button/door/incinerator_vent_ordmix{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"rSV" = ( -/obj/machinery/door/poddoor/shutters{ - id = "teledoor"; - name = "MiniSat Teleport Access"; - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"rTk" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/left/directional/north{ - name = "Chemistry Desk"; - req_access = list("pharmacy") - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "pharmacy_shutters_2"; - name = "Pharmacy Shutters" - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"rTI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"rUc" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Security - Warden's Office"; - dir = 9; - network = list("ss13","Security") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"rUd" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrigright"; - name = "Brig" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig_right" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron, -/area/station/security/brig) -"rUf" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/misc/asteroid, -/area/mine/explored) -"rUu" = ( -/obj/machinery/computer/security/telescreen/entertainment/directional/south, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) -"rUD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"rUQ" = ( -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/station/hallway/secondary/exit/departure_lounge) -"rVo" = ( -/obj/effect/turf_decal/trimline/brown/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, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"rVp" = ( -/obj/structure/window/spawner, -/obj/structure/flora/bush/flowers_pp/style_random, -/obj/structure/flora/bush/flowers_yw/style_random, -/obj/structure/flora/bush/grassy/style_random, -/turf/open/floor/grass, -/area/station/common/cryopods) -"rVt" = ( -/obj/machinery/light/floor, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"rVz" = ( -/obj/effect/turf_decal/trimline/green/filled/corner, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"rVA" = ( -/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/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"rVC" = ( -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) -"rVK" = ( -/obj/structure/chair/pew, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/chapel{ - dir = 1 - }, -/area/station/service/chapel) -"rVT" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"rWp" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"rWt" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/sign/picture_frame/portrait/bar{ - pixel_y = 28 - }, -/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, -/area/station/service/bar) -"rWz" = ( -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"rWJ" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"rWU" = ( -/obj/effect/turf_decal/trimline/green/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/medical/virology) -"rXJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/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/plating, -/area/station/security/prison) -"rXV" = ( -/obj/item/kirbyplants/random, -/obj/machinery/camera{ - c_tag = "Service - Kitchen Diner South"; - dir = 10; - network = list("ss13","Service") - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"rXW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/crew_quarters/dorms) -"rYd" = ( -/obj/structure/bodycontainer/morgue{ - dir = 2 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"rYk" = ( -/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/white, -/area/station/science/research) -"rYm" = ( -/obj/effect/turf_decal/stripes{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"rYr" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/service/theater) -"rYL" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"rYP" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/cargo/office) -"rYU" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/item/radio/intercom/directional/west, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"rZc" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/left) -"rZl" = ( -/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, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig) -"rZI" = ( -/obj/machinery/hydroponics/soil, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/item/shovel/spade, -/turf/open/floor/iron/dark, -/area/station/security/prison/garden) -"rZP" = ( -/obj/machinery/flasher/directional/east{ - id = "medcell" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"rZV" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"rZW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"rZX" = ( -/turf/open/floor/iron, -/area/station/service/janitor) -"sai" = ( -/obj/effect/turf_decal/trimline/red/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/security/prison/safe) -"san" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table, -/turf/open/floor/iron, -/area/station/commons/lounge) -"sar" = ( -/obj/structure/table, -/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/security/prison) -"sas" = ( -/obj/machinery/firealarm/directional/south, -/obj/machinery/light/directional/south, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"sav" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/mass_driver/trash{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"saw" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"saB" = ( -/obj/machinery/door/airlock{ - name = "Stall" - }, -/obj/machinery/duct, -/turf/open/floor/iron/freezer, -/area/station/commons/lounge) -"saJ" = ( -/obj/structure/plasticflaps/opaque, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"saW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/station/cargo/miningdock) -"sbb" = ( -/obj/structure/table/wood, -/obj/item/paicard, -/turf/open/floor/carpet, -/area/station/hallway/secondary/entry) -"sbh" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/engine/air, -/area/station/engineering/atmos) -"sbr" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"sbx" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/service/lawoffice) -"sbz" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"sbD" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"sbF" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) -"sbK" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wideplating/corner, -/obj/machinery/firealarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock/oresilo) -"sbO" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"sbX" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"scq" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/sofa/corp/right{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/lounge) -"scr" = ( -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"scA" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"scC" = ( -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hos) -"scV" = ( -/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/layer3, -/turf/open/floor/iron, -/area/station/engineering/main) -"scY" = ( -/obj/structure/chair/sofa/left{ - dir = 1 - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/science/breakroom) -"sdc" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"sdf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/science/breakroom) -"sdn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/port/aft) -"sdy" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"sdB" = ( -/obj/structure/disposalpipe/trunk/multiz{ - dir = 2 - }, -/obj/machinery/door/window/left/directional/north{ - name = "Containment Pen #6"; - req_access = list("xenobiology") - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiobottomleft"; - name = "Xenobio Bottom Left Pen Blast Door" - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"sdD" = ( -/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/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"sdI" = ( -/turf/closed/wall/r_wall, -/area/station/science/ordnance/freezerchamber) -"seb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"sex" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"seG" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/hallway/primary/tram/center) -"seR" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/tram/right) -"seW" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/tram/right) -"sfb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"sfc" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera/emp_proof/directional/south{ - c_tag = "Engineering - Engine Room South-West"; - network = list("ss13","engine","engineering") - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"sfj" = ( -/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/cable/layer3, -/turf/open/floor/iron, -/area/station/engineering/main) -"sfq" = ( -/obj/effect/landmark/start/hangover, -/obj/structure/table, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/secondary/entry) -"sfr" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/closet/crate, -/obj/item/stack/ore/silver, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"sfz" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/oven, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/service/kitchen) -"sfI" = ( -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/white/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"sfJ" = ( -/obj/machinery/door/window/left/directional/west{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Brig Infirmary" - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/turf/open/floor/iron/white, -/area/station/security/medical) -"sfW" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/trimline/red/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/machinery/status_display/evac/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"sgu" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/stamp/ce, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"sgD" = ( -/obj/machinery/door/window/left/directional/south{ - name = "Maximum Security Test Chamber"; - req_access = list("xenobiology") - }, -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "Test Chamber Blast Door" - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"sgJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"sgN" = ( -/obj/machinery/computer/atmos_control/plasma_tank{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"sgT" = ( -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"sha" = ( -/mob/living/simple_animal/sloth/paperwork, -/turf/open/floor/glass, -/area/station/cargo/storage) -"shb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/bot, -/obj/effect/spawner/random/structure/crate_empty, -/obj/effect/spawner/random/maintenance/three, -/obj/effect/spawner/random/engineering/flashlight, -/turf/open/floor/iron, -/area/station/cargo/storage) -"shg" = ( -/obj/effect/turf_decal/trimline/red/filled/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, -/area/station/security/office) -"shy" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"shR" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/hydroponics/glass{ - name = "Hydroponics" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"shS" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"sij" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"sim" = ( -/obj/machinery/telecomms/server/presets/engineering, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"siq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/central) -"siB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/space_heater, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/science) -"siE" = ( -/obj/modular_map_root/tramstation{ - key = "maintenance_storagebig" - }, -/turf/open/floor/plating, -/area/station/maintenance/port/central) -"sjc" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Port to Filter" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"sji" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "AI Upload Access" - }, -/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 = 8 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai_upload) -"sjj" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"sjs" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/security) -"sjB" = ( -/obj/effect/spawner/random/structure/closet_private, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"ski" = ( -/turf/open/floor/carpet, -/area/station/hallway/secondary/entry) -"skn" = ( -/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/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"slf" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"slm" = ( -/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/cable, -/turf/open/floor/iron/white, -/area/station/service/kitchen) -"slo" = ( -/obj/machinery/computer/security/hos, -/obj/machinery/light/directional/north, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hos) -"slr" = ( -/obj/machinery/door/airlock/hatch{ - name = "Ladder Access Hatch" - }, -/obj/structure/disposalpipe/segment{ - 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/catwalk_floor, -/area/station/hallway/primary/tram/center) -"slA" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"slF" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/holosign/barrier/atmos/sturdy, -/obj/structure/fluff/tram_rail/floor, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/right) -"slI" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"sme" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/light/directional/north, -/obj/structure/window/reinforced/spawner/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/storage/eva) -"smp" = ( -/obj/effect/spawner/random/structure/closet_private, -/turf/open/floor/wood, -/area/station/commons/dorms) -"smr" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/turf_decal/trimline/red/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/security/execution/transfer) -"smy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"smQ" = ( -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"smV" = ( -/obj/structure/table, -/obj/machinery/microwave, -/obj/item/radio/intercom/prison/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Security - Prison Cafeteria"; - network = list("ss13","Security","prison") - }, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"snl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/engineering/tracking_beacon, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"snv" = ( -/obj/machinery/door/airlock/hatch, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/tram/right) -"snC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"snD" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/fitness) -"snK" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/machinery/computer/cargo, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/cargo/office) -"snP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"snU" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"soo" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"soq" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/department/science) -"sow" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"soH" = ( -/turf/open/floor/iron/goonplaque, -/area/station/hallway/secondary/entry) -"spv" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate/freezer/surplus_limbs, -/turf/open/floor/iron/freezer, -/area/station/medical/coldroom) -"spB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron, -/area/service/salon) -"spD" = ( -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/three, -/obj/item/relic, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"spF" = ( -/turf/open/floor/engine/vacuum, -/area/station/engineering/atmos) -"spI" = ( -/turf/open/floor/iron, -/area/station/security/courtroom) -"spP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"spS" = ( -/obj/machinery/smartfridge/extract/preloaded, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/xenobiology) -"sqh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/left) -"sqj" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/commons/dorms) -"sql" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/glasses/science, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"squ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"sqD" = ( -/obj/effect/turf_decal/siding/thinplating/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"sqJ" = ( -/obj/structure/closet/secure_closet/bar, -/obj/item/stack/spacecash/c100, -/obj/item/stack/spacecash/c10, -/turf/open/floor/wood, -/area/station/service/bar) -"sqU" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/storage) -"sre" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/structure/cable/layer3, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"srh" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ - dir = 10 - }, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"srr" = ( -/obj/structure/sign/warning/vacuum/external/directional/west, -/obj/effect/turf_decal/sand/plating, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"srt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/garbage{ - spawn_loot_count = 2; - spawn_random_offset = 1; - spawn_scatter_radius = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/left) -"srv" = ( -/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/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/crew_quarters/dorms) -"srz" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"srA" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter/room) -"srE" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"srS" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/firealarm/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/freezer, -/area/station/medical/coldroom) -"srU" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"ssi" = ( -/obj/effect/turf_decal/trimline/green/filled/corner, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Air to Distro" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"ssp" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"ssw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ssE" = ( -/obj/machinery/vending/hydronutrients, -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"ssQ" = ( -/obj/item/kirbyplants{ - icon_state = "plant-18" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile, -/obj/machinery/camera/directional/south{ - c_tag = "Arrivals - Landing Bay Door" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"ste" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"sto" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"stt" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/effect/turf_decal/trimline/neutral/filled/warning, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"stB" = ( -/obj/machinery/shower{ - pixel_y = 12 - }, -/obj/structure/curtain, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"stO" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/tram/right) -"stQ" = ( -/obj/effect/landmark/start/cook, -/turf/open/floor/iron/white, -/area/station/service/kitchen) -"stT" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/engineering/main) -"stZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/break_room) -"sub" = ( -/obj/structure/lattice, -/obj/effect/spawner/random/structure/grille, -/turf/open/space/openspace, -/area/space/nearstation) -"sud" = ( -/obj/structure/table, -/obj/item/food/cakeslice/birthday, -/turf/open/floor/eighties/red, -/area/station/commons/fitness/recreation/entertainment) -"sue" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/obj/machinery/newscaster/directional/west, -/obj/machinery/status_display/evac/directional/north, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/iron, -/area/station/commons/dorms) -"sui" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"sun" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"suy" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"suO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/junction, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"suR" = ( -/obj/effect/spawner/random/structure/closet_private, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"suV" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"svt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"svv" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/item/stock_parts/matter_bin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/micro_laser, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lab) -"swe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"swj" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"swm" = ( -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab" - }, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/machinery/door/firedoor/heavy, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance_storage, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"swp" = ( -/obj/structure/table, -/obj/structure/sign/plaques/kiddie{ - pixel_y = -32 - }, -/obj/effect/spawner/round_default_module, -/turf/open/floor/circuit/red, -/area/station/ai_monitored/turret_protected/ai_upload) -"swr" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"swy" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Science - Ordnance Test Lab"; - network = list("ss13","rd") - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/science/ordnance/testlab) -"swC" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 9 - }, -/obj/effect/landmark/start/hangover/closet, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/tram/right) -"swM" = ( -/obj/structure/toilet, -/obj/machinery/light/small/directional/east, -/obj/structure/mirror/directional/east, -/turf/open/floor/iron/freezer, -/area/station/security/prison) -"swP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/newscaster/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"swU" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/structure/railing, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"swY" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"swZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/courtroom) -"sxa" = ( -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/plating, -/area/space) -"sxj" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 5 - }, -/obj/machinery/light_switch/directional/north, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/qm) -"sxk" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"sxv" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Civilian - Dormitories South-West" - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"sxA" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"sxC" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"sxG" = ( -/obj/structure/chair/pew, -/turf/open/floor/iron/chapel{ - dir = 5 - }, -/area/station/service/chapel) -"sxH" = ( -/obj/effect/turf_decal/sand, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"sxO" = ( -/obj/machinery/button/door/directional/west{ - id = "private_n"; - name = "Privacy Bolts"; - normaldoorcontrol = 1; - pixel_y = -9; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"sxU" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Civilian - Holodeck North"; - name = "holodeck camera" - }, -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/station/holodeck/rec_center) -"syn" = ( -/obj/structure/table, -/obj/item/retractor, -/obj/item/hemostat{ - pixel_x = -10 - }, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"syv" = ( -/turf/closed/wall/r_wall, -/area/station/security/checkpoint/science) -"syF" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/prison) -"syN" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/button/flasher{ - id = "permafrontdoor"; - pixel_x = 9; - pixel_y = 24; - req_access = list("brig") - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"syV" = ( -/obj/effect/turf_decal/trimline/red/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, -/turf/open/floor/iron, -/area/station/security/office) -"szo" = ( -/obj/structure/dresser, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"szp" = ( -/obj/vehicle/ridden/secway, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"szq" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - Emitter Room East"; - dir = 6; - network = list("ss13","engine","engineering") - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"szs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"szA" = ( -/obj/machinery/light/small/directional/north, -/turf/open/floor/engine, -/area/station/science/explab) -"szB" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/structure/table, -/obj/item/mmi, -/obj/item/mmi, -/obj/item/mmi, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"szN" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/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, -/area/station/security/office) -"sAh" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/wood/large, -/area/station/service/library) -"sAr" = ( -/obj/machinery/door/airlock/medical{ - name = "Surgery B" - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/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/medical/surgery, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"sAB" = ( -/obj/modular_map_root/tramstation{ - key = "maintenance_midladder" - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/mid) -"sAI" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/flasher/directional/west{ - id = "permafrontdoor" - }, -/turf/open/floor/iron, -/area/station/security/prison) -"sAZ" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/directional/west, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"sBj" = ( -/obj/machinery/power/solar{ - id = "aicore"; - name = "AI Core Solar Array" - }, -/obj/structure/cable, -/turf/open/floor/iron/solarpanel/airless, -/area/space/nearstation) -"sBC" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"sBG" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"sBN" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/key/janitor, -/obj/machinery/requests_console/directional/south{ - department = "Janitorial"; - departmentType = 1; - name = "Janitorial Requests Console" - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/turf_decal/trimline/purple/filled/warning, -/turf/open/floor/iron, -/area/station/service/janitor) -"sBP" = ( -/obj/structure/table, -/obj/structure/cable, -/obj/item/storage/dice, -/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/security/prison) -"sBV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/main) -"sCa" = ( -/obj/machinery/conveyor{ - dir = 6; - id = "garbage" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/garbage{ - spawn_loot_count = 3; - spawn_random_offset = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"sCw" = ( -/obj/structure/chair/comfy/beige{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"sCz" = ( -/obj/machinery/telecomms/relay/preset/station, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"sCO" = ( -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/flora/bush/leavy/style_random, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/station/medical/virology) -"sDh" = ( -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 3"; - space_dir = 2 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"sDo" = ( -/turf/closed/wall, -/area/station/service/bar) -"sDv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/clothing/mask/breath, -/obj/item/tank/internals/emergency_oxygen/empty{ - pixel_x = 6; - pixel_y = -6 - }, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/left) -"sDz" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"sDG" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"sDZ" = ( -/turf/closed/wall, -/area/station/maintenance/disposal/incinerator) -"sEv" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"sEN" = ( -/obj/structure/mirror/directional/west, -/obj/structure/table/reinforced/rglass, -/obj/item/hairbrush/comb{ - pixel_y = 10 - }, -/obj/item/reagent_containers/dropper, -/obj/machinery/dryer{ - pixel_y = 14 - }, -/turf/open/floor/iron, -/area/service/salon) -"sEO" = ( -/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) -"sEP" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"sFd" = ( -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"sFA" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Experimentation Lab" - }, -/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/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/research, -/turf/open/floor/iron/white, -/area/station/science/explab) -"sFC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/station/maintenance/tram/left) -"sFF" = ( -/obj/machinery/telecomms/broadcaster/preset_right, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"sFL" = ( -/obj/machinery/door/airlock/command{ - name = "Research Director's Office" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/rd, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/command/heads_quarters/rd) -"sFX" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "Test Chamber Blast Door" - }, -/turf/open/openspace, -/area/station/science/xenobiology) -"sGc" = ( -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) -"sGt" = ( -/obj/effect/turf_decal/stripes, -/obj/machinery/computer/pod/old/mass_driver_controller/ordnancedriver{ - pixel_x = 28 - }, -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/ordnance/testlab) -"sGu" = ( -/obj/structure/bed/double{ - dir = 4 - }, -/obj/item/bedsheet/dorms_double{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/commons/dorms) -"sGF" = ( -/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/white, -/area/station/medical/medbay/central) -"sGZ" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"sHj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter/room) -"sHm" = ( -/obj/effect/turf_decal/trimline/yellow/filled, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/textured, -/area/station/medical/medbay/central) -"sHq" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/holopad/secure, -/obj/structure/cable/layer1, -/obj/structure/cable, -/turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"sHu" = ( -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"sHw" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrigright"; - name = "Brig" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig_right" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron, -/area/station/security/brig) -"sHH" = ( -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/ce) -"sHI" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/closet/wardrobe/grey, -/obj/machinery/light/directional/east, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"sHK" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"sHM" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"sHV" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/lab) -"sIa" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Air Tank Access" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/turf/open/floor/plating, -/area/station/medical/virology) -"sIc" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/turf/open/floor/iron, -/area/station/security/prison) -"sIe" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"sIk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"sIm" = ( -/obj/docking_port/stationary/random{ - dir = 4; - id = "pod_lavaland"; - name = "lavaland" - }, -/turf/open/misc/asteroid/airless, -/area/mine/explored) -"sIq" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/wrench/medical, -/turf/open/floor/iron/dark, -/area/station/medical/treatment_center) -"sIC" = ( -/obj/machinery/processor, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/service/kitchen) -"sIM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/red/arrow_cw{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"sJg" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/checkpoint/science) -"sJz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - name = "sorting disposal pipe (Medbay)"; - sortType = 9 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"sJS" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/item/stack/wrapping_paper{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/stack/package_wrap{ - pixel_x = -1; - pixel_y = -1 - }, -/obj/item/dest_tagger, -/obj/item/dest_tagger, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"sKg" = ( -/turf/closed/wall, -/area/station/commons/fitness) -"sKl" = ( -/obj/structure/closet/secure_closet/chief_medical, -/obj/effect/turf_decal/bot, -/obj/machinery/newscaster/directional/west, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"sKt" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/wood/large, -/area/station/service/library) -"sKx" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"sKD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/box, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/science) -"sKO" = ( -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"sKP" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"sKZ" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Hallway - Starboard Tram Platform South-East"; - dir = 6 - }, -/obj/effect/turf_decal/caution, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"sLf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/firealarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"sLi" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Civilian - Courtroom Jury"; - dir = 10 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"sLu" = ( -/obj/structure/railing{ - dir = 6 - }, -/turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"sLz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 1 - }, -/obj/machinery/conveyor/inverted{ - dir = 10; - id = "QMLoad" - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"sLC" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig) -"sLE" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/mine/explored) -"sLK" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/machinery/camera{ - c_tag = "Science - Main Upper Right"; - dir = 10; - network = list("ss13","rd") - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"sLR" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"sLT" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/effect/turf_decal/trimline/red/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, -/area/station/security/office) -"sLX" = ( -/obj/machinery/door/airlock{ - id_tag = "private_i"; - name = "Private Quarters I" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/dorms) -"sMr" = ( -/obj/machinery/door/airlock/engineering{ - name = "Power Access Hatch" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"sME" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/trimline/blue/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 = 9 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"sMG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"sMM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/machinery/light/small/directional/west, -/obj/machinery/button/door/directional/west{ - id = "left_tram_lower"; - req_access = list("maint_tunnels") - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"sMZ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"sNl" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"sNo" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/lower) -"sNG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"sNR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"sNX" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"sOa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"sOh" = ( -/obj/effect/turf_decal/siding/wood, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/grimy, -/area/station/service/lawoffice) -"sOn" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks, -/obj/machinery/light/directional/north, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron, -/area/station/service/bar) -"sOq" = ( -/obj/machinery/vending/wardrobe/sec_wardrobe, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"sOy" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/item/folder/red, -/obj/item/pen, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"sOG" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Distro to Waste" - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"sOH" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/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/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"sOP" = ( -/obj/structure/grille, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/central) -"sOU" = ( -/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, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"sOY" = ( -/obj/effect/turf_decal/stripes, -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/structure/industrial_lift/tram{ - icon_state = "titanium" - }, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/center) -"sPc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"sPp" = ( -/turf/closed/wall, -/area/station/science/lower) -"sPv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/door/incinerator_vent_atmos_aux{ - pixel_x = -8; - pixel_y = -24 - }, -/obj/machinery/button/door/incinerator_vent_atmos_main{ - pixel_x = -8; - pixel_y = -36 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"sPw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"sPy" = ( -/obj/structure/disposalpipe/segment, -/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/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Break Room" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron/white, -/area/station/science/breakroom) -"sPK" = ( -/obj/machinery/computer/exodrone_control_console{ - dir = 4 - }, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"sPX" = ( -/obj/machinery/chem_dispenser, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"sQe" = ( -/turf/open/floor/plating, -/area/station/commons/vacant_room/office) -"sQf" = ( -/turf/open/floor/iron, -/area/station/security/processing) -"sQj" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"sQu" = ( -/obj/machinery/modular_computer/console/preset/curator{ - dir = 4 - }, -/obj/structure/sign/poster/official/random/directional/west, -/turf/open/floor/wood, -/area/station/service/library) -"sQG" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - 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/science/genetics) -"sQR" = ( -/obj/structure/rack, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/fluorine{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/iodine{ - pixel_x = 1 - }, -/obj/structure/sign/warning/chem_diamond/directional/south, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/dark/textured_edge, -/area/station/medical/medbay/central) -"sRd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"sRp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/pumproom) -"sRN" = ( -/obj/effect/turf_decal/caution/stand_clear, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor/shutters{ - id = "cargowarehouse"; - dir = 8 - }, -/turf/open/floor/plating, -/area/station/cargo/warehouse) -"sRR" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"sRZ" = ( -/turf/closed/wall/r_wall, -/area/station/science/lobby) -"sSc" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"sSh" = ( -/obj/item/target, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"sSr" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"sSx" = ( -/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/white, -/area/station/science/research) -"sSB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"sSC" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/lounge) -"sSH" = ( -/obj/machinery/door/morgue{ - name = "Confession Booth" - }, -/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/chapel) -"sSM" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/left/directional/west{ - name = "Hydroponics Desk"; - req_access = list("hydroponics") - }, -/turf/open/floor/plating, -/area/station/service/hydroponics) -"sSS" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"sTg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"sTl" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron, -/area/station/commons/dorms) -"sTm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"sTs" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/turf_decal/trimline/neutral/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{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"sTx" = ( -/obj/effect/turf_decal/box/white, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmospherics_engine) -"sTH" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"sTJ" = ( -/obj/machinery/gateway/centerstation, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"sTN" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig) -"sUb" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/item/paicard, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"sUd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - name = "sorting disposal pipe (Atmospherics)"; - sortType = 6 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"sUo" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/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/sorting/mail/flip{ - dir = 1; - name = "sorting disposal pipe (Chapel)"; - sortType = 17 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"sUs" = ( -/obj/structure/chair/comfy/black, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/wood/large, -/area/station/service/library) -"sUt" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/security/brig) -"sUB" = ( -/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/miningdock) -"sUH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/central) -"sUN" = ( -/obj/structure/cable/layer3, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"sVq" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/right) -"sVs" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/right) -"sVt" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/camera{ - c_tag = "Secure - AI Minisat Internal Power Access"; - dir = 9; - network = list("ss13","minisat") - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) -"sVz" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"sVB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/ladder, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"sVC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lower) -"sVN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/security) -"sWq" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"sWD" = ( -/obj/effect/turf_decal/siding/wideplating/corner, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) -"sWV" = ( -/obj/structure/table, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"sWY" = ( -/obj/machinery/computer/communications{ - dir = 8 - }, -/obj/machinery/keycard_auth/directional/north{ - pixel_x = 26 - }, -/obj/machinery/status_display/ai/directional/north, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"sXb" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/effect/landmark/start/paramedic, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"sXe" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - 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, -/area/station/hallway/secondary/exit) -"sXn" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/wood, -/area/station/service/bar) -"sXR" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock/oresilo) -"sXU" = ( -/obj/machinery/power/apc/auto_name/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hos) -"sXX" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Science - Main Lower Left"; - dir = 6; - network = list("ss13","rd") - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"sYc" = ( -/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/neutral/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"sYC" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"sYF" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"sYG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/commons/dorms) -"sYH" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"sYK" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/effect/turf_decal/trimline/neutral/corner, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/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, -/area/station/hallway/secondary/command) -"sYT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiotopleft"; - name = "Xenobio Topleft Pen Blast Door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"sYU" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"sZf" = ( -/obj/effect/turf_decal/stripes/line, -/mob/living/simple_animal/bot/secbot/beepsky/armsky, -/turf/open/floor/iron, -/area/station/ai_monitored/security/armory) -"sZo" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/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/duct, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"sZu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning, -/turf/open/floor/iron, -/area/station/maintenance/port/central) -"sZw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Chapel" - }, -/turf/open/floor/carpet, -/area/station/service/chapel) -"sZD" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/white, -/area/station/security/medical) -"sZF" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"sZG" = ( -/obj/structure/industrial_lift/tram{ - icon_state = "titanium_white" - }, -/obj/machinery/door/window/right/tram, -/turf/open/openspace, -/area/station/hallway/primary/tram/center) -"sZJ" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron, -/area/service/salon) -"sZO" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"sZW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile, -/obj/machinery/camera{ - c_tag = "Arrivals - North Docking Hall"; - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"tag" = ( -/turf/closed/wall/r_wall, -/area/station/security/lockers) -"tam" = ( -/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, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"taw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"taB" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"taE" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Hallway - Engineering Entry West"; - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"taK" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/sofa/left{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock/cafeteria) -"taP" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"taW" = ( -/obj/machinery/telecomms/processor/preset_one, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"tbe" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/station/engineering/engine_smes) -"tbm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"tby" = ( -/turf/open/floor/iron/white, -/area/station/science/research) -"tce" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/cigbutt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/port/aft) -"tch" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Arrivals" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"tcs" = ( -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"tct" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/machinery/firealarm/directional/east, -/obj/machinery/disposal/bin{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/turf/open/floor/iron/white, -/area/station/science/explab) -"tcD" = ( -/obj/item/wrench, -/obj/item/weldingtool, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/structure/rack, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"tcH" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/commons/lounge) -"tcZ" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"tda" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"tdm" = ( -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/science/lab) -"tdr" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/west, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"tds" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"tdx" = ( -/turf/closed/wall, -/area/station/maintenance/port/aft) -"tdA" = ( -/obj/structure/window/reinforced/spawner, -/obj/machinery/door/window/right/directional/east{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Fitness Ring" - }, -/turf/open/floor/iron/dark/smooth_corner{ - dir = 4 - }, -/area/station/commons/fitness) -"tdT" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/dorms) -"tdW" = ( -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"tea" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"teb" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"tej" = ( -/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, -/area/station/hallway/secondary/exit) -"tep" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"teJ" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"tfk" = ( -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"tfp" = ( -/obj/structure/railing, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/glass/reinforced, -/area/station/security/brig) -"tfy" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/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, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"tfB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/structure/sign/warning/secure_area/directional/east, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"tfU" = ( -/obj/machinery/door/window/right/directional/north{ - name = "Ordnance Freezer Chamber Access"; - req_access = list("ordnance") - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"tfW" = ( -/turf/open/floor/iron/chapel{ - dir = 8 - }, -/area/station/service/chapel) -"tgu" = ( -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"tgw" = ( -/obj/machinery/computer/security/telescreen/cmo{ - pixel_y = 32 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"tgH" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/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 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron, -/area/station/commons/dorms) -"tgO" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/server) -"tgP" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"tgW" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plating, -/area/station/command/bridge) -"tgY" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/duct, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"thf" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"thi" = ( -/obj/structure/sign/warning/vacuum/external/directional/north, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"thl" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/hallway/primary/central) -"thD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1; - name = "sorting disposal pipe (Medbay)"; - sortType = 9 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"thG" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"thI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "left_tram_lower"; - name = "Tunnel Access Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/tram/mid) -"thV" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"tix" = ( -/obj/structure/bed{ - dir = 4 - }, -/obj/item/bedsheet/captain{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"tiE" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Research Maintnenace" - }, -/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/access/all/science/research, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"tiM" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"tiR" = ( -/obj/structure/industrial_lift/tram{ - icon_state = "plating" - }, -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/effect/turf_decal/stripes, -/obj/effect/turf_decal/caution/stand_clear/red{ - dir = 8 - }, -/obj/structure/grille/tram, -/obj/structure/window/reinforced/shuttle/tram, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/center) -"tjj" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/research) -"tju" = ( -/obj/machinery/vending/boozeomat, -/turf/closed/wall, -/area/station/service/bar) -"tjJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/station/cargo/qm) -"tjS" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"tjZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible/layer2, -/obj/machinery/meter/layer2, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"tkh" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/structure/table, -/obj/machinery/light/directional/east, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"tki" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"tkv" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/hallway/primary/tram/left) -"tkB" = ( -/obj/structure/chair/pew/left, -/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) -"tkG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"tkM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"tkU" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 5 - }, -/obj/item/storage/secure/briefcase, -/obj/item/storage/box/pdas{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/ids, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"tlg" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Arrival Airlock" - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"tli" = ( -/obj/structure/fluff/tram_rail/floor, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/tram/right) -"tln" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood, -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"tlr" = ( -/obj/machinery/door/airlock/hatch, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/tram/left) -"tlz" = ( -/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{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/lesser) -"tlZ" = ( -/turf/open/floor/iron/cafeteria, -/area/station/security/prison) -"tmj" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 5 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Hallway - Mid Left Command" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"tml" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Science - Upper Power Hatch"; - network = list("ss13","rd") - }, -/obj/machinery/drone_dispenser, -/turf/open/floor/iron/smooth, -/area/station/science/research) -"tmm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"tmn" = ( -/obj/structure/filingcabinet, -/obj/effect/turf_decal/tile/brown/fourcorners, -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock/oresilo) -"tmp" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Tunnel Access" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) -"tmv" = ( -/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/freezer, -/area/station/security/prison/shower) -"tmS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/junction/yjunction, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"tmU" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"tnh" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - 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, -/area/station/security/checkpoint/supply) -"tnj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"tnm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/machinery/button/door/directional/east{ - id = "left_tram_lower"; - req_access = list("maint_tunnels") - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"tnq" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/carbon_input{ - dir = 8 - }, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"tnG" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"tnY" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/computer/department_orders/engineering{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"toa" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"tod" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"toe" = ( -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw, -/obj/structure/sign/directions/supply{ - dir = 4; - pixel_y = -28 - }, -/obj/structure/sign/directions/security{ - dir = 8; - pixel_y = -34 - }, -/obj/structure/sign/directions/command{ - dir = 8; - pixel_y = -40 - }, -/obj/machinery/light/directional/south, -/obj/structure/sign/directions/vault{ - dir = 8; - pixel_y = -22 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"tom" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/mine/explored) -"ton" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Escape Wing" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/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/secondary/exit/departure_lounge) -"toq" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"tov" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/medical) -"toG" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/public/glass{ - name = "Escape Wing" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"toU" = ( -/obj/structure/table, -/obj/machinery/cell_charger{ - pixel_y = 5 - }, -/obj/item/stack/cable_coil, -/obj/item/multitool, -/obj/item/stock_parts/cell/high, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"tpg" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"tph" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"tpl" = ( -/obj/machinery/modular_computer/console/preset/civilian, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"tpr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/lobby) -"tpw" = ( -/obj/structure/disposalpipe/segment{ - 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, -/area/station/engineering/atmos) -"tpB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/department/medical) -"tpN" = ( -/turf/open/floor/grass, -/area/station/science/genetics) -"tpO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"tpR" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/turf/open/floor/wood/large, -/area/station/service/library) -"tqb" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"tqp" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/white, -/area/station/science/research) -"tqu" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"tqy" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_cw, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"tqK" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"tqS" = ( -/obj/structure/displaycase/captain{ - pixel_y = 5 - }, -/obj/machinery/status_display/evac/directional/north, -/obj/item/storage/secure/safe/directional/west, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"tra" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"trd" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"trf" = ( -/obj/structure/table, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/item/folder/white{ - pixel_y = 4 - }, -/obj/item/pen/red, -/obj/machinery/camera/directional/south{ - c_tag = "Medical - Virology Patient Room B"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron, -/area/station/medical/virology) -"trg" = ( -/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/chapel) -"trr" = ( -/obj/machinery/exodrone_launcher, -/obj/item/exodrone, -/turf/open/floor/plating, -/area/station/cargo/drone_bay) -"trs" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/turf/open/floor/iron, -/area/station/cargo/qm) -"trz" = ( -/obj/structure/disposalpipe/segment{ - 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/machinery/door/airlock/external{ - autoclose = 0; - frequency = 1449; - id_tag = "middleleft_upper_eva_internal"; - name = "External Access" - }, -/obj/machinery/door_buttons/access_button{ - idDoor = "middleleft_upper_eva_internal"; - idSelf = "middleleft_upper_eva_airlock_control"; - name = "External Access Button"; - pixel_y = 24 - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/center) -"trL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/obj/machinery/button/door/directional/west{ - id = "cargowarehouse" - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"tsj" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/wood/large, -/area/station/service/library) -"tsw" = ( -/obj/machinery/hydroponics/soil, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/item/cultivator, -/turf/open/floor/iron/dark, -/area/station/security/prison/garden) -"tsA" = ( -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable/layer3, -/turf/open/floor/plating, -/area/station/engineering/supermatter) -"tsH" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - name = "sorting disposal pipe (Chief Medical Officer's Office)"; - sortType = 10 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"tsO" = ( -/obj/structure/cable, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/security/execution/education) -"tsP" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/chair, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"tsW" = ( -/obj/structure/chair/office{ - 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/grimy, -/area/station/service/library/lounge) -"tsZ" = ( -/obj/item/radio/intercom/directional/north, -/obj/machinery/photocopier, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"ttc" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"ttn" = ( -/obj/machinery/computer/monitor{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"ttq" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"tts" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, -/obj/machinery/meter, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ttw" = ( -/obj/structure/table/glass, -/obj/item/folder/red{ - pixel_x = 3 - }, -/obj/item/taperecorder{ - pixel_x = -3 - }, -/obj/structure/sign/poster/official/obey{ - pixel_y = -32 - }, -/turf/open/floor/iron/white, -/area/station/security/execution/education) -"ttx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"ttA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"ttF" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 1 - }, -/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, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"tuv" = ( -/obj/structure/flora/bush/sunny/style_random, -/turf/open/floor/grass, -/area/station/science/genetics) -"tuC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Telecommunications" - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "tcomms-entrance" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"tuQ" = ( -/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, -/turf/open/floor/carpet, -/area/station/service/library) -"tuZ" = ( -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"tvd" = ( -/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/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/crew_quarters/dorms) -"tvf" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"tvD" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - name = "sorting disposal pipe (Medical General)"; - sortTypes = list(9,10,11,27) - }, -/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/hallway/primary/tram/center) -"tvN" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/glass, -/area/station/service/kitchen/diner) -"tvT" = ( -/obj/structure/table/glass, -/obj/structure/microscope, -/obj/effect/turf_decal/trimline/purple/filled/line, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"twe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"twf" = ( -/obj/machinery/computer/rdservercontrol, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/station/science/server) -"twi" = ( -/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/highsecurity{ - name = "Prison Maintenance Access"; - security_level = 4 - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/greater) -"twk" = ( -/obj/structure/dresser, -/turf/open/floor/wood, -/area/station/commons/dorms) -"twl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/iron/smooth, -/area/station/maintenance/port/aft) -"twy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/science/genetics) -"twF" = ( -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"twL" = ( -/obj/structure/showcase/cyborg/old{ - pixel_y = 20 - }, -/obj/structure/cable/layer1, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"twO" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit) -"txd" = ( -/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/effect/landmark/start/station_engineer, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/engineering/main) -"txj" = ( -/obj/machinery/firealarm/directional/south, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hos) -"txm" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/structure/table, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) -"txr" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"txB" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/navigate_destination/hydro, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"txD" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/table/glass, -/obj/item/hand_labeler, -/obj/item/pen, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"txI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"txJ" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"txL" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"txR" = ( -/obj/structure/table, -/obj/effect/spawner/random/entertainment/dice, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"txX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate_empty, -/obj/effect/spawner/random/maintenance/three, -/obj/effect/spawner/random/engineering/flashlight, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/security) -"txZ" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"tyh" = ( -/obj/effect/turf_decal/trimline/green/corner, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"tyN" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rndlab1"; - name = "Research and Development Shutter"; - dir = 8 - }, -/turf/open/floor/plating, -/area/station/science/lab) -"tyY" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"tzk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"tzm" = ( -/obj/machinery/requests_console/directional/south{ - department = "Law Office"; - name = "Law Office Requests Console" - }, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"tzB" = ( -/obj/structure/table, -/obj/item/assembly/flash/handheld, -/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/security/office) -"tzJ" = ( -/obj/machinery/light/directional/north, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/structure/flora/bush/sparsegrass/style_random, -/obj/structure/flora/bush/grassy/style_random, -/turf/open/floor/grass, -/area/station/commons/dorms) -"tzP" = ( -/obj/machinery/portable_atmospherics/canister/plasma, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"tzS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/mid) -"tAi" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Security Maintenance Hatch" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/plating, -/area/station/maintenance/department/security) -"tAo" = ( -/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/surgery/aft) -"tAq" = ( -/obj/machinery/light/directional/north, -/turf/open/openspace, -/area/station/hallway/primary/tram/left) -"tAs" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/turf/open/floor/iron, -/area/station/commons/fitness) -"tAF" = ( -/obj/structure/industrial_lift/tram{ - icon_state = "titanium_white" - }, -/obj/machinery/door/window/right/tram/directional/north, -/turf/open/openspace, -/area/station/hallway/primary/tram/center) -"tAH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/structure/rack, -/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/item/clothing/mask/gas, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"tAJ" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"tAL" = ( -/obj/structure/table/wood, -/obj/item/hand_labeler{ - pixel_x = 5 - }, -/obj/item/storage/box/evidence, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"tAT" = ( -/obj/structure/cable/multilayer/multiz, -/obj/structure/sign/warning/electric_shock/directional/east, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/tram/left) -"tAY" = ( -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/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/airalarm/directional/south, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/science/ordnance/storage) -"tBc" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/caution, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"tBd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/mess) -"tBm" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"tBo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/graffiti{ - spawn_loot_chance = 35; - spawn_loot_count = 3; - spawn_random_offset = 1; - spawn_scatter_radius = 3 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/right) -"tBu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/external{ - autoclose = 0; - frequency = 1449; - id_tag = "mostleft_lower_eva_external"; - name = "External Access" - }, -/obj/machinery/door_buttons/access_button{ - idDoor = "mostleft_lower_eva_external"; - idSelf = "mostleft_lower_eva_airlock_control"; - name = "External Access Button"; - pixel_y = -24 - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/left) -"tBx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) -"tBz" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 10 - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"tBA" = ( -/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, -/area/station/hallway/primary/tram/center) -"tBK" = ( -/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/security/execution/transfer) -"tBN" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"tBW" = ( -/obj/effect/turf_decal/bot, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"tBX" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Tunnel Access" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/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/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"tBY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"tCa" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"tCe" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"tCi" = ( -/turf/open/floor/iron/dark, -/area/station/service/chapel/monastery) -"tCl" = ( -/obj/structure/fluff/tram_rail, -/turf/open/openspace, -/area/station/hallway/primary/tram/center) -"tCn" = ( -/obj/machinery/vending/wardrobe/jani_wardrobe, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/service/janitor) -"tCo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail/flip{ - name = "sorting disposal pipe (Virology)"; - sortType = 27 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"tCC" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Monastary" - }, -/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/service/chapel_office, -/turf/open/floor/iron/dark, -/area/station/service/chapel/monastery) -"tCP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/seeds/coffee, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/central) -"tCT" = ( -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"tDa" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"tDq" = ( -/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/iron/white, -/area/station/medical/medbay/central) -"tDz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"tDD" = ( -/obj/machinery/teleport/hub, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"tDI" = ( -/obj/structure/sign/poster/contraband/lusty_xenomorph{ - pixel_x = 32 - }, -/turf/open/floor/wood/parquet, -/area/station/service/library) -"tDN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/external{ - autoclose = 0; - frequency = 1449; - id_tag = "middleright_lower_eva_internal"; - name = "External Access" - }, -/obj/machinery/door_buttons/access_button{ - idDoor = "middleright_lower_eva_internal"; - idSelf = "middleright_lower_eva_airlock_control"; - name = "External Access Button"; - pixel_y = -24 - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/center) -"tDT" = ( -/turf/open/openspace, -/area/station/commons/fitness/recreation) -"tEC" = ( -/obj/machinery/door/airlock/research{ - name = "Research and Development Lab" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rndlab1"; - name = "Research and Development Shutter"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron/white, -/area/station/science/lab) -"tEJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"tEP" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"tFf" = ( -/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) -"tFg" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Civilian - Chapel East" - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"tFm" = ( -/turf/closed/wall, -/area/station/service/hydroponics) -"tFr" = ( -/obj/structure/table, -/obj/item/storage/box/beakers{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/syringes, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"tFx" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"tFE" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - piping_layer = 2 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"tFJ" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/department/security) -"tFQ" = ( -/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/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"tFT" = ( -/obj/machinery/vending/wardrobe/robo_wardrobe, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/structure/noticeboard/directional/east, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"tFV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"tFZ" = ( -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/effect/turf_decal/stripes, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/center) -"tGf" = ( -/obj/structure/disposalpipe/segment, -/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/cable, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"tGk" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/red/filled/corner, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"tGo" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) -"tGA" = ( -/obj/machinery/mineral/stacking_machine{ - input_dir = 1; - stack_amt = 10 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"tGC" = ( -/obj/structure/cable, -/obj/structure/closet/secure_closet/injection{ - name = "educational injections"; - pixel_x = 2 - }, -/turf/open/floor/iron/white, -/area/station/security/execution/education) -"tGI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/computer/turbine_computer{ - mapping_id = "main_turbine" - }, -/obj/structure/cable/layer1, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"tGJ" = ( -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"tGW" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"tHb" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"tHl" = ( -/obj/structure/filingcabinet, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"tHx" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"tHz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"tHI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Atmospherics Maintenance" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"tIq" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"tID" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/effect/turf_decal/trimline/neutral/filled/warning, -/obj/structure/sign/departments/science/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"tIH" = ( -/obj/structure/stairs/south, -/turf/open/floor/iron/stairs/medium{ - dir = 1 - }, -/area/station/commons/lounge) -"tIJ" = ( -/obj/structure/closet/crate, -/obj/item/clothing/mask/balaclava, -/obj/item/restraints/handcuffs, -/obj/item/restraints/legcuffs/beartrap, -/turf/open/misc/asteroid, -/area/mine/explored) -"tIK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/explab) -"tJi" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hooded/ablative, -/obj/item/gun/energy/ionrifle, -/obj/item/gun/energy/temperature/security, -/obj/structure/reagent_dispensers/wall/peppertank/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"tJl" = ( -/obj/structure/window/reinforced, -/obj/structure/table/wood, -/obj/item/radio/intercom/directional/east, -/obj/item/reagent_containers/food/drinks/flask/gold, -/obj/item/hand_tele, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"tJz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"tJD" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Mix to Filter" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"tJG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"tJL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/prison) -"tJR" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/machinery/newscaster/directional/south, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"tJY" = ( -/obj/machinery/computer/department_orders/security{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/trimline/red/filled/warning{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"tKo" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/freezer, -/area/station/medical/coldroom) -"tKs" = ( -/obj/structure/bed, -/obj/effect/landmark/start/janitor, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/janitor) -"tKt" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness) -"tKH" = ( -/obj/machinery/suit_storage_unit/captain, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) -"tLb" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/obj/structure/table, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"tLg" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/security/office) -"tLk" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/smooth, -/area/station/maintenance/port/fore) -"tLo" = ( -/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/grimy, -/area/station/service/chapel/office) -"tLq" = ( -/obj/structure/closet/secure_closet/detective, -/obj/item/camera/detective, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"tLt" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/bar) -"tLy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"tLA" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/left) -"tLH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"tLK" = ( -/obj/machinery/door/airlock/engineering{ - name = "Auxillary Base Construction" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/aux_base, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"tLM" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"tLS" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/newscaster/directional/east, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"tLZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/garbage{ - spawn_loot_count = 2; - spawn_random_offset = 1; - spawn_scatter_radius = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/mid) -"tMh" = ( -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"tMq" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"tMG" = ( -/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/line, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lower) -"tMP" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Tunnel Access" - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"tMY" = ( -/turf/open/floor/iron/stairs/medium, -/area/station/cargo/miningdock) -"tNc" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"tNf" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"tNk" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/commons/dorms) -"tNn" = ( -/obj/machinery/telecomms/message_server/preset, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"tNy" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/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/science/ordnance/testlab) -"tOp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"tON" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/service/bar) -"tOU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"tOZ" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) -"tPf" = ( -/obj/structure/disposalpipe/segment, -/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, -/area/station/engineering/atmos) -"tPh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"tPE" = ( -/turf/closed/wall, -/area/station/hallway/secondary/entry) -"tPR" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) -"tPW" = ( -/obj/machinery/suit_storage_unit/engine, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"tPZ" = ( -/turf/closed/wall, -/area/station/science/lab) -"tQa" = ( -/obj/modular_map_root/tramstation{ - key = "maintenance_science_west" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/medical) -"tQt" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera{ - c_tag = "Cargo - Mining South-West"; - dir = 6; - network = list("ss13","cargo") - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"tRb" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/sand/plating, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating/airless, -/area/mine/explored) -"tRc" = ( -/obj/structure/chair/stool/bar/directional/east, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"tRd" = ( -/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, -/area/station/commons/storage/primary) -"tRf" = ( -/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) -"tRj" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/computer/prisoner/management{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/requests_console/directional/west{ - department = "Security"; - departmentType = 5; - name = "Security Requests Console" - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"tRr" = ( -/obj/machinery/door/airlock/hatch{ - name = "Ladder Access Hatch" - }, -/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, -/area/station/hallway/primary/tram/center) -"tRs" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/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/junction/flip{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"tRu" = ( -/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/commons/vacant_room/office) -"tRC" = ( -/turf/closed/wall/rock, -/area/station/engineering/supermatter/room) -"tRE" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"tRK" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/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, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"tRW" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8 - }, -/obj/effect/landmark/start/hangover, -/obj/effect/spawner/random/trash/graffiti{ - pixel_x = 32; - spawn_loot_chance = 25 - }, -/obj/effect/spawner/random/trash/graffiti{ - pixel_y = 32; - spawn_loot_chance = 25 - }, -/obj/effect/spawner/random/trash/graffiti{ - pixel_y = -32; - spawn_loot_chance = 25 - }, -/turf/open/floor/iron/freezer, -/area/station/commons/lounge) -"tRX" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw, -/obj/effect/spawner/random/vending/snackvend, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"tSp" = ( -/obj/structure/table/wood, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/carpet, -/area/station/service/chapel/monastery) -"tSq" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Medical Maintenance Access" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, -/turf/open/floor/iron/smooth, -/area/station/medical/coldroom) -"tSr" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"tSz" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"tSU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"tTp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"tTu" = ( -/obj/structure/table, -/obj/item/assembly/prox_sensor{ - pixel_x = 5; - pixel_y = 7 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 9; - pixel_y = -2 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"tTw" = ( -/obj/machinery/door/airlock{ - name = "Unisex Showers" - }, -/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/freezer, -/area/station/commons/toilet) -"tTJ" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/glass/reinforced, -/area/station/security/brig) -"tTK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"tTW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"tTZ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"tUm" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/white, -/area/station/science/research) -"tUp" = ( -/obj/structure/rack, -/obj/item/clothing/shoes/magboots{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"tUq" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"tUy" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/machinery/camera{ - c_tag = "Science - Left Entry Airlock"; - dir = 10; - network = list("ss13","rd") - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/research) -"tUS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"tUT" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"tVt" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"tVL" = ( -/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 - }, -/turf/open/floor/carpet, -/area/station/service/library) -"tVP" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001; - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"tWf" = ( -/obj/item/target/syndicate, -/turf/open/floor/engine, -/area/station/science/explab) -"tWt" = ( -/obj/structure/disposalpipe/segment, -/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/line{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lower) -"tWw" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation/entertainment) -"tWy" = ( -/obj/machinery/biogenerator, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/garden) -"tWA" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/lounge) -"tXe" = ( -/turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"tXn" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/service/chapel/monastery) -"tXs" = ( -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"tXu" = ( -/obj/structure/table, -/obj/item/storage/box/firingpins, -/obj/item/storage/box/firingpins, -/obj/item/key/security, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"tXK" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "QMLoad2"; - name = "Unloading Conveyor"; - pixel_x = -13; - pixel_y = -4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"tXV" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/electrolyzer, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"tYe" = ( -/obj/structure/table/reinforced, -/obj/machinery/keycard_auth/directional/south, -/obj/item/rcl/pre_loaded, -/obj/machinery/computer/security/telescreen/ce{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/item/clipboard, -/obj/item/paper/monitorkey, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"tYi" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/commons/lounge) -"tYs" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - 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, -/area/station/commons/fitness/recreation) -"tYK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/structure/lattice/catwalk, -/obj/machinery/door/poddoor/shutters{ - id = "trammaintdock" - }, -/turf/open/floor/plating, -/area/station/maintenance/port/central) -"tZi" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/line, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"tZo" = ( -/obj/structure/holosign/barrier/atmos, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"tZv" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"tZy" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"tZD" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/effect/landmark/observer_start, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"tZJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/effect/spawner/random/maintenance/four, -/obj/effect/spawner/random/engineering/flashlight, -/turf/open/floor/iron/smooth, -/area/station/maintenance/port/aft) -"tZO" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrous_input{ - dir = 8 - }, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"tZV" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/machinery/bluespace_vendor/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"uai" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"uax" = ( -/turf/open/floor/iron, -/area/station/cargo/storage) -"uaO" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Science - Xenobiology Kill Room Upper"; - network = list("ss13","rd","xeno") - }, -/obj/machinery/atmospherics/components/unary/passive_vent{ - dir = 4; - name = "killroom vent" - }, -/turf/open/floor/circuit/telecomms, -/area/station/science/xenobiology) -"uaU" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"uaX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ubc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/table/reinforced, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"ube" = ( -/obj/machinery/chem_mass_spec, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"ubf" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/machinery/computer/security{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"ubg" = ( -/obj/structure/railing{ - dir = 9 - }, -/turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"ubo" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/service/kitchen) -"ubx" = ( -/obj/effect/turf_decal/arrows/red{ - pixel_y = 15 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/engineering/atmospherics_engine) -"ubC" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/turf/open/floor/iron, -/area/station/security/prison) -"ubH" = ( -/turf/open/floor/iron/chapel{ - dir = 6 - }, -/area/station/service/chapel) -"ubO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"ubW" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"ucg" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"ucl" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = -2; - pixel_y = 2 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"ucs" = ( -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"ucH" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 6 - }, -/obj/machinery/firealarm/directional/east, -/obj/structure/closet/crate/science{ - name = "MOD core crate" - }, -/obj/item/mod/core/standard{ - pixel_x = -4 - }, -/obj/item/mod/core/standard{ - pixel_x = -4 - }, -/obj/item/mod/core/standard{ - pixel_x = -4 - }, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"ucP" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/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, -/area/station/commons/lounge) -"udb" = ( -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"udh" = ( -/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/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"udz" = ( -/obj/machinery/door/airlock/external{ - autoclose = 0; - frequency = 1449; - id_tag = "rightmost_upper_eva_internal"; - name = "External Access" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door_buttons/access_button{ - idDoor = "rightmost_upper_eva_internal"; - idSelf = "rightmost_upper_eva_airlock_control"; - name = "External Access Button"; - pixel_y = 24 - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/right) -"udF" = ( -/mob/living/simple_animal/hostile/lizard/space{ - dir = 4; - name = "Stuck-In-Rock" - }, -/turf/open/misc/asteroid/airless, -/area/mine/explored) -"udQ" = ( -/turf/closed/wall, -/area/station/cargo/warehouse) -"udT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/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, -/area/station/engineering/atmos) -"uem" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"uep" = ( -/obj/effect/turf_decal/tile{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "ert_bay_door"; - name = "Landing Bay Doors" - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"ueE" = ( -/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/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"ueK" = ( -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/effect/turf_decal/stripes, -/obj/effect/turf_decal/caution/stand_clear/red{ - dir = 4 - }, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/left) -"ueY" = ( -/obj/machinery/vending/modularpc, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"ueZ" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/engine/co2, -/area/station/engineering/atmos) -"ufv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/greater) -"ufG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"ufK" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"ufO" = ( -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"ufP" = ( -/obj/effect/turf_decal/trimline/green/filled/corner, -/obj/effect/turf_decal/trimline/green/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"ufU" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/sign/warning/vacuum/directional/west, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"ufW" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"ufY" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron, -/area/station/security/office) -"ugc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/storage/art) -"ugh" = ( -/obj/effect/turf_decal/siding/thinplating, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"ugl" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/warning{ - 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/white, -/area/station/science/research) -"ugm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/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, -/area/station/science/robotics/lab) -"ugq" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/machinery/door/window/left/directional/west{ - dir = 1; - name = "Delivery Desk"; - req_access = list("shipping") - }, -/obj/structure/disposalpipe/segment, -/obj/structure/desk_bell{ - pixel_x = -7 - }, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"ugt" = ( -/turf/closed/wall/r_wall, -/area/station/medical/virology) -"ugG" = ( -/obj/structure/cable/multilayer/multiz, -/obj/structure/sign/warning/electric_shock/directional/north, -/obj/effect/turf_decal/stripes/end, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"ugR" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"ugW" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Cargo Escape Airlock"; - space_dir = 4 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"ugX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/tram/mid) -"uhi" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/explab) -"uhm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"uhs" = ( -/obj/structure/sign/warning/vacuum/external/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"uhw" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) -"uhI" = ( -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/obj/effect/mapping_helpers/airlock/access/any/command/minisat, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"uhP" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/research) -"uib" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"uid" = ( -/turf/open/floor/eighties, -/area/station/commons/fitness/recreation/entertainment) -"uif" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/structure/sign/departments/medbay/alt/directional/north, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) -"uim" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"uin" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"uiv" = ( -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/iron/white/smooth_corner{ - dir = 4 - }, -/area/station/security/execution/education) -"uiz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/greater) -"uiD" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/obj/structure/window/reinforced/spawner, -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/wood, -/area/station/service/theater) -"uiP" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/maintenance/radshelter/civil) -"ujn" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"ujs" = ( -/obj/machinery/door/window/left/directional/south{ - name = "Library Desk Access"; - req_access = list("library") - }, -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/wood, -/area/station/service/library) -"ujC" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"ujI" = ( -/obj/structure/table, -/turf/open/floor/carpet, -/area/station/cargo/miningdock) -"ujM" = ( -/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/red/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"ujZ" = ( -/turf/open/floor/iron/white, -/area/station/science/explab) -"ukk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/item/assembly/mousetrap/armed, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"ukq" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/storage/tech) -"ukL" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"ukM" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"ukN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ukX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"ulk" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"ulo" = ( -/obj/machinery/door/airlock/security{ - name = "Interrogation" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "interro-court" - }, -/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/general, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"ulK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_output{ - dir = 8 - }, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"ulS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"ulV" = ( -/turf/closed/wall/r_wall, -/area/station/engineering/break_room) -"ulY" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"umc" = ( -/obj/structure/lattice, -/turf/open/openspace, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"ume" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/station/hallway/secondary/exit) -"umg" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"umi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/table, -/obj/item/candle, -/obj/effect/spawner/random/entertainment/lighter{ - pixel_x = 9 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) -"uml" = ( -/obj/machinery/door/airlock/hatch, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/tram/mid) -"umr" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electric_shock/directional/west, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"ums" = ( -/obj/structure/toilet, -/obj/machinery/light/small/directional/north, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/freezer, -/area/station/science/lower) -"umA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"umK" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"umL" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/security/office) -"umP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/lesser) -"umQ" = ( -/obj/structure/flora/bush/leavy/style_random, -/obj/structure/flora/tree/palm/style_random, -/turf/open/floor/grass, -/area/station/science/genetics) -"umS" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/effect/landmark/start/orderly, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"und" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"ung" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron, -/area/station/security/prison) -"unl" = ( -/turf/closed/wall, -/area/station/cargo/miningdock/cafeteria) -"unm" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/stripes/asteroid/box, -/turf/open/floor/plating/airless, -/area/mine/explored) -"uno" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/radshelter/civil) -"unE" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"uof" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Civilian - Radstorm Shelter"; - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/radshelter/civil) -"uol" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/landmark/start/barber, -/obj/machinery/button/curtain{ - id = "barbershopcurtains1"; - pixel_x = 25; - pixel_y = 24 - }, -/turf/open/floor/iron, -/area/service/salon) -"uou" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"uov" = ( -/turf/closed/wall/r_wall, -/area/station/security/processing) -"uow" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/extinguisher{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/extinguisher, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"uoD" = ( -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable/layer3, -/turf/open/floor/plating, -/area/station/engineering/supermatter) -"uoH" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/closet/firecloset, -/obj/effect/landmark/start/hangover/closet, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/hallway/primary/tram/center) -"uoI" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/spawner/random/entertainment/arcade, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/lounge) -"upj" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"upt" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"upx" = ( -/obj/structure/table/wood, -/obj/machinery/computer/med_data/laptop{ - dir = 1; - pixel_y = 4 - }, -/obj/structure/noticeboard/directional/south, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"upz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/filingcabinet, -/obj/machinery/requests_console/directional/south{ - department = "Security"; - departmentType = 5 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"upS" = ( -/obj/machinery/camera/motion/directional/south{ - c_tag = "Secure - AI Lower External North"; - network = list("ss13","minisat") - }, -/turf/open/space/basic, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"upY" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"uqm" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/obj/effect/spawner/random/vending/colavend, -/obj/structure/railing/corner, -/obj/effect/turf_decal/siding/thinplating/corner, -/obj/item/radio/intercom/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Civilian - Dormitories West" - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"uqo" = ( -/obj/machinery/telecomms/processor/preset_three, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"uqr" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/maintenance/radshelter/service) -"uqs" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"uqy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"uqC" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/iron, -/area/station/security/office) -"uqL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/turret_protected/ai_upload) -"uqR" = ( -/obj/effect/landmark/navigate_destination/dockarrival, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"uqY" = ( -/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/junction{ - dir = 1 - }, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/lesser) -"urm" = ( -/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/east, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"urn" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"urq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"urv" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, -/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, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"urz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"urL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/hallway/primary/central) -"urP" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/wooden_tv, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/machinery/button/door/directional/east{ - id = "kanyewest"; - name = "Privacy Shutters" - }, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"usc" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron, -/area/station/security/prison) -"uss" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/central) -"usA" = ( -/obj/effect/turf_decal/bot, -/obj/structure/transit_tube/station/reverse/flipped{ - dir = 4 - }, -/obj/structure/transit_tube_pod, -/turf/open/floor/plating, -/area/station/engineering/transit_tube) -"usG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/large, -/area/station/hallway/secondary/entry) -"usI" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/duct, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/service/bar) -"usW" = ( -/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/supply/hidden/layer4, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"usY" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/department/cargo) -"uti" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/food_packaging, -/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, -/area/station/maintenance/department/security) -"utj" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"utx" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner, -/obj/effect/turf_decal/trimline/brown/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/junction{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"utB" = ( -/obj/structure/table, -/obj/item/multitool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/right) -"utG" = ( -/obj/structure/fireaxecabinet/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"utK" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"utL" = ( -/obj/machinery/light/directional/north, -/obj/machinery/camera{ - c_tag = "Secure - AI Upper Ring South"; - dir = 9; - network = list("ss13","aicore") - }, -/turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"utU" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/modular_computer/console/preset/id, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) -"utX" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/science/ordnance/testlab) -"utY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/spawner/random/structure/crate_empty, -/obj/effect/spawner/random/maintenance/five, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"uue" = ( -/obj/machinery/power/turbine/turbine_outlet{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"uuf" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"uun" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"uuL" = ( -/obj/structure/sign/warning/vacuum/external/directional/east, -/obj/machinery/computer/security/labor, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"uuM" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/obj/machinery/newscaster/directional/north, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/camera{ - c_tag = "Hallway - Top Right Service"; - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"uuO" = ( -/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/cable, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"uuQ" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"uuR" = ( -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) -"uva" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/station/commons/fitness) -"uvg" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"uvp" = ( -/turf/closed/wall/rust, -/area/station/maintenance/department/security) -"uvD" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/structure/railing/corner, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw{ - dir = 1 - }, -/obj/effect/turf_decal/caution{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"uvE" = ( -/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, -/area/station/cargo/storage) -"uvH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"uvN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/food_packaging, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/greater) -"uvY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"uvZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"uwc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"uwj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"uwv" = ( -/obj/structure/chair/sofa/corp/left, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/obj/effect/landmark/start/paramedic, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"uwA" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/directional/west{ - c_tag = "Hallway - Central Tram Platform North-West" - }, -/obj/effect/turf_decal/caution{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"uwF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/girder, -/turf/open/floor/iron/smooth, -/area/station/maintenance/port/aft) -"uwO" = ( -/obj/structure/marker_beacon/burgundy, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"uwT" = ( -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/effect/turf_decal/stripes, -/obj/effect/turf_decal/caution/stand_clear/red{ - dir = 4 - }, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/center) -"uwY" = ( -/mob/living/simple_animal/bot/secbot/beepsky, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"uxk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/service/chapel/monastery) -"uxn" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/hydroponics/glass{ - name = "Hydroponics" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"uxr" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/suit/armor/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/head/helmet/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/riot, -/obj/item/clothing/head/helmet/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/shield/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/shield/riot, -/obj/item/shield/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"uxv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"uxD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/landmark/start/science_guard, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"uxE" = ( -/obj/machinery/computer/security{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"uxN" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"uyd" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"uye" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"uyi" = ( -/obj/effect/turf_decal/siding/thinplating/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, -/area/station/commons/fitness/recreation) -"uyk" = ( -/obj/machinery/door/airlock/mining{ - name = "Drone Bay" - }, -/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/cable, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"uyl" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Commons Area" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"uyw" = ( -/turf/closed/wall, -/area/station/security/checkpoint) -"uyA" = ( -/obj/structure/table, -/obj/item/storage/box, -/obj/item/storage/box, -/obj/machinery/firealarm/directional/south, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"uyG" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder{ - pixel_x = -1; - pixel_y = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/line, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"uyI" = ( -/obj/structure/closet/firecloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/mid) -"uyJ" = ( -/turf/open/floor/iron, -/area/station/security/prison/workout) -"uyO" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"uze" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"uzh" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/table/reinforced/rglass, -/obj/structure/window, -/obj/item/hairbrush, -/obj/item/lipstick/random, -/turf/open/floor/iron, -/area/service/salon) -"uzk" = ( -/obj/machinery/button/door/directional/west{ - id = "private_d"; - name = "Privacy Bolts"; - normaldoorcontrol = 1; - pixel_x = 24; - pixel_y = -9; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/station/commons/dorms) -"uzm" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/cargo/storage) -"uzG" = ( -/obj/machinery/computer/mechpad, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"uAa" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable, -/obj/structure/sign/warning/electric_shock/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"uAe" = ( -/obj/structure/transit_tube, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/mine/explored) -"uAg" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/white, -/area/station/science/lower) -"uAh" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/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/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"uAm" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"uAu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"uAx" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"uAP" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/vending/wardrobe/medi_wardrobe, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"uAX" = ( -/obj/structure/table, -/obj/item/raw_anomaly_core/random{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/raw_anomaly_core/random{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/raw_anomaly_core/random, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"uBg" = ( -/obj/structure/cable, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"uBr" = ( -/turf/closed/wall, -/area/station/command/heads_quarters/cmo) -"uBu" = ( -/obj/item/radio/intercom/prison/directional/south, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron, -/area/station/security/prison) -"uBH" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"uBO" = ( -/obj/structure/chair/stool/bar/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"uCm" = ( -/obj/machinery/light/directional/north, -/turf/open/openspace, -/area/station/hallway/primary/tram/center) -"uCy" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/hallway/secondary/exit/departure_lounge) -"uCH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"uDa" = ( -/obj/structure/rack, -/obj/item/wrench, -/obj/item/knife/kitchen, -/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/white, -/area/station/science/cytology) -"uDc" = ( -/obj/effect/turf_decal/trimline/brown/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/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"uDm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"uDs" = ( -/obj/structure/chair/stool/bar/directional/south, -/obj/machinery/camera/directional/west{ - c_tag = "Civilian - Entertainment Center South" - }, -/turf/open/floor/eighties, -/area/station/commons/fitness/recreation/entertainment) -"uDu" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Laser Room" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"uDF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/service/kitchen/coldroom) -"uDI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/stack/sheet/mineral/titanium{ - amount = 3 - }, -/turf/open/floor/iron, -/area/station/maintenance/port/central) -"uDW" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/white, -/area/station/science/research) -"uEe" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"uEp" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/brig) -"uEr" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Ordnance Lab Maintenance" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance_storage, -/turf/open/floor/iron, -/area/station/science/ordnance/storage) -"uEL" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"uEM" = ( -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 1 - }, -/obj/structure/railing/corner, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"uEO" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"uER" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/structure/table/reinforced, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/blood_filter, -/obj/machinery/light_switch/directional/east{ - pixel_x = 22; - pixel_y = 9 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"uFc" = ( -/obj/structure/lattice/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/tram/left) -"uFe" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/corner, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"uFp" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/structure/fluff/tram_rail/floor{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"uFr" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"uFA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"uFB" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/machinery/status_display/evac/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"uFC" = ( -/obj/machinery/power/shieldwallgen, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"uFE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Prison Garden" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"uFF" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/science/ordnance/storage) -"uFX" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"uGb" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"uGf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"uGh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/caution, -/turf/open/floor/plating, -/area/station/maintenance/tram/left) -"uGy" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/engine_smes) -"uGL" = ( -/obj/structure/bed/roller, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"uGW" = ( -/turf/closed/wall, -/area/station/cargo/miningdock) -"uHb" = ( -/obj/machinery/photocopier, -/obj/effect/turf_decal/tile/brown/fourcorners, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"uHf" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"uHu" = ( -/obj/effect/landmark/start/engineering_guard, -/obj/structure/chair/office, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"uHA" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/item/flashlight/lamp/bananalamp{ - pixel_y = 3 - }, -/turf/open/floor/iron, -/area/station/service/theater) -"uHH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/landmark/start/hangover, -/turf/open/floor/wood, -/area/station/commons/dorms) -"uHI" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"uHT" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/neutral/filled/warning, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"uIb" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/flip, -/turf/open/floor/iron, -/area/station/commons/dorms) -"uIo" = ( -/obj/machinery/door/firedoor, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/service/hydroponics/garden) -"uIp" = ( -/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/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"uIx" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"uIA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/dorms) -"uIO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"uJk" = ( -/obj/structure/easel, -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/twentythree_nineteen, -/obj/item/canvas/twentythree_twentythree, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) -"uJq" = ( -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"uJr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"uJx" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - dir = 8; - pixel_y = 2 - }, -/obj/structure/window/reinforced{ - pixel_y = 2 - }, -/obj/effect/spawner/random/decoration/ornament, -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) -"uJH" = ( -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"uJN" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/commons/dorms) -"uKc" = ( -/obj/machinery/door/airlock/research{ - id_tag = "ResearchExt"; - name = "Research Division" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-entrance-right" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Sciencelockdown"; - name = "Research Lockdown Blastdoor" - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/obj/effect/mapping_helpers/airlock/access/any/command/minisat, -/obj/effect/mapping_helpers/airlock/access/any/command/ai_upload, -/obj/effect/mapping_helpers/airlock/access/any/science/general, -/turf/open/floor/iron, -/area/station/science/research) -"uKg" = ( -/obj/effect/turf_decal/siding/thinplating{ - 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/commons/fitness/recreation) -"uKh" = ( -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/navigate_destination/techstorage, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"uKt" = ( -/obj/structure/bed, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron/white, -/area/station/security/medical) -"uKy" = ( -/obj/structure/closet{ - name = "Evidence Closet 1" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/office) -"uKI" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/engineering/transit_tube) -"uKJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Maintenance - West Tram Tunnel 3"; - dir = 9 - }, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"uKM" = ( -/obj/effect/turf_decal/trimline/red/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/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/security/brig) -"uKP" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/machinery/light/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/cargo/storage) -"uKY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"uLe" = ( -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"uLz" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/shower{ - pixel_y = 24 - }, -/turf/open/floor/iron/freezer, -/area/station/security/prison) -"uLC" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/security/brig) -"uLO" = ( -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/service/kitchen) -"uLW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"uLX" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/tram/center) -"uMf" = ( -/obj/machinery/door/airlock/medical{ - name = "Surgery" - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, -/turf/open/floor/iron/white, -/area/station/medical/surgery/fore) -"uMn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/right) -"uMo" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/filled/corner, -/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, -/area/station/service/hydroponics) -"uMs" = ( -/obj/effect/turf_decal/trimline/red/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, -/area/station/security/brig) -"uMI" = ( -/obj/machinery/camera{ - c_tag = "Service - Upper Power Hatch"; - dir = 9; - network = list("ss13","Service") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/central) -"uMO" = ( -/obj/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"uMR" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"uMX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/food_packaging, -/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, -/area/station/maintenance/starboard/greater) -"uNa" = ( -/obj/machinery/computer/security/mining{ - dir = 4 - }, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"uNl" = ( -/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, -/obj/machinery/camera/directional/south{ - c_tag = "Cargo Bay - Drone Launch Room"; - pixel_x = 14 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"uNC" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"uNI" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/valve/digital{ - name = "Waste Release" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"uNN" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/structure/closet/emcloset, -/obj/machinery/camera/directional/south{ - c_tag = "Medical - Virology Airlock"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"uOg" = ( -/obj/machinery/computer/atmos_control/carbon_tank{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"uOj" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/dropper, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/science/lab) -"uOl" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"uOy" = ( -/obj/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/science/ordnance/testlab) -"uOB" = ( -/turf/closed/wall/rock/porous, -/area/station/maintenance/port/fore) -"uOW" = ( -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/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/science/ordnance/storage) -"uOZ" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "CO2 Outlet Pump" - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"uPa" = ( -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = -28 - }, -/obj/structure/sign/directions/medical{ - dir = 8; - pixel_y = -34 - }, -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = -40 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_cw, -/obj/structure/sign/directions/upload{ - pixel_y = -22 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"uPc" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/cargo/miningdock/cafeteria) -"uPe" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) -"uPk" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/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/white, -/area/station/medical/medbay/lobby) -"uPv" = ( -/obj/machinery/washing_machine, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison) -"uPz" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/bed/roller, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"uPD" = ( -/obj/structure/chair, -/turf/open/floor/glass, -/area/station/service/kitchen/diner) -"uPE" = ( -/obj/structure/closet/secure_closet/courtroom, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"uPH" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - 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 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/lounge) -"uPU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/construction/mining/aux_base) -"uQe" = ( -/obj/machinery/duct, -/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/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"uQh" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"uQq" = ( -/obj/structure/table, -/obj/item/storage/fancy/cigarettes{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/storage/secure/briefcase{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/iron, -/area/station/security/office) -"uQy" = ( -/obj/machinery/smartfridge/food, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchencounter"; - name = "Kitchen Counter Shutters" - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen) -"uQB" = ( -/obj/modular_map_root/tramstation{ - key = "maintenance_storagemid" - }, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"uQK" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/chair/stool/directional/east, -/obj/effect/landmark/start/virologist, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"uQQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"uQW" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"uQX" = ( -/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/commons/fitness/recreation/entertainment) -"uRd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/science) -"uRx" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 5 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/iron/white, -/area/station/science/explab) -"uRD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/theater) -"uRS" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/structure/cable/layer3, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"uRU" = ( -/obj/structure/table, -/obj/machinery/light/directional/north, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) -"uSB" = ( -/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, -/area/station/engineering/gravity_generator) -"uSQ" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"uSY" = ( -/turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) -"uTa" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"uTi" = ( -/obj/machinery/door/window/left/directional/south{ - name = "Maximum Security Test Chamber"; - req_access = list("xenobiology") - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"uTl" = ( -/obj/structure/closet/secure_closet/brig/genpop, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/reagent_dispensers/wall/peppertank/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"uTp" = ( -/obj/item/relic, -/turf/open/misc/asteroid/airless, -/area/mine/explored) -"uTs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"uTu" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/fitness) -"uTG" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"uUa" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"uUm" = ( -/obj/structure/disposalpipe/segment{ - 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/commons/fitness/recreation) -"uUs" = ( -/obj/structure/closet/secure_closet/security/engine, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/item/clothing/mask/whistle, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"uUx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/light_switch/directional/south{ - pixel_x = 8 - }, -/turf/open/floor/carpet, -/area/station/command/bridge) -"uUA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/girder, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/greater) -"uUR" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/structure/sign/warning/biohazard/directional/south, -/turf/open/floor/iron/white, -/area/station/science/research) -"uUT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"uVc" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"uVg" = ( -/obj/machinery/deepfryer, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/service/kitchen) -"uVj" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"uVo" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"uVE" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/brig) -"uVI" = ( -/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 = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"uVV" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/three, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/central) -"uVX" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"uWc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/grille, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/science) -"uWi" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"uWl" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/item/radio/intercom/directional/south, -/obj/item/storage/backpack/duffelbag/med/surgery, -/turf/open/floor/iron/white, -/area/station/medical/surgery/fore) -"uWr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing, -/turf/open/floor/plating, -/area/station/maintenance/tram/left) -"uWO" = ( -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/station/medical/virology) -"uWW" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) -"uXc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/graffiti{ - spawn_loot_chance = 35; - spawn_loot_count = 3; - spawn_random_offset = 1; - spawn_scatter_radius = 3 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/mid) -"uXg" = ( -/obj/structure/table, -/obj/item/radio/intercom/directional/east{ - pixel_y = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/item/stack/sheet/iron/five, -/obj/item/stack/cable_coil/five, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"uXv" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"uXK" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/white, -/area/station/science/lab) -"uXL" = ( -/obj/machinery/airalarm/directional/west, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/freezer, -/area/station/security/prison) -"uXY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/greater) -"uYa" = ( -/obj/machinery/skill_station, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) -"uYf" = ( -/obj/machinery/hydroponics/constructable, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"uYi" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/turf/open/floor/iron/white, -/area/station/science/explab) -"uYs" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"uYx" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/iron, -/area/station/security/office) -"uYK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/effect/turf_decal/tile{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"uYN" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/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, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"uZd" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/station/service/chapel/monastery) -"uZs" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"uZy" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/bar) -"uZB" = ( -/obj/structure/reflector/single/anchored{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) -"uZE" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/dorms) -"uZO" = ( -/obj/effect/turf_decal/trimline/neutral/filled/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 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"uZQ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"uZS" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "prisondorm"; - name = "Prison Dorm 2" - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/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, -/area/station/security/prison/safe) -"uZW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"vab" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/security{ - name = "Orderly's Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/orderly, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"vad" = ( -/turf/open/floor/iron/showroomfloor, -/area/station/service/kitchen/coldroom) -"vas" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/service/kitchen) -"vaw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"vaC" = ( -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"vaG" = ( -/obj/structure/table, -/obj/structure/cable, -/obj/item/toy/cards/deck, -/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/security/prison) -"vaT" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"vbd" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"vbo" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/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/right/directional/east{ - name = "Secure Medical Storage"; - req_access = list("medical") - }, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"vbp" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"vbA" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"vbL" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/item/radio/intercom/directional/east, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"vbN" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/tram/left) -"vbT" = ( -/obj/machinery/power/tracker, -/obj/structure/cable, -/turf/open/floor/engine/hull/reinforced, -/area/space/nearstation) -"vbU" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"vbV" = ( -/obj/structure/table/wood/fancy/royalblue, -/obj/structure/sign/painting/library_secure{ - pixel_x = 32 - }, -/obj/effect/spawner/random/decoration/statue{ - spawn_loot_chance = 50 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/machinery/door/window{ - dir = 8; - name = "Secure Art Exhibition"; - req_access = list("library") - }, -/turf/open/floor/wood/large, -/area/station/service/library) -"vcq" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Maintenance - Escape Pod"; - dir = 9 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"vcv" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"vcz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"vcA" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"vcH" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"vcI" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"vcJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"vcZ" = ( -/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/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/crew_quarters/dorms) -"vda" = ( -/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, -/area/station/commons/dorms) -"vdg" = ( -/obj/effect/landmark/start/cyborg, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"vdv" = ( -/obj/effect/turf_decal/siding/wood, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/window/reinforced/spawner, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/service/theater) -"vdQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"vdT" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"vec" = ( -/obj/effect/turf_decal/stripes{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"veh" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/main) -"vev" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"vey" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"veF" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Tunnel Access" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"veQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/random/trash/graffiti{ - pixel_y = 32; - spawn_loot_chance = 50 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"veV" = ( -/turf/closed/wall, -/area/station/commons/toilet) -"vfd" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"vft" = ( -/obj/structure/table, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"vfD" = ( -/obj/effect/turf_decal/trimline/yellow/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, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"vfH" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/corner, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"vfP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/tram/right) -"vfQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/left) -"vfR" = ( -/obj/machinery/power/emitter, -/turf/open/floor/plating, -/area/station/engineering/engine_smes) -"vfU" = ( -/obj/structure/cable, -/obj/structure/grille, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/mine/explored) -"vfY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"vgc" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/security/medical) -"vgn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/garbage{ - spawn_loot_count = 2; - spawn_random_offset = 1; - spawn_scatter_radius = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/right) -"vgp" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/virology{ - name = "Break Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/turf/open/floor/iron/dark, -/area/station/medical/virology) -"vgq" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Mix to Air" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vgv" = ( -/obj/effect/turf_decal/trimline/neutral/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, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"vgw" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Recharge Bay" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/command/minisat, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"vgF" = ( -/obj/machinery/duct, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"vgZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/common/cryopods) -"vhl" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/office) -"vhn" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 5 - }, -/obj/machinery/computer/cargo/request{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"vhu" = ( -/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) -"vhB" = ( -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/turf_decal/sand/plating, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"vhI" = ( -/obj/structure/closet/firecloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/greater) -"vhT" = ( -/obj/structure/table, -/obj/item/assembly/igniter{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/assembly/igniter{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/assembly/igniter{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/assembly/igniter{ - pixel_x = 2; - pixel_y = -1 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"vik" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"vin" = ( -/obj/structure/table/wood, -/obj/machinery/libraryscanner, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/siding/wood, -/obj/machinery/camera/directional/west{ - c_tag = "Civilian - Library West" - }, -/turf/open/floor/wood, -/area/station/service/library) -"viE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics2"; - name = "Robotics Lab Shutters"; - dir = 1 - }, -/turf/open/floor/plating, -/area/station/science/robotics/lab) -"viW" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/crayon{ - icon_state = "i"; - name = "graffiti"; - paint_colour = "#FF9300"; - pixel_x = 8; - pixel_y = -32 - }, -/obj/effect/decal/cleanable/crayon{ - icon_state = "i"; - name = "graffiti"; - paint_colour = "#FF9300"; - pixel_x = 4; - pixel_y = -32 - }, -/obj/effect/decal/cleanable/crayon{ - icon_state = "i"; - name = "graffiti"; - paint_colour = "#FF9300"; - pixel_y = -32 - }, -/obj/effect/decal/cleanable/crayon{ - icon_state = "i"; - name = "graffiti"; - paint_colour = "#FF9300"; - pixel_x = -4; - pixel_y = -32 - }, -/obj/effect/decal/cleanable/crayon{ - icon_state = "x"; - name = "graffiti"; - paint_colour = "#FF9300"; - pixel_x = 4; - pixel_y = -32 - }, -/obj/item/clothing/shoes/clown_shoes, -/obj/item/clothing/mask/gas/clown_hat, -/turf/open/floor/plating, -/area/station/engineering/main) -"vja" = ( -/obj/structure/cable, -/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, -/area/station/security/execution/transfer) -"vjb" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Gas to Chamber" - }, -/obj/machinery/button/door/directional/east{ - id = "cytologysecure"; - name = "Secure Pen Lockdown" - }, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"vje" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"vju" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/service/bar) -"vjz" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/medical) -"vjI" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"vjK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/showcase/cyborg/old{ - pixel_y = 20 - }, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) -"vkd" = ( -/obj/structure/closet/crate/coffin, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/station/service/chapel/monastery) -"vkH" = ( -/obj/machinery/griddle, -/turf/open/floor/iron/white, -/area/station/service/kitchen) -"vkO" = ( -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vlb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/effect/landmark/start/orderly, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"vle" = ( -/turf/closed/wall, -/area/station/maintenance/disposal) -"vlf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door_buttons/airlock_controller{ - idExterior = "rightmost_lower_eva_external"; - idInterior = "rightmost_lower_eva_internal"; - idSelf = "rightmost_lower_eva_airlock_control"; - name = "External Access Console"; - pixel_y = -24 - }, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/right) -"vlo" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"vlO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/misc/asteroid/airless, -/area/mine/explored) -"vmd" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 5 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"vme" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/turf/open/floor/iron/white, -/area/station/science/genetics) -"vmB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"vmM" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 - }, -/obj/structure/sign/warning/no_smoking/directional/south, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"vmX" = ( -/obj/effect/spawner/random/vending/colavend, -/turf/open/floor/iron/dark/smooth_large, -/area/station/hallway/secondary/entry) -"vnD" = ( -/obj/structure/reagent_dispensers/fueltank/large, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"vnV" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"vnW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, -/obj/machinery/light/directional/north, -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - Atmospherics Distribution Loop"; - dir = 9; - network = list("ss13","engineering") - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/pumproom) -"vob" = ( -/obj/structure/bookcase/random/religion, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"vod" = ( -/obj/effect/landmark/navigate_destination/teleporter, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) -"voi" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - 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 = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"vot" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/junction/flip, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"vov" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kanyewest"; - name = "Privacy Shutters"; - dir = 8 - }, -/turf/open/floor/plating, -/area/station/security/detectives_office) -"voA" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/item/clothing/gloves/color/latex/nitrile, -/obj/item/clothing/gloves/color/latex/nitrile, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/storage/belt/medical, -/turf/open/floor/iron/dark, -/area/station/medical/storage) -"voE" = ( -/obj/machinery/door/airlock/hatch, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/tram/mid) -"voN" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Civilian - Recreational Area East" - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"voZ" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Medical - Central North-West"; - dir = 10; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/caution, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"vpS" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ - dir = 6 - }, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"vpU" = ( -/obj/effect/turf_decal/trimline/neutral/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, -/turf/open/floor/iron, -/area/station/commons/dorms) -"vpY" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"vqg" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Courtroom" - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/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/security/court, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"vqp" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"vqr" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation/entertainment) -"vqI" = ( -/obj/effect/turf_decal/trimline/red/arrow_cw, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"vqK" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/item/assembly/mousetrap/armed, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=1-TunnelLeft"; - location = "10-TunnelLeftBottom" - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"vqQ" = ( -/obj/effect/turf_decal/sand, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Security - Rec Room East"; - dir = 6; - network = list("ss13","Security","prison") - }, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"vqV" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"vrd" = ( -/obj/structure/table/wood, -/obj/machinery/firealarm/directional/north, -/obj/item/storage/book/bible, -/turf/open/floor/iron/chapel{ - dir = 9 - }, -/area/station/service/chapel) -"vre" = ( -/obj/structure/stairs/north, -/turf/open/floor/iron/stairs/medium, -/area/station/hallway/secondary/construction/engineering) -"vrh" = ( -/turf/open/misc/asteroid, -/area/station/maintenance/department/security) -"vrj" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/table/glass, -/obj/item/storage/medkit/regular{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/medkit/regular, -/obj/machinery/camera/directional/south{ - c_tag = "Medical - Main North"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"vrx" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"vry" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/external{ - autoclose = 0; - frequency = 1449; - id_tag = "middleright_upper_eva_internal"; - name = "External Access" - }, -/obj/machinery/door_buttons/access_button{ - idDoor = "middleright_upper_eva_internal"; - idSelf = "middleright_upper_eva_airlock_control"; - name = "External Access Button"; - pixel_y = 24 - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/center) -"vrN" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/landmark/start/hangover, -/obj/effect/mapping_helpers/trapdoor_placer, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"vrO" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/lounge) -"vrV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"vrW" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"vrZ" = ( -/obj/machinery/door/airlock{ - name = "Custodial Closet" - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/turf_decal/trimline/purple/filled/warning, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/duct, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/service/janitor, -/turf/open/floor/iron, -/area/station/service/janitor) -"vsg" = ( -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/machinery/camera/directional/west, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/common/cryopods) -"vsh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"vsz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/station_engineer, -/obj/structure/cable/layer3, -/turf/open/floor/iron, -/area/station/engineering/main) -"vsA" = ( -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/maint) -"vsE" = ( -/obj/effect/turf_decal/tile, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"vsO" = ( -/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/white, -/area/station/medical/medbay/central) -"vsR" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"vsU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/closet/radiation, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"vsV" = ( -/obj/machinery/teleport/station, -/obj/machinery/light/small/directional/west, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"vtb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/station/commons/dorms) -"vtj" = ( -/obj/structure/chair/office, -/obj/effect/landmark/start/head_of_personnel, -/obj/machinery/button/flasher{ - id = "hopflash"; - pixel_x = 38; - pixel_y = -25 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"vtk" = ( -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/sand/plating, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) -"vtr" = ( -/obj/item/kirbyplants/photosynthetic, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) -"vtD" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"vtK" = ( -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"vtQ" = ( -/obj/effect/turf_decal/trimline/neutral/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/service/chapel/monastery) -"vua" = ( -/turf/open/floor/carpet, -/area/station/service/chapel/monastery) -"vuc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/wideplating/corner{ - dir = 4 - }, -/turf/open/floor/circuit/green, -/area/station/ai_monitored/command/nuke_storage) -"vud" = ( -/obj/structure/disposalpipe/segment{ - 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/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/engineering/main) -"vuo" = ( -/obj/machinery/door/airlock{ - id_tag = "commissarydoor"; - name = "Commissary" - }, -/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/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/cargo) -"vuB" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"vuM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/warehouse) -"vuO" = ( -/obj/structure/bed/roller, -/turf/open/floor/iron/white, -/area/station/security/execution/education) -"vuS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door_buttons/airlock_controller{ - idExterior = "middleright_lower_eva_external"; - idInterior = "middleright_lower_eva_internal"; - idSelf = "middleright_lower_eva_airlock_control"; - name = "External Access Console"; - pixel_y = -24 - }, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/center) -"vuV" = ( -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"vuX" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"vvk" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"vvl" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"vvv" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"vvA" = ( -/obj/machinery/light/directional/east, -/obj/structure/flora/bush/lavendergrass/style_random, -/turf/open/floor/grass, -/area/station/medical/virology) -"vvC" = ( -/obj/machinery/computer/gateway_control, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/command/gateway) -"vvK" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/commons/storage/art) -"vvN" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 6 - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/clipboard, -/obj/item/pen/red, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron, -/area/station/cargo/office) -"vvT" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Civilian - Recreational Area West" - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"vvW" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/vending/wardrobe/law_wardrobe, -/obj/machinery/camera{ - c_tag = "Civilian - Lawyer's Office"; - dir = 9 - }, -/turf/open/floor/wood, -/area/station/service/lawoffice) -"vvY" = ( -/obj/machinery/disposal/delivery_chute{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal) -"vwb" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"vwe" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"vwn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/security/medical) -"vwL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"vwO" = ( -/obj/machinery/door/airlock/grunge{ - name = "Entertainment Center" - }, -/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/commons/fitness/recreation/entertainment) -"vwZ" = ( -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"vxe" = ( -/obj/effect/turf_decal/stripes{ - dir = 5 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"vxl" = ( -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/white/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"vxm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/turf/open/floor/wood, -/area/station/service/bar) -"vxo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/graffiti{ - spawn_loot_chance = 35; - spawn_loot_count = 3; - spawn_random_offset = 1; - spawn_scatter_radius = 3 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/left) -"vxv" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"vxB" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"vxC" = ( -/obj/effect/turf_decal/tile, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"vxH" = ( -/obj/structure/cable, -/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, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/prison) -"vxM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Lounge" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) -"vyq" = ( -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"vyD" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/department/science) -"vyI" = ( -/obj/item/stack/ore/iron, -/turf/open/misc/asteroid, -/area/mine/explored) -"vyM" = ( -/obj/structure/noticeboard/directional/north, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Security - Main Office North"; - dir = 9; - network = list("ss13","Security") - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"vyR" = ( -/obj/effect/spawner/random/structure/closet_private, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"vzf" = ( -/obj/structure/table/wood, -/obj/item/folder{ - pixel_y = 2 - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"vzt" = ( -/obj/item/flashlight/flare, -/turf/open/misc/asteroid, -/area/station/medical/chemistry) -"vzB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"vzM" = ( -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/poddoor/shutters{ - id = "aux_base_shutters"; - name = "Auxillary Base Shutters" - }, -/turf/open/floor/plating, -/area/station/construction/mining/aux_base) -"vzO" = ( -/obj/effect/turf_decal/sand/plating, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/station/engineering/transit_tube) -"vzU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/ai_monitored/security/armory) -"vzY" = ( -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/greater) -"vAm" = ( -/obj/machinery/computer/bank_machine{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/machinery/door/window/left/directional/west{ - dir = 1; - name = "Terminal Access"; - req_access = list("qm") - }, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock/oresilo) -"vAr" = ( -/obj/machinery/rnd/production/techfab/department/service, -/obj/structure/window/reinforced/spawner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"vAs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/machinery/camera/motion{ - c_tag = "Secure - AI Lower Ring Access"; - dir = 9; - network = list("aicore","ss13") - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"vAF" = ( -/obj/structure/chair, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/commons/fitness) -"vAH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/toy/plush/beeplushie, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"vAM" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 - }, -/obj/structure/table, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit) -"vAU" = ( -/obj/effect/turf_decal/stripes{ - 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, -/area/station/science/ordnance/storage) -"vBg" = ( -/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/freezer, -/area/station/commons/toilet) -"vBi" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/station/maintenance/tram/right) -"vBE" = ( -/obj/structure/chair/office/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"vBF" = ( -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"vBM" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"vBT" = ( -/obj/machinery/computer/crew{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) -"vBW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"vBX" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"vCa" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 1 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vCc" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"vCf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/crew_quarters/dorms) -"vCk" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/structure/disposalpipe/segment{ - 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/duct, -/turf/open/floor/iron/white, -/area/station/medical/surgery/fore) -"vCx" = ( -/obj/structure/flora/bush/flowers_yw/style_random, -/turf/open/floor/grass, -/area/station/common/cryopods) -"vCA" = ( -/obj/item/kirbyplants/random, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/science/ordnance/storage) -"vCI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"vCJ" = ( -/obj/effect/turf_decal/trimline/neutral/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, -/area/station/commons/dorms) -"vCS" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage" - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - 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, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/white, -/area/station/medical/storage) -"vCY" = ( -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) -"vCZ" = ( -/turf/closed/wall, -/area/station/service/chapel/monastery) -"vDg" = ( -/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/engineering{ - name = "Power Access Hatch" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/medical) -"vDG" = ( -/obj/structure/filingcabinet/chestdrawer{ - pixel_y = 2 - }, -/obj/structure/sign/poster/official/love_ian{ - pixel_x = -32 - }, -/obj/machinery/button/door/directional/north{ - id = "hop"; - name = "Privacy Shutters Control"; - req_access = list("kitchen") - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hop) -"vDH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vDK" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"vEb" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"vEe" = ( -/obj/structure/window/reinforced/spawner, -/obj/machinery/chem_heater/withbuffer, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"vEq" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vEF" = ( -/obj/structure/closet/secure_closet/brig, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"vEK" = ( -/obj/machinery/medical_kiosk, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"vEX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"vFx" = ( -/obj/machinery/gulag_item_reclaimer{ - pixel_x = 32 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"vFy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/transit_tube/horizontal{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"vFF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"vFH" = ( -/obj/effect/landmark/event_spawn, -/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, -/area/station/hallway/primary/tram/center) -"vFJ" = ( -/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/security/prison) -"vFL" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 1 - }, -/obj/item/kirbyplants/photosynthetic, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"vFR" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - Atmospherics N2O Chamber"; - dir = 9; - network = list("ss13","engineering") - }, -/turf/open/floor/engine/n2o, -/area/station/engineering/atmos) -"vFV" = ( -/obj/structure/flora/bush/lavendergrass/style_random, -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/grass, -/area/station/science/genetics) -"vGr" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/bar) -"vGA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/crew_quarters/dorms) -"vGB" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"vGF" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/carpet, -/area/station/cargo/miningdock) -"vHa" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/maintenance/radshelter/civil) -"vHq" = ( -/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/cable, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) -"vHx" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "Test Chamber Blast Door" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/science/xenobiology) -"vHP" = ( -/obj/machinery/power/apc/auto_name/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/security/interrogation) -"vHR" = ( -/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, -/area/station/maintenance/starboard/greater) -"vIa" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"vIg" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/ai_all, -/obj/effect/turf_decal/trimline/white/filled/line, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"vIq" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw, -/obj/effect/turf_decal/caution, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"vIu" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/storage) -"vIw" = ( -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"vIF" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Security - Prison Main East"; - network = list("ss13","Security","prison") - }, -/turf/open/floor/iron, -/area/station/security/prison) -"vJk" = ( -/obj/structure/rack, -/obj/item/electronics/apc, -/obj/item/electronics/airlock, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"vJm" = ( -/obj/structure/table, -/obj/item/clothing/suit/apron/chef, -/obj/item/kitchen/rollingpin, -/obj/item/holosign_creator/robot_seat/restaurant, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/station/service/kitchen) -"vJE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"vJF" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/effect/turf_decal/trimline/neutral/filled/warning, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"vJG" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"vJN" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/sink{ - pixel_y = 15 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"vJT" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/center) -"vKc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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, -/area/station/hallway/primary/tram/right) -"vKg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/center) -"vKn" = ( -/obj/machinery/door/airlock/hatch{ - name = "Secure Pen" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/engine, -/area/station/science/cytology) -"vKG" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/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, -/area/station/hallway/secondary/command) -"vKQ" = ( -/obj/item/paper, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/station/maintenance/tram/right) -"vLp" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/item/restraints/handcuffs, -/obj/item/crowbar, -/obj/item/clothing/mask/whistle, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"vLT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/genetics) -"vMd" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/security) -"vMf" = ( -/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/maintenance_hatch, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/crew_quarters/dorms) -"vMl" = ( -/obj/effect/turf_decal/trimline/neutral/filled/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, -/area/station/hallway/primary/tram/center) -"vMt" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/landmark/event_spawn, -/turf/open/floor/engine, -/area/station/science/cytology) -"vMv" = ( -/obj/structure/bed{ - dir = 4 - }, -/obj/item/bedsheet/dorms{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"vMx" = ( -/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/security/prison) -"vMy" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/showroomfloor, -/area/station/security/lockers) -"vMC" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"vME" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron, -/area/station/commons/storage/tools) -"vMK" = ( -/obj/effect/turf_decal/trimline/neutral/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, -/area/station/hallway/primary/tram/right) -"vMO" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/research) -"vMZ" = ( -/obj/machinery/computer/security/mining{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"vNc" = ( -/obj/structure/ladder, -/turf/open/floor/iron/smooth, -/area/station/science/research) -"vNd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"vNe" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"vNh" = ( -/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 = "sorting disposal pipe (Kitchen)"; - sortType = 20 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"vNk" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/science/lab) -"vNu" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vND" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/machinery/door/airlock/vault{ - name = "Bank of Cargo" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/firedoor, -/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/supply/vault, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock/oresilo) -"vNG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/food_packaging, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/tram/mid) -"vNH" = ( -/turf/closed/wall/r_wall, -/area/station/tcommsat/server) -"vNJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/wood/large, -/area/station/service/library) -"vOq" = ( -/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, -/area/station/cargo/office) -"vOH" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"vOM" = ( -/obj/structure/chair/stool/directional/south, -/turf/open/floor/iron, -/area/station/security/prison) -"vOO" = ( -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"vOU" = ( -/obj/machinery/telecomms/server/presets/supply, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) -"vPg" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"vPi" = ( -/obj/structure/fluff/tram_rail{ - dir = 1 - }, -/turf/open/openspace, -/area/station/hallway/primary/tram/right) -"vPo" = ( -/obj/structure/table/reinforced, -/obj/machinery/microwave{ - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"vPA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/moisture_trap, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/lesser) -"vPB" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"vPD" = ( -/obj/structure/table/wood, -/obj/item/paper_bin/carbon{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/taperecorder, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"vPW" = ( -/obj/structure/industrial_lift/tram{ - icon_state = "plating" - }, -/obj/structure/fluff/tram_rail{ - dir = 1 - }, -/obj/structure/grille/tram, -/obj/structure/window/reinforced/shuttle/tram, -/turf/open/openspace, -/area/station/hallway/primary/tram/center) -"vPY" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"vQl" = ( -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"vQs" = ( -/obj/machinery/portable_atmospherics/canister/plasma, -/obj/machinery/camera/directional/east{ - c_tag = "Science - Ordnance Storage"; - name = "science camera"; - network = list("ss13","rd") - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"vQz" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"vQE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/tram/right) -"vQM" = ( -/obj/machinery/chem_master, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"vRb" = ( -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"vRm" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Port to Filter" - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vRp" = ( -/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/cable, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"vRv" = ( -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"vRO" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison/shower) -"vRQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"vRS" = ( -/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/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"vRZ" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"vSg" = ( -/obj/machinery/status_display/ai/directional/east, -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/ai) -"vSi" = ( -/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, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/transit_tube) -"vSk" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"vSm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"vSy" = ( -/turf/closed/wall/r_wall, -/area/station/science/ordnance/testlab) -"vSI" = ( -/turf/open/openspace, -/area/station/cargo/storage) -"vSJ" = ( -/obj/machinery/camera{ - c_tag = "Solar - Starboard Control"; - dir = 10 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard) -"vSL" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 1 - }, -/obj/machinery/requests_console/directional/west{ - department = "Atmospherics"; - departmentType = 3; - name = "Atmospherics Requests Console" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vSM" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_cw{ - dir = 1 - }, -/obj/effect/turf_decal/caution{ - dir = 1 - }, -/obj/structure/railing/corner, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"vSU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/explab) -"vSV" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"vTu" = ( -/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) -"vTA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk, -/turf/open/floor/plating, -/area/station/maintenance/tram/mid) -"vTF" = ( -/obj/structure/tank_dispenser{ - pixel_x = -1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vTM" = ( -/turf/open/floor/wood, -/area/station/service/bar) -"vTP" = ( -/turf/open/misc/asteroid, -/area/station/science/genetics) -"vUa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/mid) -"vUe" = ( -/obj/structure/chair/comfy/beige{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/station/commons/dorms) -"vUf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"vUi" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner, -/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, -/turf/open/floor/iron, -/area/station/cargo/office) -"vUo" = ( -/obj/effect/turf_decal/trimline/neutral/warning{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"vUp" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Medical - Cryo Treatment"; - network = list("ss13","medbay") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/iron/dark, -/area/station/medical/treatment_center) -"vUE" = ( -/turf/closed/wall/r_wall, -/area/station/hallway/primary/tram/right) -"vUI" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"vUJ" = ( -/obj/structure/window/reinforced/spawner/north, -/obj/machinery/door/window/right/directional/east{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Fitness Ring" - }, -/turf/open/floor/iron/dark/smooth_corner, -/area/station/commons/fitness) -"vUU" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"vUW" = ( -/obj/machinery/atmospherics/components/binary/tank_compressor, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/testlab) -"vVa" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"vVc" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"vVf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/station/science/ordnance/burnchamber) -"vVm" = ( -/obj/structure/chair/sofa/corner, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"vVD" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"vVY" = ( -/obj/structure/fluff/tram_rail{ - dir = 1 - }, -/turf/open/openspace, -/area/station/hallway/primary/tram/left) -"vWk" = ( -/obj/machinery/newscaster/directional/north, -/obj/structure/closet/secure_closet/personal, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/obj/effect/spawner/random/bureaucracy/briefcase, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"vWo" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/right) -"vWt" = ( -/obj/effect/spawner/random/trash/garbage, -/turf/open/misc/asteroid/airless, -/area/mine/explored) -"vWx" = ( -/turf/closed/wall/r_wall, -/area/station/cargo/miningdock/oresilo) -"vWy" = ( -/obj/machinery/vending/dinnerware, -/obj/effect/turf_decal/siding/thinplating/corner, -/obj/machinery/camera{ - c_tag = "Service - Kitchen South"; - dir = 10; - network = list("ss13","Service") - }, -/turf/open/floor/iron/white, -/area/station/service/kitchen) -"vWJ" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"vWR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"vWU" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/structure/filingcabinet, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera{ - c_tag = "Security - Prison Prep Room"; - dir = 6; - network = list("ss13","Security","prison") - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"vXc" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 8 - }, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"vXf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"vXG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"vXS" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/components/binary/pump/off/yellow{ - dir = 1; - name = "N2 to Pure" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vXX" = ( -/obj/structure/window/reinforced/spawner, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, -/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/cable, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock/oresilo) -"vYf" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"vYl" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/cargo/office) -"vYw" = ( -/obj/structure/fluff/tram_rail/floor{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/station/hallway/primary/tram/center) -"vYx" = ( -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/machinery/light_switch/directional/east{ - pixel_x = 22; - pixel_y = -9 - }, -/turf/open/floor/iron/white, -/area/station/security/execution/education) -"vYD" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/iron/stairs/medium, -/area/station/commons/dorms) -"vYI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "pharmacy_shutters_2"; - name = "Pharmacy Shutters"; - dir = 1 - }, -/turf/open/floor/plating, -/area/station/medical/pharmacy) -"vYU" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Holding Area" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/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, -/area/station/hallway/secondary/exit/departure_lounge) -"vYX" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - dir = 1; - name = "plasma mixer" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"vZy" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"vZD" = ( -/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/red/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"wag" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"wap" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/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/white, -/area/station/medical/medbay/central) -"waB" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/lesser) -"waI" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_cw, -/obj/machinery/camera/directional/east{ - c_tag = "Hallway - Starboard Tram Platform South" - }, -/obj/effect/turf_decal/caution, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"waX" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"wbb" = ( -/turf/open/floor/iron, -/area/station/commons/dorms) -"wbx" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"wbE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"wbH" = ( -/turf/open/floor/iron, -/area/station/security/office) -"wbT" = ( -/obj/machinery/computer/med_data{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"wbX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/obj/item/radio/intercom/directional/south{ - freerange = 1; - frequency = 1447; - listening = 0; - name = "Private Channel" - }, -/turf/open/floor/iron/grimy, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"wcb" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/circuit/telecomms, -/area/station/science/xenobiology) -"wcc" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"wcr" = ( -/obj/structure/table/wood, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) -"wcx" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"wcy" = ( -/obj/effect/turf_decal/trimline/neutral/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 = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"wcK" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"wdi" = ( -/obj/structure/flora/bush/sunny/style_random, -/turf/open/floor/grass, -/area/station/medical/virology) -"wdj" = ( -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/cmo) -"wdv" = ( -/obj/machinery/disposal/bin, -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"wdy" = ( -/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, -/area/station/hallway/secondary/exit/departure_lounge) -"wdG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"wdV" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment, -/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/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"wei" = ( -/turf/closed/wall/r_wall, -/area/station/hallway/primary/central) -"wet" = ( -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/iron/dark/smooth_edge{ - dir = 4 - }, -/area/station/commons/fitness) -"weI" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/science/research) -"weO" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/station/science/explab) -"weU" = ( -/obj/structure/closet/secure_closet/brig/genpop, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - 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/security/execution/transfer) -"wfb" = ( -/obj/structure/closet/crate/coffin, -/turf/open/floor/plating, -/area/station/service/chapel/monastery) -"wfn" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/duct, -/turf/open/floor/iron/freezer, -/area/station/medical/coldroom) -"wfF" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 6 - }, -/obj/machinery/light/directional/south, -/obj/machinery/camera{ - c_tag = "Cargo - Lobby"; - dir = 6; - network = list("ss13","cargo") - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/cargo/lobby) -"wgf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"wgl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"wgm" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"wgJ" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 8 - }, -/obj/machinery/bluespace_beacon, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"wgT" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/mine/explored) -"wgV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/cargo/office) -"wha" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching Prison Wing holding areas."; - dir = 8; - name = "Prison Monitor"; - network = list("prison"); - pixel_x = 30 - }, -/turf/open/floor/iron, -/area/station/security/office) -"whg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/storage/book/bible, -/obj/structure/altar_of_gods, -/turf/open/floor/iron/dark, -/area/station/service/chapel) -"whm" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"whn" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/iron/grimy, -/area/station/security/detectives_office) -"whz" = ( -/turf/closed/wall, -/area/station/maintenance/department/medical) -"whE" = ( -/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{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) -"whF" = ( -/obj/structure/table/glass, -/obj/item/storage/box/beakers, -/obj/item/clothing/neck/stethoscope, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"whI" = ( -/obj/machinery/computer/cargo{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/line, -/turf/open/floor/iron, -/area/station/cargo/office) -"whL" = ( -/turf/closed/wall/r_wall, -/area/station/security/checkpoint/supply) -"whU" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron, -/area/station/cargo/miningdock/cafeteria) -"wij" = ( -/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/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"wio" = ( -/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/gravity_generator) -"wiu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/ai_monitored/command/nuke_storage) -"wiw" = ( -/obj/structure/ladder, -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/crew_quarters/dorms) -"wiG" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 1 - }, -/obj/structure/sign/departments/security/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"wiH" = ( -/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/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"wiN" = ( -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"wja" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/east, -/obj/machinery/requests_console/directional/east{ - department = "Atmospherics"; - departmentType = 3; - name = "Atmospherics Requests Console" - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wjd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/medical) -"wjk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/station/service/library) -"wjo" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - name = "sorting disposal pipe (Detective's Office)"; - sortType = 30 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"wjp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/cargo/storage) -"wjw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wjI" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"wjP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"wjQ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/firealarm/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/commons/lounge) -"wjT" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"wkg" = ( -/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) -"wkk" = ( -/turf/open/floor/iron/freezer, -/area/station/security/prison) -"wkz" = ( -/obj/machinery/door/airlock/security{ - name = "Custom Agent's Office" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/customs, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"wkG" = ( -/obj/structure/table, -/obj/structure/window/reinforced/spawner, -/obj/structure/window/reinforced/spawner/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/service/janitor) -"wkW" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"wla" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"wlc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/spawner/random/maintenance/four, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/security) -"wlE" = ( -/obj/effect/turf_decal/siding/wood, -/obj/effect/landmark/navigate_destination/lawyer, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/grimy, -/area/station/service/lawoffice) -"wlG" = ( -/obj/structure/cable/layer1, -/turf/closed/wall/r_wall, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"wlK" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"wlM" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"wlQ" = ( -/obj/structure/rack, -/obj/machinery/status_display/ai/directional/north, -/obj/effect/spawner/random/techstorage/medical_all, -/obj/effect/turf_decal/trimline/white/filled/line, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"wma" = ( -/obj/machinery/door/firedoor, -/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, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"wmf" = ( -/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/ai_monitored/turret_protected/aisat/maint) -"wml" = ( -/obj/structure/chair/stool/directional/south, -/turf/open/floor/carpet, -/area/station/hallway/secondary/entry) -"wmr" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 5 - }, -/obj/machinery/vending/coffee, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) -"wmJ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"wna" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/cargo) -"wnb" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"wne" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/washing_machine, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"wnf" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"wng" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) -"wnh" = ( -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"wnn" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/right) -"wnq" = ( -/obj/machinery/announcement_system, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) -"wnv" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder{ - desc = "Used to grind things up into raw materials and liquids."; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/condiment/enzyme, -/turf/open/floor/iron/white, -/area/station/service/kitchen) -"wnD" = ( -/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/red/filled/corner, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"wnK" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/monastery) -"wnW" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Laser Room" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"wof" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/white, -/area/station/security/medical) -"woH" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"woJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/closet/wardrobe/white, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"woR" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"woU" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/right) -"woW" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/chemist, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"wpg" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/carpet, -/area/station/cargo/miningdock) -"wph" = ( -/obj/machinery/door/window/brigdoor{ - dir = 8; - id = "engcell"; - name = "Engineering Holding Cell"; - req_access = list("brig_entrance") - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"wpt" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrigright"; - name = "Brig" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig_right" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron, -/area/station/security/brig) -"wpx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"wpK" = ( -/turf/closed/wall, -/area/station/science/lobby) -"wqu" = ( -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"wqP" = ( -/obj/machinery/vending/cart{ - req_access = list("hop") - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"wrc" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/rack, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/vacant_room/commissary) -"wri" = ( -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/machinery/computer/cryopod{ - dir = 4; - pixel_x = -32 - }, -/turf/open/floor/iron/dark, -/area/station/common/cryopods) -"wrv" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/shower{ - dir = 4; - pixel_x = 6 - }, -/obj/structure/cable, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"wrw" = ( -/obj/structure/rack, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"wrN" = ( -/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/turret_protected/aisat_interior) -"wrT" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/stack/cable_coil, -/obj/item/screwdriver{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/book/manual/wiki/chemistry{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/book/manual/wiki/grenades, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"wse" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"wsw" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"wsx" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/pdapainter/medbay, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"wsA" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/dorms) -"wsB" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/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/sorting/mail{ - dir = 1; - name = "sorting disposal pipe (Cargo)"; - sortType = 2 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/office) -"wsM" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Dock" - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"wth" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/button/door{ - id = "bridge blast"; - name = "Bridge Blast Door Control"; - pixel_x = 28; - pixel_y = -24; - req_access = list("command") - }, -/turf/open/floor/carpet, -/area/station/command/bridge) -"wtj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/warden) -"wtn" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"wty" = ( -/obj/effect/landmark/start/hangover, -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"wtH" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"wtQ" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"wuc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wui" = ( -/obj/machinery/light/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Civilian - Library South" - }, -/turf/open/floor/carpet, -/area/station/service/library) -"wut" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/external{ - autoclose = 0; - frequency = 1449; - id_tag = "middleright_upper_eva_external"; - name = "External Access" - }, -/obj/machinery/door_buttons/access_button{ - idDoor = "middleright_upper_eva_external"; - idSelf = "middleright_upper_eva_airlock_control"; - name = "External Access Button"; - pixel_y = 24 - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/center) -"wux" = ( -/obj/machinery/ntnet_relay, -/obj/structure/sign/warning/no_smoking/directional/south, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) -"wuz" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"wuE" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/glass, -/area/station/commons/fitness/recreation) -"wuF" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"wuQ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - 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, -/area/station/hallway/secondary/entry) -"wvn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) -"wvr" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/commons/dorms) -"wvu" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/librarian, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/library) -"wvB" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/holosign/barrier/atmos/sturdy, -/obj/machinery/camera/directional/south{ - c_tag = "Hallway - North-East Tram Bridge" - }, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/left) -"wvC" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/janitor) -"wvE" = ( -/obj/structure/fluff/tram_rail{ - dir = 1 - }, -/turf/open/openspace, -/area/station/hallway/primary/tram/center) -"wvK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"wvN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"wwc" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/flashlight/lamp/green{ - on = 0; - pixel_x = -3; - pixel_y = 8 - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hos) -"wwn" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/paicard, -/obj/item/taperecorder{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/aicard, -/obj/item/circuitboard/aicore, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"wwz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Secure - Gravity Generator"; - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) -"wwO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/office) -"wxb" = ( -/obj/machinery/computer/chef_order{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"wxf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/checkpoint/engineering) -"wxj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"wxl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/machinery/button/door/directional/east{ - id = "left_tram_lower"; - req_access = list("maint_tunnels") - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"wxI" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"wxJ" = ( -/obj/machinery/suit_storage_unit/engine, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/engine_smes) -"wyd" = ( -/turf/closed/wall, -/area/station/medical/medbay/lobby) -"wyj" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "External to Filter" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wyH" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"wyK" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) -"wyS" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/brown/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"wyV" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/commons/lounge) -"wyX" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/structure/sign/departments/xenobio/directional/south, -/turf/open/floor/iron/white, -/area/station/science/research) -"wyY" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/central) -"wzb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/garbage, -/turf/open/floor/plating, -/area/station/maintenance/starboard/central) -"wzg" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/checkpoint/escape) -"wzm" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"wzz" = ( -/obj/machinery/door/airlock/external{ - name = "External Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/obj/effect/mapping_helpers/airlock/access/any/command/minisat, -/turf/open/floor/plating, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"wzD" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ - name = "euthanization chamber freezer" - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"wzL" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/machinery/camera/directional/west{ - c_tag = "Science - Xenobiology Lower West"; - network = list("ss13","rd","xeno") - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"wzU" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Science - Xenobiology Kill Room Lower"; - network = list("ss13","rd","xeno") - }, -/obj/machinery/atmospherics/components/unary/passive_vent{ - dir = 4; - name = "killroom vent" - }, -/turf/open/floor/circuit/telecomms, -/area/station/science/xenobiology) -"wAa" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"wAb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/color_adapter{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wAj" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"wAm" = ( -/obj/machinery/pdapainter/security, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hos) -"wAA" = ( -/obj/machinery/door/window/left/directional/east{ - name = "Coffin Storage"; - req_access = list("chapel_office") - }, -/turf/open/floor/carpet, -/area/station/service/chapel/monastery) -"wAD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/mine/explored) -"wAG" = ( -/obj/effect/turf_decal/bot, -/obj/structure/reagent_dispensers/foamtank, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wAQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/stool/directional/north, -/obj/structure/cable/layer1, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"wAW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) -"wBb" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"wBi" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/firealarm/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) -"wBl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/girder, -/turf/open/floor/iron/smooth, -/area/station/maintenance/port/central) -"wBw" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Four" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/security/office) -"wBB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/crew_quarters/dorms) -"wBX" = ( -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/item/hand_labeler{ - pixel_y = 8 - }, -/obj/item/storage/box, -/turf/open/floor/iron, -/area/station/cargo/sorting) -"wCj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/commons/dorms) -"wCm" = ( -/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/execution/education) -"wCA" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/asteroid/corner{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/mine/explored) -"wCD" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/machinery/turretid{ - icon_state = "control_stun"; - name = "AI Hallway turret control"; - pixel_x = 3; - pixel_y = 28 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"wCG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate, -/obj/effect/spawner/random/engineering/tool, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/crew_quarters/dorms) -"wCN" = ( -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron, -/area/station/engineering/main) -"wDa" = ( -/turf/open/floor/iron/white, -/area/station/security/medical) -"wDb" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 10 - }, -/obj/machinery/module_duplicator, -/obj/machinery/camera/directional/west{ - c_tag = "Circuits Lab"; - network = list("ss13","rd") - }, -/turf/open/floor/iron, -/area/station/science/auxlab) -"wDh" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"wDS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/ce) -"wDZ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"wEg" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Hallway - Central Tram Platform South-East"; - dir = 6 - }, -/obj/effect/turf_decal/caution, -/obj/machinery/firealarm/directional/east, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"wEl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"wEm" = ( -/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/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"wEr" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/left/directional/west{ - dir = 4; - name = "Hydroponics Desk"; - req_access = list("hydroponics") - }, -/turf/open/floor/plating, -/area/station/service/hydroponics) -"wEQ" = ( -/turf/open/floor/circuit, -/area/station/science/robotics/mechbay) -"wEX" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"wFa" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"wFx" = ( -/turf/closed/wall, -/area/station/science/robotics/lab) -"wFz" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/cargo) -"wFC" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/security/courtroom) -"wFS" = ( -/obj/machinery/modular_computer/console/preset/cargochat/security{ - dir = 4 - }, -/obj/machinery/newscaster/directional/west, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/warning{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/security/office) -"wFT" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"wGb" = ( -/obj/item/shovel, -/turf/open/misc/asteroid/airless, -/area/mine/explored) -"wGc" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Tunnel Access" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/port/central) -"wGd" = ( -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/effect/turf_decal/stripes, -/obj/effect/landmark/tram/right_part, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/right) -"wGf" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"wGh" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/machinery/module_duplicator, -/turf/open/floor/iron/white, -/area/station/science/explab) -"wGy" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Hallway - Port Tram Platform North-West" - }, -/obj/effect/turf_decal/caution{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"wGC" = ( -/obj/machinery/vending/wardrobe/sec_wardrobe, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"wGF" = ( -/obj/machinery/mineral/equipment_vendor, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/structure/disposalpipe/trunk/multiz{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"wGQ" = ( -/obj/structure/window/reinforced/spawner/north, -/turf/open/floor/iron/dark/smooth_edge{ - dir = 1 - }, -/area/station/commons/fitness) -"wGR" = ( -/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/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/right) -"wGV" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"wHg" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"wHT" = ( -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/hop) -"wHZ" = ( -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/machinery/door/firedoor/heavy, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/iron/white, -/area/station/science/lower) -"wId" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Bay" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/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, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron, -/area/station/cargo/storage) -"wIf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"wIg" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"wIn" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"wIo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/ai_monitored/security/armory) -"wIu" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/service/kitchen/diner) -"wIx" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Secure - Gateway North" - }, -/turf/open/floor/iron/smooth, -/area/station/command/gateway) -"wIy" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/engineering/transit_tube) -"wIA" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"wII" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 8 - }, -/obj/structure/shuttle/engine/propulsion{ - desc = "A standard reliable bluespace engine used by many forms of shuttles. This one has the bluespace core removed."; - name = "inactive propulsion engine" - }, -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/port/central) -"wIM" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/iron/showroomfloor, -/area/station/service/kitchen/coldroom) -"wIP" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/openspace, -/area/station/solars/port/aft) -"wIY" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wJh" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"wJi" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/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/iron, -/area/station/hallway/secondary/exit) -"wJO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/science) -"wJW" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"wKe" = ( -/obj/machinery/computer/exoscanner_control{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"wKl" = ( -/obj/structure/closet/crate/goldcrate, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot_white/right, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"wKs" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/foyer) -"wKF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/smartfridge/organ, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"wKU" = ( -/obj/machinery/button/door/directional/south{ - id = "kitchencounter"; - name = "Kitchen Counter Shutters"; - pixel_x = -8; - req_access = list("kitchen") - }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 8 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/turf/open/floor/iron/white, -/area/station/service/kitchen) -"wLk" = ( -/obj/effect/spawner/structure/window, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/service/kitchen/diner) -"wLC" = ( -/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, -/area/station/security/office) -"wLG" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/structure/window/reinforced/spawner/north, -/obj/structure/window/reinforced/spawner/west, -/obj/effect/spawner/random/decoration/statue{ - spawn_loot_chance = 50 - }, -/obj/structure/table/wood/fancy/royalblue, -/turf/open/floor/wood/large, -/area/station/service/library) -"wLR" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 5 - }, -/obj/structure/table, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock/oresilo) -"wMu" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"wMw" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - 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, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/construction/mining/aux_base) -"wMx" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/plasma_input{ - dir = 8 - }, -/turf/open/floor/engine/plasma, -/area/station/engineering/atmos) -"wMG" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - 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, -/area/station/hallway/primary/central) -"wMQ" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/cable/layer1, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"wNq" = ( -/obj/machinery/igniter/incinerator_atmos, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"wNA" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/brig) -"wNK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wNY" = ( -/obj/machinery/computer/station_alert{ - dir = 8 - }, -/obj/machinery/requests_console/directional/east{ - department = "Atmospherics"; - departmentType = 3; - name = "Atmospherics Requests Console" - }, -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - Atmospherics Front Desk"; - dir = 6; - network = list("ss13","engineering") - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wOb" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"wOk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/left) -"wOl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) -"wOp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/lesser) -"wOL" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/shaft_miner, -/turf/open/floor/iron, -/area/station/cargo/miningdock/cafeteria) -"wON" = ( -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay" - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"wOW" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/computer/security, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"wPi" = ( -/obj/effect/turf_decal/trimline/blue/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/medical/storage) -"wPj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"wPD" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"wPE" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/fitness) -"wPF" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/effect/spawner/random/trash/graffiti{ - pixel_y = -32; - spawn_loot_chance = 50 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"wQb" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 9 - }, -/obj/item/radio/intercom/directional/south{ - freerange = 1; - frequency = 1447; - listening = 0; - name = "Private Channel" - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"wQm" = ( -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wQv" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/supply/qm, -/obj/machinery/door/airlock/command/glass{ - name = "Quartermaster's Office" - }, -/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/qm) -"wQP" = ( -/turf/closed/wall, -/area/station/maintenance/starboard/lesser) -"wQX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/engineering) -"wRd" = ( -/turf/open/floor/plating, -/area/station/construction/mining/aux_base) -"wRf" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"wRi" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/fitness) -"wRG" = ( -/obj/structure/table/wood, -/obj/item/storage/crayons, -/obj/item/toy/crayon/spraycan, -/obj/item/toy/crayon/spraycan{ - pixel_x = -4 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) -"wRQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 4 - }, -/obj/structure/rack, -/turf/open/floor/iron, -/area/station/maintenance/port/central) -"wSg" = ( -/turf/closed/wall, -/area/station/service/kitchen/coldroom) -"wSm" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/structure/mirror/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"wSo" = ( -/obj/structure/railing, -/obj/structure/chair/sofa/corner{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"wSG" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Science - Xenobiology West"; - dir = 10; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"wSR" = ( -/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/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/security) -"wSS" = ( -/obj/structure/weightmachine/stacklifter, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"wTm" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/greater) -"wTJ" = ( -/obj/effect/turf_decal/siding/thinplating/corner, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"wTV" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/chapel{ - dir = 8 - }, -/area/station/service/chapel) -"wUH" = ( -/obj/effect/turf_decal/trimline/blue/filled/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/white, -/area/station/medical/medbay/central) -"wUL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/mob/living/simple_animal/bot/floorbot, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat/maint) -"wUS" = ( -/obj/machinery/light/small/directional/north, -/turf/open/misc/asteroid/airless, -/area/mine/explored) -"wUY" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/cargo) -"wVj" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - 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/white, -/area/station/science/research) -"wVm" = ( -/obj/item/stack/ore/iron{ - pixel_x = -9; - pixel_y = 11 - }, -/turf/open/misc/asteroid/airless, -/area/mine/explored) -"wVp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - Engine Room North-East"; - dir = 9; - network = list("ss13","engine","engineering") - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"wVE" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"wVH" = ( -/mob/living/simple_animal/slime, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"wVI" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/white, -/area/station/science/explab) -"wVL" = ( -/obj/structure/disposalpipe/trunk/multiz, -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/left) -"wVO" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/camera/directional/south{ - c_tag = "Arrivals - North Hall" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"wWo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"wWq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/maintenance/radshelter/civil) -"wWu" = ( -/obj/machinery/conveyor{ - id = "garbage" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/garbage{ - spawn_loot_count = 3; - spawn_random_offset = 1 - }, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/plating, -/area/station/maintenance/disposal) -"wWE" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/machinery/light_switch/directional/north{ - pixel_x = -22 - }, -/obj/machinery/button/door/directional/north{ - id = "scidoor"; - name = "Science Cell Control"; - normaldoorcontrol = 1; - pixel_x = -24; - pixel_y = 36; - req_access = list("brig_entrance") - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"wWF" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/research/glass{ - name = "Ordnance Lab" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"wWN" = ( -/obj/effect/turf_decal/trimline/red/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{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig) -"wWS" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/vending/cola/red, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"wXe" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4; - name = "Output to Waste" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"wXC" = ( -/obj/machinery/door/airlock/mining{ - name = "Mining Office" - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"wXL" = ( -/obj/machinery/plumbing/synthesizer{ - reagent_id = /datum/reagent/water - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"wXM" = ( -/turf/open/floor/carpet, -/area/station/commons/vacant_room/office) -"wXO" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "N2 Outlet Pump" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wXQ" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "O2 Outlet Pump" - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"wXZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"wYb" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/security/prison) -"wYd" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 4 - }, -/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/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"wYu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"wYB" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/door/airlock{ - name = "Prison Showers" - }, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"wYD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/grass, -/area/station/medical/virology) -"wYO" = ( -/obj/machinery/rnd/production/protolathe/department/engineering, -/obj/effect/turf_decal/trimline/yellow/filled/end{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"wYP" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table, -/obj/item/scalpel{ - pixel_y = 16 - }, -/obj/item/circular_saw, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"wYQ" = ( -/obj/structure/industrial_lift/tram{ - icon_state = "plating" - }, -/obj/structure/tramwall/titanium, -/obj/structure/shuttle/engine/propulsion/in_wall/tram{ - dir = 4; - pixel_x = 32 - }, -/turf/open/openspace, -/area/station/hallway/primary/tram/center) -"wYS" = ( -/obj/effect/turf_decal/siding/wideplating{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/command/nuke_storage) -"wZd" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"wZk" = ( -/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{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) -"wZm" = ( -/turf/closed/wall/rock/porous, -/area/mine/explored) -"wZs" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/showroomfloor, -/area/station/security/warden) -"wZG" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/station/science/explab) -"wZM" = ( -/obj/effect/landmark/event_spawn, -/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/cable, -/turf/open/floor/catwalk_floor, -/area/station/cargo/storage) -"wZP" = ( -/obj/effect/spawner/random/medical/two_percent_xeno_egg_spawner, -/turf/open/floor/engine, -/area/station/science/xenobiology) -"xas" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"xau" = ( -/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/neutral/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/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/secondary/exit/departure_lounge) -"xav" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"xay" = ( -/obj/effect/turf_decal/trimline/neutral/filled/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, -/area/station/commons/dorms) -"xaB" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"xaD" = ( -/obj/effect/turf_decal/siding/thinplating{ - 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/door/firedoor/border_only{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/commons/dorms) -"xaU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/engineering{ - name = "Power Access Hatch" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/plating, -/area/station/cargo/storage) -"xbf" = ( -/obj/effect/turf_decal/tile{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"xbp" = ( -/obj/machinery/computer/shuttle/labor, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/processing) -"xbu" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/mine/explored) -"xbz" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"xbB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"xbQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/cafeteria, -/area/station/security/prison/mess) -"xbZ" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/light/directional/south, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Civilian - Security Outpost"; - network = list("ss13","Security") - }, -/turf/open/floor/iron, -/area/station/security/checkpoint) -"xcd" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"xcg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/four, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/crew_quarters/dorms) -"xcj" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron, -/area/station/security/prison) -"xck" = ( -/turf/open/floor/iron/white, -/area/station/medical/medbay/lobby) -"xcn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/radshelter/service) -"xcC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/wrench, -/obj/effect/spawner/random/trash/cigbutt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/security) -"xcH" = ( -/obj/machinery/computer/security{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"xcZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/food_packaging, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"xdf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"xdm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"xdo" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/turf/open/floor/plating/airless, -/area/station/solars/port/aft) -"xdx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"xdG" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/obj/item/kirbyplants/random, -/obj/item/radio/intercom/directional/north, -/obj/structure/sign/poster/official/random/directional/east, -/turf/open/floor/iron, -/area/station/commons/dorms) -"xdX" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"xdY" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Pharmacy" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/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/medical/pharmacy, -/turf/open/floor/iron/white, -/area/station/medical/pharmacy) -"xdZ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/arrow_cw, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = -28 - }, -/obj/structure/sign/directions/medical{ - pixel_y = -34 - }, -/obj/structure/sign/directions/engineering{ - pixel_y = -40 - }, -/obj/machinery/light/directional/south, -/obj/structure/sign/directions/upload{ - dir = 4; - pixel_y = -22 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"xeo" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wideplating/corner{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock/oresilo) -"xey" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"xeE" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"xeF" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/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, -/area/station/cargo/miningdock) -"xeK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"xeN" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/scientist, -/turf/open/floor/iron/white, -/area/station/science/explab) -"xeU" = ( -/obj/structure/disposalpipe/segment{ - 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/engineering/atmos) -"xeW" = ( -/obj/machinery/duct, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Prison Showers" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"xfa" = ( -/obj/structure/table/wood, -/obj/item/radio/intercom, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/courtroom) -"xfg" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/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, -/turf/open/floor/iron, -/area/station/hallway/secondary/service) -"xfx" = ( -/obj/machinery/computer/atmos_alert{ - dir = 8 - }, -/obj/machinery/button/door/directional/east{ - id = "atmos"; - name = "Atmospherics Lockdown"; - req_access = list("atmospherics") - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xfC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"xgb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"xgf" = ( -/obj/machinery/mass_driver/ordnance{ - dir = 4 - }, -/obj/machinery/door/window/left/directional/north, -/turf/open/floor/plating, -/area/station/science/ordnance/testlab) -"xgi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/tram/left) -"xgj" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/science/research) -"xgq" = ( -/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/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Medical - Main North-West"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"xgs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"xgC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/computer/operating, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) -"xgH" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/washing_machine, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/cafeteria, -/area/station/commons/dorms/laundry) -"xgJ" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 10 - }, -/obj/structure/chair/comfy{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit) -"xgN" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/camera{ - c_tag = "Hallway - Mid-Right Service"; - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"xgO" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/machinery/component_printer, -/turf/open/floor/iron/white, -/area/station/science/explab) -"xhs" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/surgery/fore) -"xhC" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"xhF" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"xhL" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/commons/fitness) -"xhY" = ( -/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, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"xia" = ( -/obj/machinery/computer/security/qm{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/machinery/requests_console/directional/west{ - announcementConsole = 1; - department = "Quartermaster's Desk"; - departmentType = 2; - name = "Quartermaster's Requests Console" - }, -/obj/machinery/camera{ - c_tag = "Cargo - Quartermaster's Office"; - dir = 10; - network = list("ss13","cargo") - }, -/turf/open/floor/iron, -/area/station/cargo/qm) -"xiu" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"xiv" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"xiz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/spawner/random/structure/steam_vent, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) -"xiI" = ( -/obj/effect/landmark/carpspawn, -/turf/open/space/basic, -/area/space) -"xiJ" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"xiZ" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/sofa/right, -/turf/open/floor/iron, -/area/station/cargo/miningdock/cafeteria) -"xjm" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/effect/landmark/start/scientist, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"xjr" = ( -/obj/structure/disposalpipe/segment{ - 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/white, -/area/station/science/research) -"xjw" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/station/science/research) -"xjF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"xjJ" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/public/glass{ - name = "Commons Area" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"xjV" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/effect/turf_decal/trimline/neutral/filled/warning, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"xks" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron, -/area/station/maintenance/tram/right) -"xkx" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/button/door/directional/west{ - id = "Toilet3"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"xkD" = ( -/obj/machinery/field/generator, -/obj/machinery/light/small/directional/north, -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - Secure Storage"; - dir = 9; - network = list("ss13","engineering") - }, -/turf/open/floor/plating, -/area/station/engineering/engine_smes) -"xkI" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"xla" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"xle" = ( -/obj/effect/spawner/structure/window/reinforced, -/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/security/prison) -"xli" = ( -/turf/open/floor/glass/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"xlw" = ( -/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/virology) -"xlx" = ( -/obj/effect/turf_decal/siding/wood, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) -"xlM" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"xlU" = ( -/obj/effect/spawner/random/structure/closet_private, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/carpet, -/area/station/commons/dorms) -"xlZ" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"xmj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"xmq" = ( -/turf/closed/wall/r_wall, -/area/station/cargo/qm) -"xms" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/service/bar) -"xmt" = ( -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/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, -/turf/open/floor/iron, -/area/station/science/ordnance/testlab) -"xmv" = ( -/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/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/dorms) -"xmz" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/brig) -"xmB" = ( -/obj/effect/turf_decal/trimline/neutral/line, -/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, -/area/station/hallway/secondary/entry) -"xmK" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/spawner/random/structure/girder, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) -"xmP" = ( -/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/machinery/duct, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"xmR" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/commons/dorms/laundry) -"xnf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/ai_monitored/command/nuke_storage) -"xof" = ( -/obj/structure/industrial_lift/tram{ - icon_state = "titanium" - }, -/obj/structure/fluff/tram_rail{ - dir = 1 - }, -/obj/structure/chair/comfy/shuttle{ - dir = 1 - }, -/turf/open/openspace, -/area/station/hallway/primary/tram/center) -"xom" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"xow" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/bed/pod, -/obj/structure/window, -/turf/open/floor/iron, -/area/service/salon) -"xoC" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 4 - }, -/obj/structure/sign/departments/security/directional/west, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"xoN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"xoQ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - 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/flip{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"xoS" = ( -/obj/structure/table, -/obj/item/storage/box/donkpockets, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) -"xpj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) -"xpq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/camera{ - c_tag = "Arrivals - South Docking Hall"; - dir = 6 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"xpE" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/structure/closet/secure_closet/security, -/turf/open/floor/iron, -/area/station/security/checkpoint/escape) -"xpH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/wrench, -/turf/open/floor/iron/smooth, -/area/station/maintenance/port/central) -"xqa" = ( -/obj/effect/turf_decal/tile, -/obj/effect/turf_decal/tile{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"xqf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/carpet, -/area/station/cargo/miningdock) -"xqs" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/greater) -"xqw" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Hallway - Port Tram Platform North-East" - }, -/obj/effect/turf_decal/caution{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"xqB" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/dark, -/turf/open/floor/iron, -/area/station/commons/lounge) -"xqD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"xqG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 6 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"xqI" = ( -/obj/structure/table, -/obj/item/mod/module/plasma_stabilizer, -/obj/item/mod/module/thermal_regulator, -/turf/open/floor/iron, -/area/station/security/office) -"xqL" = ( -/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, -/area/station/hallway/primary/tram/center) -"xqO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Engineering - Engine Room North-West"; - network = list("ss13","engine","engineering") - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"xqS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/medical) -"xrn" = ( -/obj/structure/displaycase/trophy, -/turf/open/floor/wood/large, -/area/station/service/library) -"xrq" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) -"xrA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/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, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"xsc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xsd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"xst" = ( -/obj/structure/rack, -/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/effect/turf_decal/trimline/white/filled/line, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"xsx" = ( -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/food_packaging, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"xsG" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/mine/explored) -"xsL" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/security/brig) -"xtf" = ( -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 3" - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"xth" = ( -/obj/structure/musician/piano, -/turf/open/floor/wood, -/area/station/service/theater) -"xtp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/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, -/area/station/medical/break_room) -"xtP" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/closet, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/central) -"xtS" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/machinery/camera/directional/south{ - c_tag = "Science - Lower Main North"; - network = list("ss13","rd") - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/white, -/area/station/science/lower) -"xtW" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/service/chapel/monastery) -"xtX" = ( -/obj/structure/table, -/obj/machinery/light/small/directional/east, -/obj/item/radio/intercom/prison/directional/east, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Security - Prison Cell 4"; - dir = 6; - network = list("ss13","Security","prison","pcell") - }, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"xud" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/external{ - autoclose = 0; - frequency = 1449; - id_tag = "mostleft_lower_eva_internal"; - name = "External Access" - }, -/obj/machinery/door_buttons/access_button{ - idDoor = "mostleft_lower_eva_internal"; - idSelf = "mostleft_lower_eva_airlock_control"; - name = "External Access Button"; - pixel_y = -24 - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/left) -"xug" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/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 = 5 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) -"xun" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"xut" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Civilian - Restroom South" - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"xuA" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/surgery/aft) -"xuE" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/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/iron/white, -/area/station/medical/medbay/central) -"xuK" = ( -/obj/machinery/food_cart, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/service/kitchen) -"xuR" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"xuS" = ( -/obj/machinery/computer/atmos_control/nitrous_tank{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xva" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"xvd" = ( -/turf/closed/wall, -/area/station/commons/storage/art) -"xvf" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/greater) -"xvq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/port/central) -"xvJ" = ( -/obj/structure/window/reinforced/spawner, -/turf/open/floor/iron/stairs/medium, -/area/station/command/gateway) -"xvL" = ( -/obj/vehicle/ridden/wheelchair, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"xvO" = ( -/obj/machinery/light_switch/directional/west{ - pixel_y = 8 - }, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"xwf" = ( -/turf/closed/wall/r_wall, -/area/station/maintenance/central/greater) -"xwj" = ( -/obj/effect/turf_decal/siding/thinplating/end, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"xws" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/assembly/mousetrap/armed, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"xwB" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/maintenance/tram/mid) -"xwC" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/newscaster/directional/east, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"xwX" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 8 - }, -/obj/effect/landmark/start/cargo_technician, -/obj/structure/chair/office, -/turf/open/floor/iron, -/area/station/cargo/office) -"xxf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"xxj" = ( -/obj/machinery/recharge_station, -/turf/closed/mineral/random/stationside/asteroid/porus, -/area/mine/explored) -"xxo" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"xxz" = ( -/obj/machinery/rnd/bepis, -/obj/effect/turf_decal/tile/brown/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/storage) -"xxA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/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, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"xxF" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/white, -/area/station/science/lab) -"xxW" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 9 - }, -/obj/item/kirbyplants/random, -/obj/item/radio/intercom/directional/north, -/obj/structure/sign/poster/official/random/directional/west, -/turf/open/floor/iron, -/area/station/commons/dorms) -"xxZ" = ( -/turf/closed/wall, -/area/station/cargo/drone_bay) -"xya" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - sortType = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/break_room) -"xyg" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"xyj" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/holosign/barrier/atmos/sturdy, -/obj/structure/fluff/tram_rail/floor, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/left) -"xyl" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/camera{ - c_tag = "Command - Bridge Right Airlock"; - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"xyH" = ( -/obj/effect/turf_decal/trimline/white/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"xyZ" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"xzh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/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/security/execution/transfer) -"xzl" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"xzq" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"xzI" = ( -/obj/machinery/vending/games, -/turf/open/floor/iron/grimy, -/area/station/service/library/lounge) -"xzN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/iron, -/area/station/science/ordnance/storage) -"xzS" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - name = "sorting disposal pipe (Hydroponics)"; - sortType = 21 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"xzU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/drone_bay) -"xAo" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/mine/explored) -"xAu" = ( -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"xAF" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/white, -/area/station/science/ordnance/office) -"xAH" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/departments/evac/directional/east{ - pixel_y = 32 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"xAJ" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/cargo/storage) -"xAK" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Service Wing Hallway" - }, -/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, -/area/station/hallway/primary/central) -"xAN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/ai_monitored/command/storage/eva) -"xAQ" = ( -/obj/machinery/modular_computer/console/preset/command{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/command/bridge) -"xAW" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/junction/flip{ - 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/tram/center) -"xBb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/robot_debris/limb, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/lesser) -"xBd" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/station/commons/storage/art) -"xBk" = ( -/turf/closed/wall, -/area/station/medical/storage) -"xBy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/ai) -"xBB" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/science/lower) -"xBD" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 10 - }, -/obj/machinery/pdapainter/engineering, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) -"xBG" = ( -/obj/structure/disposalpipe/trunk/multiz{ - dir = 1 - }, -/obj/machinery/door/window/left/directional/north{ - base_state = "right"; - dir = 2; - icon_state = "right"; - name = "Containment Pen #3"; - req_access = list("xenobiology") - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiotopright"; - name = "Xenobio Top Right Pen Blast Door" - }, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"xBP" = ( -/obj/machinery/atmospherics/components/tank, -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/storage) -"xBU" = ( -/obj/machinery/ore_silo, -/obj/machinery/door/window/left/directional/south{ - name = "Silo Access"; - req_access = list("qm") - }, -/turf/open/floor/iron/dark, -/area/station/cargo/miningdock/oresilo) -"xCc" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/checkpoint/medical) -"xCm" = ( -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) -"xCG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "right_tram_lower"; - name = "Tunnel Access Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/tram/mid) -"xCQ" = ( -/obj/effect/turf_decal/stripes{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"xCZ" = ( -/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/white, -/area/station/science/genetics) -"xDm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/cytology) -"xDr" = ( -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/service/janitor) -"xDy" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"xDO" = ( -/obj/machinery/suit_storage_unit/security, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"xDQ" = ( -/turf/closed/wall, -/area/station/security/processing) -"xEb" = ( -/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/service/chapel) -"xEd" = ( -/obj/machinery/camera/motion/directional/south{ - c_tag = "Secure - AI Upper External North"; - network = list("aicore") - }, -/obj/structure/cable/multilayer/connected, -/turf/open/floor/engine/hull/reinforced, -/area/station/ai_monitored/turret_protected/aisat/hallway) -"xEo" = ( -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/captain) -"xFa" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"xFe" = ( -/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, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"xFh" = ( -/obj/structure/chair/pew/left, -/turf/open/floor/iron/chapel{ - dir = 1 - }, -/area/station/service/chapel) -"xFs" = ( -/obj/structure/marker_beacon/burgundy, -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/stripes/asteroid/box, -/turf/open/floor/plating/airless, -/area/mine/explored) -"xFx" = ( -/turf/open/floor/iron, -/area/station/commons/fitness) -"xFA" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/catwalk_floor, -/area/station/commons/dorms) -"xFB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"xFH" = ( -/obj/structure/chair/sofa/corner{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"xFJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "right_tram_lower"; - name = "Tunnel Access Blast Door" - }, -/obj/machinery/door/airlock/hatch, -/turf/open/floor/plating, -/area/station/maintenance/tram/right) -"xGw" = ( -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/plating, -/area/station/security/processing) -"xGA" = ( -/obj/structure/flora/bush/sunny/style_random, -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/grass, -/area/station/science/genetics) -"xGE" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/service/theater) -"xGQ" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"xGX" = ( -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 8 - }, -/obj/item/banner/cargo/mundane, -/turf/open/floor/iron, -/area/station/cargo/storage) -"xHd" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/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/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"xHn" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/bot, -/obj/machinery/camera{ - c_tag = "Departures - West Main"; - dir = 6 - }, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit/departure_lounge) -"xHo" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"xHW" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"xIe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"xIl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/hobo_squat, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/crew_quarters/dorms) -"xIp" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"xIt" = ( -/obj/effect/landmark/start/customs_agent, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"xIT" = ( -/obj/effect/turf_decal/tile, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"xJj" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/solars/port/aft) -"xJk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"xJV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/prison/workout) -"xKb" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"xKf" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/item/stack/medical/mesh, -/obj/item/stack/medical/gauze, -/obj/structure/table/glass, -/obj/machinery/vending/wallmed/directional/north, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"xKm" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/sofa{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock/cafeteria) -"xKs" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/machinery/door/airlock/medical/glass{ - name = "Chemistry" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/medical/pharmacy, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"xKz" = ( -/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/catwalk_floor, -/area/station/maintenance/department/crew_quarters/dorms) -"xKC" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/service/kitchen) -"xKH" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"xKJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmospherics_engine) -"xKP" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"xKV" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/lounge) -"xLd" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/qm, -/obj/machinery/door/airlock/command/glass{ - name = "Quartermaster's Office" - }, -/turf/open/floor/iron, -/area/station/cargo/office) -"xLK" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/obj/machinery/status_display/ai/directional/north, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/iron, -/area/station/commons/dorms) -"xMa" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/security/brig) -"xMb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"xMc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/structure/cable, -/obj/structure/table, -/obj/item/controller, -/obj/item/compact_remote, -/obj/item/compact_remote, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/white, -/area/station/science/explab) -"xMf" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/structure/mirror/directional/west, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/freezer, -/area/station/commons/lounge) -"xMj" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/directional/east{ - c_tag = "Hallway - Central Tram Platform North-East" - }, -/obj/effect/turf_decal/caution{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"xMt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/science/auxlab) -"xMw" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"xMz" = ( -/obj/structure/beebox, -/turf/open/floor/grass, -/area/station/service/hydroponics) -"xMP" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Three" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/central) -"xMQ" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"xMR" = ( -/obj/machinery/duct, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/food_packaging, -/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, -/area/station/maintenance/central/greater) -"xMS" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"xMW" = ( -/turf/closed/wall/r_wall, -/area/station/construction/mining/aux_base) -"xMY" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/service/theatre, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) -"xNg" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/east, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/iron, -/area/station/security/prison/safe) -"xNm" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/turf/open/floor/iron, -/area/station/security/prison/garden) -"xNq" = ( -/obj/machinery/iv_drip, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/medical/treatment_center) -"xNt" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_x = 3 - }, -/obj/item/lighter, -/turf/open/floor/carpet, -/area/station/security/detectives_office) -"xNu" = ( -/turf/closed/wall, -/area/station/service/kitchen/diner) -"xNH" = ( -/obj/structure/chair/office/light, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/wood/parquet, -/area/station/medical/psychology) -"xNP" = ( -/obj/structure/chair/stool/bar/directional/south, -/turf/open/floor/eighties, -/area/station/commons/fitness/recreation/entertainment) -"xNQ" = ( -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/science/breakroom) -"xNR" = ( -/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/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/engineering/main) -"xNT" = ( -/turf/closed/wall/r_wall, -/area/station/science/genetics) -"xOn" = ( -/turf/open/floor/iron/dark, -/area/station/medical/treatment_center) -"xOo" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm/directional/south, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/cargo/miningdock/cafeteria) -"xOv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/lower) -"xOL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/maintenance/disposal/incinerator) -"xOM" = ( -/obj/structure/closet/secure_closet/security/med, -/obj/item/clothing/mask/whistle, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron, -/area/station/security/checkpoint/medical) -"xOP" = ( -/obj/effect/turf_decal/bot, -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/service/hydroponics/garden) -"xOU" = ( -/obj/effect/turf_decal/siding/wood/corner, -/turf/open/floor/wood/large, -/area/station/service/library) -"xPg" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/structure/table, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"xPB" = ( -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 8 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/supply) -"xPN" = ( -/obj/structure/closet/lasertag/blue, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/commons/fitness/recreation/entertainment) -"xPQ" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"xPU" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"xQg" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) -"xQB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"xQD" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - 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, -/area/station/hallway/secondary/exit) -"xQE" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/machinery/door/airlock/engineering/glass{ - name = "Material Storage" - }, -/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/general, -/turf/open/floor/iron, -/area/station/engineering/main) -"xQM" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"xQP" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/security/brig) -"xQS" = ( -/turf/open/floor/iron/grimy, -/area/station/hallway/secondary/entry) -"xQY" = ( -/obj/structure/table/wood, -/obj/item/storage/crayons, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"xRv" = ( -/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, -/area/station/service/theater) -"xRx" = ( -/turf/closed/wall, -/area/station/medical/surgery/fore) -"xRy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xRz" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/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, -/area/station/hallway/secondary/exit/departure_lounge) -"xRH" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/structure/railing/corner, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/siding/thinplating/corner, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"xRI" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 6 - }, -/obj/structure/chair/comfy{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit) -"xRM" = ( -/turf/closed/wall/r_wall, -/area/station/ai_monitored/command/nuke_storage) -"xSk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Secure - Vault Entrance"; - network = list("ss13","secure") - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/grimy, -/area/station/ai_monitored/command/nuke_storage) -"xSv" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"xSw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/structure/cable/layer3, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"xSK" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ - dir = 8 - }, -/obj/machinery/air_sensor/ordnance_freezer_chamber, -/turf/open/floor/iron/dark/airless, -/area/station/science/ordnance/freezerchamber) -"xSX" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/processing) -"xSZ" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/medical/treatment_center) -"xTi" = ( -/obj/effect/turf_decal/siding/thinplating{ - 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) -"xTm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/medical/break_room) -"xTJ" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/station/maintenance/department/security) -"xTM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_output{ - dir = 1 - }, -/turf/open/floor/engine/n2, -/area/station/engineering/atmos) -"xTU" = ( -/obj/effect/turf_decal/sand/plating, -/obj/item/stack/sheet/iron, -/turf/open/floor/plating/airless, -/area/mine/explored) -"xTZ" = ( -/obj/item/stack/ore/glass, -/obj/item/toy/beach_ball/holoball, -/turf/open/misc/asteroid, -/area/station/security/prison/workout) -"xUb" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/greater) -"xUc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/station/maintenance/tram/right) -"xUi" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Engineering Maintenance" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engine_equipment, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/lesser) -"xUs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/science/breakroom) -"xUw" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison) -"xUy" = ( -/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/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"xUA" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"xUC" = ( -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xUL" = ( -/obj/effect/mapping_helpers/ianbirthday, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) -"xVc" = ( -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 4"; - space_dir = 2 - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"xVk" = ( -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/machinery/cryopod{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/common/cryopods) -"xVx" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/landmark/start/hangover, -/turf/open/floor/vault, -/area/station/hallway/primary/tram/left) -"xVz" = ( -/obj/machinery/modular_computer/console/preset/research{ - dir = 1 - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/command/heads_quarters/rd) -"xVE" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "N2O Outlet Pump" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 5 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"xVJ" = ( -/obj/machinery/door/airlock/external{ - name = "Mining Dock Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"xVK" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/sink{ - pixel_y = 15 - }, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) -"xVQ" = ( -/obj/structure/closet/lasertag/red, -/obj/effect/turf_decal/tile/red/full, -/turf/open/floor/iron/dark/smooth_large, -/area/station/commons/fitness/recreation/entertainment) -"xVV" = ( -/obj/structure/displaycase/trophy, -/obj/structure/sign/painting/library{ - pixel_x = -32 - }, -/turf/open/floor/wood/large, -/area/station/service/library) -"xWa" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/structure/railing, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_cw{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/left) -"xWc" = ( -/obj/effect/landmark/start/atmospheric_technician, -/obj/effect/landmark/navigate_destination/incinerator, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"xWi" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = 9; - pixel_y = 4 - }, -/obj/item/radio{ - pixel_x = -6; - pixel_y = -3 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/station/security/checkpoint/science) -"xWj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/trinary/filter/flipped/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) -"xWk" = ( -/obj/structure/table, -/obj/machinery/syndicatebomb/training, -/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/security/office) -"xWn" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/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/junction/flip{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"xWs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/maintenance/port/central) -"xWu" = ( -/obj/machinery/status_display/shuttle, -/turf/closed/wall, -/area/station/hallway/secondary/exit/departure_lounge) -"xWC" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/warning{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"xWI" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"xWO" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/surgical_drapes, -/obj/item/cautery, -/turf/open/floor/iron/white, -/area/station/science/robotics/lab) -"xWX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"xXb" = ( -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/caution, -/obj/machinery/crossing_signal/northwest, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/center) -"xXo" = ( -/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/chapel, -/area/station/service/chapel) -"xXp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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, -/area/station/hallway/primary/tram/left) -"xXq" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - 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, -/area/station/hallway/primary/tram/center) -"xXs" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 1; - height = 4; - name = "escape pod loader"; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/mine/explored) -"xXC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) -"xXD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/freezer, -/area/station/security/prison/shower) -"xXT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/hangover, -/turf/open/floor/plating, -/area/station/maintenance/tram/mid) -"xXY" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"xXZ" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/status_display/ai/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"xYc" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"xYj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) -"xYM" = ( -/obj/effect/turf_decal/siding/thinplating, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/service/kitchen) -"xYU" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/engine, -/area/station/science/cytology) -"xYV" = ( -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/structure/railing, -/obj/effect/turf_decal/trimline/neutral/filled/arrow_ccw{ - dir = 1 - }, -/obj/effect/spawner/random/vending/snackvend, -/turf/open/floor/iron, -/area/station/hallway/primary/tram/right) -"xZh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"xZq" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/iron, -/area/station/commons/dorms) -"xZr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/mess, -/turf/open/floor/iron/smooth, -/area/station/maintenance/starboard/lesser) -"xZL" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/structure/sign/warning/secure_area/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/security/office) -"xZZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/science/breakroom) -"yan" = ( -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"yap" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/smooth, -/area/station/maintenance/solars/port/aft) -"yat" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Hallway - Lower Mid-Right Service"; - dir = 10 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) -"yau" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) -"yaS" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -3; - pixel_y = 10 - }, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = 10; - pixel_y = 2 - }, -/obj/machinery/light/directional/east, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Civilian - Library East" - }, -/turf/open/floor/wood/large, -/area/station/service/library) -"yaZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/sign/warning/secure_area/directional/east, -/turf/open/floor/iron/white, -/area/station/science/lower) -"ybd" = ( -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) -"ybr" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/right/directional/south{ - name = "Security Desk"; - req_access = list("security") - }, -/turf/open/floor/plating, -/area/station/security/checkpoint/escape) -"ybt" = ( -/obj/machinery/meter{ - name = "Mixed Air Tank In" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos) -"ybw" = ( -/obj/effect/turf_decal/siding/thinplating, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/service/kitchen) -"ybD" = ( -/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/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/starboard/central) -"ybE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/security) -"ybR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/secure_area/directional/north{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM" - }, -/turf/open/floor/plating, -/area/station/science/server) -"yce" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electric_shock/directional/south, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/security) -"ycg" = ( -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/iron, -/area/station/engineering/main) -"ycm" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/station/security/brig) -"ycv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/engineering/main) -"ycI" = ( -/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/science/ordnance/storage) -"ycU" = ( -/obj/effect/turf_decal/trimline/white/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/turret_protected/aisat_interior) -"ydk" = ( -/obj/item/bikehorn, -/obj/item/grown/bananapeel, -/obj/item/food/spaghetti/copypasta, -/turf/open/floor/plating, -/area/station/engineering/main) -"ydl" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/stool/directional/north, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/iron, -/area/station/commons/lounge) -"ydw" = ( -/obj/structure/fluff{ - desc = "What, you think the water just magically soaks into the metallic flooring?"; - icon = 'icons/obj/lavaland/survival_pod.dmi'; - icon_state = "fan_tiny"; - name = "shower drain" - }, -/obj/machinery/duct, -/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/freezer, -/area/station/commons/toilet) -"ydD" = ( -/obj/structure/fans/tiny/forcefield{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "ert_bay_door" - }, -/turf/open/floor/plating, -/area/station/hallway/secondary/entry) -"ydF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/science/breakroom) -"ydS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/cargo/storage) -"yep" = ( -/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, -/area/station/ai_monitored/turret_protected/aisat_interior) -"yev" = ( -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/effect/turf_decal/stripes, -/turf/open/floor/iron, -/area/station/science/ordnance/testlab) -"yew" = ( -/obj/structure/chair, -/obj/effect/turf_decal/siding/thinplating{ - dir = 6 - }, -/turf/open/floor/iron/cafeteria, -/area/station/service/kitchen/diner) -"yez" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 6 - }, -/obj/item/kirbyplants/random, -/obj/effect/landmark/start/hangover, -/obj/machinery/camera{ - c_tag = "Civilian - Bar East"; - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/commons/lounge) -"yeC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"yeE" = ( -/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/dark, -/area/station/commons/fitness/recreation/entertainment) -"yeG" = ( -/obj/structure/filingcabinet/security, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/button/door/directional/west{ - id = "outerbrigleft"; - name = "Outer Brig Left Door Access"; - normaldoorcontrol = 1; - pixel_y = -8; - req_access = list("security") - }, -/obj/machinery/button/door/directional/west{ - id = "innerbrigleft"; - name = "Inner Brig Left Door Access"; - normaldoorcontrol = 1; - pixel_y = 8; - req_access = list("security") - }, -/turf/open/floor/iron, -/area/station/security/brig) -"yeL" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/hallway/secondary/construction/engineering) -"yeR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"yeT" = ( -/obj/machinery/computer/department_orders/medical, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"yeX" = ( -/obj/machinery/computer/telecomms/monitor{ - dir = 1; - network = "tcommsat" - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron, -/area/station/tcommsat/computer) -"yfa" = ( -/obj/machinery/light/dim/directional/south, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet) -"yfn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) -"yfH" = ( -/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, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/medical/surgery/fore) -"yfU" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8; - initialize_directions = 8 - }, -/turf/open/floor/iron/dark, -/area/station/medical/treatment_center) -"ygi" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) -"ygw" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Cargo - Mining North-West"; - dir = 9; - network = list("ss13","cargo") - }, -/turf/open/floor/iron, -/area/station/cargo/miningdock) -"ygA" = ( -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/cargo/storage) -"ygH" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line, -/obj/machinery/camera/directional/south{ - c_tag = "Civilian - Recreational Area South-East" - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"ygM" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/neutral/filled/corner, -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) -"ygR" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/turf/open/floor/iron, -/area/station/security/prison) -"ygX" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/ammo_workbench, -/turf/open/floor/iron/dark, -/area/station/ai_monitored/security/armory) -"yhd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/three, -/turf/open/floor/iron/smooth, -/area/station/maintenance/central/lesser) -"yhe" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/station/science/ordnance/bomb) -"yhi" = ( -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/obj/machinery/disposal/bin{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/science/ordnance/testlab) -"yhm" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Atmos to Loop" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/east, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) -"yhG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"yhX" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"yhY" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) -"yie" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/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, -/turf/open/floor/iron, -/area/station/science/robotics/lab) -"yig" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) -"yih" = ( -/obj/machinery/conveyor{ - id = "packageSort2" - }, -/obj/machinery/light/directional/east, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/station/cargo/sorting) -"yir" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"yis" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - 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) -"yiB" = ( -/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 = 8; - name = "sorting disposal pipe (General Security Wing)"; - sortTypes = list(8,7) - }, -/turf/open/floor/iron, -/area/station/security/brig) -"yiH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/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/neutral/filled/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/maintenance/tram/left) -"yiJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/chapel/office) -"yiL" = ( -/obj/structure/disposalpipe/segment, -/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/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/tram/mid) -"yiM" = ( -/turf/closed/wall, -/area/station/hallway/primary/tram/left) -"yiO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/white, -/area/station/science/ordnance) -"yiV" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) -"yiX" = ( -/obj/effect/turf_decal/bot, -/obj/effect/spawner/random/structure/crate_empty, -/obj/effect/spawner/random/maintenance/two, -/obj/item/stock_parts/cell/high/empty, -/turf/open/floor/iron, -/area/station/cargo/storage) -"yje" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"yjf" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) -"yji" = ( -/turf/closed/wall/r_wall, -/area/station/security/brig) -"yjo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "ordnancestorage"; - name = "Ordnance Storage Shutters"; - dir = 1 - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plating, -/area/station/science/ordnance/office) -"yjs" = ( -/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/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/office) -"yjv" = ( -/obj/structure/table, -/obj/item/analyzer, -/obj/item/wrench, -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/commons/storage/primary) -"yjN" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/entry) -"yjT" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating, -/area/station/engineering/atmos) -"yjU" = ( -/obj/machinery/medical_kiosk, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/white, -/area/station/medical/medbay/central) -"yjY" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/science/lobby) -"ykm" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 9 - }, -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - Atmospherics Incinerator ACcess"; - dir = 9; - network = list("ss13","engineering") - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) -"ykn" = ( -/obj/machinery/smartfridge, -/turf/closed/wall, -/area/station/service/kitchen) -"ykx" = ( -/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, -/area/station/command/heads_quarters/hop) -"yky" = ( -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/science/breakroom) -"ykL" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/stool/bar/directional/south, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/commons/lounge) -"ykU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/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/cable, -/turf/open/floor/iron, -/area/station/engineering/main) -"ykW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/west, -/obj/machinery/camera/directional/south{ - c_tag = "Medical - Cold Storage"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/freezer, -/area/station/medical/coldroom) -"ykX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/lockers) -"ylh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/station/ai_monitored/turret_protected/aisat_interior) -"ylw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/lesser) -"ylF" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) -"ylR" = ( -/obj/machinery/door/airlock/grunge{ - name = "Entertainment Center" - }, -/turf/open/floor/iron/dark, -/area/station/commons/fitness/recreation/entertainment) - -(1,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(2,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(3,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(4,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(5,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(6,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(7,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(8,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(9,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(10,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(11,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(12,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(13,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(14,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(15,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(16,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(17,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(18,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(19,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(20,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -xiI -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(21,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(22,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(23,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(24,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(25,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(26,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(27,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(28,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(29,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(30,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(31,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -pPV -pPV -pPV -pPV -pPV -pPV -pPV -pPV -pPV -pPV -pPV -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -pPV -pPV -pPV -pPV -pPV -pPV -pPV -pPV -pPV -pPV -pPV -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(32,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -pPV -ajc -ajc -jwD -ajc -ajc -ajc -jwD -ajc -ajc -pPV -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -pPV -ajc -ajc -jwD -ajc -ajc -ajc -jwD -ajc -ajc -pPV -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(33,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -pPV -ajc -xsG -aRN -xAo -ajc -xsG -aRN -xAo -ajc -pPV -ajc -ajc -ajc -ajc -ajc -pPV -pPV -pPV -pPV -pPV -pPV -pPV -pPV -ajc -ajc -ajc -ajc -pPV -ajc -xsG -aRN -xAo -ajc -xsG -aRN -xAo -ajc -pPV -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(34,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -aRN -lvw -aRN -dDG -aRN -lvw -aRN -dDG -dDG -dDG -dDG -dDG -dDG -dDG -pPV -ajc -jwD -ajc -ajc -jwD -ajc -pPV -ajc -ajc -ajc -ajc -pPV -jwD -aRN -lvw -aRN -jwD -aRN -lvw -aRN -jwD -pPV -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -xiI -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(35,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -oIH -aRN -cKC -dDG -oIH -aRN -cKC -dDG -dDG -dDG -dDG -dDG -dDG -dDG -pPV -ajc -xsG -aRN -aRN -xAo -dDG -pPV -ajc -ajc -ajc -ajc -ajc -ajc -oIH -aRN -cKC -ajc -oIH -aRN -cKC -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(36,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -xiI -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -aRN -dDG -dDG -dDG -aRN -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -aRN -lvw -lvw -aRN -dDG -dDG -dDG -dDG -ajc -ajc -ajc -ajc -jwD -aRN -jwD -ajc -jwD -aRN -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(37,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -aRN -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -oIH -aRN -aRN -cKC -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -aRN -dDG -dDG -dDG -aRN -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(38,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -aRN -dDG -dDG -aRN -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -aRN -dDG -dDG -dDG -dDG -dDG -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(39,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(40,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(41,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -vWt -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(42,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(43,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -vWt -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(44,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(45,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -xiI -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(46,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(47,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -epX -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(48,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -epX -dDG -dDG -dDG -aRN -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(49,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -aRN -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(50,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dDG -dDG -dDG -dDG -dDG -dhe -gfK -gfK -gfK -gfK -gfK -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(51,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -gfK -aRM -iBm -fYf -gfK -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -aRN -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -apC -apC -apC -apC -apC -apC -apC -apC -apC -apC -apC -apC -apC -apC -apC -apC -apC -apC -apC -apC -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(52,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -gfK -gfK -cZz -cZz -cZz -gfK -gfK -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -aRN -aRN -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -apC -hEz -hEz -hEz -hEz -hEz -hEz -hEz -hEz -hEz -hEz -oxU -vCf -vCf -vCf -vCf -vCf -vCf -vCf -apC -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(53,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -gfK -niS -uiv -fYf -dOx -ttw -gfK -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -aRN -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -apC -hEz -apC -apC -apC -apC -apC -apC -apC -apC -apC -cMr -apC -apC -apC -apC -apC -apC -vCf -apC -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(54,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -gfK -iZf -rke -wCm -rFv -cah -gfK -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -aRN -gqJ -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -apC -hEz -apC -stB -daq -hmD -veV -hAD -hAD -glw -nZa -mqU -hAD -veV -stB -daq -hmD -apC -vCf -apC -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(55,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -gfK -vuO -vYx -psl -tsO -tGC -gfK -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -gGi -vhB -gGi -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -apC -hEz -apC -stB -orC -hmD -veV -vSm -mgc -wSm -wSm -biC -hAD -veV -stB -iRX -hmD -apC -vCf -apC -apC -apC -apC -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(56,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -cwn -cwn -gfK -rbP -rbP -dBj -rbP -rbP -gfK -cwn -cwn -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -gGi -pKT -gGi -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -apC -hEz -apC -stB -iCA -vBg -tTw -vBg -qFr -veV -veV -chE -vBg -tTw -vBg -ydw -hmD -apC -vCf -apC -hCf -hCf -apC -apC -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(57,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -cwn -qkA -uBO -hDx -izG -ujM -fDL -hDx -gvM -rRa -cwn -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -gGi -gGi -rsA -gGi -gGi -gGi -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -apC -hEz -apC -stB -wty -hmD -veV -hAD -hAD -veV -mCQ -kEp -hAD -veV -stB -cbV -hmD -apC -vCf -apC -lgu -lgu -wCG -apC -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(58,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -cwn -aXC -jkk -gHX -svt -tBK -oFs -bAX -bWq -fmu -cwn -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -gGi -mrH -mUk -cIO -xjF -gGi -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -apC -hEz -apC -stB -etO -hmD -veV -cDZ -hAD -veV -veV -kEp -hAD -veV -stB -etO -hmD -apC -vCf -apC -lgu -lgu -wCG -apC -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(59,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -cwn -hDx -hDx -hDx -pee -tBK -lyN -hDx -hDx -hDx -cwn -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -gGi -vWJ -hcD -kfZ -xjF -gGi -gGi -gGi -gGi -gGi -gGi -gGi -dhe -dhe -dhe -dhe -apC -apC -apC -apC -hEz -apC -veV -veV -veV -veV -qcE -hAD -veV -pdr -kEp -xut -veV -veV -veV -veV -apC -vCf -apC -apC -mYK -apC -apC -apC -apC -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(60,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -cwn -qkA -uBO -hDx -vuX -tBK -pDX -hDx -gvM -rRa -cwn -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -gGi -gGi -gGi -gGi -xjF -gGi -spD -lYV -xjF -lYV -sbr -gGi -dhe -dhe -dhe -dhe -apC -dqS -uIA -hxl -hEz -apC -dhe -veV -rMa -ffE -hAD -hAD -veV -veV -kEp -hAD -rlX -oTn -veV -dhe -apC -vCf -apC -lgu -lgu -gsa -fvA -rXW -apC -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(61,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -cwn -aXC -jkk -kOY -svt -tBK -oFs -drB -bWq -fmu -cwn -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -gGi -cer -gGi -oMk -lYV -cer -lYV -xlZ -gGi -dhe -dhe -dhe -dhe -apC -uIA -qsR -iRu -hEz -apC -dhe -veV -veV -veV -hAD -wtH -veV -fNx -kEp -hAD -veV -veV -veV -dhe -apC -vCf -apC -gsa -lgu -gsa -rKl -lgu -apC -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(62,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -cwn -cwn -cwn -cwn -sHK -nIM -aip -hDx -hDx -hDx -cwn -cwn -cwn -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -gGi -gGi -riK -gGi -gGi -gGi -gGi -gGi -gGi -kUa -gGi -gGi -gGi -tLk -gGi -gGi -gGi -gGi -dhe -dhe -dhe -apC -nTT -qsR -apC -lgu -apC -dhe -veV -oGY -iCe -hAD -yfa -veV -veV -bpw -hAD -qYx -fhB -veV -dhe -apC -vCf -wBB -lgu -lgu -lgu -lgu -lgu -apC -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(63,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -cwn -cwn -hDx -mRx -hDx -cRQ -uTl -cRQ -cRQ -cwn -cwn -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -gGi -cfk -oPn -oPn -oPn -oPn -oPn -oPn -oPn -oPn -oPn -oPn -oiI -kUa -kUa -kUa -kUa -gGi -apC -apC -apC -apC -apC -apC -apC -lgu -apC -dhe -veV -veV -veV -hAD -hAD -rsU -rsU -oQS -hAD -veV -veV -veV -dhe -apC -vCf -apC -apC -apC -lgu -lgu -xIl -apC -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(64,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -cwn -izG -jYY -qfU -pfk -pfk -pfk -pfk -fDL -cwn -cwn -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -gGi -hiX -gGi -gGi -gGi -gGi -gGi -gGi -gGi -gGi -bTz -kUa -ffU -kUa -kUa -gGi -kUa -kUa -dzu -lgu -lgu -lgu -lgu -lgu -lgu -lgu -apC -dhe -veV -xkx -lMw -hAD -hAD -hAD -hAD -hAD -hAD -rdk -gAk -veV -dhe -apC -vCf -vCf -vCf -apC -apC -apC -apC -apC -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(65,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -cwn -ayk -tBK -jih -nxq -nxq -nxq -nxq -lyN -cRQ -cwn -cwn -cwn -cwn -cwn -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -gGi -hiX -gGi -dhe -dhe -dhe -gGi -dhe -dhe -cIQ -cIQ -cIQ -nHF -cIQ -cIQ -cIQ -kUa -kUa -apC -apC -apC -apC -apC -apC -apC -apC -apC -elr -elr -elr -elr -elr -elr -jeO -hAD -elr -elr -elr -elr -elr -elr -apC -apC -apC -vCf -vCf -vCf -vCf -vCf -apC -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(66,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -cwn -gLZ -dtY -smr -pRS -vWU -vja -tBK -lyN -oht -cwn -sex -vEF -dKd -cwn -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -gGi -lCq -gGi -dhe -dhe -dhe -ncF -ncF -ncF -mhZ -wVL -glY -dyi -lCd -cay -mhZ -ncF -ncF -ncF -dhe -elr -eUS -fOs -suR -elr -fWG -pKZ -oJR -elr -eUS -fOs -suR -elr -ujn -ujn -elr -oJR -pKZ -vMv -elr -suR -fOs -eUS -apC -apC -apC -apC -apC -vCf -apC -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(67,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dDG -dhe -dhe -dhe -cwn -ayk -cum -oSs -gHd -cwn -hkn -tBK -xhC -bou -gmX -lIK -qhL -rfT -cwn -dhe -dhe -dhe -dhe -dhe -dhe -rEG -twF -twF -afv -rqp -twF -icT -cCa -gGi -dhe -dhe -dhe -ncF -xgi -gNy -mhZ -xgi -rQN -xgi -iLN -iQH -mhZ -gNy -xgi -ncF -dhe -elr -qfj -iWs -sYG -elr -pfu -nAP -uZW -elr -qfj -uzk -sYG -elr -bZi -rnn -elr -uZW -iPQ -sTm -elr -sYG -rPJ -eAS -elr -xlU -dxL -fWG -apC -vCf -apC -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(68,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dhe -dhe -dDG -dDG -dDG -vfU -vfU -vfU -vfU -vfU -vfU -dDG -dDG -dDG -dDG -dDG -dhe -cwn -ayk -cum -oSs -gHd -cwn -vuX -cjO -mtZ -weU -cwn -hME -nfs -dKd -cwn -dhe -dhe -dhe -dhe -dhe -dhe -dhe -qPa -mBk -uOB -qPa -gGi -gGi -ixu -gGi -dhe -dhe -dhe -ncF -gcp -xgi -mhZ -nUZ -tAT -gNy -iRQ -xgi -mhZ -kcA -tLA -ncF -dhe -elr -elr -elr -cBv -elr -elr -elr -aEZ -elr -elr -elr -nwT -elr -bZi -rnn -elr -khN -elr -elr -elr -dZT -elr -elr -elr -elr -rnD -eix -apC -vCf -apC -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(69,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dhe -dhe -dDG -vfU -vfU -vfU -bhr -ryo -bhr -bhr -vfU -vfU -vfU -vfU -vfU -vfU -dhe -cwn -ayk -cum -oSs -gHd -cwn -syN -xzh -oeA -ohY -oVM -oVM -oVM -oVM -oVM -oVM -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -gGi -xvq -gGi -gGi -gGi -gGi -ncF -ncF -bhG -mhZ -mhZ -mhZ -mhZ -mhZ -mhZ -mhZ -bhG -ncF -ncF -elr -elr -aUP -sbD -oig -sbD -jNM -omT -mub -tNk -qyM -sbD -lRR -ili -hTL -sMZ -cKS -mub -ili -sbD -sxv -mub -sbD -sbD -bIa -eaz -dDk -pKZ -apC -vCf -apC -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(70,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dDG -dDG -vfU -bhr -bhr -bhr -lFk -lFk -bhr -bhr -kPC -bhr -bhr -bhr -duU -duU -oEN -oEN -oEN -oEN -oEN -oEN -cVQ -xle -xcj -oEN -oVM -naX -czI -vfY -pWp -oVM -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -pZW -pZW -pZW -kRz -jww -jww -jww -jww -jww -wGc -yiH -inv -aNJ -qQq -qQq -qQq -uWr -aWy -rOp -ncF -xxW -sbD -ili -hTL -vmB -cfR -vmB -cxS -vmB -cUT -djG -vmB -vmB -cfR -vmB -fFX -vmB -fue -acK -vCJ -oyI -oyI -oyI -oyI -oyI -wvr -apC -apC -apC -apC -vCf -apC -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(71,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -xiI -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dDG -vfU -vfU -kPC -lFk -lFk -lFk -mAB -dCr -nQB -nQB -xcd -akN -bhr -swM -fZX -uXL -fZX -akb -oEN -iuh -sAI -xUw -jOf -foy -gAS -dSe -llf -gsB -fSa -joG -oVM -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -pZW -mum -mum -mum -wBl -jAW -mwd -doo -jAk -pZW -ncF -oMM -kKS -kKS -kKS -kKS -kKS -vqK -ncF -ncF -kQd -pNc -oyI -oyI -bkv -qQf -bkv -poA -poA -poA -jmA -msx -msx -msx -msx -msx -msx -rsw -elr -xLK -xZq -xZq -xZq -faN -fhO -pTd -xFA -oMm -vCf -vCf -vCf -apC -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(72,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dDG -vfU -bhr -bhr -lFk -fgB -lFk -jZM -qAy -iqH -wSS -uyJ -bLl -ryo -gvI -gvI -wkk -gvI -gvI -oEN -qVo -qpj -sar -cdT -rBz -ung -cQD -mgS -bLk -fSa -smV -oVM -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -pZW -mum -pZW -pZW -pZW -pZW -pZW -pZW -pZW -pZW -pZW -nZg -aNJ -qQq -qQq -qQq -uWr -vqV -ncF -nKY -xla -gfV -cvf -azd -azd -gfV -gBL -qgP -vUe -gfV -uJN -uZE -jdR -uIb -tdT -tdT -eoG -cts -sKg -sKg -iFV -iFV -iFV -iFV -iFV -sKg -apC -lgu -vCf -apC -apC -apC -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(73,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dDG -vfU -bhr -lFk -lFk -lFk -lFk -lFk -jZM -jZM -iqH -vdQ -cXb -ryo -uLz -fZX -wkk -fZX -jLj -gvI -rAZ -kHT -ljC -kHT -rBz -ung -fZm -mgS -lFt -fSa -jsN -oVM -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -pZW -mum -pZW -hvx -oUs -uDI -nUt -wRQ -oUs -jJc -pZW -khE -aKC -qQq -qQq -qQq -uWr -lyF -ncF -elr -elr -sLX -elr -elr -elr -olx -elr -elr -elr -khF -apC -mEw -apC -sTl -wbb -wbb -mPd -mDg -sKg -hHu -dzF -xhL -aXo -xhL -dzF -xhL -apC -apC -vCf -aql -apC -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(74,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dDG -vfU -ryo -bCc -lFk -lFk -lFk -lFk -lFk -jZM -iqH -dVx -orT -ryo -nlp -gvI -lGl -gvI -nlp -gvI -oih -lAA -rBc -lAA -rBz -ung -fZm -xbQ -xbQ -csS -cpy -oVM -dhe -dhe -dhe -dhe -dhe -xRM -xRM -xRM -lQM -pZW -mum -pZW -cHz -gpp -gpp -gpp -gpp -gpp -xWs -tYK -oZO -qVT -ptw -nls -ptw -ptw -lwp -ncF -fOs -qNd -bkl -elr -pKZ -gVw -miJ -elr -fOs -bKL -bkl -apC -vGA -apC -uqm -trd -taB -lQr -sqj -fNB -fNB -fNB -fNB -qQC -wPE -wPE -wPE -gxY -apC -vCf -adQ -apC -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(75,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dDG -vfU -bhr -lFk -lFk -lFk -lFk -lFk -lFk -lFk -iqH -iqH -ned -ryo -gvI -gvI -rIi -gvI -gvI -gvI -cOo -vJE -eLY -rBz -rBz -ung -cQD -bvP -mgS -csS -iWZ -oVM -xRM -xRM -xRM -xRM -xRM -xRM -wKl -aYg -lQM -jAk -mum -pZW -sZu -nDY -jAk -jAk -jAk -jAk -lAV -rQp -gcN -uGh -qQq -vxo -qQq -nuz -vqV -ncF -uHH -bkl -dnB -elr -pfu -miJ -jtN -elr -qfj -bkl -dnB -apC -vGA -apC -elr -dwp -oqT -iCT -wbb -xFx -tAs -aTt -jyV -eOv -jVT -aTt -hBV -eCQ -apC -vCf -itH -apC -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(76,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dDG -vfU -bhr -cRM -lFk -lFk -lFk -lFk -lFk -lFk -lFk -jZM -dvW -oWB -gvI -jHw -tJL -jAF -gvI -pAR -hst -oNo -eLY -rBz -rBz -bgo -dSe -dSe -tBd -fCK -dSe -xRM -xRM -pnb -hkG -jRF -xRM -xRM -jhl -eHK -lQM -lQM -mum -pZW -sZu -jAk -jAk -jAk -jAk -nDY -npm -rQp -bMT -qQq -qQq -qQq -qQq -uWr -vqV -ncF -joe -twk -smp -elr -mkZ -szo -vyR -elr -gyH -twk -smp -apC -vGA -apC -itn -pWC -pWC -qhW -wbb -xFx -kzQ -vUJ -djT -djT -djT -tdA -snD -pNj -apC -vCf -lgu -apC -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(77,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dDG -vfU -ryo -lFk -lFk -lFk -lFk -lFk -lFk -lFk -lFk -jZM -mHg -tBN -ruE -iVj -dSI -fsP -mHA -vNe -rBz -fPy -sar -qpj -rBz -upt -ygR -mHA -uFr -pib -lMg -xRM -ehy -fCm -uSY -aQL -jRF -xRM -gXy -pSf -mKr -lQM -mum -pZW -sZu -jAk -jAk -cKE -jAk -jAk -npm -rQp -bMT -qQq -qQq -qQq -qQq -uWr -caK -ncF -apC -apC -apC -apC -apC -apC -apC -apC -apC -apC -apC -apC -vGA -apC -qSs -vYD -vYD -xaD -wbb -xFx -vAF -wGQ -tKt -tKt -uva -eeJ -haH -kzQ -apC -vCf -kGd -apC -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(78,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dDG -vfU -ryo -lFk -lFk -xTZ -lFk -lFk -lFk -lFk -jZM -iqH -gFX -flw -mIi -vFJ -kbS -kbS -rXJ -bqL -vMx -sBP -pOo -lnZ -vMx -vMx -vxH -rXJ -bqL -vMx -buX -xRM -cBP -dhH -qKy -xnf -xnf -kpX -wiu -iDi -mfj -lQM -mhj -pZW -sZu -gpp -gpp -gpp -gpp -gpp -xWs -tYK -oZO -uFc -uFc -uFc -uFc -uFc -mLT -tMP -oAP -oAP -oAP -oAP -oAP -oAP -oAP -oAP -oAP -oAP -oAP -oAP -nUs -apC -elr -elr -elr -wYd -jdX -xFx -vAF -wGQ -tKt -loh -tKt -eeJ -haH -mzs -apC -vCf -itH -apC -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(79,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dDG -vfU -kPC -lFk -lFk -lFk -lFk -lFk -lFk -lFk -iqH -iqH -gHQ -hvk -hYl -rwH -lvv -lfc -jOD -bjX -rBz -gYl -vaG -lAA -rBz -ubC -klQ -jOD -wJh -lOt -bDz -xRM -iOy -vuc -sGc -sWD -wYS -xRM -xSk -lWj -fLZ -lQM -mum -pZW -sZu -jAk -jAk -jAk -jAk -jAk -npm -rQp -bMT -qQq -qQq -qQq -qQq -uWr -vYf -ncF -apC -apC -apC -apC -apC -apC -apC -apC -apC -apC -apC -apC -lgu -apC -itn -pWC -pWC -kdk -wbb -xFx -otf -wGQ -uva -tKt -tKt -eeJ -haH -lzS -apC -vCf -lgu -apC -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(80,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dDG -vfU -bhr -cRM -lFk -lFk -lFk -lFk -pZr -lFk -lFk -lFk -tGk -sgT -gvI -wFT -lOt -klE -gvI -wFT -rmm -rBz -vMx -mGG -gGG -plU -dhL -dhL -dhL -mUM -dhL -xRM -xRM -fKk -jYG -wYS -xRM -xRM -awK -jJE -lQM -lQM -mum -pZW -sZu -jAk -jAk -jAk -jAk -jAk -npm -rQp -bMT -qQq -qQq -qQq -qQq -hXO -woH -ncF -sGu -twk -smp -elr -oRE -szo -vyR -elr -sGu -twk -smp -apC -lgu -apC -qSs -vYD -vYD -nmg -wbb -xFx -kzQ -jpp -wet -wet -wet -cIW -snD -mNP -apC -vCf -lgu -apC -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(81,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dDG -vfU -bhr -lFk -lFk -lFk -lFk -lFk -lFk -lFk -jZM -iqH -dYD -ryo -gvI -blx -dAq -blx -gvI -gvI -wWS -rBz -vMx -rBz -tkM -aEK -dhL -qfk -fmL -iuR -aIi -kLz -xRM -xRM -xRM -xRM -xRM -xRM -nhL -ajO -lQM -jAk -mum -pZW -sZu -xpH -nDY -jAk -jAk -jAk -lAV -rQp -gcN -uGh -qQq -qQq -qQq -fIT -woH -ncF -qfj -oAo -dnB -elr -pfu -uZW -jtN -elr -qfj -sYG -dnB -apC -lgu -apC -elr -tzJ -hVa -dLi -wbb -xFx -bPo -wPE -fvR -iev -fvR -wPE -bKE -ckg -apC -vCf -itH -apC -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(82,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dDG -vfU -ryo -fwW -lFk -lFk -lFk -lFk -lFk -lFk -iqH -sxH -xJV -ryo -glm -ofn -dTH -peP -hdI -gvI -nLd -fPy -cQr -fPy -rBz -aEK -dhL -bKn -fbf -nkh -eIb -kLz -dhe -dhe -dhe -dhe -dhe -xRM -xRM -xRM -lQM -pZW -mum -pZW -cgM -gpp -gpp -gpp -gpp -gpp -xWs -tYK -oZO -huB -ptw -ptw -ptw -ptw -ulY -ncF -fOs -hVJ -sYG -elr -pKZ -oYu -uZW -elr -fOs -klx -sYG -apC -lgu -apC -dXm -sLR -sKP -lJU -wsA -nrQ -nrQ -nrQ -nrQ -wRi -jor -jor -jor -eUZ -apC -vCf -xcg -apC -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -xiI -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(83,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dDG -vfU -bhr -lFk -lFk -lFk -lFk -lFk -jZM -iqH -jZM -tLy -ebH -ryo -tlZ -uPv -mew -uPv -tlZ -gvI -rAZ -gGV -lun -kHT -rBz -ptU -dhL -rhP -fAY -oxG -rhP -kLz -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -pZW -mum -nNV -hAr -orQ -orQ -orQ -iDs -wII -oOF -pZW -jtt -aNJ -qQq -srt -qQq -uWr -jWk -ncF -elr -elr -cWJ -elr -elr -elr -ddu -elr -elr -elr -fBp -apC -cTg -apC -gnQ -wbb -wbb -vda -gjm -sKg -uTu -hqN -xhL -aXo -xhL -hqN -xhL -apC -apC -vCf -qaX -apC -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -xiI -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(84,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dDG -vfU -bhr -bhr -lFk -qSM -lFk -jZM -enj -iqH -lOE -uyJ -lWa -ryo -gvI -gvI -gvI -gvI -gOa -gvI -wYb -dps -lnZ -gYl -vOM -oFp -kLz -kLz -kLz -kLz -kLz -kLz -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -pZW -gBE -pZW -pZW -pZW -uss -uss -bOC -mGf -siq -qnl -kML -aNJ -qQq -vxo -qQq -uWr -bTg -ncF -jzz -kNn -mub -xay -sbD -sbD -mub -mQS -jSi -bGI -mub -tNk -rxH -sbD -hTL -wbb -wbb -vda -ghB -sKg -sKg -iFV -iFV -iFV -iFV -iFV -sKg -apC -lgu -vCf -apC -apC -apC -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(85,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dDG -vfU -vfU -kPC -lFk -lFk -lFk -lFk -vqQ -kre -kre -nwX -exk -ryo -gQO -gQO -gQO -gvI -ggL -gvI -oSj -rmm -vMx -ubC -pJG -qqn -oEN -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -pZW -gBE -gBE -gBE -pZW -fef -qGC -bRX -oNE -pbM -pZW -iTf -aNJ -qQq -qQq -qQq -uWr -pdp -ncF -ncF -kQd -wCj -rSM -rSM -igw -cfR -cfR -cfR -cfR -cfR -rOM -cfR -cfR -cfR -cfR -cfR -sdD -rnn -elr -sue -eAZ -eAZ -eAZ -eDG -lmy -tgH -qHY -iMU -iMU -iMU -nEU -apC -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -xiI -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(86,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dDG -dDG -dDG -vfU -bhr -bhr -ryo -lFk -lFk -isW -isW -isW -isW -isW -isW -isW -isW -isW -isW -isW -isW -isW -sIc -mtx -aFs -oEN -oEN -oEN -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -pZW -pZW -pZW -gBE -pZW -pZW -pZW -pZW -pZW -pZW -ncF -peq -aKC -qQq -qQq -qQq -uWr -lgt -mYR -ncF -xdG -azd -jOc -dVh -mZt -poA -mZt -dqh -mZt -poA -vtb -mZt -mZt -poA -mZt -swe -xmv -vpU -aVM -rSv -fIE -fIE -fIE -fIE -fIE -esC -apC -apC -apC -apC -vcZ -apC -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(87,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dDG -mEZ -mEZ -mEZ -vfU -vfU -vfU -bhr -kPC -bhr -isW -jAp -kTw -dRK -isW -ebj -kTw -dRK -isW -dpX -kTw -dRK -isW -usc -rXJ -jMu -oEN -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -pZW -gBE -pZW -dhe -dhe -dhe -dhe -dhe -ncF -nHO -aNJ -qQq -qQq -qQq -uWr -gGZ -uhm -ncF -elr -elr -elr -cdK -azd -gfV -azd -qUF -fGM -gfV -uJN -kPr -azd -rag -jOc -dVh -kCV -azd -kHr -jOc -azd -cLp -kHr -azd -azd -eDI -qhe -rEM -pKZ -apC -vcZ -apC -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(88,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dDG -mEZ -dDG -dDG -dhe -dhe -vfU -vfU -vfU -vfU -pxW -gqb -lnC -ogY -isW -gqb -lnC -ogY -isW -gqb -lnC -ogY -isW -niO -maS -thG -vRO -vRO -vRO -vRO -vRO -vRO -vRO -vRO -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -pZW -gBE -pZW -dhe -dDG -dhe -dhe -ncF -ncF -nHO -aNJ -qQq -pBe -qQq -uWr -jeB -ncF -ncF -dhe -dhe -elr -elr -elr -gRU -elr -elr -elr -dZP -elr -elr -elr -mmp -elr -bZi -qvb -elr -cJO -elr -elr -elr -aXg -elr -elr -elr -elr -rnD -eix -apC -vcZ -apC -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(89,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -mEZ -dhe -dhe -xwf -xwf -xwf -xwf -xwf -xwf -pxW -isW -lvQ -isW -isW -isW -iUE -isW -isW -isW -mOP -isW -isW -tfk -vMx -vIF -nhm -eHG -ohr -ohr -ohr -ohr -fEK -vRO -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -siE -gBE -pZW -dDG -dDG -dDG -dDG -ncF -hGo -kwI -aNJ -qQq -qQq -qQq -uWr -lHH -bxp -ncF -dhe -dhe -elr -qfj -qpc -sYG -elr -pfu -sxO -uZW -elr -qfj -buS -sYG -elr -bZi -qvb -elr -uZW -dwj -sTm -elr -sYG -bQt -eAS -elr -xlU -dxL -nYL -apC -vcZ -apC -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(90,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -mEZ -hFr -hFr -xwf -pkt -xdf -xdf -odl -fKr -xxA -eEp -fql -kDj -kDj -kDj -fql -kDj -kOy -kDj -fql -qXD -rQP -hON -vMx -ebn -xeW -tmv -daB -ftP -ftP -ftP -xXD -vRO -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -pZW -gBE -pZW -dhe -dDG -dDG -dhe -ncF -ncF -dgN -aNJ -qQq -qQq -qQq -uWr -oJx -ncF -ncF -dhe -dhe -elr -kBm -fOs -dVA -elr -eUF -pKZ -sjB -elr -kFW -fOs -dVA -oTA -ylR -vwO -oTA -sjB -pKZ -bpU -elr -dVA -fOs -dBQ -elr -apC -apC -apC -apC -srv -apC -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(91,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dDG -mEZ -rPk -uBg -ept -dkS -dGo -nMu -vzY -xwf -mTm -sai -lnC -sai -xNg -sai -lnC -sai -sai -sai -lnC -mAN -cNl -epF -eLY -mlv -wYB -pje -wrv -wrv -qgQ -wrv -kIt -vRO -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -pZW -gBE -pZW -dhe -dhe -dDG -dhe -dhe -ncF -uKJ -aNJ -qQq -sFC -qQq -uWr -cih -ncF -dhe -dhe -dhe -elr -elr -elr -elr -elr -elr -oTA -oTA -oTA -oTA -oTA -oTA -oTA -cqy -uQX -oTA -oTA -oTA -oTA -oTA -oTA -apC -apC -apC -xKz -iMU -iMU -iMU -tvd -apC -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(92,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dDG -dDG -hFr -hFr -xwf -uAa -jjX -pAl -vzY -xwf -pxW -isW -rEe -isW -isW -isW -mQq -isW -isW -isW -uZS -isW -isW -hli -eLY -uBu -nhm -uAm -ccH -ccH -ccH -ccH -dER -vRO -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -pZW -gBE -pZW -dhe -dhe -dDG -dhe -dhe -ncF -nHO -aNJ -qQq -srt -qQq -uWr -lLd -ncF -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -oTA -kZh -myz -lof -iNo -fIb -rtp -rtp -uQX -luy -fIb -fWB -uid -uDs -hcv -apC -xKz -iMU -tvd -apC -apC -apC -apC -apC -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(93,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -xwf -xwf -twi -xwf -xwf -xwf -pxW -tRc -mvN -ulk -isW -tRc -mvN -ulk -isW -tRc -mvN -ulk -isW -jZD -eLY -ung -vRO -vRO -vRO -vRO -vRO -vRO -vRO -vRO -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dhe -dhe -pZW -jYX -pZW -dhe -dDG -dDG -dhe -dhe -ncF -veQ -aNJ -qQq -vxo -qQq -uWr -lLd -ncF -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -oTA -glP -lOM -qOf -hao -dkb -dkb -dkb -yeE -aWf -aWf -qHV -uid -bYd -hcv -apC -vcZ -apC -apC -apC -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(94,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -hFr -ttx -hFr -dhe -dhe -pxW -lJv -dJS -lcG -isW -xtX -dJS -lcG -isW -ice -eBz -lcG -isW -syF -fdW -aFs -oEN -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dhe -pZW -gBE -pZW -dDG -dDG -dhe -dhe -dhe -ncF -nHO -aNJ -qQq -qQq -qQq -uWr -lLd -ncF -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -oTA -bCm -sud -qOf -hao -atg -kWN -qNx -kWN -kWN -bXB -qXX -uid -uid -dwy -apC -vcZ -apC -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(95,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dhe -dhe -dhe -dhe -dhe -hFr -ttx -hFr -dhe -dhe -pxW -pxW -pxW -pxW -pxW -pxW -pxW -pxW -pxW -pxW -pxW -duB -duB -ahn -jzV -uFE -duB -duB -dhe -dhe -dhe -dhe -dhe -dhe -xwf -xwf -xwf -xwf -dhe -dhe -dDG -dDG -dDG -dDG -dhe -pZW -gBE -pZW -dDG -dDG -dhe -dhe -dhe -ncF -nHO -aNJ -qQq -qQq -qQq -uWr -snP -ncF -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -oTA -cqT -iNV -qOf -hao -hsg -kWN -vqr -rtp -kWN -gQP -qXX -uid -xNP -hcv -apC -vcZ -apC -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(96,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -hFr -ttx -hFr -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -duB -eRw -bEB -bHO -eay -qjG -duB -dhe -dhe -dhe -dhe -hFr -hFr -xwf -qeZ -jdf -xwf -dhe -dDG -dDG -dDG -dDG -dDG -dDG -pZW -gBE -pZW -dDG -dDG -dDG -dhe -dhe -ncF -nHO -aNJ -qQq -qQq -qQq -uWr -lLd -ncF -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -oTA -lof -kZh -kZh -hao -rtp -rtp -rtp -rtp -rtp -rtp -qXX -uid -xNP -hcv -apC -vcZ -bso -bso -bso -bso -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(97,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -hFr -ttx -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -dhe -duB -rZI -gJR -cDu -xNm -rkP -duB -dhe -dhe -dhe -dhe -hFr -fzU -oeg -xdf -xUb -xwf -dhe -dDG -dDG -dDG -dDG -dDG -dDG -pZW -gBE -pZW -dDG -dDG -cuX -dhe -dhe -ncF -nHO -aNJ -qQq -qQq -qQq -uWr -lLd -ncF -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -oTA -oTA -oTA -oTA -pQE -izi -izi -izi -tWw -tWw -tWw -ncc -jnq -jnq -jnq -apC -vcZ -bso -pMX -gtp -bso -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(98,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dhe -dhe -dhe -dhe -hFr -ttx -ttx -ttx -ttx -ttx -ttx -ttx -ttx -ttx -ttx -ttx -ttx -ttx -hFr -dhe -duB -otn -clu -qkh -xeK -lQx -duB -dhe -dhe -dhe -dhe -hFr -gXd -xwf -haf -lQd -xwf -dhe -dDG -dDG -dDG -cuX -dDG -dDG -pZW -gBE -pZW -dDG -dDG -dDG -ncF -ncF -ncF -fag -aNJ -qQq -qQq -qQq -uWr -lLd -ncF -ncF -ncF -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -oTA -oTA -els -pZU -xPN -xVQ -ofx -bLR -jnq -jnq -iwV -jnq -lgu -vcZ -kbq -vCf -wiw -bso -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(99,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dhe -dhe -dhe -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -ttx -hFr -dhe -duB -tsw -kwk -iaT -lvN -lpq -duB -dhe -hFr -hFr -hFr -hFr -fzU -xwf -xwf -xwf -xwf -dhe -dDG -dDG -dDG -dDG -dDG -dDG -pZW -gBE -pZW -dDG -dDG -dDG -ncF -rll -tlr -tnm -aTr -ooL -ooL -ooL -eeo -wxl -adh -wOk -ncF -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -oTA -oTA -oTA -oTA -oTA -oTA -oTA -jnq -hlT -bMQ -vMf -iMU -tvd -bso -jkU -oVD -bso -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(100,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -gap -gap -hFr -ttx -hFr -dhe -duB -duB -cIn -arI -tWy -duB -duB -dhe -hFr -ttx -fzU -fzU -fzU -fzU -hFr -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -beg -gBE -beg -cuX -dDG -dDG -iin -bRe -ncF -ncF -hxK -hxK -ald -hxK -hxK -ncF -ncF -xgi -ncF -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -jnq -kjl -jIG -bso -bso -bso -bso -bso -bso -bso -vNH -vNH -vNH -vNH -vNH -vNH -vNH -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(101,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -tIJ -gap -ifk -hFr -ttx -hFr -dhe -dhe -duB -duB -duB -duB -duB -dhe -dhe -hFr -ttx -hFr -hFr -hFr -fzU -hFr -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -beg -gBE -beg -dDG -dDG -dDG -iin -bRe -sDv -ncF -nxP -nxP -nxP -nxP -nxP -ncF -jIx -xgi -ncF -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -htM -dhe -dhe -dhe -dhe -dhe -cuX -dDG -dhe -dhe -jnq -kjl -jIG -iDB -lkv -oHC -lSp -wnq -dwR -ney -lib -uqo -ozZ -cDN -sim -ney -vNH -dhe -dhe -dhe -dhe -dhe -dhe -dDG -cuX -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(102,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -paE -gap -aqR -hFr -ttx -hFr -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -hFr -ttx -hFr -dhe -hFr -fzU -uQB -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -beg -gBE -beg -dDG -dDG -dDG -eKZ -qSH -cEz -qjU -iTN -iTN -iTN -iTN -iTN -qjU -uyI -rBU -qjU -dhe -dhe -dhe -dhe -dDG -dhe -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dhe -jnq -kjl -jIG -czi -ttc -wnh -qxZ -gMr -dwR -ney -hSJ -qPG -jpw -qFK -nKu -ney -vNH -dhe -dhe -dDG -dDG -aRN -aRN -aRN -aRN -aRN -dDG -dhe -dhe -dhe -dhe -dhe -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(103,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -aqR -rUf -lem -hFr -ttx -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -ttx -hFr -dhe -hFr -fzU -hFr -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -beg -gBE -beg -dDG -dDG -dDG -eKZ -ugX -qjU -qjU -thI -thI -bHc -thI -thI -qjU -qjU -qgh -qjU -dhe -dhe -dhe -dDG -dDG -dDG -cuX -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -jnq -kjl -jIG -obz -vfD -nMP -psB -qYQ -dwR -cXL -cXL -lbv -jpw -sFF -rcI -cXL -vNH -dhe -aRN -aRN -aRN -aRN -sLE -sLE -sLE -aRN -aRN -aRN -dDG -dhe -dhe -dDG -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(104,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -wZm -vyI -dhe -dhe -hFr -oST -ttx -ttx -ttx -eRO -ttx -ttx -ttx -ttx -ttx -ttx -ttx -ttx -hFr -dhe -hFr -fzU -hFr -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -cuX -pZW -gBE -pZW -dDG -dDG -dDG -qjU -vNG -voE -ooK -nfc -jDm -jDm -jDm -nzO -sMM -oAI -vUa -qjU -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dhe -dhe -dhe -jnq -jnq -jnq -jnq -jnq -dhe -dhe -dhe -jnq -kjl -jIG -dwR -qdL -lXR -dwR -ngp -dwR -dwR -cXL -ney -jpw -jpw -dAh -cXL -vNH -dhe -aRN -fqq -pKr -fqq -jTk -jTk -jTk -jTk -jTk -pKr -aRN -dhe -dhe -dhe -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(105,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -aqR -aqR -hgK -aqR -hFr -bZR -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -dhe -hFr -fzU -hFr -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -pZW -gBE -pZW -dDG -dDG -dhe -qjU -qjU -qjU -ppU -qWn -kFp -tLZ -kFp -qvL -wYu -qjU -qjU -qjU -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -jnq -jnq -vPA -fwe -lRr -jnq -jnq -jnq -jnq -jnq -kjl -jIG -lYK -rbt -sRR -bcq -gIT -faL -oee -jpw -ney -osd -qrr -uou -wux -vNH -dhe -aRN -bnF -bnF -bnF -fqq -jTk -jTk -jTk -jTk -pDT -aRN -cuX -dhe -dhe -dhe -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(106,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -aqR -dhe -aqR -edL -dZW -rJO -hFr -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -hFr -fzU -hFr -dhe -dhe -hFr -hFr -hFr -hFr -hFr -dDG -dDG -pZW -gBE -pZW -dDG -dDG -dDG -dDG -dDG -qjU -qQN -qWn -kFp -kFp -kFp -qvL -wYu -qjU -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -jnq -hlT -mtz -mtz -mtz -mtz -mtz -mtz -mtz -uqY -hiG -jIG -tVt -hAE -eqi -rsd -ngp -dwR -dwR -dAh -jpw -jpw -jpw -gAp -cXL -vNH -dDG -aRN -bnF -bnF -bnF -mdv -jTk -jTk -jTk -jTk -pKr -aRN -aRN -dhe -dhe -dhe -dhe -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(107,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -gif -dhe -hFr -hFr -hFr -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -hFr -fzU -hFr -dhe -dhe -hFr -tBW -wgl -wgl -hFr -dhe -dhe -pZW -gBE -pZW -dDG -dDG -dDG -dDG -dhe -qjU -qQN -qWn -kFp -kFp -kFp -qvL -wYu -qjU -dhe -dhe -ukq -ukq -ukq -ukq -ukq -ukq -dhe -dhe -dhe -jnq -kjl -jIG -jIG -jIG -jIG -jIG -jIG -jnq -kcm -jnq -jIG -kWv -aNv -dPY -crb -nqu -dwR -cXL -cXL -mfX -ney -rmJ -tNn -cXL -vNH -aRN -aRN -bnF -bnF -bnF -fqq -jTk -jTk -jTk -jTk -pDT -sLE -aRN -xFs -igy -igy -tRC -igy -xFs -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(108,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -wZm -wZm -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -hFr -fzU -hFr -dhe -dhe -hFr -juP -wgl -shy -hFr -hFr -hFr -hFr -pzo -hFr -dDG -dDG -dDG -dDG -dhe -qjU -qQN -qWn -kFp -kFp -kFp -qvL -wYu -qjU -dhe -dhe -ukq -vIg -lCT -klI -kCN -jIG -jnq -jnq -jnq -jnq -kjl -jIG -jiO -wxJ -tPW -rju -jIG -rsX -gWE -rEO -jIG -bBb -hAE -wnh -wnh -yeX -dwR -ney -quB -taW -ney -iyK -vOU -ney -vNH -lPz -sLE -bnF -bnF -bnF -mdv -jTk -jTk -jTk -jTk -pKr -sLE -aRN -aRN -kfR -lfD -lfD -kUk -aRN -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(109,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -wZm -wZm -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -hFr -fzU -hFr -dhe -dhe -hFr -wXL -tdW -ucs -aqB -vzY -uXY -mSQ -jNO -hFr -dDG -dDG -dDG -dhe -dhe -qjU -qQN -qWn -kFp -kFp -kFp -qvL -fzz -qjU -dhe -dhe -ukq -jDd -hRx -pmt -hQm -jIG -yhd -ylw -mtz -mtz -hiG -jIG -nwq -pCi -pCi -rvo -jIG -dbg -gWE -ewK -jIG -qcJ -dsP -fJk -nhV -nfB -dwR -ney -muK -pGS -kYZ -rME -dnE -ney -vNH -aRN -sLE -bnF -bnF -bnF -fqq -jTk -jTk -jTk -jTk -pDT -sLE -aRN -xFs -igy -tRC -igy -tRC -xFs -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(110,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -hFr -fzU -hFr -dhe -dhe -xwf -xwf -xwf -xwf -xwf -vzY -nMu -jNO -jNO -hFr -dhe -dDG -dDG -dhe -dhe -qjU -qQN -qWn -kFp -kFp -kFp -qvL -wYu -qjU -dhe -aOn -ukq -ukq -aqK -aqK -ukq -jIG -jnq -wOp -jIG -jIG -jIG -jIG -pkp -hMI -hMI -pkp -jIG -jIG -xUi -jIG -jIG -frr -dwR -tuC -ngp -ngp -ngp -mos -mos -mos -vNH -vNH -vNH -vNH -vNH -riv -igy -bnF -bnF -bnF -mdv -jTk -jTk -jTk -jTk -pKr -sLE -aRN -dhe -igy -dhe -dhe -dhe -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(111,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -hFr -fzU -hFr -dhe -dhe -xwf -cvj -qgz -jjx -mQQ -vQl -jNO -mfT -hFr -hFr -hFr -dDG -dDG -dhe -dhe -qjU -qQN -dyq -kFp -kFp -kFp -alG -wYu -qjU -dhe -aOn -xst -moy -nav -nav -kaA -ccx -jnq -bRP -jIG -fVh -kSp -lgP -pkp -nJQ -bgg -uQW -mAg -uQW -qgs -nPN -pkp -ykU -aiu -iGT -aYF -bXb -veh -qpx -eQY -sdy -cjy -dhe -dhe -dhe -igy -kYH -igy -bnF -mdv -pDT -fqq -jTk -jTk -jTk -jTk -pDT -sLE -aRN -dhe -igy -dhe -dhe -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(112,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -hFr -fzU -hFr -dhe -dhe -xwf -dAu -xUb -rtt -xwf -faf -nMu -nMu -jkl -aKi -aCf -dDG -dhe -dhe -dhe -qjU -bOm -qWn -kFp -kFp -kFp -qvL -wYu -qjU -dhe -aOn -fem -mpf -bcV -qBQ -sfI -rtD -jnq -bRP -jIG -fVh -rzL -tbe -hxJ -lWi -geA -ihI -ihI -ihI -bnD -vnD -uGy -gJd -hJd -nxT -iMH -stT -cBG -mLP -oEH -rFG -qHs -qHs -qHs -qHs -qHs -qwr -qHs -srA -daJ -daJ -paq -qHs -qHs -qHs -qHs -qHs -qHs -qHs -qHs -qHs -dhe -dhe -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(113,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -uwO -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -unm -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -wZm -wZm -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -hFr -fzU -hFr -dhe -dhe -xwf -xwf -xwf -xwf -xwf -vQl -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -qjU -ekr -qWn -kFp -kFp -kFp -qvL -sNR -qjU -qjU -aOn -wlQ -mpf -rEQ -bUj -sfI -gSf -jnq -bRP -jIG -iTL -ifX -tbe -hxJ -lWi -nOq -vyq -jQh -vyq -ezs -wng -uGy -rhT -ycg -nxT -iMH -crz -hJd -txd -hJd -qWE -qHs -cgA -uUT -oby -huX -uUT -uUT -csM -uUT -uUT -nJo -oby -uUT -qTq -qHs -hFq -rEV -qTI -tcD -qHs -dhe -dhe -dDG -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(114,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -fzU -hFr -hFr -hFr -hFr -slf -igF -igF -igF -bfY -gGg -gGg -gGg -gGg -gGg -cDM -nMu -eBM -hFr -hee -oxC -qWn -kFp -kFp -kFp -qvL -wYu -hee -qjU -aOn -jIy -mpf -khV -hkF -sfI -ckH -jnq -bRP -jIG -xkD -bTm -gLd -hxJ -lWi -vyq -vyq -sUN -sUN -aNw -utj -uGy -rhT -hJd -nxT -iMH -tHb -hJd -mLP -hJd -gCd -qHs -xqO -dJM -uRS -xSw -xSw -ewX -xSw -xSw -kWr -aay -qrg -aqm -sfc -daJ -gqp -gqp -und -gqp -qHs -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(115,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -rqZ -ufU -oZd -odp -hFr -lyD -hFr -slf -igF -igF -igF -igF -kZI -igF -xdX -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -uQe -nMu -ufv -hFr -qjU -cqK -qWn -xXT -kFp -kFp -qvL -wYu -qjU -qjU -aOn -aOn -dFG -uKh -vxl -cqO -jnq -jnq -bRP -jIG -bTm -bTm -hRi -pkp -hSM -pkv -ecH -sZO -ecH -lvE -pKk -pLH -gUf -uSQ -ots -aYF -mLM -qyP -vud -rGU -pHb -qHs -ncT -bWN -lSe -nKg -xXZ -eIk -rNG -tsA -rNG -eIk -sTg -wkg -lYY -wnW -eNs -nHY -fVI -eAr -qHs -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(116,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -rqZ -vBF -idH -oRI -bqs -aRi -wTm -dik -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -lko -oUL -hov -xMf -oUL -gyA -rsY -hFr -uQe -nMu -uUA -hFr -kdh -mMi -qWn -kFp -kFp -kFp -qvL -uai -gRy -qjU -aOn -aOn -fOW -ojS -aDz -gis -jnq -tlz -kYi -jIG -vfR -vfR -vfR -pkp -kis -qCS -bHP -pLH -uGy -iAN -uGy -pLH -cDx -iMH -bWH -aYF -aYF -iMH -xQE -iMH -aYF -qHs -gAE -bWN -kFf -mmH -cht -hDI -bKt -lGg -bKt -hDI -qqc -cOF -lYY -daJ -fJi -fJi -jiB -jiB -qHs -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(117,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -qRk -rqZ -gmL -bqA -aMn -hFr -dAn -hFr -dik -hFr -cse -now -ruR -uHA -jaV -dME -oUL -hrU -saB -iBN -phE -mBK -ucP -gXP -hFr -vgF -pyL -pyL -veF -fEJ -cFb -ieB -iMp -iMp -iMp -iMp -vVa -xqG -qjU -dhe -aOn -aOn -aOn -aOn -lhW -jnq -kqW -jnq -jIG -pkp -pkp -pkp -pkp -pkp -pkp -pkp -pLH -ewx -dbe -mXa -eSI -xWn -mXa -vjI -hSf -hUV -kBE -gjf -kVa -ptE -qHs -wiH -bWN -sre -qik -hDI -lEf -jUj -kwr -jUj -hDI -nMX -gCH -lYY -qHs -ghh -gqp -gqp -gqp -qHs -dhe -dhe -dhe -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(118,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -naG -hcA -iwi -iwi -iwi -iwi -iwi -iwi -iwi -hcA -iwi -iwi -iwi -iwi -iwi -iwi -iwi -iwi -iwi -iwi -iwi -wCA -hFr -hFr -hFr -hFr -hFr -hFr -hFr -xiu -xMY -jou -dKp -gRz -nRT -fcN -dME -oUL -oUL -oUL -oUL -oUL -oUL -fxF -gai -rvY -vQl -hFr -uXY -hFr -qjU -kCl -qWn -kFp -kFp -kFp -qvL -vVa -qjU -qjU -dhe -dhe -dhe -ghz -rKI -aVd -dkw -pXv -taE -cAz -cjy -dAR -pkG -pqb -qOv -qOv -bMN -aYF -djg -gXT -hJd -oEH -sBV -hJd -msi -hJd -hJd -hJd -ycv -hJd -txZ -lfB -gXv -bWN -nan -hiB -gps -lEf -jyF -jyF -jyF -esc -ima -oiG -xfC -daJ -akl -gqp -gqp -oYY -qHs -dhe -dhe -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(119,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -uwO -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -pwt -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -hFr -jjx -jjx -jjx -jjx -hFr -ltd -fqi -xGE -dDv -qkP -dME -dhe -dhe -dhe -dhe -dhe -oUL -pLm -mFz -hFr -nMu -hFr -kzX -ptp -qjU -kCl -qWn -kFp -kFp -kFp -qvL -vVa -qjU -dhe -dhe -dhe -dhe -ghz -cBB -yeL -xIp -xUy -oFd -mpq -cjy -jHl -oEH -uun -aRx -aRx -hYx -koW -xNR -dqx -scV -edN -dqx -dqx -sfj -gxx -vsz -gXT -gXT -gXT -dlC -mWD -dNa -nhQ -ndn -jBn -bKt -gqf -bKt -dQn -bKt -frN -eqN -lFz -vZy -daJ -aYN -gqp -aYN -nNM -qHs -dhe -dhe -dhe -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(120,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -cuX -dDG -wZm -wZm -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -hFr -jjx -hFr -hFr -hFr -hFr -wSg -dtw -dME -dME -dME -dME -oUL -oUL -oUL -oUL -oUL -oUL -tcH -tYi -hFr -hFr -hFr -hFr -hFr -qjU -kCz -qWn -kFp -kFp -kFp -qvL -rDc -qjU -qjU -qjU -qjU -qjU -qjU -qjU -qjU -xgs -xUy -apS -ndE -cjy -cIm -kuX -lfg -iTx -iTx -bMN -roB -ptT -qaL -roB -wCN -hJd -hJd -ofL -hJd -hJd -hJd -gxh -hJd -hGF -lfB -ltq -fuj -hyL -xXC -hiD -lEf -onW -onW -onW -oMc -tRf -aqh -rZW -daJ -gqp -gqp -gqp -uZB -qHs -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -xiI -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(121,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -tFm -tFm -tFm -hFr -hFr -hFr -uIp -hFr -axP -pRb -axP -wSg -kiK -xth -jNg -nTL -vdv -qUt -ouX -mSJ -oUL -mTY -ydl -prr -acJ -sSC -xqB -gha -tIH -oUL -irg -cYV -qWn -kFp -tLZ -kFp -qvL -vOH -hWK -qpZ -qpZ -qpZ -qpZ -qpZ -qpZ -rmN -wEX -fwS -cMs -ulV -ulV -ulV -bbj -gtx -bbj -bbj -bbj -roB -kCB -iyr -roB -qGr -bNR -dSN -lZw -dSN -tNf -mVg -dSN -dSN -vmM -qHs -ggv -fuj -bLP -hDI -oMc -lEf -pXS -iUy -pXS -hDI -aqf -hsf -lYY -qHs -ghh -gqp -gqp -gqp -qHs -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(122,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dhe -wZm -wZm -dhe -dhe -dhe -dhe -dhe -dhe -dhe -tFm -tFm -tFm -tFm -tFm -iJw -uMo -opp -dpD -dpD -yau -hFr -vad -vad -vad -wSg -bsx -ddI -uRD -rYr -ogR -cqh -nYA -cOh -oUL -uoI -fRz -nxy -nxy -tWA -iqU -gha -tIH -oUL -nnW -iui -qWn -kFp -kFp -kFp -eXH -xwB -pcu -pcu -pcu -pcu -pcu -pcu -pcu -pcu -fal -ubO -mLL -ulV -bbj -rww -lBb -lJH -jXm -equ -bbj -roB -kSf -uDm -roB -roB -sHH -rxg -pHz -rxg -sHH -sHH -ccX -bvI -cjy -qHs -qzD -fuj -qmi -miU -rMZ -hDI -bKt -lGg -bKt -hDI -qqc -hTX -tHx -daJ -fJi -fJi -qPw -fJi -qHs -dhe -dhe -dhe -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(123,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -tFm -xMz -pWi -moD -tFm -hWw -bzc -hFr -hFr -hFr -yau -cbp -mCB -mCB -fAi -wSg -jWW -maU -ajq -rYr -fik -enq -nxy -nxy -nxy -vrO -nxy -lon -rhR -tWA -lxB -oUL -oUL -oUL -nnW -iui -qWn -kFp -kFp -kFp -qvL -rCM -pcu -bVW -jsX -bVW -wwz -cjq -nce -qrp -fal -swP -gPS -ulV -jhV -aER -cJD -vRp -ial -qJX -jdN -roB -qaL -wph -roB -roB -iXc -mqw -aiQ -xBD -tYe -sHH -sHH -sHH -cjy -qHs -ltq -fuj -qmi -miU -tIq -hDI -cNU -uoD -pgV -hDI -lkp -qgB -wXe -uDu -lLx -nvu -fVI -eAr -qHs -dhe -dhe -dhe -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(124,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -tFm -moD -moD -moD -cIG -xYc -jyo -aWD -cOr -hFr -yau -hFr -foG -npY -vad -wSg -hqR -cIL -bxV -jZN -uiD -nxy -qDe -nxy -nxy -vrO -nxy -iPs -san -tWA -gmv -gDA -qld -lGO -jWR -pKL -qWn -kFp -kFp -kFp -qvL -wPF -pcu -mIU -pcO -iKr -pyP -cjq -cSp -tFV -fal -jtQ -jbs -stZ -cgR -urz -lrB -akT -wYO -ial -foi -qaL -wIA -cWY -nNP -roB -upY -kIG -wvN -hiP -ohe -exi -fHU -sHH -ydk -qHs -wVp -fuj -qki -hyP -hyP -mDx -gvK -gvK -wPj -pgu -gyC -qgB -cXJ -daJ -gqp -gqp -gqp -gqp -qHs -dhe -dhe -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(125,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -tFm -gir -moD -moD -dhm -cjs -rck -aWD -cOr -hFr -yau -hFr -rQV -iwF -iUw -wSg -xRv -jvo -lIQ -boQ -arh -qdB -kBC -fYm -qdB -qZT -uPH -nQC -nQC -dEy -nic -oyM -qld -rKD -cMT -iui -mgX -vTA -vTA -vTA -mgX -rCM -pcu -pJT -bVW -fEc -wio -lMC -uSB -ygM -gYX -jRX -xhY -fFi -ueE -evk -mEJ -rgx -tpl -bnt -qRq -aiS -wQX -gGy -upz -roB -gKJ -wIg -jkQ -vRv -sgu -bEe -cqL -sHH -viW -qHs -rxX -vXf -yhm -vXf -vXf -vXf -vXf -vXf -vXf -vXf -nRu -vXf -aFq -qHs -qRK -gqp -szq -iDb -qHs -dhe -dhe -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(126,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -tFm -moD -moD -moD -lUb -quG -mkD -aWD -cOr -hFr -yau -hFr -hTA -npY -mYa -wSg -sDo -sDo -sDo -sDo -sDo -roj -bAq -gNB -bwC -nxy -xKV -lCH -nzm -tWA -scq -csL -qld -auG -qse -iui -qWn -kFp -kFp -kFp -qvL -pcD -pcu -iKr -pcO -mIU -grA -cjq -aKm -uLW -fal -goe -jbs -stZ -cgR -ial -tnY -dMZ -mvy -ial -foi -qaL -prG -uHu -mTQ -roB -ihM -iHK -aST -jsW -utU -qzf -qcw -sHH -bXp -qHs -qHs -qHs -sHj -qHs -qHs -qHs -qHs -qHs -qHs -qHs -qHs -qHs -fWn -qHs -qHs -qHs -qHs -qHs -qHs -dhe -dhe -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(127,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -tFm -xMz -pWi -moD -tFm -ifb -imL -hFr -hFr -hFr -yau -hFr -vad -uDF -vad -wIM -sDo -eCv -vTM -gBm -sDo -rWt -vGr -iXo -aeT -dOk -xKV -hHD -dgG -tWA -ipG -oUL -oUL -oUL -hLR -iui -qWn -kFp -kFp -kFp -qvL -rCM -pcu -bVW -laz -kic -rOq -cjq -cAn -nYP -fal -sLf -oYq -ulV -vIa -rsz -cAs -hqz -jTx -juJ -dgx -roB -pdf -inB -niG -roB -gAF -fqt -hOh -qoX -bRf -sHH -sHH -sHH -hZr -hZr -sto -uFX -lAO -laA -hZr -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ouV -ouV -kIO -dhe -dhe -dDG -dhe -dhe -dhe -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(128,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -tFm -tFm -tFm -tFm -tFm -kmq -wcK -hFr -vAH -hFr -yau -hFr -nAK -nMZ -vad -wIM -sDo -pWg -tLt -sXn -tju -nwb -uZy -dyc -lTF -ykL -xKV -nxy -nxy -tWA -jQS -gha -tIH -oUL -soo -ldu -qWn -kFp -uXc -kFp -qvL -xwB -pcu -pcu -pcu -pcu -pcu -pcu -pcu -pcu -fal -cXE -mLL -ulV -bbj -jQM -irB -xya -jxb -kDS -bbj -roB -lbz -oFx -oaX -oaX -wDS -qLc -dcs -qLc -wDS -wDS -rvh -jUz -ivk -hZr -bpl -mRs -woR -mAx -hZr -hZr -hZr -hZr -dhe -dhe -dhe -dhe -dDG -dhe -ajc -ajc -ajc -ajc -dDG -dhe -dhe -dhe -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(129,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -tFm -tFm -tFm -hFr -hFr -hFr -yau -hFr -hFr -hFr -hFr -wSg -sDo -kyw -pEc -vxm -nXt -tON -usI -vju -gpd -fYw -bYu -wyV -pdI -jyz -xqB -gha -tIH -oUL -qtJ -abt -qWn -kFp -tLZ -kFp -qvL -lNN -jAh -yiL -yiL -yiL -yiL -yiL -yiL -hRD -iEu -nyI -cMs -foT -foT -foT -stZ -jUh -stZ -bbj -bbj -roB -uUs -bqy -oaX -pIu -vSL -nUR -mjm -tAH -utG -wyj -wuc -omu -kWV -pmc -rlU -wAb -qGE -uNI -jCT -dLQ -cTH -fjQ -fjQ -fjQ -fjQ -fjQ -dDG -dhe -ajc -ajc -ajc -ajc -dDG -dhe -dhe -dhe -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(130,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -hFr -iZe -rBQ -rBQ -rBQ -hFr -dhe -sDo -iuo -qoK -cnH -sDo -duj -xms -iXo -sDo -oUL -oUL -tcH -oYk -hFr -hFr -hFr -hFr -hFr -hFr -xiv -qWn -kFp -xXT -kFp -qvL -eoh -qjU -qjU -qjU -qjU -qjU -qjU -qjU -qjU -tJz -dSr -oIV -nlE -bzz -wIf -gKp -cMd -qQD -jTy -jGZ -oaX -wxf -wxf -oaX -hmF -iQU -wQm -udT -pNF -eaq -eaq -eaq -eaq -eaq -eaq -eaq -eaq -eaq -qpu -hIO -jLU -iok -pNk -eIM -awE -awE -fjQ -ajc -dhe -dhe -ajc -ajc -dhe -dDG -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(131,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -hFr -hFr -hFr -hFr -rBQ -hFr -dhe -sDo -sqJ -hmZ -gpr -sDo -sOn -aOu -mbm -sDo -dhe -oUL -fxF -wjQ -hFr -nzR -hFr -nMu -ike -hFr -xiv -qWn -kFp -kFp -kFp -qvL -eoh -qjU -dhe -dhe -ghz -vre -fjq -lpK -sQj -llU -ilL -oFd -oFd -poy -hZr -gIu -sUd -tPf -mNZ -axs -uVc -aJg -jYA -jYA -eDR -dvD -wjw -rrv -eVv -urq -urq -urq -wja -urq -wQm -eaq -wQm -wQm -agy -exl -oNq -jwD -ahD -fKg -cyZ -nGt -fjQ -dDG -dhe -dhe -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(132,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -xiI -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -hFr -xMR -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -oUL -oUL -oUL -oUL -oUL -pLm -nHT -wdV -cDM -hFr -qlB -hFr -hFr -xiv -qWn -kFp -kFp -kFp -qvL -oFT -qjU -qjU -dhe -ghz -vre -fjq -bsu -wjI -wjI -taP -wjI -kXf -bzj -rHk -rBe -nHX -xsc -tfB -eYa -rHk -rDj -tTW -tTW -dpt -nti -tTW -biz -nYX -dsH -nFL -dsH -cPM -ket -wQm -eaq -tTW -tTW -nmP -wXO -doa -bNm -sxA -xTM -awE -rAf -fjQ -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(133,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -hFr -rBQ -rBQ -rBQ -rBQ -rBQ -rBQ -rBQ -rBQ -hFr -eFO -saB -bkT -mRw -mBK -ngv -gXP -hFr -vgF -igF -igF -tBX -mFg -kdu -qUJ -qUJ -qUJ -qUJ -qUJ -bSM -pWm -qjU -dhe -ghz -hZr -hZr -hZr -saJ -oNq -asT -oNq -rHk -rHk -rHk -fvn -tpw -byG -mwK -mwK -mwK -dGK -jUO -hOE -oLv -pDc -rRc -ukN -cPM -cPM -asQ -cPM -cPM -oqh -eaq -eaq -tTW -kkc -hCo -vXS -gRl -jwD -fjQ -fjQ -fjQ -fjQ -fjQ -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(134,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -rBQ -hFr -tRW -oUL -byu -lEz -oUL -hik -yez -hFr -lDl -nMu -eUJ -hFr -dQQ -tds -qWn -kFp -kFp -kFp -qvL -jCx -gxN -qjU -dhe -dhe -hZr -gZE -gZE -pwG -vTF -rMo -nyG -kwp -uyA -hZr -rBZ -iPu -cCr -aoI -jXf -bHv -nNQ -nNQ -nNQ -kpq -hYK -toq -pgL -cPM -lrX -hAW -lrX -cPM -aTl -wQm -bJN -tTW -kkc -nNY -iqL -jLU -iok -pNk -mwt -nBA -nBA -fjQ -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(135,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -hFr -rBQ -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -lDl -nMu -ggB -hFr -qjU -mve -qWn -kFp -kFp -kFp -qvL -wPF -qjU -qjU -dhe -dhe -hZr -sjj -sjj -wQm -wQm -cUO -nwx -wQm -wQm -uHI -rBZ -xeU -upj -mwK -jXf -mwK -sOG -rlJ -kaa -eIt -hYK -vgq -afP -qsM -tts -wNK -wNK -vRm -eaq -kkc -kkc -hIW -kkc -agy -hBH -oNq -jwD -ahD -koq -bEi -eOU -fjQ -dDG -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(136,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -hFr -rBQ -lDl -lDl -tkG -lDl -lDl -lDl -lDl -xsx -lDl -lDl -nMu -gtZ -hFr -fDJ -gph -qWn -kFp -kFp -kFp -qvL -mzh -hee -qjU -dhe -dhe -hZr -aQw -aQw -urq -pvL -ckN -jYQ -kkI -kkI -fdI -pNM -qBG -uaX -mwK -jXf -beG -fmo -tXs -pAD -kDK -rnY -jim -afP -wQm -vkO -wAG -wQm -vkO -sjc -kkc -xUC -gqL -lXH -xRy -wXQ -doa -bNm -sxA -ljZ -nBA -lrw -fjQ -dDG -dDG -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(137,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -hFr -cFk -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -hFr -mqR -hFr -hFr -hFr -kPz -qWn -kFp -uXc -kFp -qvL -frf -qjU -qjU -dhe -dhe -hZr -eAN -vNu -jMH -kkt -wNY -xfx -ccQ -bia -hZr -gdJ -hRj -cGp -mwK -jXf -mwK -oGK -naD -kDK -tJD -hYK -kkc -afP -rAg -wNK -wNK -wNK -tts -lKI -gjC -fTi -tTW -kkc -tNc -idq -gRl -jwD -fjQ -fjQ -fjQ -fjQ -fjQ -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(138,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -iRL -vHR -iRL -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -hFr -mve -dyq -kFp -kFp -kFp -qvL -rCM -qjU -wQP -wQP -wQP -mwK -mwK -mwK -mwK -mwK -mwK -mwK -mwK -mwK -mwK -mwK -mwK -mwK -mwK -jXf -mwK -vnW -kSH -hoI -kSH -jUW -kkc -kSA -wQm -ora -ora -ora -qkS -vEq -kkc -lyK -tTW -tTW -coN -szs -lEp -vCI -ybt -eEK -jqS -jqS -fjQ -dDG -dDG -dDG -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(139,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -iRL -vHR -iRL -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -hFr -mve -qWn -kFp -kFp -kFp -qvL -qxt -qxt -qxt -qxt -qxt -qxt -sxa -qxt -qxt -qxt -qxt -qxt -qxt -qxt -qxt -qxt -qxt -qxt -fpB -pKl -mwK -ulS -kqD -ipe -aZg -rnY -kkc -taw -taw -taw -vYX -taw -taw -taw -taw -iQF -ngl -ssw -ssw -cPD -oNq -jwD -ahD -gMi -sbh -pwv -fjQ -dDG -dDG -dhe -dDG -dDG -ajc -ajc -ajc -pPV -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(140,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -iRL -vHR -iRL -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -hFr -mve -qWn -kFp -kFp -kFp -qvL -qxt -qxt -qxt -qxt -qxt -qxt -qxt -qxt -qxt -qxt -qxt -qxt -qxt -qxt -qxt -qxt -qxt -qxt -qxt -skn -mwK -ssi -jKL -ipe -nrF -frp -ksa -agy -coO -vDH -snC -agy -dKI -jaD -dbc -mZc -qXA -nvA -cYT -dys -doa -bNm -aNd -mUd -jqS -fHz -fjQ -dDG -dhe -dhe -dhe -dDG -unm -jwD -jwD -pPV -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(141,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -iRL -vHR -iRL -dhe -dhe -dhe -dhe -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -hFr -mve -qWn -kFp -kFp -kFp -qvL -rCM -qjU -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -wQP -umP -skn -mwK -sPw -cRA -gkQ -rfQ -hYK -xVE -xuS -nPM -vCa -fkL -sgN -oTO -pgK -uOZ -uOg -jEd -wIY -gxG -ktt -hZr -jwD -fjQ -fjQ -fjQ -fjQ -fjQ -dDG -dhe -dhe -dhe -dDG -dDG -ajc -ajc -pPV -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(142,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -iRL -vHR -iRL -dhe -dhe -dhe -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -hFr -mve -qWn -kFp -kFp -kFp -alG -rCM -qjU -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -wQP -umP -skn -mwK -lml -eXB -hYK -aDk -sRp -vRQ -lEp -xxf -ram -vRQ -lEp -xxf -ram -vRQ -lEp -xxf -ram -ram -qIO -hZr -jwD -hZr -ajc -iQO -dDG -dDG -dDG -dDG -dDG -dDG -unm -ajc -pPV -pPV -pPV -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(143,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -iRL -vHR -iRL -dhe -dhe -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -qjU -mve -qWn -kFp -kFp -kFp -qvL -rCM -qjU -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -wQP -umP -skn -wQP -jwD -bNm -jwD -iok -jwD -bNm -jwD -iok -jwD -bNm -jwD -iok -jwD -bNm -jwD -iok -jwD -oNq -ryP -oNq -jwD -hZr -dhe -cyU -dDG -dhe -dDG -dDG -ajc -ajc -jwD -jwD -pPV -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(144,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -iRL -vHR -iRL -dhe -dhe -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -qjU -mve -qWn -kFp -kFp -kFp -qvL -rCM -qjU -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -wQP -umP -skn -wQP -mwK -sxA -ahD -pNk -fjQ -sxA -ahD -pNk -fjQ -sxA -ahD -pNk -fjQ -sxA -ahD -pNk -hZr -cPM -iTc -hZr -hZr -hZr -wUS -gPt -dDG -dDG -dDG -dDG -ajc -ajc -ajc -ajc -pPV -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(145,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -iRL -vHR -iRL -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -qjU -qjU -qjU -mve -qWn -kFp -kFp -kFp -qvL -wgf -qjU -qjU -qjU -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -wQP -umP -skn -gJh -mwK -kpE -qsh -dgV -fjQ -ulK -gdn -tZO -fjQ -hej -ovR -wMx -fjQ -qTR -mDC -tnq -hZr -ykm -mei -hZr -dhe -dhe -dDG -gPt -dDG -dDG -dDG -unm -ajc -pPV -pPV -pPV -pPV -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(146,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -iRL -vHR -iRL -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -sAB -ngQ -uml -jvM -tzS -nbl -nbl -nbl -qAf -cyQ -fDw -fUe -qjU -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -wQP -wQP -wQP -wQP -umP -skn -cjx -mwK -spF -spF -spF -fjQ -piX -cnA -piX -fjQ -qBg -tzP -qBg -fjQ -fjb -ueZ -fjb -hZr -diq -umg -hZr -ajc -dDG -dDG -gPt -dDG -dDG -ajc -jwD -jwD -pPV -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(147,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -lmR -vHR -iRL -dhe -dhe -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -qjU -kfz -qjU -qjU -xCG -xCG -mIm -xCG -xCG -qjU -qjU -qgh -qjU -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -wQP -bzT -skn -fDX -mwK -dKv -nra -spF -fjQ -vFR -qmp -piX -fjQ -lwV -gdd -qBg -fjQ -dWj -tLM -fjb -hZr -bQQ -fdk -hZr -hZr -hZr -aRN -gPt -dDG -dDG -ajc -ajc -ajc -pPV -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(148,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -iRL -vHR -iRL -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -qjU -kfz -cSu -qjU -aCX -aCX -aCX -aCX -aCX -qjU -pkF -qgh -qjU -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -wQP -umP -skn -wQP -mwK -hZr -hZr -hZr -hZr -hZr -hZr -hZr -bNz -bNz -bNz -bNz -bNz -bNz -bNz -bNz -bNz -kpg -ppX -wDh -yjT -sDz -aRN -fmv -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(149,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -iRL -vHR -iRL -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -mbJ -lzD -bMc -mbJ -vQE -vQE -vQE -vQE -vQE -mbJ -hom -jvj -mbJ -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -lqD -umP -skn -wQP -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -bNz -pxj -eqY -oGy -eqY -eqY -vsU -ceI -rCd -sDZ -cVp -dkm -dkm -dww -cjG -tom -iRA -iRA -pYu -tZy -tZy -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(150,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -iRL -vHR -iRL -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dhe -mbJ -opr -mbJ -mbJ -lsK -lsK -xFJ -lsK -lsK -mbJ -mbJ -hKj -mbJ -cuX -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -wQP -umP -skn -mwK -mwK -mwK -mwK -mwK -mwK -dhe -dhe -dhe -bNz -eqY -eqY -eGg -eqY -eqY -jxr -ejp -rCd -tXV -pis -eAD -gwy -qjJ -cjG -ngg -qWU -qWU -qWU -qWU -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -xiI -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(151,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -iRL -uMX -iRL -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dhe -mbJ -ixf -snv -oZK -dYc -mHi -mHi -mHi -cxY -rNr -bMC -olF -mbJ -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -wQP -pLP -lJo -mwK -umP -umr -fYD -lxM -mwK -dhe -dhe -dhe -bNz -rRi -bHy -iVs -ixc -eqY -bnK -tUq -rCd -nhr -gqV -gqV -gqV -tnj -oZh -jMo -fLW -kHt -ePj -qha -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(152,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -xiI -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -naa -naa -naa -naa -naa -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -iRL -iRL -iRL -vHR -iRL -dhe -dhe -wZm -dhe -dhe -dhe -dhe -dhe -dDG -dDG -mbJ -mbJ -mbJ -spP -mMa -hFC -hFC -hFC -bsK -bBh -mbJ -mbJ -mbJ -dDG -cuX -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -wQP -wQP -wQP -xZr -skn -sMr -oNc -oNc -ckW -iKF -mwK -dhe -dhe -dhe -bNz -eqY -sTx -bMg -cRr -ubx -rHS -uqy -jhz -qiw -wlM -xWc -gqV -sPv -qWU -pHS -qWU -wNq -fzg -qWU -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(153,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -xiI -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -naa -qCU -kgc -vSJ -oHw -oHw -oHw -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -iRL -vhI -ovz -vHR -iRL -dhe -qIA -dDG -dDG -dhe -wZm -dDG -dDG -dDG -dDG -dhe -dhe -mbJ -hcw -mMa -hFC -hFC -hFC -bsK -vSV -mbJ -dhe -dhe -cuX -uTp -dhe -dDG -dDG -dDG -dhe -dhe -dDG -dDG -dDG -ekG -hbj -jRB -umP -skn -mwK -mwK -mwK -mwK -mwK -mwK -dhe -wQP -wQP -mwK -eqY -ixc -rPj -bHy -bjA -rHS -muo -rCd -boz -mHw -pGM -tTK -xWj -cdN -rdO -qWU -nfo -qWU -qWU -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(154,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -naa -plP -kXd -hDb -hjF -hDb -mjt -dCA -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dhe -dhe -dDG -dDG -dDG -iRL -iRL -iRL -cOi -ovz -glh -iRL -iRL -iRL -dDG -dDG -dDG -dDG -dDG -cuX -dDG -dDG -dhe -dhe -mbJ -hcw -mMa -hFC -hFC -hFC -bsK -vSV -mbJ -dhe -dhe -htM -htM -wGb -dDG -dDG -dDG -dDG -dDG -dDG -qDR -guj -wQP -wQP -wQP -pcA -skn -wQP -dhe -dhe -dhe -dhe -dhe -dhe -wQP -xBb -tHI -bjA -pOU -nis -bjA -bjA -xKJ -kDl -rCd -wcc -gqV -gqV -gqV -mLv -mLv -aMV -cTT -jyM -hVG -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(155,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -naa -lEE -kgc -kSD -oHw -oHw -oHw -dCA -dCA -dCA -cwr -cwr -cwr -dhe -dhe -dDG -dDG -dhe -dhe -dhe -dDG -dDG -dDG -dCA -dCA -dCA -vtk -oFt -cLl -gDp -foL -pUP -kvj -srr -aIL -dDG -dDG -dDG -wGb -cuX -dDG -dDG -dDG -dhe -dhe -mbJ -hcw -mMa -hFC -xUc -hFC -bsK -vSV -mbJ -dhe -dhe -dhe -dhe -dDG -dhe -dhe -dhe -dhe -dDG -dhe -dDG -dhe -dhe -dhe -wQP -pwm -bIq -wQP -dhe -dhe -dhe -dhe -dhe -dhe -wQP -pwm -mwK -eqY -eqY -nwP -eqY -eqY -tOU -nHa -rCd -kYI -jcC -wMQ -rnA -hBY -tGI -wAQ -qWU -uue -qWU -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(156,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -uwO -jwD -hnE -jwD -jwD -jwD -unm -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dDG -naa -oHw -cPE -oHw -oHw -dDG -dDG -dDG -dDG -dDG -dDG -dDG -cwr -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dDG -dCA -dDG -guj -iRL -iRL -iRL -bUl -uvN -pUP -iRL -iRL -iRL -wUS -dDG -dhe -dhe -aZu -dhe -dDG -wZm -dhe -dhe -mbJ -hcw -mMa -hFC -hFC -hFC -bsK -fNW -mbJ -dhe -dhe -dDG -dDG -dDG -dhe -dhe -dhe -wQP -wQP -wQP -wQP -wQP -wQP -wQP -wQP -skn -cSy -wQP -dhe -dhe -dhe -dhe -dhe -dhe -wQP -xBb -mwK -bNz -bNz -bNz -bNz -bNz -bNz -bNz -bNz -rRy -rRy -rRy -rRy -rRy -frT -xOL -qWU -lPO -qWU -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(157,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -hnE -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -oHw -kgc -oHw -lTX -dDG -dDG -dDG -dDG -dDG -dDG -dDG -cwr -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dCA -dCA -dCA -dCA -dDG -dDG -dDG -dDG -iRL -iSv -ovz -fqX -iRL -uiz -iRL -qmf -dDG -dhe -dhe -dDG -dDG -dDG -dDG -dhe -dhe -mbJ -hEU -rxU -hFC -hFC -hFC -bsK -vSV -mbJ -dhe -dhe -dhe -dhe -dDG -wQP -wQP -wQP -wQP -skn -skn -skn -skn -skn -skn -skn -pwm -iRz -wQP -dhe -dhe -dhe -wQP -wQP -wQP -wQP -pwm -wQP -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -wAD -ohh -wXZ -wAD -wAD -wAD -hFf -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(158,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -hnE -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -oHw -pKn -oHw -dDG -oza -aRN -dhe -dhe -dDG -dDG -dDG -dCA -dCA -dCA -dCA -dCA -dCA -dCA -dCA -dCA -dDG -dDG -dDG -dhe -dDG -dDG -dDG -iRL -iRL -foL -ovz -cQS -ovz -iRL -dhe -dDG -wZm -dhe -dhe -dhe -dDG -dDG -dhe -dhe -mbJ -lML -mMa -hFC -hFC -hFC -bsK -vSV -mbJ -mbJ -mbJ -mbJ -dhe -dhe -wQP -rBu -skn -skn -daw -mwK -mwK -mwK -mwK -mwK -mwK -skn -waB -wQP -dhe -dhe -dhe -wQP -xBb -skn -skn -xBb -wQP -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(159,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -hnE -ajc -ajc -rRH -qIG -mEZ -mEZ -mEZ -mEZ -aRN -aRN -wgT -wgT -wgT -wgT -aRN -aRN -aRN -aRN -dDG -aRN -aRN -aHm -dhe -dhe -dhe -dhe -dhe -dDG -wgT -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dDG -dhe -dhe -dhe -arE -arE -arE -arE -ovz -iRL -dhe -dhe -dhe -dhe -dhe -qIA -dDG -dDG -dhe -dhe -mbJ -hcw -mMa -hFC -cgs -hFC -bsK -mAn -iLa -hFC -hFC -mbJ -mbJ -dhe -wQP -skn -mwK -mwK -mwK -mwK -mxC -bfF -edM -fke -mwK -skn -kZr -wQP -wQP -wQP -wQP -wQP -pwm -wQP -wQP -wQP -wQP -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(160,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -hnE -ajc -ajc -aGg -jwD -lal -jwD -unm -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -wgT -dDG -dhe -bnN -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dVl -dhe -dhe -dhe -qmf -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -arE -xvf -foL -jHh -foL -arE -whL -whL -whL -whL -whL -whL -dDG -cuX -dhe -mbJ -mbJ -uxv -mMa -hFC -tBo -hFC -bsK -fVC -mbJ -mbJ -inL -vBi -mbJ -mbJ -wQP -skn -mwK -gPL -gPL -wZG -fcF -xeN -vSU -xMc -mwK -pwm -skn -skn -skn -skn -skn -skn -xBb -wQP -fDX -deU -wQP -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(161,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -hnE -ajc -ajc -aGg -jwD -lal -jwD -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -wgT -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -htM -dDG -dhe -dhe -dhe -dhe -uGW -uGW -uGW -uGW -arE -qiL -jOC -arE -ovz -arE -rRk -uNa -pXh -gXb -bjK -whL -dDG -dhe -dhe -mbJ -ciA -jWZ -mMa -hFC -hFC -hFC -nlX -cEN -nUb -mbJ -vBi -cuG -aNH -hFC -ctK -ukk -mwK -szA -gPL -weO -uYi -ujZ -ujZ -mJn -mwK -mwK -mwK -mwK -drs -mwK -mwK -umP -pwm -dLc -skn -skn -wQP -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(162,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -hnE -ajc -ajc -aGg -jwD -lal -jwD -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -aRN -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -htM -dhe -dhe -dhe -dhe -dhe -dhe -uGW -vGF -jOM -ujI -arE -jGJ -tDz -arE -ovz -arE -tEP -xIt -hVO -eXL -alA -whL -dDG -dhe -dhe -mbJ -mbJ -hcw -mMa -hFC -hFC -hFC -bsK -iEI -mbJ -mbJ -vKQ -eZb -mbJ -mbJ -wQP -skn -mwK -kjB -qsu -kXw -uhi -ujZ -wVI -tIK -lPe -mwK -mwK -ugG -lvi -jaP -mwK -cjx -pwm -wQP -umP -qWu -wQP -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(163,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -hnE -ajc -ajc -aGg -jwD -lal -jwD -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -aRN -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -uGW -uGW -uGW -uGW -wpg -saW -hfx -arE -arE -arE -arE -ovz -cha -tmm -pCY -pCY -pCI -jgM -arE -tZo -iRL -mbJ -mbJ -dsG -qRT -mMa -hFC -hFC -hFC -bsK -iAr -ftQ -mbJ -qxm -qxm -qxm -qxm -qxm -skn -mwK -ohH -gPL -hgM -jUr -pUF -pUF -gbZ -ayE -mwK -mwK -fYD -dRr -jDT -mwK -umP -pwm -wQP -wQP -wQP -mwK -hlc -hlc -hlc -hlc -hlc -hlc -hlc -hlc -hlc -hlc -hlc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(164,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -hnE -ajc -ajc -aGg -jwD -lal -jwD -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -wgT -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -uGW -ujI -pYH -uGW -uGW -mBg -uGW -uGW -pYH -ujI -iRL -ovz -arE -aGK -kXL -fVe -nTg -jgM -arE -eko -gkW -oOK -mbJ -ehz -ory -rxU -hFC -hFC -hFC -bsK -sSS -mDE -mbJ -iJi -gGx -qJL -qfC -qxm -skn -mwK -szA -eDo -cNS -wGh -ujZ -ujZ -dZD -fkB -mwK -mwK -mwK -mwK -mwK -mwK -umP -pwm -wQP -dhe -dhe -hlc -rkE -qdl -qdl -sYT -ovE -wzL -npf -qdl -qdl -jRA -hlc -hlc -hlc -hlc -hlc -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(165,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -hnE -ajc -ajc -aGg -jwD -aGg -jwD -ajc -ajc -ajc -ajc -ajc -ajc -unm -dDG -dDG -dDG -dDG -wgT -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -uGW -fbH -osE -uGW -pni -pkL -bBs -uGW -dfA -nmz -iRL -ovz -arE -arE -arE -eCP -xPB -lXv -arE -eko -dqY -oOK -mbJ -mbJ -rFM -bEn -bEn -bEn -bEn -bEn -nvm -mbJ -mbJ -fwG -gGx -mMQ -mwS -qxm -skn -mwK -hBd -tWf -lOD -xgO -ujZ -ujZ -gbZ -fkB -dhe -wGb -dDG -dDG -cuX -wQP -wQP -pwm -wQP -dDG -dhe -hlc -qdl -qdl -hWt -azK -eus -itK -fwa -dUg -wVH -qdl -hlc -beJ -wcb -wzU -hlc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -xiI -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(166,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -hnE -ajc -ajc -aGg -jwD -aGg -jwD -ajc -ajc -ajc -ajc -ajc -ajc -jwD -dDG -dDG -dDG -dDG -wgT -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -uGW -xqf -qpF -kTp -ttF -sUB -drz -gTO -iSu -kpv -iRL -uvN -ovz -ovz -arE -rIp -uBH -dFY -arE -eko -eko -oOK -oOK -mbJ -vey -mMa -hFC -hFC -hFC -bsK -iwz -qxm -qxm -qxm -qxm -jUI -qxm -qxm -qlm -oys -oys -oys -fkB -uRx -rKT -tct -lwL -fkB -dhe -htM -dDG -dDG -dDG -dDG -wQP -pwm -wQP -udF -dDG -hlc -oOJ -mih -akz -sYT -lCW -lRE -npf -tDa -mih -suV -hlc -cXV -cXV -cXV -hlc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -xiI -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(167,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -hnE -jwD -jwD -aGg -jwD -aGg -jwD -hnE -hnE -hnE -hnE -hnE -hnE -hnE -hnE -jwD -unm -dDG -wgT -aRN -wgT -aRN -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -unl -unl -unl -unl -unl -unl -ygw -msh -qFo -uGW -uGW -uGW -iRL -iRL -iRL -foL -arE -arE -arE -arE -arE -xqs -iRL -iRL -oOK -mbJ -wVE -mMa -hFC -tBo -xUc -bsK -dwg -qXj -ptz -ptz -ptz -ptz -ptz -ptz -wZk -cxi -nAN -oys -fkB -fkB -fkB -fkB -sFA -fkB -kxB -kxB -kxB -kxB -dhe -qDR -wQP -pwm -wQP -uTp -dDG -hlc -kJh -wkW -eTI -sYT -fbC -pzV -npf -oNg -wkW -bkD -hlc -hlc -dWh -hlc -hlc -dhe -dhe -dhe -dhe -dhe -dhe -ajc -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(168,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -hnE -ajc -ajc -aGg -jwD -aGg -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -hnE -ajc -ajc -dDG -dDG -dDG -dDG -aRN -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -unl -nTG -bvH -kOc -nBa -unl -bJb -kDi -rdn -pCL -pni -kaF -kaF -bBs -iRL -lPh -ovz -gDp -gDp -gDp -gDp -jGi -gDp -iRL -iRL -mbJ -jlh -mMa -hFC -vgn -hFC -bsK -iwJ -qxm -qxm -qxm -aBX -nSq -nSq -nSq -whE -kaO -fjo -pJg -aEU -sVC -aeb -aeb -oaj -iIm -tWt -iIm -lxW -kxB -dhe -dhe -wQP -pwm -wQP -dDG -dhe -hlc -qdl -wVH -ovj -qoZ -eus -itK -sdB -rBa -qdl -qdl -hlc -wzD -ems -wGV -hlc -hlc -hlc -hlc -hlc -hlc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(169,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -hnE -ajc -ajc -aGg -jwD -lal -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -hnE -ajc -ajc -dDG -dDG -dDG -dDG -aRN -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -unl -mWj -rMq -rMq -whU -unl -crL -kDi -ihk -wXC -eeN -tQt -nDz -qHa -iRL -iRL -foL -arE -arE -arE -arE -arE -gDp -jEm -jEm -cpK -hqt -mMa -hFC -hFC -hFC -bsK -vSV -qxm -hdj -qxm -xiz -oys -oys -oys -oys -oys -oys -oys -xOv -czG -rBR -rBR -uAg -rBR -rBR -gdh -hYu -kxB -dhe -dhe -wQP -pwm -wQP -dhe -dhe -hlc -rkE -qdl -qdl -sYT -lCW -lRE -npf -qdl -qdl -jRA -hlc -pNL -yhY -eEm -ddi -hlc -dMf -qdl -wZP -hlc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(170,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -hnE -jwD -bGu -aGg -bGu -lal -bGu -ajc -ajc -ajc -ajc -ajc -ajc -ajc -hnE -ajc -ajc -unm -dDG -dDG -dDG -wgT -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -unl -pfT -aiI -fqo -xOo -unl -eyR -qKt -xeF -uGW -uGW -uGW -vRb -xun -bBs -iRL -eks -arE -irv -kRu -pUj -arE -arE -iRL -iRL -mbJ -ipk -mMa -hFC -hFC -hFC -bsK -vSV -qxm -bge -qxm -aBX -oys -lhB -gFJ -gmN -cXW -bOO -qig -kwK -xtS -sPp -sPp -sPp -sPp -sPp -nYZ -hnW -mwK -wQP -wQP -wQP -lxm -wQP -wQP -wQP -mwK -mwK -hlc -hlc -hlc -fdz -hpF -hlc -hlc -hlc -hlc -hlc -cKZ -hNk -qtw -jrQ -hlc -qdl -qdl -qdl -hlc -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(171,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -hnE -ajc -bGu -aGg -bGu -lal -bGu -jwD -jwD -aGg -aGg -aGg -ajc -ajc -hnE -ajc -ajc -ajc -ajc -dDG -dDG -wgT -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -unl -hKV -rMq -mgB -cSH -kNe -fEQ -jkm -nOt -uGW -fvM -tMY -sui -uAu -lGz -kaF -dkd -vWx -sbK -sXR -jmD -iMO -vWx -dhe -dhe -mbJ -ipk -mMa -hFC -hFC -hFC -bsK -mLh -qxm -hdj -qxm -aBX -oys -bMP -xUs -lmK -ydF -hHv -ppM -xOv -xBB -eiC -rhi -fRi -sPp -kwg -sNo -hnW -mwK -umP -gxk -wQP -lFX -rDf -wQP -umP -umP -mwK -fNY -cif -bYn -ehJ -dJF -cwh -vwe -lsd -vwe -vwe -pxS -bwo -dIY -nKC -oNV -uyO -qdl -kVp -hlc -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(172,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -hnE -jwD -bGu -lal -aGg -aGg -lal -lal -lal -lal -qDh -aGg -ajc -ajc -hnE -ajc -ajc -ajc -ajc -dDG -dDG -wgT -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -unl -fog -bvk -wOL -rMq -njK -nkG -dVN -fll -uGW -fvM -tMY -wgm -bBr -bBr -kjK -byY -vND -vXX -xBU -aSi -vAm -vWx -dhe -dhe -mbJ -dty -mry -mry -mry -mry -mry -cWf -qxm -hdj -qxm -aBX -oys -igB -xNQ -kwA -xZZ -ePl -sPy -egP -khl -hlC -rhi -fRi -sPp -kXm -fst -mnB -klL -txI -txI -fyg -fZH -iwo -moA -pwm -pwm -mMr -uVI -aoZ -aoZ -qLp -fBq -nPs -rJG -nPs -nPs -aoZ -nPs -wRf -kVZ -sgD -qdl -qdl -cIF -jRA -hlc -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(173,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -hnE -ajc -bGu -aGg -bGu -aGg -bGu -ajc -ajc -aGg -lal -aGg -ajc -ajc -hnE -ajc -ajc -ajc -ajc -ajc -dDG -wgT -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -unl -oNp -rMq -uPc -rMq -bPE -qxG -kDi -uDc -uGW -fvM -tMY -sNX -lxQ -rQK -lgB -vcJ -vWx -xeo -paf -eFx -tmn -vWx -dhe -dhe -mbJ -gUE -mMa -xUc -hFC -hFC -bsK -vSV -qxm -hdj -qxm -aBX -oys -mxV -lJn -sdf -jMD -scY -ppM -nbq -iyC -eQy -rhi -fRi -sPp -kWP -lNi -tMG -mwK -hVg -umP -wQP -kgr -ffo -wQP -umP -umP -mwK -mwf -qrL -ekP -lyn -ofJ -gcm -ttq -fIy -fIy -atO -ljv -dUO -qgR -vHx -pVd -nNq -qdl -qdl -hlc -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -kWL -kWL -kWL -kWL -kWL -kWL -ajc -ajc -ajc -ajc -ajc -kWL -kWL -kWL -kWL -kWL -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(174,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -hnE -jwD -bGu -aGg -bGu -aGg -lal -bGu -ajc -ajc -lal -jwD -ajc -ajc -hnE -ajc -ajc -ajc -ajc -ajc -unm -wgT -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -unl -rbM -ljO -bTZ -rMq -unl -eHg -cKw -uDc -uGW -uGW -uGW -vOO -mWp -laM -qxm -mNj -oys -wLR -pYW -qwU -oys -oys -qxm -qxm -qxm -gUE -mMa -hFC -hFC -hFC -bsK -vSV -qxm -wzb -qxm -aBX -oys -yky -lhA -oTm -obR -bvm -qig -bnS -rGx -sPp -sPp -sPp -sPp -sPp -oyL -oTo -mwK -wQP -wQP -wQP -ehD -wQP -wQP -wQP -mwK -mwK -hlc -hlc -hlc -pFV -dac -hlc -hlc -hlc -hlc -hlc -eNS -dUO -cfu -jrQ -cxR -qdl -qdl -qdl -hlc -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -kWL -kWL -ajc -jwD -ajc -ajc -ajc -ajc -ajc -phT -ajc -ajc -ajc -ajc -jwD -ajc -kWL -kWL -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(175,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -hnE -ajc -bGu -aGg -bGu -bGu -aGg -lal -bGu -ajc -aGg -jwD -ajc -ajc -hnE -ajc -ajc -ajc -ajc -ajc -dDG -wgT -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -unl -xiZ -nTG -gNf -taK -unl -qaV -kDi -utx -hEm -qFG -jAa -wbx -rZV -qxm -qxm -lTx -oys -oys -oys -oys -oys -wvn -atR -jEI -jcF -bcv -mMa -hFC -tBo -hFC -bsK -vSV -qxm -hdj -qxm -aBX -oys -qdj -qdj -qdj -qdj -qdj -qdj -hzl -cAt -ggR -ggR -rJs -ggR -ggR -jsV -oTo -mwK -cFM -dkl -fXT -qIC -wQP -dhe -dhe -hlc -rkE -qdl -qdl -pCa -fbC -pzV -mGa -qdl -qdl -jRA -hlc -pNL -osj -vBW -ddi -hlc -toU -vhT -ilW -hlc -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -kWL -kWL -kWL -ajc -ajc -jwD -coM -coM -coM -coM -coM -coM -coM -coM -coM -coM -jwD -ajc -ajc -kWL -kWL -kWL -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(176,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -hnE -jwD -bGu -lal -aGg -bGu -bGu -aGg -lal -bGu -lal -bGu -bGu -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -aRN -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -unl -flZ -xKm -xKm -qal -unl -gxw -kDi -qYW -pCL -dwA -uYs -uYs -laM -qxm -pmA -ioR -ybD -ybD -ybD -ybD -ybD -kXO -qxm -aBX -qxm -mNu -rxU -hFC -vgn -hFC -bsK -iwJ -qxm -qxm -qxm -aBX -qxm -dhe -dhe -kxB -pvn -jjw -gnp -bwJ -yaZ -iaC -iaC -cAy -knk -knk -eJW -mfC -mwK -hvT -eVh -aDL -pwm -wQP -dhe -dhe -hlc -qdl -qdl -hWt -xBG -eus -itK -qJE -dUg -qdl -qdl -hlc -geT -xuR -aMo -hlc -hlc -hlc -hlc -hlc -hlc -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -kWL -kWL -kWL -ajc -ajc -ajc -coM -coM -coM -coM -coM -coM -coM -coM -coM -coM -coM -coM -coM -coM -ajc -ajc -ajc -kWL -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(177,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -hnE -ajc -ajc -bGu -lal -aGg -bGu -bGu -aGg -aGg -aGg -aGg -lal -lal -lal -lal -aGg -aGg -lal -lal -lal -wgT -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -unl -unl -unl -unl -unl -unl -eyR -kDi -vUI -uGW -uGW -uGW -uGW -uGW -qxm -aho -qxm -qxm -qxm -qxm -qxm -qxm -qxm -qxm -aBX -qxm -bmE -mMa -hFC -hFC -hFC -bsK -ibk -tmp -hbD -eXN -xpj -qxm -oys -kxB -kxB -gPb -bTq -kxB -kxB -kxB -kxB -cAP -wHZ -cAP -kxB -kxB -kxB -mwK -mwK -mwK -aDL -wQP -wQP -dhe -dhe -hlc -oOJ -mih -akz -pCa -lCW -lRE -mGa -tDa -mih -suV -hlc -hlc -hlc -hlc -hlc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -coM -coM -coM -coM -coM -coM -gke -jGg -vCY -ybd -qmB -eUk -gke -coM -coM -coM -coM -coM -ajc -kWL -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(178,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -hnE -ajc -ajc -ajc -bGu -lal -aGg -bGu -bGu -bGu -lal -bGu -bGu -jwD -jwD -jwD -jwD -jwD -jwD -jwD -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -uGW -bwM -pni -bMX -kDi -fel -rVT -wGF -vle -dif -fJS -fiA -cmq -snl -mXZ -qxm -dhe -dhe -dhe -qxm -aBX -aBX -qxm -bOR -mMa -hFC -hFC -hFC -bsK -ssp -qxm -qxm -qxm -wAW -sUH -wyY -ums -gnp -eYC -bOj -ldC -eWl -kxB -qEv -xAF -hrs -xjm -kuJ -yjo -dLK -dLK -dLK -mwK -aDL -wQP -dhe -dhe -dhe -hlc -kJh -wkW -eTI -pCa -fbC -pzV -mGa -oNg -wkW -bkD -hlc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -oaV -oaV -oaV -oaV -oaV -coM -rLw -vCY -qmB -gas -vCY -vCY -vCY -vCY -qmB -gas -vCY -rLw -coM -coM -coM -jwD -kWL -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(179,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -hnE -hnE -ajc -ajc -ajc -bGu -lal -aGg -aGg -aGg -lal -aGg -aGg -aGg -aGg -aGg -aGg -aGg -aGg -aGg -aGg -unm -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -uGW -bwM -eyR -kDi -deC -msh -cJX -wMu -vle -jrl -bHL -oNL -haO -jZb -hTH -qxm -qxm -qxm -qxm -qxm -aBX -qxm -qxm -dPz -bEn -bEn -bEn -bEn -bEn -eVi -mbJ -qxm -xtP -aBX -qxm -oys -oys -kxB -kxB -kxB -kxB -kxB -kxB -nrx -lwY -jzF -gyx -cSd -yjo -oUZ -xBP -xBP -mwK -aDL -wQP -dhe -dhe -dhe -hlc -qdl -qdl -ovj -psg -eus -itK -gZG -rBa -wVH -qdl -hlc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -oaV -kbv -vsV -tDD -oaV -vCY -vCY -eGp -erO -erO -erO -qwF -erO -erO -erO -erO -qBM -vCY -vCY -coM -coM -ajc -kWL -kWL -kWL -kWL -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(180,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -hnE -hnE -ajc -ajc -ajc -bGu -bGu -bGu -bGu -bGu -bGu -bGu -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -uGW -bwM -dwA -dAl -pFb -bCT -laM -kDF -vle -nbo -tGA -lmZ -vvY -vle -emT -qxm -bsv -qkH -qxm -pcw -aBX -qxm -eNP -mRf -mMa -hFC -hFC -hFC -bsK -iAr -xks -qxm -uVV -jJt -cxi -ksh -oys -vpS -eHr -wWF -biP -rnh -fRA -pGw -ifN -beB -gqv -piP -yjo -fBm -alz -aLw -mwK -vRS -dCd -qlX -dhe -dhe -hlc -rkE -qdl -qdl -pCa -pSh -jAZ -mGa -qdl -qdl -jRA -hlc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -oaV -wKs -wgJ -ron -oaV -aPO -lej -erO -erO -gPr -qGX -qGX -lrv -qGX -lej -erO -erO -sYH -eGp -coM -coM -ajc -ajc -ajc -ajc -kWL -kWL -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(181,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -hnE -hnE -ajc -ajc -jwD -ajc -jwD -ajc -jwD -ajc -jwD -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -uGW -uGW -uGW -uGW -wsM -uGW -uGW -uGW -vle -sCa -wWu -kcB -kcB -jht -sav -qxm -hzD -hdj -qxm -pcw -qxm -qxm -fUQ -myD -myD -myD -myD -myD -myD -myD -fUQ -qxm -qxm -aBX -cxi -rmP -oys -qea -xSK -sdI -aAx -hMC -fRA -pOp -rrO -pqZ -rrO -rrO -rrO -fBm -alz -hxb -mwK -vRS -rJm -aqR -mgv -dhe -hlc -hlc -hlc -hlc -hlc -hlc -hlc -hlc -hlc -hlc -hlc -hlc -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dhe -dhe -lvw -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -oaV -oaV -oaV -oaV -lOi -rSV -oaV -oaV -hXp -erO -gPr -vtr -prA -prA -prA -prA -prA -gyr -erO -sYH -vuV -coM -coM -coM -coM -coM -ajc -ajc -kWL -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(182,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -hnE -hnE -hnE -hnE -hnE -hnE -hnE -rNI -hnE -hnE -hnE -hnE -hnE -hnE -hnE -hnE -hnE -hnE -hnE -jwD -unm -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -pCL -aDv -rHq -sfr -pCL -dDG -vle -vle -vle -vle -vle -vle -jKb -qxm -jWj -hdj -cJb -aBX -qxm -wnn -hKj -myD -sVs -bFS -stO -jwx -hKj -myD -hKj -qBE -qxm -aBX -cxi -nAN -oys -srh -mmC -wWF -ltE -yhX -swm -gOs -gcS -ldZ -jsr -uFF -eCj -nwO -eCj -vCA -mwK -xws -mkA -hgK -aqR -dhe -dhe -mSl -rAK -cmr -drR -wIy -mSl -jqB -cvF -lVU -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -upS -oaV -ipU -gxy -oaV -qmE -tgu -lSW -oaV -hXp -erO -gkq -prA -prA -nWG -pmg -nwo -prA -prA -lLC -xXY -xyH -coM -uJq -uJq -anj -coM -coM -ajc -kWL -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(183,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -pCL -rci -xWX -iyq -pCL -dDG -dhe -dhe -dhe -dhe -azp -vle -jwD -qxm -mfU -hzD -qxm -aBX -qxm -hKj -sVq -myD -rOB -rCN -vfP -bPu -reU -myD -sVq -hKj -qxm -aBX -cxi -ksh -oys -sdI -ozr -sdI -ftU -sRd -fRA -qgT -fJw -ofq -eCj -xzN -cyY -bFN -kWt -ycI -uEr -vRS -xmK -aqR -hgK -aqR -dhe -mSl -rAK -cmr -aiO -vSi -lKL -paB -mXU -lVU -lVU -lVU -dDG -dDG -dDG -dDG -dDG -dDG -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -iUB -koB -nLB -iUB -tXe -vDK -wbX -oaV -jwM -erO -xXY -prA -sVt -eFY -kXr -oUo -tPR -prA -dMt -vCY -qmB -coM -iwN -nBN -rDL -anj -coM -ajc -kWL -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(184,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -pCL -pCL -xVJ -pCL -pCL -dDG -dDG -dhe -dDG -dDG -roH -vle -jwD -qxm -cCE -rNJ -qxm -aBX -qxm -qxm -qxm -oys -utB -vWo -vfP -hKj -hIE -oys -qxm -qxm -qxm -aBX -cxi -rmP -oys -tFE -tjZ -xDy -gos -mPo -qaJ -uOW -uOW -rBn -kpe -dhy -vAU -vAU -vAU -tAY -mwK -vRS -wQP -aqR -dhe -dhe -dhe -mSl -rAK -cmr -dPn -few -mSl -ieV -cOn -piV -vzO -moK -cwr -cwr -cwr -cwr -cwr -cwr -fFE -fFE -fFE -fFE -fFE -fFE -fFE -fFE -fFE -fFE -fFE -fFE -fFE -fFE -fFE -fFE -fFE -fFE -fFE -fFE -wzz -hgc -hgc -uhI -fpM -vdg -cRh -jWV -yep -bJc -qBl -prA -uRU -lmt -wmf -eEg -wmf -ieN -mod -djl -djl -jef -wrN -bFf -xwj -lVo -coM -mPL -kWL -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(185,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -mXR -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -jwD -qxm -qxm -qxm -qxm -aBX -aBX -aBX -aBX -oys -oys -oys -qhn -oys -oys -oys -aBX -aBX -aBX -aBX -cxi -nAN -oys -jfm -nmH -tfU -yiO -lIG -fRA -kYm -lWw -cvA -kxs -dSC -dSC -fbd -xyZ -nah -mwK -aDL -wQP -wQP -wQP -wQP -wQP -mSl -mSl -mSl -bSc -mSl -mSl -uKI -mhr -lVU -lVU -lVU -dDG -dDG -dDG -dDG -dDG -dDG -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -iUB -eTb -eTb -iUB -tUS -tXe -aNu -oaV -pOd -mSp -gPr -prA -txm -wOl -wUL -wOl -hJX -prA -vjK -vCY -wQb -coM -vAs -lkx -uLe -dDI -coM -ajc -kWL -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(186,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -ajc -ajc -dDG -dhe -dhe -qxm -qxm -qxm -qxm -aBX -aBX -aBX -aBX -nSq -aBX -aBX -aBX -aBX -sOP -gnf -cBd -mxU -tCP -oys -tFE -ggK -gos -gos -flb -fRA -kYm -lWw -cvA -fEe -dSC -vQs -fbd -xyZ -nah -qya -mSd -jwQ -jwQ -xcZ -jwQ -tiE -klX -diL -ilj -acb -wDb -mSl -usA -nVl -kOz -uAe -uAe -uAe -uAe -uAe -uAe -uAe -uAe -uAe -fvH -jVb -jVb -jVb -jVb -jVb -fvH -jVb -jVb -jVb -jVb -jVb -fvH -jVb -jVb -jVb -jVb -jVb -jVb -vFy -hhg -lHY -oaV -thf -itc -ttn -oaV -hXp -mSp -gkq -prA -prA -tOZ -vsA -pew -prA -prA -aGe -gPr -ycU -coM -tSU -tSU -dDI -coM -coM -ajc -kWL -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(187,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -xiI -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -qxm -qxm -qxm -qNo -bPK -rLP -lIN -cxi -qxm -qxm -qxm -qxm -qxm -qxm -fEB -oys -oYV -gos -gos -nBR -hkv -fRA -bra -bra -bra -bra -bra -bra -bra -bra -bra -mwK -wQP -mdn -wQP -wQP -wQP -wQP -ktG -fwT -gpl -pnw -isK -mSl -mSl -mSl -mSl -dhe -dhe -dDG -dDG -dDG -dDG -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -jwD -oaV -oaV -oaV -oaV -vgw -oaV -oaV -oaV -hXp -mSp -xXY -vtr -prA -prA -prA -prA -prA -vFL -mSp -sYH -vuV -coM -coM -eIy -coM -coM -ajc -ajc -kWL -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(188,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -ajc -ajc -ajc -dDG -dhe -dhe -dhe -dhe -dhe -dhe -qxm -qxm -qxm -xMP -qxm -qxm -qxm -dhe -dhe -dhe -dhe -qxm -tTp -oys -fxo -gos -rSQ -qAY -jtp -fRA -bjQ -uAX -mmj -shS -vUW -qRg -vSy -dhe -dhe -wQP -fzN -mkG -kdo -wQP -dhe -akA -aiP -xMt -llj -lLl -akA -akA -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -oaV -jTF -bbZ -aAD -oaV -luj -aOL -mSp -mSp -xXY -abC -abC -fAo -abC -sbX -mSp -mSp -sYH -eGp -coM -coM -qcP -ajc -ajc -ajc -kWL -kWL -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(189,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -ajc -ajc -ajc -ajc -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -qxm -vcq -bAS -gQH -qxm -dhe -dhe -dhe -dhe -dhe -qxm -tTp -oys -kIw -qeo -bbT -inr -qYq -fRA -mCw -kJg -kJg -rWz -kJg -giP -vSy -dhe -dhe -wQP -pju -vXG -pju -wQP -dhe -akA -gUu -bBc -kQC -eNz -akA -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -oaV -wrw -nmV -vcA -oaV -vCY -vCY -oSl -mSp -mSp -mSp -mSp -ylh -mSp -mSp -mSp -bJJ -vCY -vCY -coM -coM -ajc -kWL -kWL -kWL -kWL -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(190,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -xiI -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -ajc -dDG -dDG -dDG -dDG -dDG -ajc -ajc -ajc -ajc -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -qxm -qxm -rCW -qxm -qxm -dhe -dhe -dhe -dhe -dhe -qxm -llz -fTa -jgE -mQE -oYF -vVf -uOy -jyK -hiV -gZI -gZI -gZI -gZI -swy -vSy -dhe -dhe -wQP -qSg -kvW -rTI -wQP -dhe -akA -nwS -akA -akA -nwS -akA -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -oaV -oaV -oaV -oaV -oaV -coM -rLw -vCY -nvF -auW -vCY -vCY -vCY -vCY -nvF -auW -vCY -rLw -coM -coM -coM -jwD -kWL -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(191,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -xFs -dDG -dDG -dDG -dDG -ajc -xFs -dDG -dDG -dDG -dDG -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dhe -dDG -dhe -dDG -dhe -qxm -aRN -xXs -aRN -qxm -dhe -dhe -dhe -dhe -dhe -qxm -qxm -oys -kIw -dGH -bbT -inr -xmt -iKj -iKj -kvb -iKj -mIT -tNy -yhi -vSy -dhe -dhe -wQP -wQP -wQP -wQP -wQP -dhe -dhe -duT -dhe -dhe -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -coM -coM -coM -coM -coM -coM -qYu -rfC -vCY -pmo -nvF -osa -qYu -coM -coM -coM -coM -coM -ajc -kWL -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(192,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -ajc -ajc -dDG -ajc -ajc -ajc -dDG -dDG -dDG -dDG -ajc -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -oys -jmd -cjr -qTE -inr -nRN -anB -did -yev -oJF -bzd -aGf -vSy -vSy -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -dhe -dhe -dDG -dDG -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -kWL -kWL -kWL -ajc -ajc -ajc -coM -coM -coM -coM -coM -coM -coM -coM -coM -coM -coM -coM -coM -coM -ajc -ajc -ajc -kWL -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(193,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -ajc -ajc -ajc -dDG -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dDG -ajc -ajc -ajc -ajc -dDG -dDG -dDG -dDG -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -oys -fUp -dyk -fUp -inr -kQg -hNR -tTu -yev -nFs -agH -sGt -xgf -vSy -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dhe -ajc -ajc -dDG -dDG -dDG -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -kWL -kWL -kWL -ajc -ajc -jwD -coM -coM -coM -coM -coM -coM -coM -coM -coM -coM -jwD -ajc -ajc -kWL -kWL -kWL -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(194,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -ajc -ajc -ajc -dDG -ajc -ajc -ajc -dDG -dDG -dDG -dDG -ajc -ajc -ajc -ajc -ajc -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dDG -dDG -oys -fir -fir -fir -inr -utX -vSy -utX -utX -vSy -utX -vSy -oTr -vSy -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dhe -ajc -ajc -dDG -xAo -dDG -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -kWL -kWL -ajc -jwD -ajc -ajc -ajc -ajc -ajc -aoi -ajc -ajc -ajc -ajc -jwD -ajc -kWL -kWL -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(195,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -rRH -dwB -dDG -lvw -jwD -jwD -jwD -jwD -jwD -lvw -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -sIm -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -vSy -oTr -vSy -dhe -dhe -dhe -dhe -dDG -dDG -aRN -lvw -jwD -jwD -jwD -lvw -aRN -ajc -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -kWL -kWL -kWL -kWL -kWL -kWL -ajc -ajc -ajc -ajc -ajc -kWL -kWL -kWL -kWL -kWL -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(196,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -naG -qIG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -cpf -dDG -dDG -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -vSy -bkX -vSy -dhe -dhe -dhe -dhe -dhe -dhe -oIH -aRN -ajc -ajc -ajc -aRN -cKC -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(197,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -cpf -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -cpf -dDG -dDG -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -jwD -dDG -dhe -dhe -dhe -dhe -dhe -dhe -jwD -ajc -ajc -ajc -ajc -jwD -ajc -pPV -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(198,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -pwt -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -pwt -dDG -dDG -ajc -ajc -ajc -ajc -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -xFs -dDG -dDG -dDG -xFs -dDG -dhe -dhe -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -jwD -dDG -dDG -dhe -dhe -dhe -dhe -dhe -pPV -pPV -pPV -pPV -pPV -pPV -pPV -pPV -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(199,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -dDG -ajc -ajc -ajc -ajc -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -jwD -jwD -ajc -dDG -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(200,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -dDG -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -jwD -ajc -dDG -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(201,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -jwD -ajc -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(202,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -jwD -ajc -dDG -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(203,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -jwD -jwD -ajc -ajc -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -xiI -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(204,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dDG -dDG -unm -dDG -dDG -dDG -dDG -dDG -unm -dDG -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(205,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(206,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(207,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -jwD -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(208,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(209,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(210,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(211,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -jwD -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(212,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(213,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(214,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -uwO -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(215,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -uwO -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -jwD -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(216,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -jwD -ajc -ajc -ajc -ajc -ajc -xiI -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(217,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(218,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(219,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -jwD -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(220,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(221,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -xiI -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -xiI -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(222,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(223,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -uwO -ajc -ajc -ajc -ajc -ajc -uwO -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -jwD -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(224,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -xiI -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -jwD -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(225,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -jwD -ajc -jwD -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(226,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -jwD -ajc -jwD -ajc -ajc -dhe -dhe -ajc -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(227,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -koP -khA -koP -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(228,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -xiI -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -tFf -koP -rJS -koP -tFf -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(229,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -koP -koP -bst -khA -drl -koP -koP -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(230,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -koP -koP -vEb -qVN -qVN -qVN -kBx -koP -koP -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(231,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -koP -sSh -mmN -qVN -hmp -qVN -wAa -bwi -koP -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(232,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -koP -koP -rLn -qVN -qVN -qVN -hns -koP -koP -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(233,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -koP -koP -yhe -caa -gzU -koP -koP -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(234,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -tFf -koP -sEO -koP -tFf -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(235,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -koP -koP -koP -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(236,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(237,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(238,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(239,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -dhe -dhe -dhe -dhe -dhe -dhe -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(240,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(241,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(242,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(243,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(244,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(245,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(246,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(247,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(248,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(249,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(250,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(251,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(252,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(253,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(254,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} -(255,1,1) = {" -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -"} - -(1,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(2,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(3,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(4,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(5,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(6,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -eMA -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(7,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(8,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(9,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(10,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(11,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(12,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(13,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(14,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -uwO -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -uwO -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(15,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(16,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -uwO -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -uwO -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(17,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(18,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -gNY -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -gNY -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(19,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(20,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(21,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(22,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(23,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(24,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -czK -tPE -nmY -nmY -tPE -nmY -tPE -ydD -ydD -ydD -ydD -ydD -ydD -ydD -ydD -ydD -ydD -ydD -tPE -nmY -tPE -gNY -aYr -aYr -aYr -uwO -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(25,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -czK -nmY -vmX -roV -iEi -dgw -pFk -hOp -wpx -hOp -wpx -hOp -wpx -hOp -wpx -hOp -wpx -hOp -cml -hvp -nmY -gNY -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(26,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -czK -tPE -sfq -iCv -hwg -akk -kFP -tCT -tCT -tCT -tCT -kob -rYm -xCQ -tCT -tCT -tCT -tCT -hEb -fvX -nmY -gNY -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(27,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -czK -nmY -kPh -iCv -hwg -akk -vcI -tCT -tCT -kob -tCT -tCT -tCT -tCT -tCT -xCQ -tCT -tCT -fAZ -ssQ -nmY -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(28,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -czK -nmY -hnh -iCv -hwg -akk -vcI -tCT -rVt -tCT -tCT -tCT -tCT -tCT -tCT -tCT -rVt -tCT -fAZ -vdT -tPE -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(29,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -eMA -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -aYr -qBS -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -czK -nmY -qhG -iCv -hwg -akk -vcI -tCT -kob -tCT -tCT -tCT -tCT -tCT -tCT -tCT -xCQ -tCT -fAZ -hNx -tPE -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(30,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -czK -tPE -qGP -iCv -hwg -akk -pbJ -tCT -tCT -tCT -tCT -tCT -tCT -tCT -tCT -tCT -tCT -tCT -fAZ -rtn -nmY -aYr -aYr -aYr -aYr -gNY -aYr -aYr -eMA -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(31,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -czK -nmY -iCv -dme -hwg -akk -gYz -tCT -tCT -tCT -tCT -tCT -rVt -tCT -tCT -tCT -tCT -tCT -eNF -oTC -nmY -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(32,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -czK -nmY -iCv -bfu -hwg -akk -gYz -tCT -vxe -tCT -tCT -tCT -tCT -tCT -tCT -tCT -mkE -tCT -fAZ -oTC -nmY -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(33,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -eMA -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -aYr -azm -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -czK -nmY -gFn -ojM -tPE -uep -gYz -tCT -rVt -tCT -tCT -tCT -tCT -tCT -tCT -tCT -rVt -tCT -fAZ -wDZ -tPE -nmY -nmY -tPE -gNY -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(34,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -tPE -tPE -mvS -tPE -tPE -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -czK -mbA -eDh -hzX -tPE -hFQ -gYz -tCT -tCT -vxe -tCT -tCT -tCT -tCT -tCT -mkE -tCT -tCT -fAZ -aaF -nqw -vfd -xqa -nmY -aYr -bfM -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(35,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -tPE -xHW -tCT -cEP -mbA -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -czK -nmY -phY -eQV -tPE -pWM -gYz -tCT -tCT -tCT -tCT -tCT -tCT -tCT -tCT -tCT -tCT -tCT -fAZ -aaF -nqw -jEu -vsE -nmY -aYr -bfM -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(36,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -tPE -chs -aei -tPE -tPE -aYr -aYr -aYr -aYr -aYr -aYr -nmY -nmY -nmY -nmY -uhs -iaP -nmY -akk -gYz -tCT -tCT -tCT -gPB -tCT -rVt -tCT -pOX -tCT -tCT -tCT -fAZ -bix -tPE -xGQ -vfd -nmY -nmY -nmY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(37,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -eMA -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -tPE -loo -lRu -nmY -thi -nmY -aYr -aYr -aYr -aYr -aYr -kzw -vcz -tCT -tlg -vtK -iaP -nmY -akk -gYz -tCT -tCT -tCT -aUo -tCT -tCT -tCT -pOX -tCT -tCT -tCT -fAZ -oTC -nmY -jKZ -heW -xtf -tCT -xVc -eJP -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(38,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -tPE -iWP -jEu -mlu -tCT -kHa -aYr -aYr -aYr -aYr -aYr -nmY -nmY -nmY -nmY -fAZ -jsA -nmY -akk -gYz -tCT -tCT -tCT -tCT -tCT -tCT -tCT -tCT -tCT -tCT -tCT -fAZ -oTC -nmY -dFt -xIT -nmY -nmY -nmY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(39,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -tPE -xbf -vcI -nmY -nmY -nmY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -nmY -uGf -ste -iaP -nmY -akk -gYz -tCT -tCT -tCT -vxe -tCT -tCT -tCT -mkE -tCT -tCT -tCT -usG -mer -nmY -jKZ -vsE -nmY -czK -czK -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(40,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -tPE -blB -kqf -dFP -nBu -nmY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -nmY -fAZ -jEu -anc -tPE -akk -vUf -tCT -rVt -tCT -tCT -tCT -tCT -tCT -tCT -tCT -rVt -tCT -fAZ -wGf -tPE -vMC -vsE -nmY -czK -czK -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(41,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -tPE -oVU -dZw -jEu -alS -nmY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -nmY -gpR -jEu -sOa -tPE -iph -lnN -tCT -tCT -tCT -tCT -tCT -tCT -tCT -tCT -tCT -tCT -tCT -fAZ -mer -nmY -jKZ -dNs -nmY -czK -czK -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(42,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dhe -iyc -iyc -iyc -iyc -iyc -iyc -iyc -gen -kGV -jEu -vcI -nmY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -nmY -fAZ -jEu -sow -mbA -akk -itA -tCT -tCT -tCT -kob -tCT -tCT -tCT -xCQ -tCT -tCT -tCT -fAZ -fRu -tPE -uze -vsE -nmY -czK -czK -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(43,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dhe -dhe -dhe -iyc -uhw -wXM -tln -ajo -wXM -iyc -hvt -ltt -aRA -tea -nmY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -nmY -mMc -yje -sow -tch -xFB -itA -tCT -kob -tCT -tCT -tCT -rVt -tCT -tCT -tCT -xCQ -tCT -fAZ -mer -nmY -jKZ -vfd -nmY -nmY -nmY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(44,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dhe -dhe -dhe -iyc -jfd -cqZ -jKd -pFF -kYy -iyc -hvt -vcI -nmY -nmY -nmY -aYr -aYr -aYr -aYr -aYr -nmY -nmY -nmY -nmY -eDh -sow -nqw -akk -vcI -kob -tCT -tCT -tCT -tCT -tCT -tCT -tCT -tCT -tCT -xCQ -fAZ -mer -nmY -pbr -bdW -xtf -tCT -sDh -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(45,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dhe -dhe -iyc -kmJ -mwk -jKd -fGx -kmJ -iyc -hvt -jEu -mlu -tCT -kHa -aYr -aYr -aYr -aYr -aYr -kzw -vcz -tCT -tlg -fAZ -sow -nqw -akk -vcI -vxe -tCT -tCT -mkE -tCT -tCT -tCT -vxe -tCT -tCT -mkE -fAZ -mer -nmY -pXi -xIT -nmY -nmY -nmY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(46,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dhe -dhe -iyc -qpY -waX -sFd -wyK -mOi -iyc -hvt -vcI -nmY -thi -nmY -aYr -aYr -aYr -aYr -aYr -nmY -nmY -nmY -nmY -fAZ -sow -nqw -akk -kqf -dFP -dFP -dFP -dFP -dFP -dFP -dFP -dFP -dFP -dFP -dFP -ste -gHE -tPE -pXi -vsE -nmY -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(47,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dhe -dhe -dhe -iyc -fCO -kMf -qyJ -mpa -sQe -iyc -hvt -kqf -cRJ -nmY -aYr -aYr -aYr -aYr -akC -aYr -aYr -aYr -nYJ -fhN -ste -uYK -tPE -aFL -gcf -sEv -sEv -sEv -sEv -sEv -sEv -sEv -yir -boY -xKb -sEv -sEv -rpI -nmY -pXi -vsE -nmY -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(48,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -iyc -rqi -uJx -dsj -tRu -dwK -amG -hvH -jEu -vcI -lQn -lQn -lQn -nmY -nmY -nmY -nmY -nmY -lQn -lQn -chg -chg -nUk -tPE -tPE -tPE -nmY -nmY -oAb -oAb -oAb -nmY -nmY -tPE -tPE -tPE -tPE -oAb -iiI -tPE -pXi -oSw -tPE -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(49,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -eMA -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -iyc -bTJ -nuc -sYC -tGJ -bdJ -iyc -hvH -nEy -kqf -dFP -dFP -wuz -dFP -dFP -dFP -dFP -dFP -dFP -qqx -ste -jEu -pXi -qAW -sHu -etC -jEu -jEu -jEu -jEu -jEu -jEu -jEu -etC -pgX -bCR -vbp -jEu -jab -jEu -pXi -fCN -tPE -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(50,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -iyc -ajo -wXM -tpg -jHr -jSa -iyc -jYy -jQD -hqp -hqp -hqp -pbe -hqp -qXS -sZW -ieD -nHz -oxg -nEy -jEu -uqR -rpT -kcV -jEu -gXF -kcV -qyf -yeC -yeC -mFv -yeC -xpq -crq -gOK -jWo -ktq -ktq -vxC -vxC -ktq -rKd -tPE -aYr -gNY -dDG -dDG -dDG -dDG -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(51,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -iyc -iyc -ddA -ddA -ddA -ddA -ddA -ddA -ddA -ddA -ddA -ddA -ddA -ddA -ddA -ddA -ddA -vvk -dkD -vWR -yjN -yjN -rAL -yeC -yeC -cKa -iUr -nQM -tPE -tPE -tPE -tPE -tPE -tdx -tdx -tdx -tdx -tdx -tdx -qeD -tdx -tdx -tPE -dDG -unm -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(52,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ddA -wRd -wRd -wRd -wRd -wRd -wRd -wRd -wRd -wRd -ddA -vxB -cxB -fSr -ddA -jNb -ezF -pBW -jNb -jNb -jNb -jNb -jNb -arB -bZy -jNb -ckM -nEF -jBy -iHr -mpw -tdx -dMU -bDJ -bDJ -bDJ -bDJ -bDJ -mGt -tdx -tdx -tdx -tdx -tdx -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(53,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ddA -wRd -wRd -wRd -wRd -wRd -wRd -wRd -wRd -wRd -uPU -aUt -vzB -pSz -vzM -aSG -knS -xmB -aMz -kpC -dpG -sCw -qvM -hun -mmG -blu -ckM -pVW -gsF -mdY -mpw -tdx -bDJ -tdx -tdx -tdx -tdx -tdx -bDJ -tdx -tZJ -uwF -fXR -tdx -tdx -tdx -tdx -dDG -dDG -dDG -dDG -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(54,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ddA -wRd -wRd -wRd -wRd -wRd -wRd -wRd -wRd -wRd -uPU -dUR -gPs -pSz -vzM -lyz -jEu -cLV -pNB -xQS -ski -xQS -pJE -hun -jEu -hTa -ckM -ftt -tJG -mdY -mpw -tdx -bDJ -tdx -rnK -iZj -qzn -tdx -bDJ -bDJ -bDJ -bDJ -bDJ -bDJ -bDJ -bDJ -tdx -tdx -tdx -tdx -dDG -dDG -dDG -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(55,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ddA -wRd -wRd -wRd -wRd -wRd -wRd -wRd -wRd -wRd -uPU -pTe -oyO -ffA -uPU -aZX -jEu -xmB -xQS -wml -sbb -mWK -xQS -hun -jEu -teb -ilh -ufK -tJG -mdY -mpw -tdx -bDJ -tdx -hrk -qEL -mfF -tdx -tdx -tdx -tdx -tdx -tdx -tdx -tdx -mKy -tdx -orp -akI -tdx -dDG -dDG -dDG -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(56,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ddA -wRd -wRd -wRd -wRd -bEH -wRd -wRd -wRd -rAN -rch -fJn -ivg -wMw -tLK -hcu -oxg -xmB -xQS -euI -ajj -euI -xQS -hun -jEu -hTa -uIo -oef -qBi -bZG -hzR -gii -bDJ -tdx -gmH -hIg -kMz -cSr -xVV -xVV -cSr -knj -loD -nJF -tdx -bDJ -tdx -sdn -gab -tdx -dDG -dDG -dDG -dDG -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(57,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ddA -wRd -wRd -wRd -wRd -wRd -wRd -wRd -wRd -wRd -uPU -daY -uwc -ffA -uPU -lyz -jEu -xmB -xQS -mWK -euI -wml -xQS -oSI -iHp -iyn -oAA -gRo -elK -mdY -mpw -tdx -tdx -tdx -cSr -dNc -cSr -cSr -hnH -sKt -cSr -loD -evs -edK -tdx -bDJ -tdx -tdx -gab -tdx -dDG -dDG -dDG -dDG -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(58,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ddA -wRd -wRd -wRd -wRd -wRd -wRd -wRd -wRd -wRd -uPU -iZH -uwc -pSz -vzM -lyz -jEu -xmB -kJU -xQS -ski -xQS -pJE -ddU -jEu -hTa -ckM -ijf -rky -mdY -mpw -ckM -rrM -puN -moP -gsU -sQu -vin -iOi -aGA -pMo -loD -tDI -nJF -tdx -tce -bDJ -tdx -cCZ -tdx -tdx -tdx -tdx -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(59,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ddA -wRd -wRd -wRd -wRd -wRd -wRd -wRd -wRd -wRd -uPU -ptO -jGX -pSz -vzM -lyz -jEu -xmB -rIT -qKW -cOX -hzt -rIT -ddU -jEu -hTa -ckM -qgx -gJK -mdY -mpw -ckM -aHD -iOi -jxM -gsU -fLr -ujs -iOi -aGA -cSr -cSr -cSr -cSr -tdx -tdx -twl -bDJ -gab -gab -gab -gab -tdx -tdx -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(60,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -yji -yji -yji -yji -yji -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ddA -wRd -wRd -wRd -wRd -wRd -wRd -wRd -wRd -wRd -ddA -jXR -aWt -mJr -ddA -lQC -wcx -wVO -tPE -tPE -tPE -tPE -tPE -mWi -isi -nQM -ckM -pMz -xOP -cGm -mpw -ckM -kwo -iOi -oyQ -wvu -fLr -olc -iOi -aGA -bNV -ckt -xrn -xrn -xrn -tdx -tdx -tdx -tdx -tdx -tdx -gab -gab -tdx -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(61,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -yji -suy -xQP -dTL -yji -run -run -run -run -run -run -run -dhe -dxC -dxC -dxC -dxC -dxC -dhe -dhe -dhe -ddA -xMW -xMW -xMW -xMW -xMW -xMW -xMW -xMW -xMW -ddA -ddA -ddA -ddA -ddA -jNb -ezF -pBW -tPE -cpG -huT -tGo -tPE -ixs -bZy -jNb -ckM -ckM -ckM -ckM -ckM -ckM -iuI -iOi -fTz -mPr -luP -coU -iOi -aGA -naz -dXR -iOi -iOi -iOi -rAS -wRG -gsT -uJk -mNV -tdx -tdx -gab -tdx -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(62,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -yji -kBo -pcC -rGN -dTL -mjM -qAg -qdr -sZD -kUf -lqP -run -dhe -dxC -wIx -raM -dsF -dxC -dxC -dxC -dxC -dxC -bwf -gMy -cnE -bhn -bxt -duY -egx -lLu -bwf -dhe -dhe -dhe -dhe -tPE -xhF -vPg -nWF -xaB -vVc -vVc -vBM -cxs -pPp -hID -nbm -kVs -oFo -hFb -laT -hdH -gaq -gaq -iOi -xOU -bFF -qpa -kgd -kgd -sAh -hNz -kgd -dsK -kgd -kgd -rAS -iMy -eNx -tBx -eNx -oDq -tdx -gab -tdx -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(63,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -uov -uov -uov -uov -uov -uov -nDj -pcC -dkO -dta -mjM -wof -vgc -mZo -dne -pUN -run -dhe -dxC -kHZ -kHZ -kHZ -edR -hSH -mxJ -hfN -ikJ -bwf -lET -eMs -pXn -rQM -lQD -tUp -cpj -bwf -fMN -fMN -fMN -fMN -tPE -fvJ -nRj -nEy -jEu -jEu -soH -jEu -jEu -psx -bdW -hTa -jNb -fpg -ufO -njX -hdH -iOi -iOi -vNJ -igN -wjk -tVL -tuQ -tuQ -tuQ -tuQ -tuQ -tuQ -tuQ -qCe -cBw -iiJ -tsW -iNw -sbF -iqN -npi -gab -tdx -dhe -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(64,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -xSX -xSX -xSX -qOT -tuZ -qwy -jxG -pPL -nDj -pcC -dkO -dta -mjM -nSs -vwn -oqc -abl -uKt -run -dhe -dxC -rkp -rkp -rkp -lqT -osT -eqf -ded -jDU -bwf -sme -eMs -dfe -bwf -bwf -bwf -bwf -bwf -dHf -dqm -hVY -fMN -lQn -vvk -yjN -qOJ -wuQ -wuQ -dPc -nvh -nvh -mhX -lgy -uim -xjJ -qdQ -mHM -uyd -hdH -oHp -oHp -iOi -kkP -dCL -jHK -bLe -bLe -bLe -bLe -bLe -bLe -bLe -wui -rAS -dDe -uWW -rKj -wcr -eJM -tdx -tdx -tdx -jFJ -jFJ -jFJ -jFJ -jFJ -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(65,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -aoX -czW -izO -xGw -wtQ -sQf -mjO -kTg -osS -hiN -pcC -kEc -ntp -mjM -nYY -wDa -wDa -abl -rFF -run -dhe -dxC -jPM -sTJ -rkp -xvJ -vvC -lTR -ded -bZo -bwf -kKu -hoe -mhN -rQM -qYa -nnS -cEt -bwf -ltp -neQ -neQ -oKy -fMN -iNg -hZi -ook -ook -ook -kVH -ook -ook -ook -dxq -iwT -tPE -fpg -uUm -fUy -hdH -iOi -iOi -iOi -bSd -dCL -jHK -bLe -bLe -jre -bLe -bLe -bLe -bLe -ore -vxM -qKm -eDd -lYb -eDd -rUu -rAS -xQY -jpx -squ -iZk -jFJ -ruW -jFJ -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(66,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -xSX -xSX -xSX -vFx -smy -wnD -dDp -pPL -nDj -jnO -nEc -gki -mjM -mjM -uif -sfJ -pTp -run -run -dhe -dxC -rkp -rkp -rkp -lqT -osT -eqf -ded -gKi -bwf -eLc -eMs -mKW -oQu -xAN -awN -qCx -bwf -opN -rUD -tZv -qeP -fMN -yiM -yiM -ook -eiJ -lpn -kUD -vfQ -ojT -ook -yiM -yiM -yiM -qNN -lfP -lUf -hdH -dCD -dCD -iOi -kkP -dCL -jHK -tpR -sUs -yaS -wLG -iuM -vbV -ioE -tsj -rAS -bwV -jxv -kxe -qKm -eLr -rAS -aeD -rdZ -xIe -cxA -dQX -jKN -jFJ -dhe -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(67,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -uov -xDQ -hhi -jXn -hhi -xDQ -qxu -pcC -lcn -gki -nca -qkr -wjT -dUY -qeQ -yji -dhe -dhe -dxC -ndP -ndP -ndP -pVU -hAv -cPg -lnj -fQV -bwf -gMy -dyw -qlx -rQM -kMJ -awN -dXd -bwf -ihn -qkV -vod -tLb -fMN -ojT -tkv -ook -byO -khH -khH -dzU -jtg -ook -tkv -ojT -yiM -hMo -lfP -qJy -cSr -cSr -cSr -hdH -hdH -cPW -pVn -hdH -hdH -cSr -cSr -cSr -cSr -cSr -cSr -rAS -xzI -uYa -mHZ -gkw -rAS -rAS -ixa -vzf -xIe -jDN -jFJ -kAl -jFJ -dhe -dhe -dDG -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(68,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -xSX -xSX -xSX -xbp -nOC -ciG -jPx -xDQ -qZJ -uVE -pNI -gki -nca -nca -iPi -dkO -rZl -yji -dhe -dhe -dxC -dsF -cTr -dsF -dxC -osZ -dxC -bnU -dxC -bwf -bwf -gZy -gZy -bwf -kxZ -tBY -bYI -bwf -rKc -hJm -ctA -nCw -fMN -ojT -ofA -ook -dpA -qXO -tkv -bhk -ojT -ook -rRK -ojT -yiM -nJV -sqD -vcH -keX -okT -okT -okT -okT -haV -xoQ -dsC -dsC -dsC -dsC -bxH -dsC -dDH -gQC -rAS -rAS -rAS -rAS -rAS -rAS -rAS -rnS -nxx -xIe -fAU -jFJ -jFJ -jFJ -jFJ -dhe -dhe -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(69,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -kzZ -izO -eUH -wtQ -owA -rte -eRi -xDQ -caw -rhl -gki -gki -lCO -nca -iPi -dkO -rZl -yji -yji -yji -dxC -dxC -dxC -dxC -dxC -oVy -idG -kMM -jFb -tMq -pLM -nNz -cRW -bwf -rQM -ffV -rQM -bwf -uFC -lWh -jYE -kXI -fMN -ogc -yiM -ook -ook -ook -ook -ook -ook -ook -yiM -gBW -yiM -fpg -jsO -ddh -mQp -mQp -mQp -mQp -mQp -wuE -ddh -mQp -mQp -mQp -mQp -mQp -wuE -nof -lUf -pUw -mGX -ogp -kzT -ogp -mGX -jFJ -yjf -gSK -uTa -wWo -eam -lZA -xMb -jFJ -dhe -dhe -dhe -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(70,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -xSX -xSX -xSX -ctW -sQf -vZD -hYT -hhi -qZJ -csP -mBu -lLM -kgQ -ock -iFO -dsV -lPj -hCe -lyh -ctU -kqv -kXP -aoY -qLx -xHo -elF -lat -okf -kmk -dbd -kmk -kmk -gNX -vgv -vgv -fkv -qeL -fMN -fMN -fMN -gvx -fMN -fMN -uMR -rNF -wGy -rKC -rKC -elV -rKC -rKC -iaH -iMg -hNT -yiM -nMW -jsO -kGA -tDT -tDT -tDT -tDT -tDT -gTJ -kGA -tDT -tDT -tDT -tDT -tDT -gTJ -nof -pjc -pUw -trg -blw -kzT -oDy -jEY -mmL -tLo -gSK -jFJ -jFJ -jFJ -yiJ -rvg -jFJ -dhe -dhe -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(71,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -uov -hdL -rKV -eNv -gfP -rpW -mzg -jho -hSm -lPo -aIf -ird -oTJ -oTJ -oTJ -oMU -aKQ -mBu -mKL -uEp -mBu -xWC -tRE -fnO -lbq -xeE -jLJ -qfP -raJ -pCg -kdL -knJ -qnD -knJ -meF -gIA -cGS -cGS -fkv -nCy -ldm -sPc -lsV -kfl -vbN -vbN -xVx -vbN -vbN -tBc -iBD -uaU -uyl -aOS -mLp -kGA -tDT -tDT -tDT -tDT -tDT -gTJ -kGA -tDT -tDT -tDT -tDT -tDT -gTJ -nof -qJy -pUw -sSH -pUw -pUw -pUw -pUw -pUw -pUw -goR -pUw -rYd -ukX -mRE -jZj -jFJ -dhe -dDG -dDG -dDG -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(72,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -uov -uuL -cxV -iiN -jWO -hhi -qZJ -ufW -iwm -haj -nLi -tfp -nca -nca -nca -neC -bzG -kVA -sNl -sTN -ktX -wiG -kdV -acr -pxi -pxi -pxi -pxi -pxi -pxi -tmj -qRA -afg -gzJ -gQB -knJ -knJ -knJ -umA -eJn -bSS -pQp -unE -xWa -cFs -nzh -mEG -dIB -cFs -knt -qTL -oDj -qqi -jtW -fVE -pPC -nqH -nqH -nqH -nqH -nqH -hGI -pPC -nqH -nqH -nqH -nqH -nqH -hGI -nof -oxE -pUw -mWP -mWP -kUo -fRc -cAp -kUo -epz -xEb -pUw -pUw -rGi -gnr -bIJ -jFJ -dDG -dDG -dDG -dDG -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(73,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -qtp -qtp -qtp -qtp -qtp -aOR -jRG -xDQ -oGQ -jUF -mBu -dob -ejM -tfp -nca -nca -nca -neC -bSP -yji -ehd -mBu -pxi -pxi -pxi -pxi -pxi -lDK -xAQ -eTv -lyd -pxi -pxi -njB -imP -pxi -qHe -maN -ebh -eFQ -maN -lZV -kHS -bkP -iuD -xWa -cFs -lNP -gnj -vVY -cFs -knt -iuD -gJq -hri -kqP -kgA -faC -cxg -tnG -faC -faC -faC -faC -vvT -bzP -ubW -tda -ubW -kjr -ubW -uyi -orL -pUw -kVy -tkB -tfW -jrJ -tfW -xFh -wTV -mWP -eAz -pUw -jFJ -jFJ -jFJ -jFJ -dDG -dDG -dDG -dDG -dDG -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(74,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dhe -dhe -dhe -qtp -qtp -eot -mRI -loy -qtp -qtp -qtp -iUh -iUh -qiI -iUh -iUh -sfW -tfp -nca -nca -nca -neC -vrx -yeG -oZA -uLC -pxi -hiq -pWW -btA -wlK -uVo -wiN -jYf -wiN -gkr -rsg -cfz -gOd -pxi -wHT -wHT -wHT -wHT -wHT -jvf -jvf -tZV -qsy -xWa -cFs -lNP -gnj -vVY -cFs -tRX -qUV -uHT -uyw -uyw -cql -uyw -uyw -pDV -pDV -pDV -pDV -pDV -pDV -mAb -ufO -ivH -txR -eMY -ufO -uZO -bfG -pUw -qak -eeU -jLf -lHz -jLf -fXB -exm -mWP -kMm -ggV -vCZ -ikL -tSp -buB -buB -dDG -dDG -dDG -dDG -dDG -dDG -dDG -sub -sub -sub -sub -sub -sub -sub -sub -sub -sub -sub -sub -sub -sub -sub -sub -sub -gNY -uwO -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(75,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dhe -dhe -dhe -dhe -dhe -qtp -uxr -sMG -dyS -uEO -szp -nvX -qtp -ubf -tRj -rWp -oOG -wtj -wWN -tfp -nca -nca -nca -neC -iiA -qxS -aPQ -avX -pxi -qsI -wiN -jYf -jYf -oZc -uUa -oJS -oJS -qGY -hUr -qGY -fZj -pxi -vDG -gXx -lyV -wqP -wHT -lEl -mDY -iuD -dtE -yiM -cFs -lNP -gnj -vVY -cFs -yiM -lsA -pyf -uyw -rYU -nWP -eok -uyw -hyw -btC -kKp -wri -vsg -qmt -kKt -nrz -mAt -brQ -mAt -bAf -iKo -pUw -pUw -tfW -gBr -tfW -rVK -tfW -pxo -aQU -mWP -kUo -hce -vCZ -ohW -uxk -kkg -buB -dDG -dDG -dDG -dDG -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(76,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dhe -dhe -qtp -qtp -qtp -qtp -tVP -vzU -ghE -ePW -uEO -jLX -qtp -ivd -ouJ -hhN -qEF -wtj -wWN -tfp -nca -nca -nca -ycm -qdY -dkO -iiA -eYF -pxi -joF -pmZ -lmG -lmG -gIG -aAr -cgN -bgn -oUP -pxi -pxi -pxi -pxi -qyU -bCj -mFu -alB -jkD -xCm -fKO -iuD -sKx -fCp -cFs -bEt -gnj -rib -cFs -oVO -qTL -pyf -dhA -slA -dek -vLp -uyw -vCx -rVp -vgZ -vgZ -onq -cdV -tYs -gwf -tDT -tDT -tDT -ylF -mSw -pUw -hvC -jLf -oYR -jLf -gwq -jLf -qOe -xXo -dVo -eGl -jPq -vCZ -eRU -dXW -kkg -buB -buB -dDG -dDG -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(77,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dhe -dhe -qtp -sVz -sVz -sVz -sIk -fAH -ryA -jWg -ePW -iba -fmE -sBG -agZ -osB -kCm -wtj -wWN -tfp -nca -nca -nca -ruA -nyt -phB -qdY -bpi -pxi -qzS -dhl -imr -iue -hyE -aAr -njq -kVV -jDi -pxi -qNz -pdE -pxi -kIo -pKq -iOq -eJI -jkD -pzM -fKO -iuD -qsy -bIY -cFs -lNP -gnj -vVY -cFs -dIF -qUV -pyf -dhA -dPZ -dek -uxE -uyw -bYg -rAM -ipr -xVk -exT -qmt -lfP -gwf -tDT -tDT -tDT -tod -bII -eFu -aXc -jkt -mli -jkt -biV -jkt -jkt -jxK -dVo -kUo -kUo -lXk -wnK -mlH -wnK -ifw -buB -buB -buB -buB -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(78,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dhe -dhe -qtp -uEO -uEO -uEO -qla -iEx -jQC -mdD -sZf -uEO -cDF -etH -bLT -hvZ -mGN -gNK -wWN -gAO -odr -rMJ -odr -pBZ -lSo -lSo -azy -cgc -pxi -aPP -uIx -lrZ -eON -fmJ -jue -nUM -bNF -wth -oLt -sVB -fOQ -pxi -mPf -urn -ykx -sTH -jkD -jfp -fKO -iuD -oMZ -aMD -cFs -lNP -pcv -vVY -cFs -aMD -kpL -pyf -cHE -jmP -dek -xbZ -uyw -qOF -qOF -xmR -xmR -qOF -qOF -oXk -xRH -fsC -fsC -fsC -bdz -mSw -ckb -gyt -iUs -iUs -iUs -iUs -iUs -dCz -jKx -whg -mtb -rEu -tXn -tCi -xtW -lMD -bMG -oTD -htT -pJu -lnh -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(79,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dhe -dhe -qtp -iuy -ebE -tXu -qla -lYN -lGF -ist -wIo -ygX -fmE -wZs -agZ -iLs -kQy -wtj -wWN -tfp -nca -nca -nca -ruA -otz -kTT -hMA -kNb -pxi -dtu -dhl -mmv -grf -uGb -aAr -pRB -kVV -uUx -pxi -tgW -kqs -pxi -crR -xUL -pXT -lqy -wHT -gaf -fKO -iuD -unE -jNS -cFs -lNP -gnj -vVY -cFs -cVR -qTL -pyf -dhA -sOy -dek -btz -uyw -fIr -xgH -wne -wne -wne -qlG -ifn -gwf -tDT -tDT -tDT -aMc -lhw -sZw -jkt -kDq -jkt -jkt -mdy -jkt -jkt -jkt -dVo -kUo -rEu -tCC -vtQ -vtQ -dGJ -pgz -buB -buB -buB -buB -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(80,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dhe -dhe -qtp -qtp -qtp -qtp -tJi -mXI -mhi -wIo -uEO -xDO -qtp -rUc -ahc -pLO -nzz -wtj -wWN -tfp -nca -nca -nca -hYN -hMA -dkO -dkO -cEe -pxi -oPF -uvH -rYL -hHI -bUT -aAr -tkU -kmP -puc -pxi -pxi -pxi -pxi -qfM -jMx -fmB -vtj -mhF -vrN -fKO -iuD -qsy -hGQ -cFs -bEt -gnj -rib -cFs -cPO -qUV -pyf -dhA -gVW -dek -wGC -uyw -nlm -iEJ -jzU -jzU -iqv -hhc -gsk -gwf -tDT -tDT -tDT -aMc -mSw -pUw -vrd -dlL -oqS -mEs -hWg -mEs -oqS -mEs -dVo -eGl -kUo -vCZ -dPT -bEV -kkg -buB -buB -dDG -dDG -dDG -dDG -unm -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -xdo -wIP -xdo -wIP -xdo -wIP -xdo -gNY -sub -gNY -uwO -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(81,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -eMA -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dhe -dhe -dhe -dhe -dhe -qtp -aLk -oaw -oXq -uEO -uEO -rln -qtp -lAW -mbG -vvv -wsw -wtj -wWN -tfp -nca -nca -nca -neC -dkO -dkO -dkO -avX -pxi -uEe -fJB -vnV -vnV -tLH -kAW -tvf -tvf -kzy -jYU -kzy -xyl -pxi -iaZ -rCn -urm -rMk -wHT -cDX -lPY -iuD -dOb -yiM -cFs -lNP -gnj -vVY -cFs -yiM -rMR -pyf -uyw -qeE -mRD -uvg -uyw -qOF -aSe -sHI -woJ -bdM -qOF -cgj -hGD -lmb -fTC -pqY -sUo -pJW -pUw -pUw -fvS -sxG -ubH -inQ -ubH -sxG -ubH -kUo -kUo -hce -vCZ -cfY -uZd -kkg -buB -dDG -dDG -dDG -dDG -dDG -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -xdo -wIP -xdo -wIP -xdo -wIP -xdo -aYr -sub -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(82,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dhe -rmB -rmB -rmB -rmB -qtp -qtp -kMH -qla -dHV -qtp -qtp -qtp -iUh -iUh -pzb -iUh -iUh -hfw -tfp -nca -nca -nca -neC -kEc -blo -fxK -jNR -pxi -qnt -xcH -oho -ldz -edm -wiN -cda -wiN -cXq -cNo -meO -oZC -pxi -wHT -lde -wHT -wHT -wHT -jvf -jvf -vJG -unE -pdw -cFs -lNP -gnj -vVY -cFs -hIt -qTL -kll -uyw -uyw -dVc -uyw -uyw -qOF -qOF -qOF -qOF -qOF -qOF -fwF -ufO -rEZ -fsZ -eMY -ufO -wcy -mVt -pUw -mIO -jba -mEs -iRB -mEs -jba -mEs -kUo -kUo -vob -vCZ -vua -pzF -buB -buB -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -unm -gNY -gNY -gNY -gNY -gNY -gNY -xdo -wIP -xdo -wIP -xdo -wIP -xdo -gNY -sub -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(83,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -rmB -ahs -dFI -wwc -rmB -qtp -qtp -obA -qRn -qtp -tJY -wFS -mTa -rmf -fWJ -wwO -wOb -rOb -tfp -nca -nca -nca -neC -bTP -yji -qAB -mBu -pxi -pxi -pxi -pxi -pxi -nug -vMZ -qjW -dVd -pxi -pxi -htr -cGC -pxi -gjG -cJj -bQH -moW -idG -qbJ -fte -bkP -iuD -chM -cFs -lNP -gnj -vVY -cFs -hIt -iuD -nQF -hri -icQ -igO -uZs -izV -ica -uZs -uZs -uZs -uZs -voN -feZ -llm -xMS -llm -xMS -aJz -jYP -vlo -pUw -bZu -dsl -ubH -hMT -ubH -jIA -ubH -kUo -kUo -pUw -vCZ -wAA -vCZ -vCZ -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -wgT -wgT -eim -eim -eim -eim -eim -wIP -wIP -wIP -eim -eim -eim -wIP -eim -aYr -sub -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(84,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -rmB -qjw -gJI -gws -sXU -gTU -qxT -hbK -syV -xZL -tLg -iuO -iuO -iuO -wLC -eTz -xsL -yiB -tfp -nca -nca -nca -neC -wnf -sHw -kil -sLC -rUd -xoC -joB -lTV -pxi -pxi -pxi -pxi -pxi -pxi -fgG -lgN -kGZ -vXc -gnM -kFY -knJ -knJ -uCH -eJn -bSS -tki -qsy -chM -cFs -lNP -ueK -vVY -cFs -hIt -bIK -fGN -qqi -rCv -huo -ddh -mQp -mQp -mQp -mQp -mQp -wuE -ddh -mQp -mQp -mQp -mQp -mQp -wuE -uKg -oxE -pUw -vbd -lyW -kUo -mDT -tFg -kUo -kUo -kUo -pUw -pUw -wfb -wfb -wfb -vCZ -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -aRN -dDG -dDG -dDG -unm -gNY -gNY -gNY -xdo -wIP -xdo -eim -xdo -wIP -xdo -gNY -sub -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(85,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dhe -rmB -slo -scC -aIo -txj -mAT -jXo -kxf -dqo -dqo -mOn -mOn -mOn -mOn -shg -pVT -mxI -aIf -bVN -tTJ -tTJ -tTJ -rzX -bOs -mBu -tqb -uEp -mBu -ezX -qnD -puH -poD -idG -sIe -tMq -snU -dbY -eLp -knJ -phu -knJ -sYK -kCr -vKG -buy -wjo -qnW -gNS -dpo -nZF -mpz -jva -qWY -hEa -efG -jva -fXh -ghM -mAP -ezL -pwK -anZ -kGA -tDT -tDT -tDT -tDT -tDT -gTJ -kGA -tDT -tDT -tDT -tDT -tDT -gTJ -uKg -qJy -whz -whz -whz -pUw -pUw -pUw -pUw -pUw -pUw -pUw -vkd -wfb -kSE -wfb -vCZ -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -aRN -dDG -dDG -dDG -dDG -aYr -aYr -aYr -xdo -wIP -xdo -eim -xdo -wIP -xdo -aYr -sub -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(86,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dhe -rmB -wAm -scC -scC -cks -elo -irH -mOn -xWk -uYx -oUx -ljw -xqI -ljw -ufY -wwO -xMa -fij -fQz -fQz -fQz -kLy -wNA -xmz -bDo -gPA -lxr -wpt -jTN -mYW -uTG -wdG -wdG -nXQ -yfn -nXQ -nXQ -rMX -jWL -tRs -oAh -bwd -kOE -vov -vov -pXw -kOE -yiM -hqc -xwC -xqw -dBd -cit -rZc -uFp -dBd -dzx -aKp -sTs -yiM -bkm -mPq -kGA -tDT -tDT -tDT -tDT -tDT -gTJ -kGA -tDT -tDT -tDT -tDT -tDT -gTJ -uKg -ygH -whz -xqS -whz -dhe -dhe -dhe -dhe -dhe -dhe -vCZ -vCZ -vCZ -vCZ -vCZ -vCZ -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -wgT -dDG -dDG -dDG -unm -gNY -gNY -gNY -xdo -wIP -xdo -eim -xdo -wIP -xdo -aYr -sub -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(87,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dhe -rmB -fPM -chX -chX -oKz -mAT -tra -wbH -obU -fBk -wbH -bYA -kyF -kMI -dCt -iZb -gki -uMs -dkO -dkO -sUt -aoB -tFJ -tFJ -tFJ -tFJ -tFJ -tFJ -bgb -tFJ -pyn -maN -maN -het -qfP -dFJ -maN -srz -xEo -xEo -raw -xEo -xEo -eCp -rBK -eIX -vPD -yiM -fyU -yiM -yiM -cFs -lNP -mEG -vVY -cFs -yiM -yiM -ofQ -yiM -lTj -mPq -pPC -nqH -nqH -nqH -nqH -nqH -hGI -pPC -nqH -nqH -nqH -nqH -nqH -hGI -uKg -lhw -eFJ -mFF -whz -whz -whz -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -aRN -dDG -dDG -dDG -dDG -dDG -aYr -aYr -gNY -aYr -aYr -eim -aYr -aYr -gNY -aYr -sub -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(88,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dhe -rmB -hGG -bWb -ePL -omS -gTU -aAB -wbH -iGl -fBk -myB -vhl -uQq -vhl -ufY -lvm -gki -uKM -dkO -dkO -dkO -kmy -tFJ -ddo -wSR -wSR -nQW -wSR -wSR -tFJ -ltw -ltw -ltw -ltw -ltw -ltw -xEo -xEo -xEo -kEd -ahm -mcg -xEo -whn -hBf -mZy -tAL -yiM -roT -ikn -yiM -cFs -lNP -gnj -vVY -cFs -yiM -dYT -sqh -yiM -fhz -kOr -tSz -ahG -cpg -cpg -cpg -mRW -cpg -cpg -mRW -cpg -cpg -cpg -hVl -cpg -iUc -afX -whz -mFF -mFF -mFF -whz -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -aRN -dDG -dDG -dDG -dDG -dDG -aYr -aYr -aYr -aYr -aYr -rNc -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(89,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -eMA -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -tag -rmB -mAT -mAT -mAT -mAT -mAT -vyM -wbH -qDz -hpn -erP -erP -kja -gbU -wha -ppr -gki -hnC -nRo -fJf -cLd -txJ -tFJ -wSR -omm -omm -omm -fpt -oRU -tFJ -nwv -lBt -ltw -tix -pyA -ltw -tqS -gZU -fMs -maH -xlx -mjI -xEo -tHl -oto -lrU -gdF -yiM -xXp -tkv -yiM -cFs -bEt -gnj -rib -cFs -yiM -tkv -sqh -yiM -fsC -fsC -fsC -fsC -dmf -dmf -dmf -tFQ -dmf -dmf -tFQ -dmf -dmf -dmf -fsC -vvK -gWX -vvK -whz -whz -whz -mFF -whz -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -wgT -dDG -dDG -dDG -dDG -dDG -aYr -aYr -gNY -aYr -aYr -eim -aYr -aYr -gNY -aYr -sub -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(90,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -jpF -tag -sOq -aRk -vMy -nZS -hHf -ykX -mWW -wbH -tzB -dRB -oUx -mwe -cHC -jKq -jKq -jKq -jKq -eRK -jKq -jKq -hHw -jKq -tFJ -wSR -omm -mrY -piG -fpt -eza -tFJ -fOG -iTP -rQW -rvP -pZu -ltw -hXF -esY -iqh -mIz -ohu -gXz -xEo -bqW -iho -aRl -tLq -yiM -eiV -yiM -yiM -cFs -lNP -gnj -vVY -cFs -yiM -yiM -xud -yiM -dhe -dhe -dhe -fsC -ieW -ieW -ieW -ieW -ieW -ieW -ieW -ieW -ieW -ieW -fsC -dOs -dBu -dvn -xvd -dhe -whz -mFF -whz -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -wgT -dDG -dDG -dDG -dDG -unm -gNY -gNY -xdo -wIP -xdo -eim -xdo -wIP -xdo -aYr -sub -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(91,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -jpF -tag -bpp -idF -jaH -jaH -koQ -nxm -yjs -mOn -mcM -cbG -wbH -wbH -umL -jKq -ttA -lEN -vHP -uQQ -jKq -jYO -kwU -clM -tFJ -wSR -omm -hDd -piG -fpt -txX -tFJ -bCu -aLB -ltw -hlX -pjt -ltw -vHq -nmf -bmb -rkf -eci -mNN -xEo -lQq -xNt -cCW -oBx -yiM -xXp -gnU -yiM -cFs -lNP -gnj -vVY -cFs -yiM -cfy -sqh -yiM -dhe -dhe -dhe -fsC -ieW -ieW -ieW -ieW -ieW -ieW -ieW -ieW -ieW -ieW -fsC -ugc -plI -xBd -xvd -dhe -whz -mFF -whz -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -wgT -dDG -dDG -dDG -dDG -dDG -aYr -aYr -xdo -wIP -xdo -wIP -xdo -wIP -xdo -aYr -sub -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(92,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -jpF -tag -oQr -mJw -mJw -idF -tHz -ykX -rtK -gYC -sLT -szN -hhI -uqC -fnF -jKq -bPp -iZM -mNp -pTr -iRZ -pTr -kwU -pTr -tFJ -qca -omm -omm -omm -omm -omm -tFJ -ltw -ltw -ltw -cFn -kIB -jXY -esY -fpR -rnc -rkf -aXM -qiN -xEo -hKL -ixO -urP -kOE -yiM -kQx -gCD -yiM -cFs -lNP -gnj -vVY -cFs -yiM -auE -bSG -yiM -dhe -dhe -dhe -fsC -ieW -ieW -ruI -ieW -ieW -ieW -ieW -ieW -ieW -ieW -fsC -lpu -cvI -hbg -xvd -dhe -whz -mFF -whz -dCh -dCh -dCh -dCh -dCh -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -wgT -dDG -dDG -dDG -dDG -dDG -aYr -aYr -xdo -wIP -xdo -wIP -xdo -wIP -xdo -gNY -sub -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(93,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -tag -fIZ -tHz -tHz -tHz -pqz -tag -oLZ -wBw -oLZ -izR -iZb -iZb -iZb -jKq -pTr -drq -nLZ -pTr -iRZ -ohd -aBM -gwR -tFJ -wSR -omm -dqr -txX -omm -dhe -dhe -dhe -dhe -ltw -tKH -mSq -ltw -sWY -pbf -tJl -dch -llC -qzP -xEo -kOE -kOE -kOE -kOE -yiM -kEX -yiM -yiM -cFs -lNP -gnj -vVY -cFs -yiM -yiM -tBu -yiM -dhe -dhe -dhe -fsC -ieW -ieW -ieW -ieW -ieW -ieW -ieW -ieW -ieW -ieW -fsC -xvd -xvd -xvd -xvd -dhe -whz -mFF -xqS -dCh -iIJ -lxv -jxS -aMU -aMU -aMU -dDG -dDG -dDG -lTX -dDG -dDG -dDG -dDG -dDG -dDG -dDG -wgT -aRN -aRN -aRN -wgT -wgT -wgT -wIP -wIP -eim -wIP -eim -eim -eim -eim -aYr -sub -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(94,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -tag -buQ -aJk -aJk -aJk -aJk -tag -dLB -dLB -oLZ -ooA -iIK -fsQ -uKy -jKq -pTr -ohd -rJH -pTr -iRZ -qSE -cRi -vwZ -tFJ -wSR -vMd -fpt -fpt -omm -dhe -dhe -dhe -dhe -ltw -ltw -ltw -ltw -xEo -xEo -xEo -xEo -xEo -xEo -xEo -dhe -dhe -dhe -dhe -dDG -djs -yiM -tAq -cFs -lNP -gnj -vVY -cFs -jYK -yiM -geO -yiM -dhe -dhe -dhe -fsC -sxU -ieW -ieW -ieW -ieW -ieW -ieW -ieW -ieW -jdz -fsC -dhe -dhe -dhe -dhe -dhe -whz -mFF -xqS -dCh -xJj -rBC -xJj -iRS -xJj -oWV -wgT -aRN -wgT -aRN -wgT -wgT -aRN -aRN -wgT -aRN -aRN -wgT -dDG -dDG -dDG -dDG -dDG -dDG -aYr -aYr -aYr -xdo -wIP -xdo -wIP -xdo -gNY -sub -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(95,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -tag -tag -tag -tag -tag -tag -tag -hgJ -hga -oLZ -lWR -kYP -kYP -kvf -jKq -wqu -xrq -oWr -pTr -iRZ -pTr -nuX -pTr -tFJ -wSR -omm -wlc -hIM -omm -dhe -dhe -tFJ -tFJ -tFJ -tFJ -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dOi -klT -cFs -cFs -lNP -gnj -vVY -cFs -cFs -klT -aRN -dDG -dDG -dhe -dhe -fsC -ieW -ieW -ieW -ieW -ieW -ieW -ieW -ieW -ieW -ieW -fsC -dhe -dhe -dhe -dhe -dhe -whz -mFF -xqS -dCh -nwE -xJj -rBC -aMU -aMU -aMU -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -aYr -aYr -aYr -xdo -wIP -xdo -wIP -xdo -aYr -sub -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(96,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dhe -dhe -dhe -dhe -dhe -dhe -iZb -iBV -dLB -oLZ -glD -fsQ -fsQ -fsQ -jKq -awB -pTr -oIz -mvn -jKq -bzM -nuX -csQ -tFJ -wSR -omm -omm -ryO -omm -omm -omm -tFJ -mKx -yce -tFJ -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dOi -klT -cFs -cFs -bEt -gnj -rib -cFs -cFs -klT -aRN -dDG -dDG -dhe -dhe -fsC -ieW -ieW -ieW -ieW -ieW -ieW -ieW -ruI -ieW -ieW -fsC -dhe -dhe -dhe -dhe -dhe -whz -mFF -xqS -dCh -dCh -xJj -kIv -dCh -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -unm -gNY -gNY -xdo -wIP -xdo -wIP -xdo -aYr -sub -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(97,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dhe -dhe -dhe -dhe -dhe -dhe -iZb -iZb -fEu -oLZ -oLZ -oLZ -oLZ -oLZ -rrk -rrk -rrk -ayo -rrk -rrk -rrk -ulo -tFJ -tFJ -wSR -omm -jPm -wSR -wSR -wSR -wSR -hBy -kwY -sjs -tFJ -dhe -dhe -dhe -dDG -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dOi -klT -cFs -cFs -lNP -gnj -vVY -cFs -cFs -klT -aRN -dDG -guj -dhe -dhe -fsC -ieW -ieW -ieW -ieW -ieW -ieW -ieW -ieW -ieW -ieW -fsC -dhe -dhe -dhe -dhe -dhe -whz -mFF -xqS -xqS -dCh -nfl -fST -dCh -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -aYr -gNY -aYr -aYr -aYr -gNY -aYr -sub -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(98,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dhe -dhe -dhe -dhe -dDG -dDG -iZb -aRN -xXs -aRN -iZb -dhe -dhe -dhe -dhe -dhe -rrk -gPX -mtw -mtw -mtw -cvY -omm -fpt -sVN -sVN -sVN -kAL -ozD -atI -piG -tFJ -fjk -jTj -tFJ -dhe -dhe -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -xFs -dOi -klT -cFs -cFs -lNP -gnj -vVY -cFs -cFs -klT -aRN -xFs -dDG -dhe -dhe -fsC -ieW -ieW -ieW -ieW -ieW -ieW -ieW -ieW -ieW -ieW -fsC -dhe -dhe -dhe -dhe -dhe -whz -mFF -mFF -eDY -lKf -pdK -yap -dCh -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -unm -sub -sub -sub -sub -sub -sub -sub -sub -gNY -uwO -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(99,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -uvp -vrh -dcR -tFJ -omm -omm -kgh -omm -iun -omm -ixl -wSR -omm -omm -omm -omm -omm -omm -tFJ -tFJ -tFJ -tFJ -dDG -dDG -dDG -cuX -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dOi -yiM -tAq -cFs -lNP -gnj -vVY -cFs -jYK -yiM -aRN -dDG -dhe -dhe -dhe -fsC -fsC -fsC -fsC -bDq -dmf -dmf -bDq -fsC -fsC -fsC -fsC -whz -dhe -dhe -dhe -dhe -whz -wjd -xqS -xqS -dCh -xJj -bnx -dCh -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(100,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -vrh -xTJ -dcR -ybE -tAi -jxH -fpt -omm -eqW -dfd -wSR -uti -omm -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dDG -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dOi -klT -bOV -bOV -xyj -aXm -iGz -bOV -wvB -klT -aRN -dDG -dDG -dhe -dhe -dhe -dhe -fsC -hfy -ufO -kwN -eMY -ufO -ufO -fsC -xqS -xqS -whz -whz -whz -whz -whz -whz -wjd -whz -whz -dCh -dCh -dCh -dCh -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -uwO -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(101,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -cwf -qtr -dcR -ybE -uvp -omm -cXj -xcC -omm -bYa -omm -fpt -fpt -aGq -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dOi -klT -nJX -nJX -lYo -nJX -bKq -nJX -nJX -klT -aRN -dDG -dDG -dhe -dhe -dhe -dhe -fsC -ufO -bTA -rMC -bTA -qIT -qIT -rJt -wjd -wjd -wjd -wjd -wjd -wjd -wjd -wjd -wjd -whz -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -unm -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(102,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -cwf -uvp -dhe -omm -omm -omm -omm -mYA -omm -omm -fpt -aGq -dDG -dDG -wVm -dDG -htM -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dOi -pdW -gNN -hyg -kDz -hyg -vYw -hyg -hyg -pdW -aRN -dDG -dDG -dhe -dhe -dhe -dhe -fsC -fsC -nRX -yan -rAl -gmB -fsC -fsC -whz -whz -whz -whz -whz -whz -whz -whz -tov -whz -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(103,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -sIm -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -jKq -bsf -olz -rFb -omm -cpn -omm -dhe -dhe -qmf -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -cuX -dDG -dOi -pdW -hFy -hFy -jkv -myM -bfr -hFy -aNm -pdW -aRN -dDG -dDG -dhe -dhe -dhe -dhe -dhe -fsC -fsC -fsC -fsC -fsC -fsC -dhe -dhe -dhe -dhe -dhe -whz -aTz -hhv -whz -tov -whz -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(104,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -jKq -dfM -pTr -iRY -omm -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dOi -izU -uCm -eSz -tCl -tFZ -wvE -eSz -poh -izU -aRN -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -whz -edw -tpB -caG -plY -whz -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -aRN -aRN -aRN -aRN -aRN -dhe -dhe -wZm -dhe -dhe -dhe -dhe -dhe -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(105,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -xFs -dDG -dDG -dDG -dDG -dDG -xFs -dDG -dhe -dhe -dhe -dhe -dhe -dhe -jKq -tBm -lyS -txL -omm -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -xFs -dOi -pdW -eSz -eSz -tCl -tFZ -wvE -eSz -eSz -pdW -aRN -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -whz -irI -tpB -whz -diA -whz -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -wZm -aRN -aRN -kMh -kMh -kMh -aRN -aRN -aRN -aRN -aRN -dhe -dhe -dhe -dhe -dDG -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(106,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -jKq -jKq -iWE -jKq -omm -omm -omm -omm -omm -omm -omm -omm -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dOi -pdW -eSz -eSz -leJ -tFZ -fpQ -eSz -eSz -pdW -aRN -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -kRL -kRL -kRL -whz -whz -whz -whz -diA -whz -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -aRN -aRN -aRN -kMh -kMh -kMh -kMh -kMh -kMh -kMh -kMh -aRN -aRN -aRN -dhe -dhe -dDG -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(107,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -buV -vbA -tep -tUT -lik -qJl -piE -gGn -sEP -uPE -buV -dhe -dhe -dhe -dhe -omm -omm -omm -omm -omm -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dOi -pdW -eSz -eSz -tCl -tFZ -wvE -eSz -eSz -pdW -aRN -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -kRL -fsy -hEj -drx -spv -ykW -whz -diA -whz -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -aRN -kMh -kMh -kMh -kMh -kMh -kMh -kMh -kMh -kMh -kMh -kMh -kMh -aRN -wZm -jpF -jpF -jpF -jpF -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(108,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -buV -oBm -hJc -eCa -pID -eaQ -pku -cLB -spI -gRd -buV -dhe -dhe -dhe -dhe -hnm -wvC -rPS -rPS -omm -omm -omm -omm -omm -omm -dhe -dhe -dhe -dDG -dOi -pdW -eSz -eSz -tCl -tFZ -wvE -eSz -eSz -pdW -aRN -dhe -dhe -dhe -dhe -dhe -dhe -dhe -xBk -xBk -xBk -xBk -xBk -xBk -xBk -dhe -kRL -fSi -jPU -aAc -psp -wfn -tSq -diA -whz -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -aRN -kMh -kMh -kMh -kMh -kMh -kMh -kMh -kMh -kMh -kMh -kMh -aRN -aRN -dhe -jpF -jpF -jpF -jpF -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(109,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -qMx -qMx -qMx -qMx -qMx -qMx -qMx -buV -lUo -fuI -qek -pwd -swZ -atH -gWj -ogl -wFC -buV -pwH -pwH -pwH -pwH -hnm -mPF -rPS -xDr -cfG -noU -nAR -pEu -nOh -omm -dhe -dhe -dhe -dDG -djs -izU -uCm -eSz -tCl -tFZ -wvE -eSz -poh -izU -geO -izU -dhe -dhe -dhe -dhe -dhe -xBk -xBk -vbo -fJr -fzL -iKQ -mdP -xBk -xBk -kRL -pxg -tKo -srS -rxo -wfn -whz -xqS -whz -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -lPz -kMh -kMh -kMh -kMh -kMh -kMh -kMh -kMh -kMh -aRN -aRN -aRN -dhe -dhe -jpF -jpF -jpF -jpF -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(110,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -qMx -sEN -bId -bTs -cxN -gTm -nsA -buV -mac -kJM -hTJ -spI -pDQ -spI -srU -pRq -jVl -buV -jjn -gmc -mAW -bJT -hnm -kDC -lEH -fbM -hnm -dxR -rZX -ejX -cwg -omm -dhe -dhe -dhe -izU -gMl -izU -izU -eSz -tCl -tFZ -wvE -eSz -izU -izU -dnp -izU -dhe -dhe -dhe -dhe -dhe -xBk -voA -sKO -sKO -bCp -njJ -vcv -iiP -xBk -xRx -lkN -xRx -kRL -lBQ -gnO -whz -whz -whz -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -aRN -aRN -aRN -kMh -kMh -kMh -kMh -kMh -aRN -aRN -aRN -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -eMA -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(111,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -qMx -iCj -cgn -fAK -gTm -sZJ -gia -buV -qfK -rfJ -xfa -dzK -vNd -gQA -mrm -hYM -lQf -cZn -kEy -fZK -dnn -kEy -pvK -pvK -pvK -pvK -pvK -gTM -mUR -pvA -nSO -omm -dhe -dhe -dhe -izU -rOZ -rcf -izU -eSz -tCl -tFZ -wvE -eSz -izU -aRD -qVu -izU -dhe -dhe -dhe -dhe -dhe -xBk -voA -sKO -sKO -lKo -mvL -bdR -uHf -xBk -liI -jnk -dyB -xRx -xuA -usW -uFB -uBr -uBr -wdj -wdj -wdj -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -wZm -dDG -aRN -aRN -kMh -kMh -kMh -kMh -aRN -dDG -dDG -wZm -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(112,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -qMx -mlJ -iuz -spB -qZa -gGd -ovh -buV -lsH -lsH -lsH -lsH -vqg -lsH -lsH -lsH -lsH -buV -vvW -sbx -sOh -vaC -wei -grp -oNr -aQo -pvK -tCn -mkJ -mwi -sBN -omm -dhe -dhe -dhe -izU -pEH -qMT -izU -eSz -tCl -tFZ -wvE -eSz -izU -vKg -xqL -izU -dhe -dhe -dhe -dhe -dhe -xBk -xBk -ewF -gTr -eDO -sXb -fkb -kkw -xBk -bWU -ekc -gFV -xRx -rfk -eLs -cpl -uBr -rbC -sKl -foD -wdj -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -aRN -aRN -aRN -aRN -aRN -aRN -dDG -cuX -dDG -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(113,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -qMx -mjW -gTm -hTS -sZJ -bvT -chV -buV -fbq -nRV -ipC -sLi -kLZ -ipC -ipC -erQ -rwP -buV -kBS -dsd -wlE -tzm -wei -qLR -fHy -fHy -pvK -gdN -oWT -aiE -fNv -omm -dhe -dhe -dhe -izU -trz -izU -izU -eSz -tCl -tFZ -wvE -eSz -izU -izU -fRZ -jyH -jyH -jyH -jyH -jyH -jyH -jyH -xBk -xBk -xBk -xBk -fyG -bdR -jaQ -xBk -oaM -yfH -mXd -xRx -neE -rJE -qHq -wdj -fYo -bEM -iXw -wdj -wdj -wdj -dhe -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(114,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -qMx -nyW -oyx -xow -sZJ -nrn -cOI -buV -jkw -jap -lMU -jap -gLH -inY -dNE -dNE -dok -buV -tsZ -pCt -eFt -sas -wei -uMI -fKF -urL -pvK -tKs -wkG -oqg -cJk -omm -dhe -dhe -dhe -izU -mik -seG -izU -eSz -leJ -tFZ -fpQ -eSz -izU -seG -xqL -jyH -vQM -cDf -ube -cFd -wrT -jyH -yeT -sGF -aTb -mAK -pnV -wPi -mnX -xBk -gDh -ekc -uWl -xRx -dCF -tAo -kce -wdj -pwe -bdK -iTS -gYg -wsx -wdj -wdj -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(115,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -xFs -dDG -qMx -cWO -uol -uzh -gTm -sZJ -drW -buV -thV -xoS -vqp -fhy -ogb -fhy -kMw -bkd -jje -buV -rwf -uuO -hfv -bNh -wei -qLR -wei -wei -pvK -hnm -hnm -vrZ -hnm -omm -alV -omm -dJJ -dJJ -pEH -uoH -izU -eSz -tCl -tFZ -wvE -eSz -izU -cbr -xqL -jyH -sPX -lrV -pvB -wJW -aPh -jyH -jiy -qYZ -qhJ -vCS -oHR -iWl -rrE -xBk -bBy -vCk -xhs -xRx -fXv -fXD -uER -wdj -tgw -kHy -fxM -sdc -grU -cgX -wdj -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -dhe -dDG -dDG -dDG -dDG -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(116,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -qMx -qMx -qMx -qMx -jRa -oEV -cJp -buV -buV -buV -oJZ -oJZ -knR -oJZ -oJZ -buV -buV -buV -pwH -lVg -boR -pwH -wei -jIX -wei -aMI -sxC -sxC -sxC -ltH -sxC -sxC -xAu -pFP -dqQ -dJJ -slr -izU -izU -eSz -tCl -uwT -wvE -eSz -izU -izU -ikB -jyH -nRR -oGw -evg -opP -cbl -jyH -bfE -jVw -xgq -xBk -mAK -mAK -mAK -xBk -xRx -uMf -xRx -xRx -lBQ -sAr -lBQ -wdj -dPS -vBT -mtK -uKY -cIC -xQg -wdj -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -dhe -dhe -dDG -dDG -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(117,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dJJ -pwo -awS -voi -cmM -sxC -sxC -sxC -jzG -qLH -sxC -sxC -sxC -qEU -sxC -sxC -uAh -sxC -jWQ -lfO -wMG -qEU -fDz -xFe -xFe -ets -cSk -lgM -lgM -hze -hze -cOx -faz -fba -tGW -uwA -lav -iUd -dIC -ppC -lav -voZ -lNj -dVP -jyH -jyH -cJt -adi -cur -kfb -jyH -duf -jVw -hmJ -xbz -sYU -hiI -gNk -wyH -fQK -sZo -mIZ -vGB -gNk -xuE -aTb -wdj -aYX -aYX -wdj -dKN -eFr -bsE -wdj -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -dhe -dDG -htM -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(118,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dJJ -bJp -xyg -bRS -hRq -wEl -wEl -wEl -nGB -vot -lgM -lgM -lgM -pyb -pyb -pyb -nji -xFe -pha -xFe -xFe -xFe -tgY -wmJ -mXb -oXt -vpY -vpY -iib -vpY -ewt -fTp -thl -xQB -dhw -rqG -kNT -nNx -grm -eMZ -kNT -poG -oWe -dTr -xzq -vYI -lwK -new -oam -lum -czd -uAP -iys -thD -qws -wma -qws -qws -qws -lno -rDJ -lno -lno -qws -xZh -tam -ngU -fSe -boI -fuV -dEi -sME -udb -wdj -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -wZm -dDG -dDG -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(119,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dhe -dhe -dJJ -wmr -rKM -uFe -mZC -bEh -bEh -vfH -bEh -qvE -nVX -ewt -tMh -hVp -tMh -kUx -kGk -dga -dwH -sHM -dsq -cam -xey -xNu -xNu -wLk -wIu -wIu -xNu -xNu -nVF -bkH -jMn -klj -dTr -lPP -eSz -tCl -tFZ -wvE -eSz -gCX -xAW -knM -knM -bkQ -woW -chH -ctF -lum -rTk -dyI -tDq -nYk -kpd -iug -xav -qdK -qdK -xKP -qdK -cWx -kES -qGc -utK -srE -srE -rtP -eXr -wdj -wdj -wdj -wdj -wdj -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(120,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dhe -dhe -tFm -tFm -kkO -wEr -kkO -tFm -tFm -uxn -kkO -lDT -tFm -hvW -wmJ -dTO -qbM -rMv -eSx -fCf -eSx -nAh -eSx -eSx -eSx -xNu -mCh -lft -kqx -xFH -rXV -xNu -xNu -xNu -xNu -mnH -rOu -lPP -lFC -njT -tiR -vPW -lFC -gCX -eOi -agt -plV -khX -pvc -vEe -qOw -rxB -xdY -tfy -sJz -kpd -yjU -jtr -jtr -jtr -xSZ -kLC -xSZ -jtr -jtr -jtr -joA -xvL -uGL -tsH -sOH -qNI -mBV -mla -jYS -jYS -jYS -jYS -jYS -oGJ -nXp -nXp -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(121,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dhe -dhe -tFm -bUt -aND -gfQ -pKM -jHG -tFm -vvl -hNd -yig -tFm -tFm -cXx -eUn -cXx -eSx -eSx -mro -ubo -bjz -glA -vWy -eSx -fMD -wnb -fNH -mBa -rLF -uFA -hbi -qrk -ebA -ebA -txr -dhw -lPP -nbS -cfS -sOY -iEb -nbS -kkd -oWe -vJF -wyd -wyd -wyd -wyd -wyd -wyd -wyd -dyI -tDq -dRM -jtr -jtr -ecn -kWR -dZX -nwd -xNq -jts -nrR -jtr -fxq -jtr -jtr -keD -jHN -ncS -sHm -sQR -jYS -fOv -ygi -foF -jYS -qgt -nXp -qaO -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(122,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dhe -dhe -tFm -uVX -duL -hMD -hMD -mpm -pah -mDl -xmj -xzS -dTc -tFm -oGi -xfg -oJN -eSx -xuK -mDJ -mro -mDJ -mro -iQy -qAm -mUX -prk -ocp -ocp -ocp -ocp -geI -iWY -ebA -ebA -dox -toe -izU -dSL -cPS -sOY -xof -dSL -izU -eYq -vJF -lDt -kLV -uPk -gHh -cen -gcV -iZh -dyI -tDq -txD -jtr -rNl -xlM -rtL -xdm -xdm -cUh -aUi -xdx -hVi -vUp -rgI -jtr -ayW -jPe -qNI -paz -gOp -jYS -mYc -cjT -cWI -jYS -jQJ -jQJ -qaO -qaO -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(123,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dhe -tFm -tFm -hBC -ikC -gyf -gyf -jsg -rpu -bqG -yis -mMj -hCH -tFm -aYB -kPq -mwN -fCi -fPN -jnc -uVg -stQ -jxl -ybw -fhD -dIa -yew -mFh -aXr -gYH -gYH -vmd -cRn -xUA -wIu -rrp -dTr -hmY -jPQ -rPU -sOY -biX -fpE -gqS -lNQ -vJF -rks -pwx -ocJ -gKB -qAk -qec -iJx -wij -vsO -oJu -jtr -qVb -oIU -oiy -dpE -eqL -rWJ -cYE -xOn -dkW -lXy -dkW -xSZ -dyI -edI -jYS -jYS -jYS -jYS -cTc -dVQ -cZp -kPM -jQJ -qaO -qaO -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(124,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dhe -tFm -nzY -xYc -uYf -lDP -lDP -qzq -kkO -loq -loq -ksJ -xFa -kkO -sDG -kPq -hrD -ykn -nOE -uLO -lto -uLO -hYH -iQy -fhD -hUy -gYH -gYH -gYH -uPD -mFh -aXr -qfh -lfE -aUp -vik -dhw -vSM -tAF -rPU -ojC -biX -sZG -vIq -mMY -eHk -lvX -bjF -avr -avr -rfI -uPz -iZh -dyI -cJL -xSv -xSZ -rkH -oIU -jRr -rbH -wbT -dvQ -uZQ -xOn -dkW -dkW -pXJ -xSZ -emr -dxw -jYS -etp -lgV -jYS -xWI -tEJ -cZp -jQJ -jQJ -jQJ -qaO -vzt -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(125,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dhe -dhe -tFm -dIM -ugR -oqY -jek -tyh -eQr -tFm -loq -loq -txB -eCs -cSU -oxd -vAr -njV -rMK -fPN -wnv -hrR -cvv -hxF -ybw -uQy -leX -gYH -rAw -pwL -tvN -gYH -gYH -nJf -lfE -aUp -rOu -tZD -jEO -dSL -bar -ebN -bxs -dSL -jEO -mrC -uwY -jvk -xck -oas -pkN -xck -djJ -wyd -enF -qWK -wap -bDu -dbK -elW -iJy -whF -ecW -dXo -lTc -lrQ -xOn -dkW -dHv -xSZ -dyI -oZZ -qvS -xrA -oOR -xKs -tGf -gUH -dGW -cjT -jQJ -jQJ -qaO -qaO -qaO -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(126,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dhe -dhe -tFm -tFr -quG -uYf -lDP -lDP -qzq -kkO -loq -loq -ksJ -rVz -lLw -kqy -kPq -lQp -pSm -nOE -fPN -vkH -vas -mWS -iQy -fhD -hUy -gYH -gYH -gYH -uPD -mFh -aXr -qfh -lfE -aUp -ukL -dTr -jJV -jPQ -rPU -lxf -biX -fpE -oCC -pWt -buT -tpr -mmA -bom -bom -izo -uPz -iZh -dyI -qWK -xSv -xSZ -hqV -oIU -jRr -gfd -krE -bvK -eGn -xOn -xOn -dkW -sIq -xSZ -bkM -eIw -jYS -nPI -uye -jYS -ifq -jvp -cjT -jQJ -jQJ -qaO -qaO -qaO -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(127,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dhe -dhe -tFm -tFm -hkL -gTi -kjv -kjv -pai -fRm -clE -dQZ -gFg -ssE -tFm -aDE -kPq -afm -eSx -sfz -nOE -lNa -aOp -vJm -xYM -fhD -fpp -pyt -mFh -aXr -gYH -gYH -fpo -uEM -kDB -wIu -dPe -dhw -uvD -tAF -rPU -sOY -biX -sZG -mnV -dvI -vJF -rks -vEK -gpS -pnW -bwv -iQY -wON -wEm -qEh -vrj -jtr -gsg -oIU -xmP -dZX -uEL -ivx -cYE -xOn -dkW -dkW -dkW -xSZ -dyI -mkK -jYS -jYS -jYS -jYS -noK -ajS -aIT -pSi -jQJ -lrG -qaO -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -aYr -aYr -aYr -aYr -aYr -eMA -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(128,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dhe -dhe -dhe -tFm -bJl -uYf -lDP -lDP -ufP -iKC -quG -fYy -eHh -fJt -tFm -hPa -qLX -wxb -eSx -blX -cIB -onI -cTl -qwe -iLi -lkJ -fKQ -num -teJ -teJ -teJ -teJ -geI -eeR -ebA -ebA -lXt -xdZ -izU -dSL -cPS -sOY -xof -dSL -izU -dMN -vJF -lDt -mJc -kin -juV -uAx -iSj -iZh -dyI -tDq -bNX -jtr -iOc -eHY -rtL -koa -koa -ufG -lxk -uem -lCk -yfU -dxi -jtr -ayW -cHP -adM -obH -csY -jYS -mUn -gio -mzm -jYS -jQJ -qaO -qaO -qaO -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(129,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dhe -dhe -dhe -tFm -rdr -wTJ -osK -aHf -eKO -tFm -oCr -ksu -nUO -tFm -tFm -cXx -jGs -cXx -eSx -eSx -slm -jII -xKC -sIC -wKU -eSx -gFb -lfE -qth -mBa -dBr -tzk -bmW -wSo -ebA -ebA -dox -lLg -aKv -nbS -dTe -sOY -iEb -nbS -tqy -qjf -vJF -wyd -wyd -rks -rks -rks -wyd -wyd -qrW -tDq -eYv -jtr -jtr -iUK -jtZ -vUU -iKt -oXz -gNE -eRn -jtr -jtr -jtr -jtr -dyI -qZw -cBF -jqP -jLK -jYS -qrR -ipS -fkR -jYS -qgt -gmP -qaO -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(130,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dhe -dhe -dhe -tFm -tFm -kkO -sSM -kkO -tFm -tFm -shR -kkO -fbP -tFm -mqP -wxI -kwq -uQh -doe -eSx -mXO -eSx -luM -eSx -eSx -eSx -xNu -fNf -vVm -frm -hSu -qzu -xNu -xNu -xNu -xNu -hWJ -rOu -swU -wYQ -njT -mxj -vPW -wYQ -tqy -ebF -vsR -xzq -fnb -fWd -fWd -cyt -qNI -qIf -lEL -tDq -pnU -itk -jtr -jtr -jtr -xSZ -lJC -xSZ -jtr -jtr -jtr -qIM -lpF -aka -lEL -kSV -adM -wdv -xtp -jYS -jYS -jYS -jYS -jYS -oGJ -oGJ -qaO -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(131,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dhe -dhe -dhe -dJJ -hre -iKP -oeo -cqp -fTK -fTK -hjX -fTK -ehI -okb -cpT -tMh -hVp -tMh -oCV -xgN -uAh -aYT -pEF -wtn -kcK -xMw -xNu -xNu -wIu -wIu -wIu -xNu -xNu -awS -gNQ -peu -ciy -vwb -swU -eSz -tCl -tFZ -wvE -eSz -tqy -dvI -hZb -rOu -fGc -eSz -eSz -eSz -qNI -deh -jVw -tDq -vwL -pnU -sYU -gNk -gNk -gNk -qOX -gNk -eqq -lbP -exo -wUH -iys -qws -qws -udh -gVO -aaj -rRn -mBd -jMM -adM -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(132,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dhe -dhe -dhe -dJJ -uuM -xyg -wAj -gQU -uJr -opc -gQU -gQU -fzj -pyb -pyb -pyb -pyb -pyb -pyb -pyb -vNh -fGU -pyb -pyb -pyb -bxm -wxI -yat -sxC -sxC -sxC -tdr -sxC -tMh -fTp -thl -iry -dTr -fAF -uLX -brr -oTt -fbk -uLX -xXb -xXq -vMl -gXj -csZ -paV -eSz -eSz -qNI -xKf -pps -tmS -qws -qws -wma -qws -mJq -qws -suO -lno -lno -lno -tCo -qws -bjN -nMg -qdK -xom -gVO -uwv -wse -xTm -vPo -adM -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(133,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dhe -dhe -dhe -dJJ -aTA -nVF -pMM -vpY -vpY -bmF -vpY -vpY -vpY -lMA -vpY -vpY -pMM -vpY -foE -oCN -vpY -cCj -vpY -giu -pMM -qCQ -pyb -pyb -bbz -pyb -pyb -pyb -gdW -gdW -plJ -xAK -tvD -cpw -xMj -cTE -ddJ -vJT -iTr -cTE -wEg -vbL -gMZ -whz -cIM -whz -xCc -xCc -clT -clT -sbO -tDq -kpd -qdK -iug -scA -pWZ -qVO -bhA -ojj -xav -qdK -pWZ -qdK -sun -qNI -ugt -ugt -ugt -ugt -ugt -ugt -ugt -adM -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(134,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dhe -dhe -dhe -dJJ -dJJ -dJJ -qCo -qCo -kzm -kSI -kzm -qCo -kzm -pKS -kzm -qCo -qCo -gyJ -nso -oYs -nso -gyJ -lZW -lgX -lZW -gpj -iIc -swY -eAg -vpY -vpY -juD -vpY -wHg -jaz -dJJ -qHH -izU -izU -eSz -tCl -dja -wvE -eSz -izU -izU -tRr -whz -pio -whz -fLb -sij -ceC -xCc -iFP -tDq -cMa -bFq -bFq -bFq -gBz -bFq -bFq -bFq -ugt -ugt -ihg -ugt -ugt -ugt -ugt -dgR -cqn -ugt -oGv -trf -ugt -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(135,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dhe -dhe -dhe -dhe -dhe -dhe -dhe -qCo -iZi -xMQ -lXc -vft -lQo -yjv -gcP -nyw -psJ -qCo -fHW -mJM -baI -dxo -tBz -lZW -hes -lZW -iVk -qJC -qJC -iVk -eBf -eBf -hGc -eBf -eBf -eBf -eBf -cxq -mSn -izU -eSz -tCl -tFZ -wvE -eSz -izU -qqp -tBA -whz -pio -whz -vlb -iBP -fLR -vab -qGu -tDq -hrS -bFq -jzt -nPD -jRk -euC -xvO -dUm -ugt -grc -oEt -uNN -ugt -hRn -ugt -rWU -amh -ugt -iAh -hQU -ugt -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(136,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dhe -dhe -dhe -dhe -dhe -dhe -dhe -qCo -plH -smQ -smQ -smQ -jxF -smQ -tRd -smQ -qPE -qCo -ncN -sGZ -mBW -rxr -oRu -lZW -hes -lZW -fTu -muY -vec -eHf -eBf -uqr -igj -gnu -kjV -hZR -eBf -cxq -seG -izU -eSz -leJ -tFZ -fpQ -eSz -izU -seG -vFH -whz -pio -whz -umS -uwj -jzK -xCc -tqu -acd -sun -bFq -brG -ctC -qun -uvY -xNH -upx -ugt -gLO -gtv -afZ -ugt -gyk -ugt -jkx -gWV -ugt -gWV -bRJ -ugt -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(137,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dhe -dhe -dhe -dhe -dhe -dhe -dhe -qCo -vRZ -kiF -kiF -kiF -pzt -kiF -tRd -yeR -pNd -qCo -pZv -pYP -vJk -vME -mXK -lZW -hes -lZW -dfj -ihD -gYe -pfb -eBf -lJS -bRL -gRc -oRc -hZR -eBf -vry -izU -izU -eSz -tCl -tFZ -wvE -eSz -izU -izU -tDN -whz -pio -whz -niv -dmt -xOM -oIa -oIa -kbl -oIa -bFq -bFq -ksB -iYm -bAQ -uOl -xKH -ugt -ugt -oLl -ugt -ugt -sIa -ugt -bin -rkd -ewk -tmU -fbt -ugt -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(138,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dhe -dhe -dhe -dhe -dhe -dhe -dhe -qCo -tyY -gKs -smQ -smQ -smQ -smQ -qcQ -tPh -kxg -qCo -gyJ -gyJ -gyJ -gyJ -lZW -lZW -hes -vuo -lDs -pKh -pKh -kff -eBf -xcn -gRF -gqz -kmI -iSy -eBf -cxq -qMT -izU -eSz -tCl -tFZ -wvE -eSz -izU -vKg -tBA -whz -pio -whz -xCc -gLm -xCc -oIa -quR -hOU -lJx -qcF -bFq -rcD -nPe -nPe -nPe -msF -ugt -bHQ -iTt -eug -pUU -hDW -oUC -nIj -mqz -xlw -xlw -rpP -ion -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(139,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dhe -dhe -dhe -dhe -dhe -dhe -dhe -qCo -oaT -qHw -oGf -ueY -ktJ -bqv -lLS -qHw -jgm -qCo -dhe -dhe -dhe -dhe -dhe -dhe -bFd -lZW -vWk -uXg -iaU -wrc -eBf -eBf -eBf -eBf -eBf -eBf -eBf -khY -aBs -izU -eSz -tCl -tFZ -wvE -eSz -izU -lbi -vuS -whz -pio -whz -cyh -rxp -jXH -oIa -xgC -ekT -dvK -bLQ -bFq -qgd -gnI -ngS -mTe -kcZ -ugt -pbn -xug -dGn -pfo -jfN -kxb -uQK -qQZ -qQZ -xlw -oVg -gRe -jCy -dhe -dhe -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(140,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dhe -dhe -dhe -dhe -dhe -dhe -dhe -qCo -qCo -qCo -qCo -qCo -qCo -qCo -qCo -qCo -qCo -qCo -dhe -dhe -dhe -dhe -dhe -dhe -dhe -lZW -iVk -iVk -iVk -iVk -iVk -dhe -dhe -dhe -dhe -dhe -izU -wut -izU -izU -eSz -tCl -tFZ -wvE -eSz -izU -izU -mhE -whz -pio -whz -rAz -rZP -xJk -oIa -wKF -kvH -xbB -ubc -bFq -whz -whz -whz -whz -whz -mBq -ugt -vgp -ugt -ugt -ugt -qSP -ihB -eNH -buW -lxT -fBR -ugt -fPu -dDG -dhe -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(141,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -djs -izU -uCm -eSz -tCl -tFZ -wvE -eSz -poh -izU -geO -whz -pio -whz -whz -whz -whz -oIa -gGs -sfb -fCh -djE -oIa -whz -dhe -dhe -dhe -dhe -mBq -kOL -bcZ -jfw -gYu -ugt -ugt -ugt -dhC -dhC -kpQ -dhC -ugt -fPu -dDG -dhe -dhe -dhe -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(142,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dOi -pdW -eSz -eSz -tCl -tFZ -wvE -eSz -eSz -pdW -aRN -whz -pio -pio -pio -pio -whz -rOs -eQZ -guQ -kzA -otA -nvg -whz -dhe -dhe -dhe -dhe -mBq -iip -lOJ -bZM -qFX -ugt -wdi -wYD -goX -wYD -qFB -cHn -dhC -fPu -dDG -dDG -dDG -dhe -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(143,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dOi -pdW -eSz -eSz -leJ -tFZ -fpQ -eSz -eSz -pdW -aRN -whz -whz -whz -whz -pio -whz -rOs -otA -vUo -bPq -otA -nvg -whz -dhe -dhe -dhe -dhe -mBq -bGV -min -tkh -rNt -ugt -kHB -dfh -cHn -ooR -rOW -knw -dhC -fPu -dDG -dDG -dDG -dhe -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(144,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -cuX -dDG -dDG -dDG -dDG -dOi -pdW -eSz -eSz -tCl -tFZ -wvE -eSz -eSz -pdW -aRN -dhe -dhe -dhe -whz -pio -whz -fYu -otA -vUo -bPq -otA -ebw -whz -dhe -dhe -dhe -dhe -mBq -mBq -mBq -mBq -mBq -ugt -fpf -uWO -vvA -sCO -dyl -cHn -ugt -iJO -jBu -jBu -jCy -dhe -oGJ -dhe -dhe -dhe -dhe -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -oGJ -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(145,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -xFs -dOi -pdW -eSz -eSz -tCl -tFZ -wvE -eSz -eSz -pdW -aRN -xFs -dhe -dhe -whz -pio -whz -rOs -otA -vUo -bPq -otA -nvg -whz -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -ugt -ugt -ugt -ugt -ugt -ugt -ugt -ugt -dhe -dDG -dDG -fPu -dhe -dhe -dhe -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(146,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dOi -izU -uCm -eSz -tCl -tFZ -wvE -eSz -poh -izU -aRN -dDG -dhe -dhe -whz -pio -whz -whz -whz -jKB -whz -whz -whz -whz -tQa -whz -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -fPu -dDG -dDG -lBf -mbv -mbv -djA -dhe -dhe -dDG -dhe -dhe -dhe -wZm -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -eMA -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(147,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -cuX -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dOi -pdW -hFy -hFy -jkv -myM -bfr -hFy -aNm -pdW -aRN -dDG -dhe -dhe -whz -pio -pio -pio -pio -pio -pio -pio -pio -pio -pio -whz -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -htM -fPu -dDG -dDG -aWp -dDG -cuX -pAc -dag -mbv -djA -htM -dDG -dDG -dDG -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(148,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dOi -pdW -hyg -hyg -kDz -hyg -vYw -hyg -gNN -pdW -aRN -dDG -dhe -dhe -whz -whz -whz -whz -whz -whz -whz -whz -whz -whz -whz -whz -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -lia -mbv -mbv -tRb -dDG -dDG -dDG -wZm -dDG -pAc -mbv -mbv -mbv -mbv -mbv -xbu -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(149,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dhe -dhe -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dOi -pev -eGt -eGt -tli -eGt -qwJ -eGt -eGt -pev -aRN -dDG -dDG -dhe -dhe -dhe -dhe -dhe -xxj -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -mBq -mBq -vDg -mBq -mBq -dhe -dhe -dhe -dhe -dhe -dhe -dhe -wZm -dDG -dDG -mNq -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -vlO -kTr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(150,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dOi -pev -bPY -bPY -slF -aVB -fmd -bPY -jsL -pev -aRN -dDG -dDG -dDG -dDG -dDG -dDG -dhe -xxj -dDG -dDG -htM -dDG -dDG -wZm -dhe -dhe -dhe -dhe -mBq -vjz -eDY -wjd -mBq -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -ppS -ktp -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(151,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dhe -dDG -htM -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dOi -bMb -qgo -brm -iOd -jgH -vPi -brm -dIo -bMb -aRN -dDG -dDG -cuX -bvN -dDG -dDG -dDG -dDG -dDG -dDG -dDG -cuX -dDG -dhe -dhe -dhe -dhe -dhe -mBq -fma -puo -mMl -mBq -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -mNq -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(152,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -jpF -jpF -jpF -jpF -jpF -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -xFs -dOi -pev -brm -brm -iOd -jgH -vPi -brm -brm -pev -aRN -xFs -dDG -dDG -dDG -dDG -dDG -cuX -dhe -dDG -dDG -dDG -dDG -dDG -pTh -pTh -pTh -pTh -dhe -mBq -mBq -mBq -mBq -mBq -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -mNq -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(153,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -jpF -jpF -jpF -jpF -jpF -jpF -jpF -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -cuX -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dDG -dDG -dDG -dDG -dDG -dOi -pev -brm -brm -iOd -jgH -vPi -brm -brm -pev -aRN -dDG -dhe -pTh -pTh -pTh -pTh -pTh -pTh -pTh -vyD -vyD -vyD -pTh -pTh -sKD -ooN -pTh -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -lHN -dDG -mNq -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(154,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -jpF -jpF -jpF -jpF -jpF -jpF -jpF -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dhe -dhe -dhe -dhe -lZW -lZW -lZW -lZW -pxh -lZW -dDG -dhe -cuX -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dOi -pev -brm -brm -puY -jgH -bTT -brm -brm -pev -aRN -pTh -pTh -pTh -siB -bHK -uWc -pTh -rOU -wJO -wJO -wJO -wJO -wJO -wJO -wJO -wJO -pTh -pTh -pTh -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -mNq -dDG -wZm -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(155,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -jpF -jpF -jpF -jpF -jpF -jpF -jpF -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dhe -dhe -dhe -dhe -lZW -oSX -maI -lZW -jPX -lZW -dhe -dhe -qmf -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dOi -pev -brm -brm -iOd -jgH -vPi -brm -brm -pev -aRN -pTh -jnG -wJO -mPE -wJO -wJO -wJO -wJO -soq -soq -soq -soq -soq -soq -wJO -wJO -wJO -wJO -pTh -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -cuX -mNq -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(156,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -jpF -jpF -jpF -jpF -jpF -aYr -aYr -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dhe -dhe -dhe -dhe -lZW -otk -fcg -lZW -pFe -lZW -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -djs -bMb -qgo -brm -iOd -jgH -vPi -brm -dIo -bMb -geO -pTh -wJO -soq -soq -soq -soq -soq -soq -soq -qEW -ojJ -bpa -pdo -soq -soq -soq -soq -wJO -pTh -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -mNq -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(157,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -jpF -jpF -jpF -aYr -aYr -aYr -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -lZW -umi -fcg -cVN -fcg -lZW -dhe -dhe -dhe -dhe -lZW -lZW -lZW -lZW -lZW -lZW -bMb -iHd -bMb -bMb -brm -iOd -jgH -vPi -brm -bMb -bMb -bXG -pTh -jGE -soq -bvM -gFu -gTc -uPe -rxR -ebW -ggz -rVC -kcF -aDg -qtN -wYP -syn -soq -wJO -pTh -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -wZm -dDG -mNq -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(158,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -jpF -jpF -jpF -aYr -aYr -aYr -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -lZW -lZW -lZW -lZW -lZW -fcg -lZW -lZW -lZW -dhe -lZW -lZW -lzw -omx -dFf -wUY -lZW -lZW -cLq -rSh -bMb -brm -iOd -jgH -vPi -brm -bMb -eyi -vlf -pTh -wJO -soq -dTk -icx -wEQ -dTk -niI -ebW -ryc -fHb -nto -awX -api -uJH -iDl -soq -wJO -pTh -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -mNq -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(159,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -lZW -fcg -fcg -fcg -fcg -fcg -hDO -mPw -lZW -dhe -lZW -mur -mPw -mPw -mPw -mPw -mPw -lZW -vKc -mvr -bMb -brm -iOd -jgH -vPi -brm -bMb -baN -kRq -pTh -wJO -soq -loJ -icx -wEQ -loJ -niI -wFx -ofH -mvs -doK -bPj -hWn -uJH -nns -soq -euj -pTh -pTh -pTh -pTh -pTh -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -mNq -cuX -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(160,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dhe -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dhe -dhe -dhe -lZW -fcg -usY -usY -usY -usY -usY -mPw -lZW -dhe -lZW -mPw -mJv -mJv -mJv -mJv -mPw -lZW -udz -bMb -bMb -brm -iOd -jgH -vPi -brm -bMb -bMb -nnG -pTh -wJO -soq -uzG -moz -jEQ -gyP -niI -wFx -mFm -rzT -doK -bPj -ejY -oFY -xWO -soq -uRd -rOU -wJO -wJO -wJO -pTh -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -mNq -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(161,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dDG -dhe -dhe -dhe -dhe -dhe -dDG -dhe -dhe -dhe -lZW -lZW -fcg -pGP -aFR -pKs -aie -usY -mPw -lZW -lZW -lZW -mPw -usY -fSY -tJR -usY -mPw -eST -vKc -cEC -bMb -brm -puY -jgH -bTT -brm -bMb -cEC -kRq -pTh -wJO -soq -gVS -moz -nql -moz -niI -viE -cjd -iKY -lPf -aCY -mKM -jSj -cCv -soq -soq -soq -soq -soq -wJO -rpi -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -mNq -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(162,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -lZW -mPw -kkT -usY -pNv -wZM -wjp -usY -wna -mPw -mPw -mPw -jPX -usY -kiT -njt -usY -usY -usY -vKc -ciF -bMb -brm -iOd -jgH -vPi -brm -bMb -jWG -kRq -pTh -wJO -soq -rrT -jOB -ioP -ioP -fkH -bWo -yie -hCW -hCW -qtu -doK -doK -szB -ebW -hft -weI -tml -soq -wJO -soq -mBq -mBq -mBq -mBq -dhe -dhe -dhe -dhe -dDG -mNq -htM -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(163,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -cTU -lZW -wFz -lZW -usY -gdt -xaU -xmq -usY -lZW -lZW -lZW -lZW -lZW -usY -eKt -nEA -gkc -iyy -whL -ivu -bMb -bMb -brm -iOd -pjs -vPi -brm -bMb -bMb -nTi -pTh -wJO -soq -ibs -rJV -nUg -nUg -fla -viE -dAU -tFT -ucl -ugm -bze -fig -ucH -ebW -vNc -oEA -qJo -soq -wJO -soq -sWV -phR -qgq -hlc -hlc -hlc -hlc -hlc -hlc -pGx -hlc -hlc -hlc -hlc -hlc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(164,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -cTU -rPy -ctd -eQQ -ajH -oDs -vIu -aFo -qDp -iPD -xia -fgV -dpM -nkt -whL -eKt -tnh -pOf -ldp -wkz -xHd -xPU -mAj -vxv -pVA -woU -eRM -vxv -gBh -aNP -czl -pTh -jxi -soq -mmR -dKM -dKM -dKM -dKM -wFx -wFx -wFx -rCY -hLV -rCY -wFx -wFx -ebW -buM -mEF -buM -soq -oGe -soq -joR -tby -hTG -hlc -fyd -fyd -fyd -oCO -wSG -sAZ -fuX -fyd -fyd -fyd -hlc -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -aYr -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(165,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -cTU -xxz -vtD -dJV -dJV -dJV -nkJ -aFo -fLY -owZ -aXZ -kMW -iYb -trs -whL -een -gCc -een -whL -vUE -kkz -heJ -hYv -seR -htn -jxL -gOF -seR -ptB -jZe -xas -uxN -iDv -nDm -iCY -pqn -jGB -tUy -cjN -qMS -dqV -hzq -etb -hBR -hzq -hzq -hzq -hzq -ixW -vEX -hzq -vEX -cVz -oeF -huu -eyc -hTG -hlc -cVa -fyd -fyd -cdi -vVD -mkj -dgD -fyd -fyd -pqH -hlc -hlc -hlc -hlc -hlc -dhe -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(166,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -cTU -cTU -cTU -cTU -cTU -iGV -dAm -rDg -uax -nza -rOe -wQv -puE -tjJ -aYG -kRG -dFS -trs -whL -mpA -fTH -kTy -whL -swC -kkz -hzB -bBM -brm -iOd -fnS -vPi -brm -fXa -vMK -mpQ -aYA -jCw -xPQ -stt -juf -uhP -ifD -ccO -tqp -quv -tjj -tjj -gTZ -tjj -tjj -tjj -tjj -tjj -tjj -mdj -tjj -tjj -nxi -tjj -aEo -hTG -hlc -fyd -fyd -fyd -oCO -uvZ -twe -fuX -fyd -fyd -fyd -hlc -beJ -wcb -uaO -hlc -dhe -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(167,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -cTU -aSo -tAJ -dGz -cTU -gUk -dAm -ydS -ydS -gKj -qHM -aFo -sxj -mxe -aWh -fza -aWh -abH -whL -nqh -eKj -kNf -whL -esQ -dGe -eLe -bBM -brm -iOd -jgH -vPi -brm -fXa -fzC -pgU -cnV -cnV -cnV -vPY -rDn -dth -qFi -fwK -ePZ -esA -vMO -vMO -ooC -mZl -tby -ivN -vMO -vMO -vMO -jlb -vMO -vMO -sXX -toa -xjr -hTG -hlc -fyd -fyd -fyd -oCO -uvZ -twe -fuX -fyd -fyd -fyd -hlc -cXV -cXV -cXV -hlc -dhe -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(168,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -akr -tjS -hFV -uNC -cTU -cTU -geK -lPl -uax -enQ -beO -aFo -oAV -oAV -vYl -xLd -vYl -oAV -whL -een -meK -een -whL -bMb -dGe -bIA -bBM -brm -iOd -jgH -vPi -brm -dfz -iey -bxq -wpK -lfQ -lfQ -lfQ -sRZ -sRZ -oxL -oxL -tyN -pJF -tyN -tPZ -tPZ -joR -tby -gyB -oPT -bSE -bSE -miQ -bSE -bSE -oPT -ieS -xjr -hTG -hlc -cVa -fyd -fyd -cdi -aqd -xva -dgD -fyd -fyd -pqH -hlc -cvw -bRm -cvw -hlc -hlc -hlc -hlc -hlc -hlc -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(169,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -akr -akr -akr -vBX -kKe -bek -dCU -uKP -pjj -xTi -hci -ldK -rVo -eTU -oAV -bic -rSK -qpL -uWi -fSM -vYl -dax -jzn -oNJ -cbc -fgi -lBu -hhL -bMb -brm -iOd -jgH -vPi -brm -bMb -iWc -bxh -lfQ -iBx -rlu -sUb -puT -wpK -oxL -iSm -gVD -nyF -svv -icL -tPZ -fOr -tby -hTG -oPT -nyl -jgD -eED -iBB -rdm -oPT -uDW -xjr -hTG -hlc -fyd -fyd -fyd -oCO -hel -twe -fuX -fyd -fyd -fyd -hlc -mVb -qWA -nwp -naj -hlc -fyd -fyd -fyd -hlc -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(170,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -cew -ekL -cew -sLz -wjP -kIj -uvE -icO -tCe -eOk -hRs -hXs -tFx -dzm -oAV -snK -rih -gyS -rYP -jcf -jSr -lEV -pMk -ltA -tCa -jnD -dGe -hzB -qkj -brm -puY -jgH -bTT -brm -cbu -qtF -bxh -lfQ -yjY -sgJ -wvK -tSr -caD -oxL -drb -xxF -doH -pmu -vNk -tPZ -efT -kpG -hTG -bSE -gil -jgD -pkw -kGQ -gGL -bSE -joR -xjr -hTG -hlc -hlc -hlc -hlc -hlc -vJN -nRv -sZF -mjP -mjP -mjP -dBM -rBM -pVr -tqK -hlc -hlc -fyd -fyd -fyd -hlc -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(171,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -oAy -vTu -cdy -hMK -hFV -gDr -yiX -shb -bTx -eOk -eOk -eOk -ugh -vSI -vSI -vYl -oZm -eSD -cwG -cwG -ccj -vYl -oAD -uib -lLK -ggp -fdV -pZY -ryZ -ljh -brm -iOd -jgH -vPi -brm -kvn -fiX -pgk -umK -slI -wBb -aSw -nBM -nUy -rHj -uuQ -lIs -dxk -iZz -rNQ -tPZ -ezw -jIC -hTG -bSE -nZs -mRy -ggi -gip -hJW -bSE -hFt -aob -uUR -iYW -qKC -cZf -coZ -iYW -quM -sNG -orO -byf -dss -dss -iqX -xqD -qro -gPo -bGE -fyd -fyd -fyd -fyd -hlc -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(172,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -eMA -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -akr -akr -cTU -ett -uax -uax -qpG -bTx -kwD -sha -eOk -cZS -vSI -vSI -vYl -oGF -foj -hbH -rwA -vUi -pBT -urv -ooU -pMk -qJn -qIh -qEp -lUW -nwQ -brm -iOd -wGd -vPi -brm -nwQ -mqQ -dOU -nKP -uIO -nMU -kiA -rVA -deg -gOJ -gVu -fXq -ese -mai -tdm -tPZ -ezw -jIC -ocz -oPT -hgS -mzQ -cEB -fIR -lyq -oPT -jif -oya -feW -mJK -kme -sbz -nwj -ogn -ptS -gTP -spS -dlF -hFK -acj -okP -bXW -nzk -uTi -sFX -fyd -fyd -fyd -gNp -hlc -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(173,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -vTu -cdy -hMK -bYR -uXv -uzm -cru -bTx -eOk -eOk -eOk -kJy -vSI -vSI -vYl -kkq -kEk -cwG -wgV -whI -vYl -eBF -gSV -ryF -mGb -jwV -vSk -hBQ -hCw -brm -iOd -jgH -vPi -brm -hYJ -qtF -oLs -oMz -nBM -tSr -vFF -pKJ -nUy -rHj -uuQ -lIs -iAp -sHV -uOj -tPZ -ezw -jIC -hTG -bSE -cjE -rIz -fZz -xYj -wwn -bSE -joR -jfs -wyX -iYW -xVK -jeJ -mlg -iYW -kAi -kEm -dlv -neP -uTs -saw -uTs -oQx -apP -oyD -bGE -fyd -fyd -fyd -fyd -hlc -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -eMA -aYr -aYr -aYr -aYr -kWL -kWL -kWL -kWL -kWL -kWL -kWL -kWL -kWL -kWL -kWL -kWL -kWL -kWL -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(174,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -ggw -rIx -ggw -jlo -wjP -dFg -fYR -xGX -boS -eOk -gRg -juN -mDt -ijt -wId -wsB -vOq -cwG -tbm -xwX -eKQ -rrr -tOp -ryF -ujC -jnD -rEB -bRD -fbo -brm -puY -jgH -bTT -brm -waI -iey -eSf -lfQ -yjY -kEI -amb -fsu -iQC -oxL -lDg -uXK -rfl -gVD -rbn -tPZ -rrc -jhi -hTG -bSE -eYe -jgD -hWi -jgD -xVz -bSE -joR -xjr -hTG -hlc -hlc -hlc -hlc -hlc -xxo -lZY -iYu -jqF -jqF -jqF -wPD -cnv -kWg -kPD -hlc -hlc -fyd -fyd -fyd -hlc -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -kWL -kWL -kWL -aYr -aYr -gNY -aYr -aYr -aYr -era -aYr -aYr -gNY -aYr -aYr -kWL -kWL -kWL -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(175,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -akr -akr -akr -xAJ -tXK -dZY -dZS -dFo -ygA -sqU -oLX -mRV -dbb -fhv -oAV -dsJ -jGo -mqs -lYr -vvN -vYl -vhn -oQm -aoK -wfF -fgi -rEB -uPa -bMb -brm -iOd -jgH -vPi -brm -bMb -aFx -eSf -lfQ -jtP -sql -qUA -nVx -wpK -oxL -mgN -pmu -bju -cli -oPf -tPZ -bhY -tby -hTG -oPT -cEH -jgD -jgD -jgD -cqS -oPT -joR -xjr -hTG -hlc -fyd -fyd -fyd -oCO -oNb -xgb -fuX -fyd -fyd -fyd -hlc -jkO -cwW -iVF -uow -hlc -fyd -fyd -fyd -hlc -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -kWL -kWL -kWL -aYr -aYr -aYr -mJG -mJG -mJG -mJG -mJG -mJG -mJG -mJG -mJG -mJG -aYr -aYr -aYr -kWL -kWL -kWL -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(176,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -akr -xAJ -bYR -haS -udQ -udQ -sRN -sRN -sRN -qDk -udQ -pRM -pRM -fur -fur -icz -fur -pRM -pRM -fgi -fgi -fgi -fgi -fgi -asG -hBQ -xYV -brm -iOd -jgH -vPi -brm -bOr -qtF -tID -wpK -lfQ -lfQ -lfQ -sRZ -sRZ -oxL -oxL -rGz -tEC -rGz -tPZ -tPZ -rYk -tby -tUm -oPT -bSE -bSE -sFL -bSE -bSE -oPT -ecj -xjr -hTG -hlc -cVa -fyd -fyd -cdi -vVD -qGS -dgD -fyd -fyd -pqH -qSS -jEP -jEP -qHl -qSS -hlc -hlc -hlc -hlc -hlc -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -mJG -mJG -mJG -mJG -mJG -mJG -mJG -mJG -mJG -mJG -mJG -mJG -mJG -mJG -aYr -aYr -aYr -kWL -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(177,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -cTU -oTc -nDV -oij -udQ -trL -lis -kyG -kyG -pJk -pSd -pRM -uHb -vCc -kWY -rnU -bpv -lkV -fur -cJm -jjS -bIp -bIp -jYD -qtF -eFy -cDk -brm -iOd -jgH -vPi -brm -bOr -aYA -kmF -pVy -sSr -sSr -bHb -uKc -hFk -xgj -nrC -qyA -lfh -vuB -vuB -sLK -jXp -tby -dye -vuB -vuB -vuB -lms -vuB -vuB -dTS -qUT -xjr -hTG -hlc -fyd -fyd -fyd -oCO -uvZ -xgb -fuX -fyd -fyd -fyd -qSS -bGr -uin -pMA -cpb -qSS -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -mJG -mJG -mJG -mJG -mJG -mJG -mKc -mKc -umc -nZK -umc -mKc -mKc -mJG -mJG -mJG -mJG -mJG -aYr -kWL -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(178,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -eMA -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -cTU -cTU -cTU -udQ -udQ -hjW -pOa -iiD -rSI -rvq -pwP -aIA -pRM -jKi -bog -jIV -pHq -rbj -ugq -kWI -aHW -mqt -eGi -dNg -igE -oxs -cDk -brm -mWR -pjs -qQX -brm -bOr -iey -vaw -lOk -nfK -sxk -xjV -juf -jjL -ifD -ccO -uVj -rdg -tjj -tjj -tjj -hzz -tjj -tjj -tjj -tjj -xjw -lEU -tjj -tjj -ckB -fCD -sSx -hTG -hlc -fyd -fyd -fyd -oCO -uvZ -xgb -fuX -fyd -fyd -fyd -qSS -hNM -myv -luo -tZi -qSS -dhe -dhe -dhe -lvw -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -sBj -sBj -sBj -mJG -mJG -mJG -mKc -mKc -mKc -ubg -wZd -wZd -egY -wZd -wZd -byX -mKc -mKc -mJG -mJG -mJG -gNY -kWL -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(179,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -udQ -rIU -qMR -ehV -dNS -dNS -dNS -fCL -nwM -npM -myI -whm -rHW -iNr -sJS -fur -pMd -yiV -xoN -pwp -pdd -xAH -hFH -hZc -seW -seW -fFF -seW -seW -iXW -sBC -jBO -aAA -hBW -cmb -poo -emf -rRD -gag -ovy -cEy -jPy -ugl -nHd -wVj -wVj -kEA -hwM -hwM -hwM -hwM -faF -wVj -wVj -wVj -wVj -bsi -hTG -hlc -cVa -fyd -fyd -cdi -vVD -dIh -dgD -fyd -fyd -pqH -qSS -ril -myv -aCe -hcJ -qSS -dhe -dhe -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -mLq -hdo -mLq -mJG -mJG -mKc -ubg -wZd -wZd -pux -kve -kve -kve -kve -kve -bWx -wZd -byX -mKc -mJG -mJG -aYr -kWL -kWL -kWL -kWL -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(180,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -udQ -kyc -eOg -vuM -rgg -jqv -hFO -fCL -bYk -pRM -pRM -gSj -jON -wBX -cfq -pRM -qUB -pEe -gfN -oSR -bMb -vbU -sSc -hUT -knd -knd -nIc -knd -knd -sKZ -bVp -vrW -bMb -qpp -geG -mGo -syv -syv -syv -syv -sJg -jfv -sJg -hvJ -hvJ -hvJ -jql -hvJ -xNT -xNT -aIb -eKA -aIb -xNT -xNT -xNT -nDS -bfP -hlc -fyd -fyd -fyd -oCO -ngR -bQL -fuX -fyd -fyd -fyd -qSS -uDa -dbR -sSB -crr -qSS -dhe -dhe -aYr -gNY -aYr -pPV -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -sBj -sBj -sBj -mJG -mJG -mKc -kyz -kve -kve -kve -kve -kve -pwY -kve -kve -kve -kve -guT -mKc -mJG -mJG -aYr -aYr -aYr -aYr -kWL -kWL -kWL -kWL -kWL -kWL -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(181,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -udQ -kSa -eOg -pxD -pxD -pxD -pxD -alu -gLT -npM -dKC -fpU -yih -gAG -ekg -pRM -eeO -vPB -vrV -pUv -bMb -qDK -bMb -vUE -vUE -vUE -vUE -vUE -vUE -vUE -bMb -qDK -bMb -wIn -geG -oNT -sJg -kgl -fWw -sJg -wWE -ppu -fRb -hvJ -psE -jCf -hRp -hvJ -cZA -fdt -gUO -meP -jyZ -rvN -hhT -xNT -wBi -lFZ -hlc -hlc -hlc -hlc -hlc -hlc -hlc -hlc -qSS -qSS -qSS -qSS -rRv -hGn -vBE -tvT -qSS -aYr -aYr -aYr -pPV -pPV -pPV -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -mLq -mLq -hdo -mLq -mLq -mJG -mJG -mKc -kyz -kve -fnU -mjh -luY -rFY -fkm -vsh -eqI -hxQ -kve -guT -mKc -mJG -mJG -mJG -mJG -mJG -aYr -aYr -gNY -aYr -aYr -aYr -kWL -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(182,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -xxZ -xxZ -xxZ -xxZ -udQ -hCZ -guY -hMU -qyg -utY -cbs -qar -pRM -pRM -pRM -pRM -pRM -pRM -pRM -pRM -rbv -vPB -gfN -pUv -bMb -rxO -lCE -vUE -rxO -hLC -cEC -eAG -kKn -vUE -awY -rxO -bMb -wIn -geG -aao -nab -vqI -sIM -fxC -dvB -rcR -fOw -hvJ -twf -buH -nsi -hvJ -oze -aku -bHS -sQG -vme -twy -ccs -xNT -ekx -dye -vuB -dpd -ezw -ezw -ezw -buM -dhe -dhe -qSS -vMt -xYU -gIg -vev -xDm -myv -uyG -qSS -gNY -gNY -pPV -pPV -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -sBj -sBj -sBj -sBj -mLq -mJG -mJG -mKc -kyz -kve -aTj -rCt -fXr -hMy -tcZ -aET -xBy -oFI -kve -guT -mKc -mJG -xli -jXL -xli -mJG -mJG -mJG -mJG -mJG -mJG -aYr -kWL -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(183,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -dDG -xxZ -jcP -sPK -wKe -xxZ -xxZ -uyk -xxZ -udQ -udQ -udQ -udQ -pRM -dhe -dhe -dhe -dhe -dhe -pRM -pRM -aHA -qSq -bYx -pUv -bMb -rxO -cEC -vUE -rxO -uMn -uMn -pOy -hnw -vUE -cEC -rxO -bMb -wIn -geG -oNT -sJg -uuf -nct -sJg -kxS -fpA -gVM -hvJ -adT -jIE -tgO -hvJ -ptQ -pHh -vLT -xCZ -gKA -ptb -lVE -xNT -ekx -tpO -oPP -bpo -ezw -ezw -ezw -buM -dhe -dhe -qSS -kWA -lta -vKn -vjb -jhU -jhU -vaT -qSS -aYr -aYr -pPV -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -mLq -mLq -hdo -mLq -mLq -mJG -mJG -umc -cjW -kve -twL -tcs -ouO -kve -kve -kve -cjv -oFI -kve -bWx -kZO -mJG -wCD -jIu -xli -xli -mJG -krF -vIw -wFa -mJG -aYr -kWL -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(184,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -xxZ -hmR -owm -xzU -pgn -dla -aUA -dbV -xxZ -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -pRM -qUB -hDU -geG -pUv -bMb -bMb -bMb -vUE -rxO -uMn -ruC -wGR -rxO -vUE -bMb -bMb -bMb -wIn -geG -kye -syv -syv -syv -syv -hen -rfq -pPD -hvJ -ybR -bKU -kyJ -hvJ -oii -nzE -bHS -hQf -vme -ioo -rGj -xNT -etm -dTT -rkI -sYF -ezw -ezw -ezw -buM -dhe -dhe -qSS -qSS -qSS -qSS -qSS -qSS -qSS -qSS -qSS -gNY -gNY -pPV -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -vbT -hdo -sBj -sBj -xEd -wlG -wlG -hXT -sHq -oCG -qhb -iNA -hXh -qBe -rgD -jsF -elX -gcn -kve -utL -xli -jyl -kuw -mcW -pIz -xli -puh -aKA -sCz -pGE -mJG -lGY -kWL -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(185,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -xxZ -nzC -cmn -nvj -hNO -cmn -cJZ -uNl -xxZ -dhe -dhe -dhe -dhe -dhe -dhe -uno -uno -uno -uno -uno -lCy -vPB -geG -neh -bMb -hAR -nqs -vUE -vUE -vUE -oHY -vUE -vUE -vUE -bEo -mlC -bMb -hPs -sxk -jpV -lIC -xgJ -syv -xWi -jof -uxD -mKQ -hvJ -aVE -pLf -btO -hvJ -xNT -vFV -ech -pCF -ech -xGA -xNT -xNT -pZn -pZn -lxI -pZn -pZn -buM -buM -buM -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -pPV -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -mLq -mLq -hdo -mLq -mLq -mJG -mJG -umc -dqw -kve -mbj -tcs -kqJ -kve -kve -kve -iDj -oFI -kve -ewW -dNO -mJG -jCP -iaQ -xli -xli -mJG -dfi -jaw -swj -mJG -aYr -kWL -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(186,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dez -kZt -kZt -kZt -kZt -gTu -mAJ -rMB -xxZ -dhe -dhe -dhe -dhe -dhe -dhe -uno -qUX -uiP -ofv -uof -lCy -glJ -tej -dpZ -cVu -wJi -iwW -iwW -cqg -qKT -tRK -cNm -vQz -wag -qif -qIo -gUd -ocd -geG -geG -fZS -pdn -syv -lBB -tLS -btw -olg -hvJ -gCn -fND -mnv -hvJ -xNT -jLF -lzu -eyX -fkU -jYx -xNT -dhe -pZn -njk -lXb -enY -pZn -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -lvw -lvw -aYr -aYr -pPV -pPV -pPV -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -sBj -sBj -sBj -sBj -mLq -mJG -mJG -mKc -oIl -kve -gGD -tcs -dDA -uMO -kBk -cxr -tcs -rhx -kve -guT -mKc -mJG -xli -evp -xli -mJG -mJG -mJG -mJG -mJG -mJG -aYr -kWL -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(187,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dez -kfO -trr -kfO -aiL -mvi -xzl -nRw -xxZ -dhe -dhe -dhe -dhe -dhe -dhe -uno -fUh -wWq -hZe -ejL -jsw -sXe -wbE -fZS -kDH -vPB -xsd -jfR -jfR -jfR -mBC -qVA -jfR -tej -itW -fZS -kDH -qEd -oTM -geG -lqj -lCy -syv -syv -syv -syv -syv -hvJ -hvJ -hvJ -hvJ -hvJ -xNT -tpN -tuv -vTP -umQ -aVp -xNT -dhe -pZn -cKT -jdr -cYC -pZn -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -lvw -gNY -gNY -pPV -pPV -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -gNY -mLq -mLq -hdo -mLq -mLq -mJG -mJG -mKc -oIl -kve -hMc -vSg -lYl -hxQ -hcT -hxQ -gaV -hxQ -kve -guT -mKc -mJG -mJG -mJG -mJG -mJG -aYr -aYr -gNY -aYr -aYr -aYr -kWL -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(188,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dez -kfO -kfO -kfO -kfO -mvi -eeE -eUo -xxZ -dhe -dhe -dhe -dhe -dhe -dhe -uno -rzO -azX -vHa -hHP -lCy -rlW -doD -qbu -riS -gAH -wuF -wuF -wuF -dBb -yhG -qbW -wuF -rde -rde -nyD -toG -fiy -jgQ -geG -rls -twO -ces -muU -kro -nQr -nyi -koy -qUB -dhe -dhe -dhe -vTP -bhp -tpN -vTP -oWO -vTP -vTP -dhe -pZn -fXt -qsg -gxc -pZn -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -pPV -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -sBj -sBj -sBj -mJG -mJG -mKc -gQn -kve -kve -kve -kve -kve -bIw -kve -kve -kve -kve -guT -mKc -mJG -mJG -aYr -aYr -aYr -aYr -kWL -kWL -kWL -kWL -kWL -kWL -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(189,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dez -dez -dez -dez -dez -dez -xxZ -xxZ -xxZ -dDG -dDG -dDG -dDG -dhe -dhe -uno -uno -uno -uno -uno -fGo -pSV -pSV -pSV -pSV -pEx -pEx -pEx -fmy -mGc -xQD -pmQ -fmy -pEx -pEx -pEx -fmy -xQM -bBX -jgQ -eer -mwI -knO -jgQ -lla -lla -lla -xPg -qUB -dhe -dhe -dhe -vTP -vTP -vTP -vTP -vTP -vTP -rDs -rDs -rDs -rDs -sji -rDs -rDs -rDs -rDs -dhe -aYr -pPV -aYr -aYr -aYr -aYr -aYr -pPV -pPV -pPV -pPV -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -mLq -hdo -mLq -mJG -mJG -mKc -qhN -vje -vje -kMd -kve -kve -kve -kve -kve -ewW -vje -sLu -mKc -mJG -mJG -aYr -kWL -kWL -kWL -kWL -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(190,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dhe -dhe -dhe -dhe -dhe -dhe -pSV -xkI -gbB -eDW -pSV -bxC -akS -lyR -fmy -ton -ddP -ncG -fmy -sWq -akS -lyR -fmy -fmy -vPB -geG -rls -twO -nxB -awi -awi -lco -awi -oAG -qUB -dhe -dhe -dhe -dhe -wZm -bPf -vTP -dhe -rDs -rDs -fSm -scr -kfx -inu -mmy -scr -fSm -rDs -rDs -gNY -pPV -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -sBj -sBj -sBj -mJG -mJG -mJG -mKc -mKc -mKc -qhN -vje -vje -fNi -vje -vje -sLu -mKc -mKc -mJG -mJG -mJG -gNY -kWL -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(191,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dhe -dhe -dhe -pSV -noI -ptW -xiJ -wzg -tiM -qSm -eKD -hsT -eRv -wzm -wla -rNL -joi -qSm -swr -czB -fmy -xQM -wuF -wyS -qUB -twO -twO -iAo -twO -twO -ume -qUB -dhe -dhe -dhe -dhe -dhe -dhe -nbf -dhe -rDs -rDs -aEr -dku -eYR -pAL -seb -ovx -swp -rDs -rDs -aYr -pPV -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -mJG -mJG -mJG -mJG -mJG -mJG -mKc -mKc -umc -nZK -umc -mKc -mKc -mJG -mJG -mJG -mJG -mJG -aYr -kWL -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(192,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -pSV -pBV -liL -xiJ -wzg -tiM -qSm -qSm -pzO -xRz -xHn -tTZ -qfO -klG -jJZ -swr -qJz -fmy -ltZ -vAM -xRI -qUB -dDG -twO -fWA -twO -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -wZm -dhe -rDs -rDs -lfp -dku -azu -oEW -uqL -ovx -jNP -rDs -rDs -aYr -pPV -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -mJG -mJG -mJG -mJG -mJG -mJG -mJG -mJG -mJG -mJG -mJG -mJG -mJG -mJG -aYr -aYr -aYr -kWL -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(193,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -pSV -kPj -hYk -eZT -ybr -sYc -qSm -qSm -wdy -qJd -fmy -dSu -bMo -fFx -qSm -swr -miE -fmy -qUB -qUB -qUB -qUB -dDG -twO -eUp -twO -dDG -dDG -dDG -dDG -dDG -dhe -dDG -dDG -dhe -dhe -dhe -rDs -rDs -iHT -cVG -pEb -ilT -coz -rRp -pPA -rDs -rDs -gNY -pPV -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -kWL -kWL -kWL -aYr -aYr -aYr -mJG -mJG -mJG -mJG -mJG -mJG -mJG -mJG -mJG -mJG -aYr -aYr -aYr -kWL -kWL -kWL -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(194,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -pSV -wOW -cBE -sOU -wzg -tiM -qSm -qSm -wdy -ucg -rUQ -qSD -bMo -qSm -qSm -swr -gyn -fmy -dhe -dDG -dDG -dDG -dDG -dDG -eZk -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -rDs -rDs -rDs -rDs -rDs -rDs -rDs -rDs -rDs -aYr -aYr -pPV -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -kWL -kWL -kWL -aYr -aYr -gNY -aYr -aYr -aYr -ptf -aYr -aYr -gNY -aYr -aYr -kWL -kWL -kWL -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(195,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -pSV -xpE -ukM -uYN -rJw -iWU -dHw -fFO -wdy -jcu -rUQ -qJM -wxj -cOl -cOl -qHD -eNG -fmy -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -unm -dDG -unm -dDG -dDG -dhe -dhe -aYr -rDs -rDs -rDs -rDs -rDs -rDs -rDs -aYr -aYr -pPV -pPV -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -kWL -kWL -kWL -kWL -kWL -kWL -kWL -kWL -kWL -kWL -kWL -kWL -kWL -kWL -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(196,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -pSV -pSV -pSV -pSV -pSV -fmy -fmy -dOM -pTD -ucg -rUQ -lai -bMo -qSm -qSm -swr -uuR -fmy -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -aYr -gNY -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -oyg -aYr -gNY -aYr -aYr -pPV -pPV -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(197,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -fmy -ifU -uqs -kFu -uCy -tiM -pTD -jcu -rUQ -lai -bMo -qSm -qSm -swr -nGZ -fmy -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -aYr -aYr -aYr -gNY -aYr -gNY -aYr -aYr -aYr -aYr -pPV -pPV -pPV -pPV -pPV -pPV -pPV -pPV -pPV -pPV -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(198,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -uCy -tsP -iXD -oFL -vYU -xau -pTD -qJd -xWu -nTJ -bMo -pAB -bMo -eyG -fZY -fmy -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -aYr -aYr -aYr -gNY -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(199,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -uCy -tsP -qSm -noh -uCy -tiM -bQb -eKD -nRO -joi -qSm -qSm -qSm -swr -aXD -fmy -dhe -dhe -dDG -dDG -dDG -aYr -aYr -dDG -dDG -aYr -aYr -aYr -aYr -gNY -gNY -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(200,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -uCy -jNT -mmk -nEf -uCy -pFH -gTN -eAk -gTN -tgP -gTN -oXC -gTN -kOD -fmy -fmy -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(201,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -uCy -uCy -uCy -vhu -uCy -hvs -uCy -uCy -uCy -uCy -uCy -cBo -uCy -pot -uCy -fmy -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(202,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -eMA -eMA -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -uCy -may -uCy -may -uCy -dDG -dDG -dDG -uCy -may -uCy -may -uCy -dDG -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(203,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -uCy -may -uCy -may -uCy -dDG -dDG -dDG -uCy -may -uCy -may -uCy -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -gNY -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(204,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -uCy -fbx -uCy -may -uCy -dDG -aYr -dDG -uCy -may -uCy -tph -uCy -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(205,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -uCy -may -uCy -may -uCy -aYr -aYr -dDG -uCy -may -uCy -may -uCy -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(206,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -uCy -lra -fkh -jJO -uCy -aYr -aYr -aYr -uCy -jJO -fkh -ugW -uCy -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(207,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -acV -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -gNY -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(208,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(209,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(210,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(211,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -gNY -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(212,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(213,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -gNY -aYr -aYr -eMA -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -eMA -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(214,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(215,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -gNY -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(216,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(217,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(218,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(219,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -gNY -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -eMA -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(220,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(221,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(222,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(223,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -gNY -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(224,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -gNY -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(225,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -gNY -aYr -gNY -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(226,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -gNY -aYr -gNY -aYr -aYr -dhe -dhe -aYr -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(227,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dhe -dhe -dDG -dDG -dhe -dDG -dDG -unm -dDG -unm -dDG -dhe -dDG -dDG -dDG -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(228,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dDG -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(229,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -eMA -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(230,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dhe -dhe -dhe -dhe -lvw -lvw -jwr -lvw -lvw -dhe -dhe -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(231,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dhe -dhe -dhe -lvw -fHf -ejS -xTU -aRN -eBj -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(232,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dhe -dhe -jwr -pop -hmt -nDT -lvw -lvw -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(233,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dhe -dhe -lvw -iwh -pgw -aRN -lvw -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(234,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dhe -dhe -dhe -lvw -psh -aRN -lvw -lvw -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(235,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(236,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dhe -dDG -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dhe -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(237,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dhe -dhe -dhe -dhe -dDG -dDG -dDG -dhe -dhe -dhe -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(238,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dhe -dDG -dDG -dDG -dDG -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(239,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -dDG -dDG -dDG -dDG -dDG -dDG -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(240,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(241,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(242,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(243,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(244,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(245,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(246,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(247,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(248,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(249,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(250,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(251,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(252,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(253,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(254,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} -(255,1,2) = {" -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -aYr -"} diff --git a/_maps/metastation.json b/_maps/metastation.json index 3feecaa6215..86f73dc4e5f 100644 --- a/_maps/metastation.json +++ b/_maps/metastation.json @@ -2,7 +2,7 @@ "version": 1, "map_name": "MetaStation", "map_path": "map_files/MetaStation", - "map_file": "MetaStation_skyrat.dmm", + "map_file": "MetaStation.dmm", "shuttles": { "cargo": "cargo_skyrat", "ferry": "ferry_fancy", diff --git a/_maps/skyrat/automapper/automapper_config.toml b/_maps/skyrat/automapper/automapper_config.toml new file mode 100644 index 00000000000..2a8e6824635 --- /dev/null +++ b/_maps/skyrat/automapper/automapper_config.toml @@ -0,0 +1,221 @@ +# Automapper configuration +# [templates.example_template] - example_template should be replaced with the name of your map template. +# directory - The direct path to our map files. +# map_files - These are the names of the map files, including the extension, that will be loaded. Supports multiple for randomness. +# required_map - This is the name of the required map that needs to be loaded in order for this template to load. +# coordinates - The coordinates of the map template placement. (X, Y, Z). PLEASE NOTE: The Z coordinate is the same as would be shown in SDMM. NOT IN GAME. +# leave it at 1 if it is not a multi-z map. It is relative to the map file Z, not the one loaded in game. +# trait_name - The name of the Z level trait that will be used to determine what Z level we use. + +# METASTATION MAP TEMPLATES +# Metastation Arrivals +[templates.metastaton_arrivals] +map_files = ["metastation_arrivals.dmm"] +directory = "_maps/skyrat/automapper/templates/metastation/" +required_map = "MetaStation.dmm" +coordinates = [20, 107, 1] +trait_name = "Station" + +# Metastation Cryo +[templates.metastation_cryo] +map_files = ["metastation_cryo.dmm"] +directory = "_maps/skyrat/automapper/templates/metastation/" +required_map = "MetaStation.dmm" +coordinates = [136, 181, 1] +trait_name = "Station" + +# Metastation Barber +[templates.metastation_barber] +map_files = ["metastation_barber.dmm"] +directory = "_maps/skyrat/automapper/templates/metastation/" +required_map = "MetaStation.dmm" +coordinates = [101, 117, 1] +trait_name = "Station" + +# Metastation Armory +[templates.metastation_armory] +map_files = ["metastation_armory.dmm"] +directory = "_maps/skyrat/automapper/templates/metastation/" +required_map = "MetaStation.dmm" +coordinates = [101, 170, 1] +trait_name = "Station" + +# Metastation NTR Office +[templates.metastation_ntrep_office] +map_files = ["metastation_ntrep_office.dmm"] +directory = "_maps/skyrat/automapper/templates/metastation/" +required_map = "MetaStation.dmm" +coordinates = [56, 119, 1] +trait_name = "Station" + +# DELTASTATION MAP EDITS +# Deltastation Arrivals +[templates.deltastation_arrivals] +map_files = ["deltastation_arrivals.dmm"] +directory = "_maps/skyrat/automapper/templates/deltastation/" +required_map = "DeltaStation2.dmm" +coordinates = [126, 195, 1] +trait_name = "Station" + +# Deltastation Cryo +[templates.deltastation_cryo] +map_files = ["deltastation_cryo.dmm"] +directory = "_maps/skyrat/automapper/templates/deltastation/" +required_map = "DeltaStation2.dmm" +coordinates = [215, 93, 1] +trait_name = "Station" + +# Deltastation Armory +[templates.deltastation_armory] +map_files = ["deltastation_armory.dmm"] +directory = "_maps/skyrat/automapper/templates/deltastation/" +required_map = "DeltaStation2.dmm" +coordinates = [206, 127, 1] +trait_name = "Station" + +# Deltastation Barber +[templates.deltastation_barber] +map_files = ["deltastation_barber.dmm"] +directory = "_maps/skyrat/automapper/templates/deltastation/" +required_map = "DeltaStation2.dmm" +coordinates = [146, 107, 1] +trait_name = "Station" + +# Deltastation Prison +[templates.deltastation_prison] +map_files = ["deltastation_prison.dmm"] +directory = "_maps/skyrat/automapper/templates/deltastation/" +required_map = "DeltaStation2.dmm" +coordinates = [189, 154, 1] +trait_name = "Station" + +# Deltastation NTR Office +[templates.deltastation_ntrep_office] +map_files = ["deltastation_ntrep_office.dmm"] +directory = "_maps/skyrat/automapper/templates/deltastation/" +required_map = "DeltaStation2.dmm" +coordinates = [123, 143, 1] +trait_name = "Station" + +# ICEBOX MAP EDITS +# Icebox Arrivals +[templates.icebox_arrivals] +map_files = ["icebox_arrivals.dmm"] +directory = "_maps/skyrat/automapper/templates/icebox/" +required_map = "IceBoxStation.dmm" +coordinates = [10, 116, 3] +trait_name = "Station" + +# Icebox Armory Top +[templates.icebox_armory_top] +map_files = ["icebox_armory_top.dmm"] +directory = "_maps/skyrat/automapper/templates/icebox/" +required_map = "IceBoxStation.dmm" +coordinates = [100, 177, 3] +trait_name = "Station" + +# Icebox Armory Middle +[templates.icebox_armory_middle] +map_files = ["icebox_armory_middle.dmm"] +directory = "_maps/skyrat/automapper/templates/icebox/" +required_map = "IceBoxStation.dmm" +coordinates = [100, 177, 2] +trait_name = "Station" + +# Icebox Cryo +[templates.icebox_cryo] +map_files = ["icebox_cryo.dmm"] +directory = "_maps/skyrat/automapper/templates/icebox/" +required_map = "IceBoxStation.dmm" +coordinates = [116, 142, 3] +trait_name = "Station" + +# Icebox Barber +[templates.icebox_barber] +map_files = ["icebox_barber.dmm"] +directory = "_maps/skyrat/automapper/templates/icebox/" +required_map = "IceBoxStation.dmm" +coordinates = [87, 128, 3] +trait_name = "Station" + +# Icebox NTR Office +[templates.icebox_ntrep_office] +map_files = ["icebox_ntrep_office.dmm"] +directory = "_maps/skyrat/automapper/templates/icebox/" +required_map = "IceBoxStation.dmm" +coordinates = [92, 118, 2] +trait_name = "Station" + +# KILOSTATION MAP EDITS +# Kilostation Arrivals +[templates.kilostation_arrivals] +map_files = ["kilostation_arrivals.dmm"] +directory = "_maps/skyrat/automapper/templates/kilostation/" +required_map = "KiloStation.dmm" +coordinates = [151, 80, 1] +trait_name = "Station" + +# Kilostation ERT Bay and Barber +[templates.kilostation_ert_bay] +map_files = ["kilostation_ert_bay.dmm"] +directory = "_maps/skyrat/automapper/templates/kilostation/" +required_map = "KiloStation.dmm" +coordinates = [77, 151, 1] +trait_name = "Station" + +# Kilostation Cryo +[templates.kilostation_cryo] +map_files = ["kilostation_cryo.dmm"] +directory = "_maps/skyrat/automapper/templates/kilostation/" +required_map = "KiloStation.dmm" +coordinates = [59, 118, 1] +trait_name = "Station" + +# Kilostation Armory +[templates.kilostation_armory] +map_files = ["kilostation_armory.dmm"] +directory = "_maps/skyrat/automapper/templates/kilostation/" +required_map = "KiloStation.dmm" +coordinates = [80, 77, 1] +trait_name = "Station" + +# TRAMSTATION MAP EDITS +# Tramstation Arrivals +[templates.tramstation_arrivals] +map_files = ["tramstation_arrivals.dmm"] +directory = "_maps/skyrat/automapper/templates/tramstation/" +required_map = "TramStation.dmm" +coordinates = [14, 96, 2] +trait_name = "Station" + +# Tramstation Armory +[templates.tramstation_armory] +map_files = ["tramstation_armory.dmm"] +directory = "_maps/skyrat/automapper/templates/tramstation/" +required_map = "TramStation.dmm" +coordinates = [73, 161, 2] +trait_name = "Station" + +# Tramstation Barber +[templates.tramstation_barber] +map_files = ["tramstation_barber.dmm"] +directory = "_maps/skyrat/automapper/templates/tramstation/" +required_map = "TramStation.dmm" +coordinates = [109, 153, 2] +trait_name = "Station" + +# Tramstation Cryo +[templates.tramstation_cryo] +map_files = ["tramstation_cryo.dmm"] +directory = "_maps/skyrat/automapper/templates/tramstation/" +required_map = "TramStation.dmm" +coordinates = [74, 102, 2] +trait_name = "Station" + +# Tramstation NTR Office +[templates.tramstation_ntrep_office] +map_files = ["tramstation_ntrep_office.dmm"] +directory = "_maps/skyrat/automapper/templates/tramstation/" +required_map = "TramStation.dmm" +coordinates = [132, 149, 2] +trait_name = "Station" diff --git a/_maps/skyrat/automapper/templates/Skyrat_Map_Reset.dmm b/_maps/skyrat/automapper/templates/Skyrat_Map_Reset.dmm new file mode 100644 index 00000000000..4a1e19e3d6e --- /dev/null +++ b/_maps/skyrat/automapper/templates/Skyrat_Map_Reset.dmm @@ -0,0 +1,109375 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"ab" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ac" = ( +/obj/structure/sign/departments/security, +/turf/closed/wall, +/area/station/maintenance/fore) +"ae" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"af" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains" + }, +/turf/open/floor/plating, +/area/station/service/salon) +"ag" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"ah" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock/public/glass{ + name = "Workshop" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/work) +"ai" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"aj" = ( +/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/landmark/start/prisoner, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"ak" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"an" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ap" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/effect/turf_decal/delivery/white{ + color = "#00ff00" + }, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"aq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ar" = ( +/obj/item/grenade/barrier{ + pixel_x = 4 + }, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier{ + pixel_x = -4 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/red/half{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"as" = ( +/obj/item/kirbyplants{ + icon_state = "plant-13" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"at" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Cryopods" + }, +/turf/open/floor/iron, +/area/station/common/cryopods) +"av" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/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/showroomfloor, +/area/station/ai_monitored/security/armory) +"aw" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall/r_wall, +/area/station/ai_monitored/security/armory) +"ay" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/common/cryopods) +"az" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"aA" = ( +/obj/structure/chair/comfy/barber_chair, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/service/salon) +"aB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/sign/warning/docking/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"aC" = ( +/obj/structure/sign/warning, +/turf/closed/wall/r_wall, +/area/mine/storage) +"aD" = ( +/obj/effect/spawner/random/structure/girder{ + loot = list(/obj/structure/falsewall=50,/turf/closed/wall=50); + name = "fifty% falsewall, fifty% wall" + }, +/turf/open/floor/plating, +/area/station/security/prison/work) +"aE" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron, +/area/station/service/salon) +"aG" = ( +/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/stripes/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"aH" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/obj/structure/window{ + dir = 4 + }, +/obj/effect/landmark/start/prisoner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"aI" = ( +/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/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"aK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Armoury" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/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/security/armory, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"aL" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/reagent_containers/dropper, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/white, +/area/station/security/medical) +"aM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/port/fore) +"aN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/light/cold/no_nightlight/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/brown/side{ + dir = 9 + }, +/area/station/security/prison/safe) +"aO" = ( +/obj/effect/spawner/random/entertainment/arcade{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"aP" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/microfusion, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"aQ" = ( +/obj/item/radio/intercom/directional/north, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron/cafeteria, +/area/station/hallway/secondary/entry) +"aR" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/sofa/corp/left{ + dir = 4 + }, +/obj/effect/landmark/start/prisoner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"aS" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains1"; + name = "Massage Parlour Drapes" + }, +/turf/open/floor/plating, +/area/station/service/salon) +"aT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "perma-entrance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"aU" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/red/half, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"aV" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/darkblue/end{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/rec) +"aW" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/cmg, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"aX" = ( +/obj/effect/landmark/start/hangover, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"aZ" = ( +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + name = "Supply multi deck pipe adapter" + }, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + name = "Scrubbers multi deck pipe adapter" + }, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"ba" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/shuttle/arrivals/recall{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"bb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/security/execution) +"bc" = ( +/obj/item/radio/intercom/directional/north, +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"bd" = ( +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell4"; + name = "curtain" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"be" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple/side, +/area/station/security/prison/safe) +"bf" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/hallway/primary/fore) +"bg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "ert-lz-starboard" + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + space_dir = 8 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"bh" = ( +/obj/structure/chair, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"bi" = ( +/obj/structure/chair, +/obj/machinery/camera/directional/north{ + c_tag = "Arrivals - Fore Arm - Far" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"bj" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/closet/secure_closet/brig/genpop, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) +"bk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"bl" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 1; + height = 13; + id = "arrivals_stationary"; + name = "arrivals"; + width = 5 + }, +/turf/open/space/openspace, +/area/space) +"bm" = ( +/turf/open/floor/iron/dark, +/area/mine/storage) +"bn" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"bo" = ( +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/mirror/directional/east, +/obj/item/reagent_containers/dropper, +/obj/item/hairbrush/comb{ + pixel_y = 10 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"bp" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"bq" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/smartgun, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"bs" = ( +/obj/machinery/button/curtain{ + id = "prisoncell4"; + pixel_y = 21 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple/side{ + dir = 1 + }, +/area/station/security/prison/safe) +"bt" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/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{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"bu" = ( +/obj/structure/sign/poster/contraband/the_griffin{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/fore) +"bv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"bw" = ( +/obj/item/soap/nanotrasen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, +/area/station/security/prison/shower) +"by" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"bA" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"bB" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/blue, +/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 = "Library" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"bC" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/caution{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"bD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"bE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "ert-lz-starboard" + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"bF" = ( +/obj/structure/toilet/secret{ + dir = 4; + secret_type = /obj/item/card/emag/one_shot + }, +/obj/machinery/airalarm/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, +/area/station/security/prison/shower) +"bG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"bH" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/east, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"bI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/structure/sign/warning/docking/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"bJ" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron, +/area/station/service/salon) +"bK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile, +/obj/machinery/camera{ + c_tag = "Arrivals - North Docking Hall"; + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"bM" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"bN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 5 + }, +/turf/open/floor/iron/dark/red/side{ + dir = 8 + }, +/area/station/security/execution) +"bP" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"bQ" = ( +/obj/machinery/door/airlock/external{ + name = "Security External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/plating, +/area/station/security/execution/transfer) +"bR" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"bS" = ( +/obj/machinery/firealarm/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"bT" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/station/maintenance/port/fore) +"bU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) +"bV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"bW" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/iron/dark/brown/side{ + dir = 6 + }, +/area/station/security/prison/safe) +"bX" = ( +/obj/machinery/newscaster/directional/north, +/obj/machinery/modular_computer/console/preset/id, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/hos) +"bY" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/closet/secure_closet/brig/genpop, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) +"bZ" = ( +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/red/side, +/area/station/security/execution) +"ca" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/iron/grimy, +/area/station/hallway/secondary/entry) +"cb" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"cd" = ( +/obj/effect/turf_decal/stripes/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, +/area/station/ai_monitored/security/armory) +"ce" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/table/reinforced/rglass, +/obj/item/hairbrush, +/turf/open/floor/iron, +/area/station/service/salon) +"cf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"cg" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"ch" = ( +/obj/effect/turf_decal/delivery/red, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/cmg, +/turf/open/floor/iron/smooth, +/area/station/ai_monitored/security/armory) +"ci" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) +"cj" = ( +/turf/closed/wall/r_wall, +/area/station/security/lockers) +"cl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"cn" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"co" = ( +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"cp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"cr" = ( +/obj/structure/stairs/east, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"cs" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ct" = ( +/obj/structure/table, +/obj/machinery/computer/secure_data/laptop{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/blue/side, +/area/brigofficer) +"cv" = ( +/obj/structure/bed/pod, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron, +/area/station/service/salon) +"cw" = ( +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"cx" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"cy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"cz" = ( +/obj/effect/spawner/random/entertainment/arcade{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"cA" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"cB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random/directional/south, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/fore) +"cD" = ( +/obj/structure/transit_tube, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cE" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/warning/vacuum/external/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"cF" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Arrivals - Fore Arm" + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"cH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"cI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/station/maintenance/fore) +"cK" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/fore) +"cL" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/door/window/brigdoor/right/directional/west{ + name = "Armoury Desk"; + req_access = list("armory") + }, +/turf/open/floor/plating, +/area/station/ai_monitored/security/armory) +"cN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/hallway/primary/fore) +"cP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/north{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "prison intercom"; + prison_radio = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 5 + }, +/area/station/security/prison/safe) +"cQ" = ( +/obj/structure/transit_tube/diagonal/crossing/topleft, +/turf/open/space/basic, +/area/space/nearstation) +"cT" = ( +/turf/closed/wall, +/area/station/construction/mining/aux_base) +"cU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"cV" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/service/salon) +"cX" = ( +/obj/structure/closet{ + name = "maid locker" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/color/white, +/obj/item/clothing/accessory/maidapron{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/clothing/shoes/laceup, +/obj/structure/mirror/directional/north, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) +"cY" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/command/storage/eva) +"da" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"db" = ( +/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, +/area/station/hallway/secondary/entry) +"dc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"dd" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Ferry Dock" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"de" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/security/prison/mess) +"dg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/security/medical) +"dh" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"di" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"dj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"dl" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/obj/item/instrument/musicalmoth{ + name = "Syl Labee" + }, +/turf/open/space/basic, +/area/space/nearstation) +"do" = ( +/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/prisoner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"dq" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/space) +"dr" = ( +/obj/item/folder/red, +/obj/item/pen, +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/security/medical) +"ds" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/sign/poster/contraband/random/directional/south, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"dt" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/machinery/camera/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"dv" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/common/cryopods) +"dx" = ( +/turf/closed/wall/rust, +/area/space/nearstation) +"dy" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/camera/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/corner, +/area/station/hallway/secondary/entry) +"dz" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"dA" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"dB" = ( +/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/white, +/area/station/security/medical) +"dC" = ( +/obj/structure/table, +/obj/machinery/light/directional/north, +/obj/item/storage/box/drinkingglasses{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/machinery/camera{ + c_tag = " Prison - Kitchen"; + dir = 1; + network = list("ss13","prison") + }, +/obj/item/clothing/suit/apron/chef, +/obj/item/storage/box/drinkingglasses, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"dD" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/computer/arcade/orion_trail, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"dE" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Permabrig Visitation" + }, +/obj/effect/turf_decal/delivery/blue, +/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/security/brig, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) +"dF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"dG" = ( +/obj/structure/chair/sofa/bench/corner{ + dir = 8 + }, +/obj/machinery/camera/directional/east, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/primary/fore) +"dH" = ( +/obj/machinery/biogenerator, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"dI" = ( +/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/prisoner, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"dJ" = ( +/turf/closed/wall, +/area/station/commons/fitness/recreation) +"dK" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"dL" = ( +/obj/structure/table, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/item/stack/license_plates/empty/fifty, +/obj/item/stack/license_plates/empty/fifty, +/obj/machinery/airalarm/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"dM" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Barbershop" + }, +/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, +/area/station/service/salon) +"dN" = ( +/obj/machinery/washing_machine, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) +"dO" = ( +/obj/machinery/firealarm/directional/north, +/obj/structure/rack, +/obj/item/plant_analyzer, +/obj/item/cultivator, +/obj/item/shovel/spade, +/obj/item/storage/bag/plants, +/obj/item/reagent_containers/glass/watering_can, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"dP" = ( +/obj/structure/transit_tube/diagonal/crossing/topleft, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"dR" = ( +/turf/closed/wall, +/area/station/security/courtroom) +"dS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/camera/directional/west{ + c_tag = "Dormitory South" + }, +/turf/open/floor/iron, +/area/station/commons/dorms) +"dT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access = list("maint_tunnels") + }, +/turf/open/floor/plating, +/area/station/service/salon) +"dU" = ( +/obj/effect/turf_decal/tile/red, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"dV" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"dW" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"dX" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/item/restraints/handcuffs, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/revolver{ + pixel_y = 32 + }, +/obj/structure/grille/broken, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) +"dY" = ( +/obj/structure/table/wood, +/obj/item/stamp/centcom{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/stamp/denied{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/stamp{ + pixel_x = -6 + }, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"ea" = ( +/turf/closed/wall/r_wall, +/area/station/security/medical) +"eb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/landmark/start/prisoner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"ec" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ed" = ( +/turf/open/floor/plating, +/area/station/security/execution/transfer) +"ee" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light/floor, +/turf/open/floor/plating, +/area/space) +"ef" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/wood, +/area/station/security/prison) +"eg" = ( +/obj/structure/sign/warning/vacuum/external/directional/south, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"eh" = ( +/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, +/area/station/hallway/secondary/entry) +"ei" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"ej" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) +"el" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"em" = ( +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/kirbyplants/random, +/turf/open/floor/iron, +/area/station/service/salon) +"en" = ( +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central) +"eo" = ( +/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, +/turf/open/floor/iron, +/area/station/security/prison) +"ep" = ( +/turf/closed/wall, +/area/station/security/prison/safe) +"er" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"es" = ( +/turf/closed/wall/rust, +/area/station/maintenance/fore) +"et" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "prisonlockdown3"; + name = "Lockdown" + }, +/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, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"ev" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"ew" = ( +/obj/machinery/door_timer{ + id = "isolation"; + name = "Solitary Timer"; + pixel_y = 28 + }, +/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/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"ex" = ( +/obj/machinery/door/window/left/directional/south{ + name = "Armory"; + req_access = list("armory") + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"ey" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stock_parts/cell/high, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) +"ez" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"eA" = ( +/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, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"eB" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"eC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"eD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"eF" = ( +/obj/structure/closet/secure_closet/freezer/fridge{ + req_access = null + }, +/obj/item/storage/box/ingredients/vegetarian, +/obj/item/storage/box/ingredients/italian, +/obj/item/storage/box/ingredients/fruity, +/obj/item/storage/box/ingredients/fiesta, +/obj/item/storage/box/ingredients/american, +/obj/item/reagent_containers/food/condiment/flour{ + list_reagents = list(/datum/reagent/consumable/flour=600); + name = "Premium All-Purpose Flour (16KG)"; + volume = 600 + }, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/enzyme{ + list_reagents = list(/datum/reagent/consumable/enzyme=500); + name = "universe-sized universal enyzyme"; + volume = 500 + }, +/obj/item/reagent_containers/food/condiment/rice{ + list_reagents = list(/datum/reagent/consumable/rice=150); + name = "Basmati Rice Sack (4KG)"; + volume = 150 + }, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/security/prison/mess) +"eH" = ( +/obj/machinery/door/poddoor/shutters{ + id = "armory"; + name = "Armory Shutter" + }, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory/upper) +"eJ" = ( +/turf/open/space/openspace, +/area/space) +"eK" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/middle{ + dir = 1 + }, +/turf/open/floor/plating, +/area/mine/storage) +"eL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Armoury" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/hos, +/obj/machinery/door/poddoor/shutters{ + id = "frontarmory"; + name = "Front Armoury Shutter" + }, +/obj/machinery/button/door/directional/north{ + id = "frontarmory"; + name = "Armoury Shutter Toggle"; + req_access = list("armory") + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"eN" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple/side, +/area/station/security/prison/safe) +"eP" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/vacuum/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"eR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/station/security/prison) +"eS" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = " Prison - (East) Brown Wing Upper"; + dir = 8; + network = list("ss13","prison") + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"eT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Prison - Visitation (Prisoner)"; + dir = 1; + network = list("ss13","prison") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"eU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/structure/table/wood, +/obj/item/clipboard{ + pixel_x = 4 + }, +/obj/item/stack/spacecash/c50{ + pixel_y = 8 + }, +/obj/item/stack/spacecash/c50, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) +"eV" = ( +/obj/effect/turf_decal/trimline/darkblue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"eY" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"fa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/trash/chips, +/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, +/area/station/maintenance/port/fore) +"fb" = ( +/turf/closed/wall, +/area/station/maintenance/port/fore) +"fd" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/sofa/corp/right{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = " Prison - Cafeteria"; + dir = 8; + network = list("ss13","prison") + }, +/obj/effect/landmark/start/prisoner, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"fg" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"fh" = ( +/obj/item/trash/candy, +/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, +/area/station/maintenance/port/fore) +"fi" = ( +/obj/effect/turf_decal/delivery, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"fj" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/machinery/camera{ + c_tag = "Security - Upper Brig"; + dir = 1; + network = list("ss13","prison") + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"fk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"fl" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"fm" = ( +/obj/structure/rack, +/obj/machinery/light/directional/north, +/obj/item/plant_analyzer, +/obj/item/cultivator, +/obj/item/shovel/spade, +/obj/item/storage/bag/plants, +/obj/item/reagent_containers/glass/watering_can, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"fo" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) +"fp" = ( +/obj/item/storage/secure/safe/directional/south, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/closet/secure_closet/barber, +/turf/open/floor/iron, +/area/station/service/salon) +"fq" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple/side{ + dir = 6 + }, +/area/station/security/prison/safe) +"fr" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/iron/dark, +/area/station/security/execution) +"fs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/assist, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/punch_shit{ + pixel_x = 30 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) +"ft" = ( +/obj/structure/flora/rock/pile/style_2, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"fu" = ( +/obj/item/chair/plastic{ + pixel_y = 10 + }, +/obj/item/chair/plastic{ + pixel_y = 10 + }, +/obj/item/chair/plastic{ + pixel_y = 10 + }, +/obj/item/chair/plastic{ + pixel_y = 10 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"fx" = ( +/obj/structure/railing, +/obj/structure/rack, +/obj/item/gun/energy/e_gun/dragnet{ + pixel_y = 4 + }, +/obj/item/gun/energy/e_gun/dragnet, +/obj/effect/turf_decal/tile/red/half{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"fy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"fA" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"fB" = ( +/obj/structure/table, +/obj/machinery/button/curtain{ + id = "prisonlibrarycurtain"; + pixel_x = -24 + }, +/obj/machinery/computer/libraryconsole/bookmanagement{ + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"fC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/machinery/button/door/directional/north{ + id = "isolationshutter"; + name = "Isolation Shutter"; + req_access = list("brig") + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"fD" = ( +/obj/effect/landmark/start/hangover, +/obj/structure/table, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"fE" = ( +/turf/closed/wall/rust, +/area/station/maintenance/port/fore) +"fG" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"fH" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 1; + name = "blue line" + }, +/obj/structure/sign/gym/right{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 1 + }, +/area/station/security/prison) +"fI" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/microfusion, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"fJ" = ( +/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/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"fL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/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, +/area/station/security/brig) +"fM" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"fN" = ( +/obj/machinery/flasher{ + id = "transferflash"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/security/prison) +"fO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"fQ" = ( +/obj/machinery/camera{ + c_tag = " Prison - Central"; + network = list("ss13","prison") + }, +/obj/machinery/light_switch/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison) +"fR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"fS" = ( +/obj/structure/table, +/obj/item/reagent_containers/blood/random, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"fT" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/security/armory) +"fU" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/chair/stool/directional/north, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"fV" = ( +/obj/effect/landmark/navigate_destination/dockarrival, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"fW" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"fX" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"fZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"ga" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/door/airlock/public{ + name = "Massage Parlour" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/station/service/salon) +"gc" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/closet/crate, +/obj/item/reagent_containers/hypospray/medipen, +/obj/effect/spawner/random/contraband/prison, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) +"gd" = ( +/turf/closed/wall, +/area/station/ai_monitored/security/armory) +"ge" = ( +/obj/machinery/holopad, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"gf" = ( +/obj/structure/curtain/bounty, +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/rec) +"gg" = ( +/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{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"gh" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/comfy/barber_chair{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"gi" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/service/salon) +"gj" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"gk" = ( +/obj/machinery/camera{ + c_tag = "Prison Isolation Cell"; + dir = 4; + network = list("ss13","prison","isolation") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/brown/side{ + dir = 6 + }, +/area/station/security/prison/safe) +"gl" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"gm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) +"gn" = ( +/turf/closed/wall/r_wall, +/area/station/security/office) +"go" = ( +/obj/effect/turf_decal/delivery, +/obj/item/kirbyplants/random, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"gp" = ( +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"gq" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"gr" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"gt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/hallway/primary/fore) +"gu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"gv" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/directional/west, +/turf/open/floor/iron/cafeteria, +/area/station/service/salon) +"gw" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"gx" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"gy" = ( +/turf/open/space/basic, +/area/space) +"gz" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/door/poddoor/shutters/window{ + id = "armory"; + name = "Armory Shutters" + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"gA" = ( +/turf/open/openspace/airless/planetary, +/area/space) +"gB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "greylair"; + name = "Lair Privacy Shutter" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"gC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/iron/stairs{ + dir = 4 + }, +/area/station/hallway/secondary/entry) +"gD" = ( +/turf/open/floor/iron/dark/red/side{ + dir = 4 + }, +/area/station/security/execution) +"gE" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"gF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"gG" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/lipstick/random, +/obj/item/reagent_containers/spray/quantum_hair_dye{ + pixel_x = 6 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"gI" = ( +/obj/docking_port/stationary/random{ + dir = 4; + id = "pod_4_lavaland"; + name = "lavaland" + }, +/turf/open/space, +/area/space) +"gK" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"gL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"gM" = ( +/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, +/area/station/hallway/secondary/entry) +"gN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"gP" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"gR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"gS" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"gT" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/right/directional/north{ + name = "Armoury Desk"; + req_access = list("armory") + }, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/door/window/right/directional/south{ + name = "Armoury Desk" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"gU" = ( +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"gW" = ( +/obj/effect/turf_decal/tile/green{ + 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/primary/fore) +"ha" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/effect/turf_decal/tile{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"hb" = ( +/turf/closed/mineral/random/labormineral, +/area/space/nearstation) +"hc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"hd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"he" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/camera/directional/west, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"hf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"hh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/public{ + name = "Prison Cell" + }, +/turf/open/floor/iron/dark/brown, +/area/station/security/prison/safe) +"hi" = ( +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains1" + }, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/service/salon) +"hj" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/secure_closet/brigoff, +/turf/open/floor/iron/dark/blue/side{ + dir = 6 + }, +/area/brigofficer) +"hk" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = -6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/mirror/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple/side{ + dir = 9 + }, +/area/station/security/prison/safe) +"hl" = ( +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"hm" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/iron/grimy, +/area/station/hallway/secondary/entry) +"ho" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/ai_monitored/security/armory) +"hq" = ( +/obj/structure/fluff/metalpole{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"hr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"hs" = ( +/obj/machinery/cryopod{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"ht" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"hu" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/directional/west{ + c_tag = "Arrivals - Landing Bay Lounge" + }, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"hv" = ( +/obj/effect/turf_decal/trimline/darkblue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/rec) +"hw" = ( +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/flora/bush/grassy/style_random, +/turf/open/floor/grass, +/area/station/common/cryopods) +"hy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"hz" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 1; + height = 13; + id = "arrivals_stationary"; + name = "arrivals"; + width = 5 + }, +/turf/open/floor/plating/airless, +/area/space) +"hA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/work) +"hB" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/captain/private/nt_rep) +"hD" = ( +/turf/closed/wall/r_wall, +/area/station/security/prison/work) +"hE" = ( +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"hF" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"hG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"hI" = ( +/obj/item/kirbyplants{ + icon_state = "plant-18" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"hJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/hallway/primary/fore) +"hK" = ( +/obj/structure/table, +/obj/item/storage/box/teargas{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/flashbangs{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/item/gun/grenadelauncher, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"hL" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = -6; + reclaim_rate = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"hM" = ( +/turf/closed/wall/r_wall, +/area/station/security/prison) +"hO" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/station/service/salon) +"hQ" = ( +/obj/structure/table/wood, +/obj/item/storage/box/seccarts{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/storage/box/deputy, +/obj/item/radio/intercom/directional/west, +/obj/machinery/button/door/directional/west{ + id = "HOSOffice"; + name = "Emergency Blast Doors"; + pixel_y = -8; + req_access = list("hos") + }, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/hos) +"hR" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/item/melee/hammer, +/obj/item/melee/hammer, +/obj/item/melee/hammer, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"hS" = ( +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"hT" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"hU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Arrivals" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"hV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) +"hW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/directional/west, +/obj/machinery/button/curtain{ + id = "prisoncell7"; + pixel_x = -22; + pixel_y = 10 + }, +/obj/machinery/airalarm/directional/west{ + pixel_y = -4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"hX" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/washing_machine, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"hY" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"hZ" = ( +/turf/closed/wall, +/area/station/maintenance/central/greater) +"ib" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "permainner"; + name = "Permabrig Transfer" + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"ic" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/clothing/suit/armor/riot{ + pixel_y = 2 + }, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_y = -2 + }, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/machinery/requests_console/directional/north{ + department = "Security"; + departmentType = 3; + name = "Security Requests Console" + }, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"id" = ( +/obj/structure/flora/rock/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"ie" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"ig" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/fore) +"ih" = ( +/obj/item/toy/plush/beeplushie{ + desc = "Maybe hugging this will make you feel better about yourself."; + name = "Therabee" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/brown/side{ + dir = 10 + }, +/area/station/security/prison/safe) +"ii" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisonlibrarycurtain"; + name = "curtain" + }, +/turf/open/floor/plating, +/area/station/security/prison/garden) +"ij" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/pen, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) +"ik" = ( +/obj/structure/table, +/obj/item/restraints/handcuffs, +/obj/item/clothing/suit/armor/vest, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"il" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/reagent_containers/glass/bottle/chloralhydrate{ + pixel_x = -7 + }, +/obj/item/reagent_containers/glass/bottle/facid{ + pixel_x = 7 + }, +/obj/item/storage/backpack/duffelbag/sec/surgery{ + pixel_y = 5 + }, +/obj/machinery/button/door/directional/north{ + id = "justiceblast"; + name = "Justice Shutters Control"; + pixel_x = -6 + }, +/obj/machinery/button/door/directional/north{ + id = "justicechamber"; + name = "Justice Chamber Control"; + pixel_x = -6; + pixel_y = 34 + }, +/obj/machinery/button/ignition{ + id = "justicespark"; + pixel_x = 7; + pixel_y = 24 + }, +/obj/machinery/button/flasher{ + id = "justiceflash"; + pixel_x = 6; + pixel_y = 34 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark/red/side{ + dir = 9 + }, +/area/station/security/execution) +"im" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"in" = ( +/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 = 8 + }, +/area/station/security/prison) +"io" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ip" = ( +/obj/machinery/modular_computer/console/preset/cargochat/security{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/security/office) +"iq" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/table, +/obj/machinery/light/directional/south, +/obj/item/storage/photo_album/prison, +/obj/item/camera, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"ir" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock"; + space_dir = 2 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"it" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/security/execution) +"iu" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains" + }, +/turf/open/floor/plating, +/area/station/service/salon) +"iv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/plate_press{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"iw" = ( +/obj/effect/turf_decal/tile{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/button/door/directional/north{ + id = "ert_bay_door"; + name = "Landing Bay Doors" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ix" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"iy" = ( +/obj/effect/turf_decal/stripes/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/fore) +"iz" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/lipstick/random, +/obj/structure/table/wood, +/turf/open/floor/iron, +/area/station/service/salon) +"iA" = ( +/obj/structure/rack, +/obj/machinery/light/directional/west, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_y = 2 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_y = -2 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"iC" = ( +/obj/machinery/plate_press{ + pixel_y = -3 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"iD" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"iF" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/machinery/vending/barbervend, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/cafeteria, +/area/station/service/salon) +"iG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"iI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/common/cryopods) +"iK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron, +/area/station/service/salon) +"iL" = ( +/obj/structure/closet/secure_closet/freezer/meat{ + req_access = null + }, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/rawbacon, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/security/prison/mess) +"iM" = ( +/obj/machinery/button/door/directional/east{ + id = "armory"; + name = "Armory Shutters"; + req_access = list("armory") + }, +/obj/machinery/status_display/ai/directional/north, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"iN" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock"; + space_dir = 1 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"iO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/brigoff, +/turf/open/floor/iron/dark/blue, +/area/brigofficer) +"iQ" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"iR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/security/medical) +"iS" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"iT" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"iV" = ( +/obj/machinery/oven, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"iW" = ( +/obj/effect/spawner/random/structure/crate_empty, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"iX" = ( +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"iY" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/delivery, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"iZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ja" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"jb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/caution{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"jc" = ( +/turf/closed/wall/rock{ + name = "KILO 151, 80" + }, +/area/space) +"je" = ( +/obj/machinery/light/directional/north, +/obj/machinery/firealarm/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"jf" = ( +/obj/machinery/hydroponics/soil{ + desc = "A patch of fertile soil that you can plant stuff in."; + icon = 'icons/turf/floors.dmi'; + icon_state = "dirt"; + layer = 2.0001; + plane = -7; + self_sustaining = 1 + }, +/obj/structure/water_source{ + dir = 8; + name = "sink"; + pixel_x = 12; + pixel_y = -6 + }, +/turf/open/floor/plating, +/area/station/security/prison/garden) +"ji" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) +"jj" = ( +/obj/machinery/light/directional/north, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"jk" = ( +/obj/structure/chair/sofa/bench/right, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"jl" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/primary/fore) +"jm" = ( +/obj/effect/turf_decal/tile{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"jn" = ( +/obj/structure/chair/sofa/bench, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"jo" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"jp" = ( +/obj/structure/chair/sofa/bench/left, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"jq" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"jr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/red/directional/north, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"js" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/blue/side{ + dir = 1 + }, +/area/brigofficer) +"jw" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark, +/area/station/service/salon) +"jx" = ( +/obj/machinery/cryopod, +/obj/effect/turf_decal/siding/white, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"jy" = ( +/obj/effect/turf_decal/bot, +/obj/structure/frame/computer{ + anchored = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) +"jz" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/service/salon) +"jA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) +"jB" = ( +/obj/effect/turf_decal/tile{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Arrivals - Landing Bay Fore" + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"jD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"jF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/public{ + name = "Prison Cell" + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/brown, +/area/station/security/prison/safe) +"jG" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"jH" = ( +/obj/structure/table, +/obj/item/storage/secure/briefcase, +/obj/item/taperecorder, +/obj/structure/sign/warning/electric_shock/directional/south, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) +"jJ" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/item/clothing/head/helmet/sec{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/sec, +/obj/item/clothing/head/helmet/sec{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/suit/armor/vest/security{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/suit/armor/vest/security, +/obj/item/clothing/suit/armor/vest/security{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"jK" = ( +/obj/structure/filingcabinet/security{ + pixel_x = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"jL" = ( +/obj/machinery/hydroponics/soil{ + desc = "A patch of fertile soil that you can plant stuff in."; + icon = 'icons/turf/floors.dmi'; + icon_state = "dirt"; + layer = 2.0001; + plane = -7; + self_sustaining = 1 + }, +/obj/item/reagent_containers/glass/bucket{ + pixel_x = 6; + pixel_y = -8 + }, +/turf/open/floor/plating, +/area/station/security/prison/garden) +"jN" = ( +/obj/effect/turf_decal/tile{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"jP" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 6; + name = "blue line" + }, +/obj/structure/sign/gym{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 9 + }, +/area/station/security/prison) +"jQ" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/light, +/obj/structure/table/reinforced, +/obj/machinery/processor{ + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"jR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/cmg, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"jS" = ( +/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) +"jV" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"jW" = ( +/obj/machinery/smartfridge, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/rust, +/area/station/security/prison/mess) +"jX" = ( +/turf/closed/wall/ice, +/area/icemoon/underground/explored) +"jZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ka" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"kb" = ( +/turf/closed/wall/r_wall, +/area/station/security/prison/shower) +"kc" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"kd" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"ke" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"kf" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 1"; + space_dir = 1 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"kg" = ( +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"kh" = ( +/turf/open/floor/iron/stairs{ + dir = 4 + }, +/area/station/hallway/secondary/entry) +"ki" = ( +/obj/structure/sign/warning/vacuum/external/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"kj" = ( +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"kk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"kl" = ( +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"km" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/fore) +"ko" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"kp" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/closet/ammunitionlocker/useful, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"kq" = ( +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/item/toy/plush/lizard_plushie{ + desc = "A cute little lizard plushie. It has some soot on it."; + name = "Tends-The-Garden" + }, +/turf/open/floor/grass, +/area/station/common/cryopods) +"kr" = ( +/obj/structure/bed/pod, +/obj/machinery/light/warm/directional/north, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/service/salon) +"ks" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/security/prison/work) +"ku" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/security/prison) +"kv" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"kx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ky" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space, +/area/space) +"kB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"kD" = ( +/obj/structure/window/spawner, +/obj/structure/flora/bush/flowers_yw/style_random, +/turf/open/floor/grass, +/area/station/common/cryopods) +"kE" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"kF" = ( +/turf/closed/wall/rust, +/area/station/hallway/primary/fore) +"kH" = ( +/obj/structure/fluff/metalpole{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/space/basic, +/area/space/nearstation) +"kI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"kJ" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 1; + height = 13; + id = "arrivals_stationary"; + name = "arrivals"; + roundstart_template = null; + width = 5 + }, +/turf/open/space/basic, +/area/space) +"kK" = ( +/obj/item/grenade/barrier{ + pixel_x = 4 + }, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier{ + pixel_x = -4 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/key/security, +/obj/item/key/security, +/obj/item/gun/energy/e_gun/dragnet, +/obj/item/gun/energy/e_gun/dragnet{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"kL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"kM" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"kN" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/space) +"kO" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"kP" = ( +/obj/effect/turf_decal/bot, +/obj/structure/frame/computer{ + anchored = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) +"kQ" = ( +/obj/structure/cable, +/obj/machinery/button/door/directional/south{ + id = "armory"; + name = "Armory Shutters"; + req_access = list("armory") + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"kR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"kS" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"kT" = ( +/obj/machinery/door/firedoor, +/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, +/area/station/hallway/secondary/entry) +"kU" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/start/barber, +/turf/open/floor/iron/dark, +/area/station/service/salon) +"kV" = ( +/obj/machinery/light/directional/east, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/security/prison) +"kW" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/fence/door, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"kX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/small/directional/west, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/iron/dark/brown/side{ + dir = 9 + }, +/area/station/security/prison/safe) +"kZ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"la" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/closet/secure_closet{ + name = "contraband locker"; + req_access = list("armory") + }, +/obj/effect/spawner/random/contraband/armory, +/obj/effect/spawner/random/maintenance/three, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"lb" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/north, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"lc" = ( +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains1" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/service/salon) +"ld" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"le" = ( +/obj/machinery/button/curtain{ + id = "prisoncell6"; + pixel_y = 21 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 1 + }, +/area/station/security/prison/safe) +"lf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"lh" = ( +/obj/effect/turf_decal/trimline/red/filled/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/ai_monitored/security/armory) +"li" = ( +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = " Prison - (East) Brown Wing"; + network = list("ss13","prison") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/button/curtain{ + id = "prisoncell9"; + pixel_x = 22; + pixel_y = -22 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/security/prison) +"lk" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"ln" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/effect/spawner/random/contraband/armory, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"lo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/east{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "prison intercom"; + prison_radio = 1 + }, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/security/prison) +"lp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"lq" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"lr" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"ls" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"lt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/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/commons/dorms) +"lu" = ( +/obj/structure/stairs/north, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"lw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"lx" = ( +/obj/structure/cable, +/obj/structure/grille, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/security/prison/work) +"ly" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/maintenance/fore/lesser) +"lB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/grimy, +/area/station/hallway/primary/fore) +"lC" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/structure/window, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"lE" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"lG" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"lH" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"lJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"lK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Arrivals Dock - Auxiliary Construction"; + name = "dock camera" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"lM" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/hairbrush, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/lipstick/random, +/obj/machinery/camera/directional/east{ + c_tag = "Salon - Massage Parlour" + }, +/turf/open/floor/iron, +/area/station/service/salon) +"lN" = ( +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"lO" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"lP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"lQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating{ + initial_gas_mix = "o2=0.01;n2=0.01;TEMP=2.7"; + luminosity = 2; + temperature = 2.7 + }, +/area/station/security/execution/transfer) +"lS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/south, +/obj/machinery/suit_storage_unit/security, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"lT" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"lU" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigprison"; + name = "Prison Blast Door" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/button/door/directional/east{ + id = "brigprison"; + name = "Prison Lockdown" + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"lX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"lY" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/docking_port/stationary{ + dheight = 3; + dir = 2; + dwidth = 8; + height = 11; + id = "ferry_home"; + name = "Port Bay 2"; + width = 20 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"lZ" = ( +/obj/machinery/recharger, +/obj/structure/table, +/obj/effect/turf_decal/tile/red/half, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"mb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/station/maintenance/port/fore) +"mc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"me" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"mf" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark/blue/side{ + dir = 8 + }, +/area/brigofficer) +"mg" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"mh" = ( +/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, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"mi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible/layer4, +/obj/machinery/atmospherics/components/tank/air{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"mj" = ( +/obj/structure/table, +/obj/structure/reagent_dispensers/wall/peppertank/directional/west, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"mk" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"ml" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/structure/fence/door{ + dir = 4 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"mm" = ( +/obj/structure/sign/warning/secure_area{ + name = "EMERGENCY STORAGE" + }, +/turf/closed/wall, +/area/station/hallway/secondary/entry) +"mn" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "prisonlockdown2"; + name = "Lockdown" + }, +/obj/machinery/button/door/directional/west{ + id = "prisonlockdown1"; + name = "Lockdown"; + req_access = list("brig") + }, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"mo" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/disposalpipe/segment{ + 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/plating/airless, +/area/space/nearstation) +"mp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"mq" = ( +/obj/effect/spawner/random/trash/hobo_squat, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"mr" = ( +/obj/structure/window/spawner, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/flora/bush/grassy/style_random, +/turf/open/floor/grass, +/area/station/common/cryopods) +"mt" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"mu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/station/maintenance/fore) +"mv" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) +"mw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/rec) +"mx" = ( +/obj/item/storage/box/chemimp{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/box/trackimp{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/structure/reagent_dispensers/wall/peppertank/directional/south, +/obj/item/storage/box/firingpins, +/obj/item/storage/box/firingpins, +/obj/item/storage/lockbox/loyalty, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"my" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 16 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"mz" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"mA" = ( +/obj/effect/turf_decal/tile, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"mB" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"mC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"mD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/entry) +"mE" = ( +/obj/structure/bed/maint, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"mI" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Barbershop" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/station/service/salon) +"mJ" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"mK" = ( +/obj/machinery/iv_drip, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"mL" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/primary/fore) +"mM" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"mN" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"mQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/directional/west, +/obj/structure/extinguisher_cabinet/directional/west{ + pixel_y = -6 + }, +/obj/machinery/button/curtain{ + id = "prisoncell5"; + pixel_x = -22; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"mR" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"mS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"mT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"mU" = ( +/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/secondary/entry) +"mV" = ( +/obj/structure/fans/tiny/forcefield{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "ert_bay_door" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"mW" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"mX" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/start/barber, +/turf/open/floor/iron, +/area/station/service/salon) +"mY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/contraband/narcotics, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"mZ" = ( +/obj/machinery/hydroponics/soil{ + desc = "A patch of fertile soil that you can plant stuff in."; + icon = 'icons/turf/floors.dmi'; + icon_state = "dirt"; + layer = 2.0001; + plane = -7; + self_sustaining = 1 + }, +/turf/open/floor/plating, +/area/station/security/prison/garden) +"nb" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/basic, +/area/space/nearstation) +"nc" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"ne" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ng" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/common/cryopods) +"nh" = ( +/obj/item/radio/intercom/directional/west, +/obj/structure/table/reinforced/rglass, +/obj/item/reagent_containers/spray/quantum_hair_dye{ + pixel_x = 6 + }, +/obj/item/lipstick/random, +/turf/open/floor/iron, +/area/station/service/salon) +"ni" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/station/hallway/primary/fore) +"nj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/maintenance/port/fore) +"nl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/under/rank/prisoner/classic, +/obj/item/clothing/suit/jacket/leather/overcoat, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"nm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"no" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"np" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"nq" = ( +/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/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) +"ns" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"nt" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"nu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/structure/closet/cabinet, +/obj/item/stack/sheet/glass{ + amount = 10 + }, +/obj/item/stack/rods/ten, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) +"nv" = ( +/obj/item/grenade/barrier{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier{ + pixel_x = 3; + pixel_y = -1 + }, +/obj/item/grenade/barrier{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"nw" = ( +/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, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"nx" = ( +/turf/closed/wall, +/area/station/hallway/primary/central) +"nz" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) +"nB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/security/prison) +"nC" = ( +/turf/closed/mineral/random/snow, +/area/icemoon/underground/explored) +"nD" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"nE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"nG" = ( +/obj/structure/cable, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/security/prison) +"nH" = ( +/obj/docking_port/stationary{ + dheight = 3; + dir = 2; + dwidth = 8; + height = 11; + id = "ferry_home"; + name = "Port Bay 2"; + width = 20 + }, +/turf/open/floor/plating, +/area/space) +"nI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"nJ" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 10; + name = "blue line" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 5 + }, +/area/station/security/prison) +"nL" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/east{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "prison intercom"; + prison_radio = 1 + }, +/turf/open/floor/iron/dark/brown/side{ + dir = 6 + }, +/area/station/security/prison/safe) +"nM" = ( +/obj/structure/sign/departments/holy{ + pixel_y = 30 + }, +/turf/open/floor/iron/stairs/right{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"nN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/holopad, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"nO" = ( +/obj/machinery/camera{ + c_tag = " Prison - Entrance"; + network = list("ss13","prison") + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron, +/area/station/security/prison) +"nP" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"nQ" = ( +/obj/machinery/camera{ + c_tag = " Prison - East Hallway"; + network = list("ss13","prison") + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) +"nR" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"nS" = ( +/turf/closed/wall/rock{ + name = "DELTA 146, 107" + }, +/area/space) +"nV" = ( +/obj/machinery/modular_computer/console/preset/command{ + dir = 4 + }, +/obj/machinery/button/door/directional/west{ + pixel_y = 8; + id = "nt_rep_priv"; + name = "Privacy Shutters Control" + }, +/obj/machinery/button/door/directional/west{ + id = "nt_rep_wild"; + name = "Wildlife Observation Shutters Control"; + pixel_y = -8 + }, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"nW" = ( +/turf/closed/wall/r_wall, +/area/station/security/execution) +"nX" = ( +/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/central/greater) +"nY" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/button/curtain{ + id = "barbershopcurtains1"; + pixel_x = -25; + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/service/salon) +"nZ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron, +/area/station/service/salon) +"oa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/station/security/prison) +"ob" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"oc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"od" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"oe" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"of" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera{ + c_tag = "Security - Genpop Lockers"; + dir = 5 + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"oi" = ( +/obj/effect/turf_decal/bot, +/obj/structure/frame/computer{ + anchored = 1; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) +"oj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ok" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + space_dir = 8 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"ol" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Arrivals" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"om" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/effect/landmark/start/prisoner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"on" = ( +/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/iron/dark/side, +/area/station/security/prison) +"oo" = ( +/turf/closed/wall/r_wall, +/area/mine/storage) +"op" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"oq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + aiControlDisabled = 1; + name = "Education Chamber" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/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/security/brig, +/turf/open/floor/iron/dark, +/area/station/security/execution) +"os" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ot" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 4; + name = "blue line" + }, +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 4 + }, +/area/station/security/prison) +"ou" = ( +/obj/structure/closet/l3closet/security, +/obj/effect/turf_decal/bot_blue, +/obj/item/clothing/suit/bio_suit/security, +/obj/item/clothing/suit/bio_suit/security, +/obj/item/clothing/head/bio_hood/security, +/obj/item/clothing/head/bio_hood/security, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) +"ov" = ( +/turf/closed/wall, +/area/station/common/cryopods) +"ow" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Arrivals" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ox" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"oz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"oB" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"oC" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"oD" = ( +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"oF" = ( +/obj/effect/turf_decal/stripes/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, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"oG" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/bucket/wooden, +/obj/structure/cable, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple/side{ + dir = 10 + }, +/area/station/security/prison/safe) +"oH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"oI" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"oL" = ( +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell6"; + name = "curtain" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"oM" = ( +/turf/open/floor/plating/snowed/smoothed/icemoon, +/area/icemoon/underground/explored) +"oN" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"oO" = ( +/obj/structure/chair/stool/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/airalarm/directional/west{ + pixel_x = -22 + }, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"oP" = ( +/obj/structure/transit_tube/crossing, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"oQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/vending/barbervend, +/turf/open/floor/iron, +/area/station/service/salon) +"oR" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) +"oS" = ( +/obj/structure/closet/secure_closet/nanotrasen_consultant/station, +/obj/item/assembly/flash/handheld, +/obj/machinery/light/directional/west, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"oT" = ( +/obj/structure/cable, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/security/prison) +"oU" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/punching_bag, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/fore) +"oV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"oW" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"oX" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/stool/bar/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"oY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron{ + icon = 'icons/turf/floors.dmi' + }, +/area/station/security/prison/upper) +"oZ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/dryer{ + dir = 4; + pixel_x = -6; + pixel_y = -6 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"pa" = ( +/obj/machinery/vending/sustenance, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"pb" = ( +/obj/structure/transit_tube/diagonal/crossing/topleft, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"pc" = ( +/obj/structure/transit_tube/diagonal/topleft, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"pd" = ( +/obj/structure/chair/stool/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"pe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"pf" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/brown/side, +/area/station/security/prison/safe) +"pg" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"ph" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/obj/structure/fence/corner, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"pk" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"pl" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"pm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"po" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"pq" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"pr" = ( +/obj/structure/table, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters{ + id = "visitation"; + name = "Visitation Shutters" + }, +/obj/structure/window/reinforced, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"ps" = ( +/obj/machinery/airalarm/directional/north, +/turf/open/floor/glass/reinforced, +/area/station/ai_monitored/security/armory/upper) +"pw" = ( +/turf/open/floor/iron/dark/red/side{ + dir = 10 + }, +/area/station/security/execution) +"px" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell11"; + name = "curtain" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"py" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"pB" = ( +/obj/item/toy/beach_ball/holoball, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"pD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/flasher/directional/north{ + id = "visitorflash" + }, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"pE" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space/basic, +/area/space/nearstation) +"pF" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"pG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"pI" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"pJ" = ( +/obj/structure/grille, +/obj/structure/barricade/wooden, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) +"pK" = ( +/obj/structure/transit_tube/diagonal/topleft, +/turf/open/space/basic, +/area/space/nearstation) +"pL" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"pM" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = 12; + pixel_y = -6 + }, +/obj/structure/mirror/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/brown/side{ + dir = 5 + }, +/area/station/security/prison/safe) +"pO" = ( +/obj/structure/curtain/cloth, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, +/area/station/security/prison/shower) +"pP" = ( +/turf/closed/wall/rock{ + name = "DELTA 206, 127" + }, +/area/space) +"pR" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"pS" = ( +/obj/effect/turf_decal/bot, +/mob/living/simple_animal/bot/secbot/beepsky/armsky, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"pT" = ( +/obj/machinery/button/curtain{ + id = "prisoncell7"; + pixel_y = 21 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 1 + }, +/area/station/security/prison/safe) +"pU" = ( +/obj/structure/weightmachine/stacklifter, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/prison) +"pV" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"pX" = ( +/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/security/prison) +"pY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"pZ" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"qa" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/stool/bar/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"qb" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table, +/obj/machinery/airalarm/directional/north, +/obj/item/clothing/under/rank/prisoner, +/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/item/clothing/under/rank/prisoner/skirt, +/turf/open/floor/iron, +/area/station/security/prison) +"qc" = ( +/turf/closed/wall/rock{ + name = "BOX 92, 118, 2" + }, +/area/space) +"qe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"qf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"qh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"qj" = ( +/obj/structure/closet{ + name = "Evidence Closet 3" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"qk" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/structure/rack, +/obj/item/stack/medical/suture, +/obj/item/stack/medical/mesh, +/obj/item/reagent_containers/syringe/contraband/space_drugs, +/obj/item/reagent_containers/syringe{ + list_reagents = list(/datum/reagent/drug/aphrodisiac=20); + name = "crocin syringe"; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"qm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = " Prison - Pool"; + dir = 8; + network = list("ss13","prison") + }, +/obj/machinery/firealarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/rec) +"qn" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"qp" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/stripes/line, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"qq" = ( +/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, +/area/station/hallway/secondary/entry) +"qs" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"qt" = ( +/obj/effect/turf_decal/tile{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"qu" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"qv" = ( +/obj/structure/fence/corner{ + dir = 9 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"qw" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_y = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/white, +/area/station/security/medical) +"qy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/mob/living/simple_animal/bot/secbot/beepsky/armsky, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"qz" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"qD" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/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/ai_monitored/security/armory) +"qE" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/iron, +/area/station/common/cryopods) +"qF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"qH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/execution/transfer) +"qI" = ( +/obj/machinery/computer/shuttle/arrivals/recall, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"qJ" = ( +/obj/item/beacon, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"qK" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/washing_machine, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"qM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron, +/area/station/service/salon) +"qN" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"qO" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"qP" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 6 + }, +/area/station/security/prison/safe) +"qQ" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"qR" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron, +/area/station/service/salon) +"qS" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/closet/wardrobe/white, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"qT" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central) +"qU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"qV" = ( +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) +"qW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"qX" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/station/maintenance/fore) +"qY" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/security/medical) +"qZ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"ra" = ( +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"rb" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/prison) +"rd" = ( +/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, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"rf" = ( +/obj/structure/bookcase/random/nonfiction, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"rg" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"rh" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell3"; + name = "curtain" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"ri" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"rj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/button/door/directional/east{ + id = "Abandoned Cell"; + name = "Abandoned Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/structure/table, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/neck/stethoscope, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore) +"rl" = ( +/obj/structure/curtain/bounty, +/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, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/rec) +"rm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"ro" = ( +/turf/closed/wall, +/area/station/command/gateway) +"rp" = ( +/turf/closed/wall, +/area/station/security/execution) +"rr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/east, +/obj/machinery/camera/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"rs" = ( +/obj/effect/landmark/start/hangover, +/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/side{ + dir = 4 + }, +/area/station/commons/fitness/recreation) +"ru" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/entry) +"rv" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/camera/directional/north{ + c_tag = "Civilian - Laundry Room" + }, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"rw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"rx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ry" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"rA" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/hallway/secondary/entry) +"rB" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"rC" = ( +/obj/machinery/status_display/ai/directional/south, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/closet/secure_closet/brig/genpop, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) +"rE" = ( +/turf/closed/wall, +/area/station/maintenance/fore) +"rF" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Arrivals - Station Entrance" + }, +/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, +/area/station/hallway/secondary/entry) +"rG" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"rH" = ( +/obj/effect/turf_decal/tile/red{ + 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/security/execution/transfer) +"rI" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock/public/glass{ + name = "Barbershop" + }, +/turf/open/floor/iron, +/area/station/service/salon) +"rJ" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"rK" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Arrivals - Landing Bay" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"rL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/obj/structure/cable, +/obj/effect/decal/remains/human{ + desc = "They look like human remains. The bones are charred and burned."; + name = "charred remains" + }, +/turf/open/floor/plating, +/area/station/security/prison/work) +"rM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"rN" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/spawner/random/contraband/armory, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"rO" = ( +/obj/structure/statue/snow/snowman, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"rP" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"rQ" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = 12; + pixel_y = -6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/mirror/directional/north, +/turf/open/floor/iron/dark/brown/side{ + dir = 5 + }, +/area/station/security/prison/safe) +"rR" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/security{ + name = "Armoury" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"rS" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"rT" = ( +/obj/effect/turf_decal/trimline/darkblue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/rec) +"rU" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"rW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) +"rY" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"rZ" = ( +/turf/closed/wall/rock{ + name = "BOX 100, 177, 3" + }, +/area/space) +"sa" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/glass{ + dir = 1 + }, +/obj/effect/decal/cleanable/glass{ + dir = 4 + }, +/obj/effect/decal/cleanable/glass{ + dir = 8 + }, +/obj/structure/grille/broken, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"sc" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/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/security/execution/transfer) +"sd" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/secondary/entry) +"se" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/prison) +"sf" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/mousetraps{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/flashlight, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) +"sg" = ( +/obj/machinery/light/directional/east, +/turf/open/misc/asteroid/snow/icemoon, +/area/mine/storage) +"sh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Storage Closet" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"sj" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"sl" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"sm" = ( +/obj/machinery/cryopod, +/obj/effect/turf_decal/siding/white, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"sn" = ( +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/station/security/prison) +"sq" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plating, +/area/space) +"ss" = ( +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/hallway/secondary/entry) +"st" = ( +/obj/effect/turf_decal/trimline/darkblue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/structure/cable, +/obj/machinery/airalarm/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/rec) +"su" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"sv" = ( +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell7"; + name = "curtain" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"sw" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/item/storage/barricade{ + pixel_y = -5 + }, +/obj/item/storage/barricade, +/obj/item/storage/barricade{ + pixel_y = 5 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"sx" = ( +/obj/structure/sign/warning/vacuum/external/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"sy" = ( +/turf/open/floor/iron/white/side{ + dir = 4 + }, +/area/station/commons/fitness/recreation) +"sB" = ( +/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/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"sC" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/prisoner, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) +"sD" = ( +/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, +/turf/open/floor/iron/dark/corner, +/area/station/security/prison) +"sE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"sF" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"sG" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"sH" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"sI" = ( +/obj/machinery/door/airlock/security{ + name = "Permabrig Visitation" + }, +/obj/effect/turf_decal/delivery/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/visit) +"sJ" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"sK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/caution{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"sN" = ( +/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/public/glass{ + name = "Cryopods" + }, +/turf/open/floor/iron, +/area/station/common/cryopods) +"sP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced/spawner/north, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"sS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random/directional/west, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/port/fore) +"sT" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "prisonlockdown2"; + name = "Lockdown" + }, +/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) +"sV" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"sW" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/service/salon) +"sX" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 1; + height = 4; + name = "escape pod loader"; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/turf/open/space/basic, +/area/space) +"sY" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Armory" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory/upper) +"sZ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/closet/wardrobe/grey, +/obj/machinery/light/directional/east, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"ta" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/effect/turf_decal/tile{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"tb" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/secondary/entry) +"tc" = ( +/obj/structure/table, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters{ + id = "visitation"; + name = "Visitation Shutters" + }, +/obj/structure/window/reinforced, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"td" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/hairbrush, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/lipstick/random, +/turf/open/floor/iron, +/area/station/service/salon) +"te" = ( +/obj/effect/landmark/start/hangover, +/obj/structure/table, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"tf" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"tg" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"th" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"ti" = ( +/obj/effect/turf_decal/stripes/line{ + 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, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"tj" = ( +/obj/structure/railing/corner, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/secondary/entry) +"tk" = ( +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/hallway/secondary/entry) +"tl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/reagent_dispensers/plumbed, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"tm" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"tn" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, +/area/station/security/prison/shower) +"to" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/security/prison) +"tq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"ts" = ( +/obj/machinery/light_switch/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/red/side{ + dir = 6 + }, +/area/station/security/execution) +"tu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"tw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"tx" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/reagent_dispensers/wall/peppertank/directional/south, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) +"ty" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/docking_port/stationary{ + dheight = 3; + dir = 8; + dwidth = 8; + height = 11; + id = "ferry_home"; + name = "Port Bay 2"; + width = 20 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"tz" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/red{ + 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, +/area/station/security/execution/transfer) +"tA" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"tB" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/bed/pod, +/obj/structure/window, +/turf/open/floor/iron, +/area/station/service/salon) +"tC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"tE" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"tF" = ( +/turf/closed/wall/rock{ + name = "BOX 87, 128" + }, +/area/space) +"tG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/left/directional/west{ + name = "Armoury Desk"; + req_access = list("armory") + }, +/obj/machinery/door/window/left/directional/east{ + name = "Armoury Desk"; + req_access = list("security") + }, +/turf/open/floor/plating, +/area/station/ai_monitored/security/armory) +"tH" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"tI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"tJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"tK" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"tL" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/reagent_containers/dropper, +/obj/item/hairbrush/comb{ + pixel_y = 10 + }, +/obj/machinery/button/curtain{ + id = "barbershopcurtains"; + pixel_x = 10; + pixel_y = -26 + }, +/turf/open/floor/iron/dark, +/area/station/service/salon) +"tO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"tP" = ( +/obj/item/kirbyplants/random, +/obj/structure/sign/warning/pods/directional/south{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"tQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/security/prison) +"tR" = ( +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/security/prison) +"tS" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/sign/warning/electric_shock/directional/north, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) +"tT" = ( +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"tU" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Arrivals - Aft Arm - Lounge" + }, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/hallway/secondary/entry) +"tV" = ( +/turf/closed/wall, +/area/station/security/prison) +"tW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"tY" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/security{ + name = "Armoury" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"ua" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ub" = ( +/obj/structure/rack, +/obj/item/tank/internals/plasmaman/belt{ + pixel_x = -6 + }, +/obj/item/tank/internals/plasmaman/belt{ + pixel_x = 3 + }, +/obj/item/tank/internals/nitrogen/belt{ + pixel_x = -6 + }, +/obj/item/tank/internals/nitrogen/belt, +/obj/item/tank/internals/nitrogen/belt{ + pixel_x = 6 + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"ud" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/security/prison/garden) +"uf" = ( +/obj/machinery/light/directional/north, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/cmg, +/obj/effect/turf_decal/tile/red/half, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"ug" = ( +/obj/machinery/dish_drive/bullet{ + succrange = 2 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"uh" = ( +/obj/machinery/button/curtain{ + id = "prisoncell3"; + pixel_y = 21 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple/side{ + dir = 1 + }, +/area/station/security/prison/safe) +"ui" = ( +/obj/structure/window/reinforced/spawner, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/hallway/secondary/entry) +"uj" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ul" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"um" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"un" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"uo" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/camera/directional/south{ + c_tag = "NT Consultant's Office"; + name = "command camera" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"up" = ( +/obj/machinery/light/directional/south, +/obj/effect/spawner/liquids_spawner, +/turf/open/floor/iron/pool, +/area/station/security/prison/rec) +"uq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera{ + c_tag = "Arrivals - South Docking Hall"; + dir = 6 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ur" = ( +/obj/structure/holohoop{ + density = 0; + pixel_y = 18 + }, +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 1; + name = "blue line" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 1 + }, +/area/station/security/prison) +"us" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/caution{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ut" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/hallway/primary/fore) +"uv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"uw" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/button/door/directional/north{ + id = "ert_bay_door"; + name = "Landing Bay Doors" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"uy" = ( +/obj/effect/turf_decal/delivery/blue, +/obj/machinery/door/airlock/security{ + req_access = list("brig") + }, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "permaturnstile"; + name = "Lockdown" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"uz" = ( +/obj/structure/bookcase/random/religion, +/obj/item/radio/intercom/directional/east{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "prison intercom"; + prison_radio = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"uB" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod 3"; + space_dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"uC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"uD" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/holopad, +/turf/open/floor/iron, +/area/station/service/salon) +"uF" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"uG" = ( +/obj/structure/table, +/obj/item/storage/box/chemimp{ + pixel_x = 6 + }, +/obj/item/storage/box/trackimp{ + pixel_x = -3 + }, +/obj/item/storage/lockbox/loyalty, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"uH" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall, +/area/space/nearstation) +"uI" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/sofa/corp/right{ + dir = 4 + }, +/obj/effect/landmark/start/prisoner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"uJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/bodybag{ + pixel_y = 5 + }, +/obj/item/shovel, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) +"uM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"uN" = ( +/turf/closed/wall/r_wall, +/area/station/security/prison/safe) +"uO" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"uP" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/cmg, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"uQ" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"uR" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"uS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"uT" = ( +/obj/effect/turf_decal/tile/red/half{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"uU" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"uW" = ( +/mob/living/simple_animal/bot/secbot/beepsky/armsky, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"uX" = ( +/obj/machinery/plate_press{ + pixel_y = 4 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"uY" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/turf/open/floor/iron/cafeteria, +/area/station/service/salon) +"uZ" = ( +/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/secondary/entry) +"vb" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"vd" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Arrivals - Aft Arm - Bay" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ve" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"vf" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"vg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"vi" = ( +/turf/closed/wall/rock{ + name = "DELTA 215, 93" + }, +/area/space) +"vj" = ( +/obj/structure/barricade/wooden{ + opacity = 1 + }, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/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/plating, +/area/station/security/prison/rec) +"vk" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"vl" = ( +/obj/machinery/door/poddoor/preopen{ + id = "justicechamber"; + name = "Justice Chamber Blast Door" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/door/window/brigdoor/left/directional/west{ + req_access = list("brig") + }, +/obj/machinery/door/window/brigdoor/left/directional/east{ + req_access = list("brig") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/security/execution) +"vm" = ( +/obj/machinery/cryopod, +/obj/effect/turf_decal/siding/white, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"vn" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"vo" = ( +/obj/structure/chair/stool/directional/south, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"vp" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space, +/area/space/nearstation) +"vq" = ( +/obj/machinery/door/airlock/external{ + name = "Landing Pad Umbilical" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "ert-lz-starboard" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"vr" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"vs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"vt" = ( +/obj/structure/bed/maint, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/iron{ + icon = 'icons/turf/floors.dmi' + }, +/area/station/security/prison/upper) +"vu" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor{ + name = "Armory Desk"; + req_access = list("armory") + }, +/obj/machinery/door/window/left/directional/north{ + name = "Armory Desk" + }, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory/upper) +"vv" = ( +/turf/closed/wall/rock{ + name = "TRAM 109, 153" + }, +/area/space) +"vw" = ( +/obj/structure/rack, +/obj/item/storage/box/lights/mixed, +/obj/item/clothing/gloves/botanic_leather, +/obj/item/clothing/gloves/color/blue, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/reagent_containers/glass/bucket, +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/obj/item/mop, +/obj/item/storage/bag/trash, +/obj/item/pushbroom, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) +"vx" = ( +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"vy" = ( +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/security/prison) +"vz" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"vB" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 9 + }, +/obj/item/kirbyplants/random, +/obj/machinery/status_display/ai/directional/north, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central) +"vC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"vD" = ( +/obj/machinery/status_display/evac/directional, +/turf/closed/wall, +/area/station/hallway/secondary/entry) +"vF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"vG" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"vH" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/stairs{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"vI" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/landmark/start/barber, +/obj/machinery/button/curtain{ + id = "barbershopcurtains1"; + pixel_x = 25; + pixel_y = 24 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"vJ" = ( +/obj/machinery/door/airlock/corporate{ + name = "NT Consultant's Office" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/cent_com/rep_door, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"vK" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"vL" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"vM" = ( +/obj/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/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains" + }, +/turf/open/floor/plating, +/area/station/service/salon) +"vN" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/brown/side{ + dir = 6 + }, +/area/station/security/prison/safe) +"vO" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/ai_monitored/security/armory) +"vP" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating, +/area/space) +"vR" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/stairs{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"vS" = ( +/obj/machinery/light/warm/directional/west, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/kirbyplants/random, +/obj/machinery/button/curtain{ + id = "barbershopcurtains"; + pixel_x = -25; + pixel_y = -24 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"vT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"vU" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"vV" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"vW" = ( +/obj/effect/turf_decal/stripes/line{ + 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, +/area/station/hallway/primary/fore) +"vX" = ( +/obj/machinery/suit_storage_unit/security, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"vY" = ( +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"vZ" = ( +/obj/structure/punching_bag, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/prison) +"wb" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"wc" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"we" = ( +/obj/machinery/light_switch/directional/west, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/dryer{ + dir = 4; + pixel_x = -6; + pixel_y = -6 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"wf" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/mob/living/simple_animal/bot/secbot/beepsky/armsky, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"wi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"wj" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"wk" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"wl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"wm" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/fore/lesser) +"wo" = ( +/obj/vehicle/ridden/secway, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"wp" = ( +/obj/machinery/cryopod, +/obj/effect/turf_decal/siding/white, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"wq" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"wr" = ( +/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/prisoner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"ws" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/nanotrasen_consultant, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"wt" = ( +/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/machinery/button/curtain{ + id = "prisoncell11"; + pixel_x = 22; + pixel_y = 10 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"wu" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/structure/fence/door{ + dir = 4 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"wv" = ( +/obj/machinery/light/directional/south, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/landmark/start/prisoner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, +/area/station/security/prison/shower) +"wx" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 4" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"wy" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"wz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"wA" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/closet/wardrobe/black, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"wB" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/inflatable, +/obj/item/inflatable/door, +/obj/item/inflatable/door, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) +"wC" = ( +/obj/effect/turf_decal/stripes/line{ + 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/iron, +/area/station/hallway/primary/fore) +"wD" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"wE" = ( +/obj/structure/table, +/obj/machinery/door/poddoor/shutters{ + id = "visitation"; + name = "Visitation Shutters" + }, +/obj/machinery/door/window/left/directional/south{ + name = "Visitation"; + req_access = list("security") + }, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"wF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"wG" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"wH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/security{ + name = "Isolation Cell" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/safe) +"wI" = ( +/obj/structure/transit_tube, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/iron/grimy, +/area/station/hallway/primary/fore) +"wM" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/grimy, +/area/station/hallway/secondary/entry) +"wN" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"wO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"wP" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"wQ" = ( +/obj/structure/bed/roller, +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron/white, +/area/station/security/medical) +"wR" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = 12; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/mirror/directional/north, +/turf/open/floor/iron/dark/brown/side{ + dir = 5 + }, +/area/station/security/prison/safe) +"wS" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"wT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/airalarm/directional/west{ + pixel_y = -4 + }, +/obj/machinery/button/curtain{ + id = "prisoncell4"; + pixel_x = -22; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"wU" = ( +/obj/machinery/computer/slot_machine, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) +"wV" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/flora/bush/pale/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"wW" = ( +/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, +/area/station/maintenance/port/fore) +"wX" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/execution/transfer) +"wZ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"xa" = ( +/obj/machinery/power/apc/auto_name/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{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"xb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"xc" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Security - Armory"; + network = list("ss13","Security") + }, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/shotguns, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"xd" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"xe" = ( +/obj/machinery/door/airlock/external{ + name = "Arrival Shuttle Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"xf" = ( +/obj/machinery/washing_machine, +/obj/machinery/camera{ + c_tag = " Prison - Janitorial"; + dir = 1; + network = list("ss13","prison") + }, +/obj/machinery/light/directional/north, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) +"xg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 5 + }, +/obj/machinery/meter, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark, +/area/station/security/execution) +"xh" = ( +/obj/machinery/door/window/left/directional/east, +/obj/structure/closet/crate, +/obj/item/tank/internals/oxygen/red{ + pixel_x = 3 + }, +/obj/item/tank/internals/oxygen/red{ + pixel_x = -3 + }, +/obj/item/wrench, +/turf/open/floor/iron/dark, +/area/station/security/execution) +"xi" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "prisonlockdown1"; + name = "Lockdown" + }, +/obj/machinery/button/door/directional/north{ + id = "prisonlockdown1"; + name = "Lockdown"; + req_access = list("brig") + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"xk" = ( +/obj/effect/turf_decal/stripes/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, +/area/station/ai_monitored/security/armory) +"xl" = ( +/obj/structure/cable, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"xm" = ( +/obj/item/storage/box/teargas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/flashbangs{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/item/gun/grenadelauncher, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"xn" = ( +/obj/structure/fireplace, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/captain/private/nt_rep) +"xo" = ( +/obj/item/storage/secure/safe/directional/south, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/closet/secure_closet/barber, +/turf/open/floor/iron, +/area/station/service/salon) +"xp" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"xs" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) +"xt" = ( +/obj/structure/filingcabinet/employment, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"xu" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"xv" = ( +/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/machinery/light/directional/south, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) +"xx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"xy" = ( +/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, +/area/station/hallway/secondary/entry) +"xz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"xB" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"xC" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"xD" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"xE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"xF" = ( +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/vending/barbervend, +/obj/machinery/button/curtain{ + id = "barbershopcurtains"; + pixel_x = -25; + pixel_y = 24 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"xG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/structure/girder, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"xH" = ( +/obj/machinery/door/airlock/freezer, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"xI" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/landmark/start/barber, +/turf/open/floor/iron/dark, +/area/station/service/salon) +"xK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"xL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"xM" = ( +/obj/structure/sign/departments/custodian, +/turf/closed/wall, +/area/station/maintenance/fore) +"xN" = ( +/turf/closed/wall, +/area/station/security/prison/upper) +"xP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"xQ" = ( +/obj/item/grenade/barrier{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier{ + pixel_x = 3; + pixel_y = -1 + }, +/obj/item/grenade/barrier{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/structure/rack, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"xR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron{ + icon = 'icons/turf/floors.dmi' + }, +/area/station/security/prison/upper) +"xT" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/primary/central) +"xU" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/station/security/prison) +"xV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"xX" = ( +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Salon" + }, +/turf/open/floor/iron, +/area/station/service/salon) +"xY" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"xZ" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"ya" = ( +/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, +/area/station/maintenance/port/fore) +"yb" = ( +/obj/effect/turf_decal/delivery/red, +/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/public/glass{ + name = "Janitorial" + }, +/obj/machinery/door/firedoor, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"yc" = ( +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"yd" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/champagne{ + pixel_y = 18; + pixel_x = -5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"yf" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"yg" = ( +/obj/item/gun/energy/laser/practice{ + pixel_y = 5 + }, +/obj/item/gun/energy/laser/practice, +/obj/item/gun/energy/laser/practice{ + pixel_y = -5 + }, +/obj/structure/rack, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"yh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"yi" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/kirbyplants/random, +/turf/open/floor/iron, +/area/station/service/salon) +"yj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"yk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"yl" = ( +/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{ + icon_state = "wood-broken6" + }, +/area/station/maintenance/port/fore) +"ym" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"yn" = ( +/obj/structure/table, +/obj/item/storage/box/firingpins, +/obj/item/storage/box/firingpins, +/obj/item/key/security, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"yo" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/cafeteria, +/area/station/service/salon) +"yp" = ( +/turf/closed/wall, +/area/station/maintenance/port) +"yq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"yr" = ( +/obj/machinery/cryopod, +/obj/effect/turf_decal/siding/white, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"yt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"yu" = ( +/obj/machinery/door/airlock{ + name = "Port Emergency Storage" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port) +"yv" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"yw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"yy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"yz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/public{ + name = "Prison Cell" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple, +/area/station/security/prison/safe) +"yA" = ( +/obj/effect/turf_decal/trimline/darkblue/filled/corner, +/obj/effect/turf_decal/trimline/darkblue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"yB" = ( +/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/public/glass{ + name = "Cryopods" + }, +/turf/open/floor/iron/white, +/area/station/common/cryopods) +"yC" = ( +/turf/closed/wall, +/area/station/security/prison/rec) +"yD" = ( +/obj/item/storage/box/chemimp{ + pixel_x = 6 + }, +/obj/item/storage/box/trackimp{ + pixel_x = -3 + }, +/obj/item/storage/lockbox/loyalty, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"yE" = ( +/obj/structure/rack, +/obj/item/gun/energy/ionrifle, +/obj/item/gun/energy/temperature/security, +/obj/item/clothing/suit/hooded/ablative, +/obj/item/gun/grenadelauncher, +/obj/item/storage/box/teargas{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/item/storage/box/flashes{ + pixel_x = 3 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"yF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"yG" = ( +/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/green{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"yH" = ( +/obj/machinery/button/flasher{ + id = "IsolationFlash"; + pixel_x = 21; + pixel_y = 21 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"yI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"yJ" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"yK" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/sign/warning/secure_area/directional/east, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"yL" = ( +/obj/effect/turf_decal/trimline/neutral/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, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"yM" = ( +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"yO" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"yP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"yQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Fore Hallway Monastary Tube"; + name = "fore camera" + }, +/obj/structure/chair/sofa/bench, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"yR" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"yT" = ( +/turf/closed/wall, +/area/station/security/prison/work) +"yV" = ( +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"yW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/structure/noticeboard/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) +"yX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"yZ" = ( +/turf/closed/wall, +/area/station/security/prison/mess) +"za" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/closed/wall/r_wall, +/area/station/ai_monitored/security/armory/upper) +"zb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/station/maintenance/fore) +"ze" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 8; + name = "blue line" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 8 + }, +/area/station/security/prison) +"zg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/button/curtain{ + id = "barbershopcurtains"; + pixel_x = 25; + pixel_y = -24 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"zi" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/sign/poster/official/random/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"zj" = ( +/obj/effect/turf_decal/stripes/line, +/mob/living/simple_animal/bot/secbot/beepsky/armsky, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"zn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port) +"zo" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/dish_drive/bullet{ + succrange = 6 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"zp" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"zq" = ( +/obj/structure/rack, +/obj/item/grenade/barrier{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier{ + pixel_x = 3; + pixel_y = -1 + }, +/obj/item/grenade/barrier{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"zr" = ( +/obj/structure/disposalpipe/segment{ + 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/commons/fitness/recreation) +"zs" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "prisonlockdown4"; + name = "Lockdown" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"zt" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + 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/security/execution/transfer) +"zu" = ( +/obj/effect/turf_decal/trimline/darkblue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/rec) +"zv" = ( +/obj/machinery/airalarm/directional/north, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/microfusion, +/obj/effect/turf_decal/delivery/red, +/turf/open/floor/iron/smooth, +/area/station/ai_monitored/security/armory) +"zy" = ( +/obj/machinery/airalarm/directional/east, +/obj/structure/water_source{ + dir = 8; + name = "sink"; + pixel_x = 12; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"zz" = ( +/obj/effect/turf_decal/trimline/red/filled/corner, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"zA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/entry) +"zB" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating, +/area/space) +"zC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/entry) +"zD" = ( +/obj/structure/table/reinforced, +/obj/item/electropack, +/obj/item/assembly/signaler, +/obj/machinery/light/directional/west, +/obj/item/clothing/head/helmet/sec, +/turf/open/floor/iron/dark/red/side{ + dir = 1 + }, +/area/station/security/execution) +"zE" = ( +/turf/closed/wall/rock{ + name = "TRAM 73, 161" + }, +/area/space) +"zF" = ( +/turf/open/floor/iron, +/area/station/security/prison) +"zG" = ( +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell5"; + name = "curtain" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"zH" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Barbershop" + }, +/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, +/area/station/service/salon) +"zJ" = ( +/obj/machinery/computer/cryopod{ + dir = 8; + pixel_x = 32 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/white, +/area/station/common/cryopods) +"zK" = ( +/obj/effect/turf_decal/delivery/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/public/glass{ + name = "Cafeteria" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"zL" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"zM" = ( +/obj/machinery/door/airlock/external{ + name = "Arrival Shuttle Airlock"; + space_dir = 2 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"zN" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"zO" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell6"; + name = "curtain" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"zP" = ( +/obj/machinery/button/door/directional/east{ + id = "armory"; + name = "Armory Shutters"; + pixel_x = -9; + pixel_y = 30; + req_access = list("armory") + }, +/obj/structure/rack, +/obj/item/gun/energy/e_gun{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/e_gun, +/obj/item/gun/energy/e_gun{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/red/half{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"zR" = ( +/obj/machinery/hydroponics/soil{ + desc = "A patch of fertile soil that you can plant stuff in."; + icon = 'icons/turf/floors.dmi'; + icon_state = "dirt"; + layer = 2.0001; + plane = -7; + self_sustaining = 1 + }, +/obj/machinery/camera{ + c_tag = " Prison - Garden"; + network = list("ss13","prison") + }, +/obj/structure/closet/crate/hydroponics, +/obj/item/seeds/tobacco, +/obj/item/seeds/cotton, +/obj/item/seeds/tomato, +/obj/item/seeds/tower, +/obj/item/seeds/pumpkin, +/obj/item/seeds/wheat, +/obj/item/seeds/ambrosia, +/obj/item/seeds/grass, +/obj/item/seeds/carrot, +/obj/item/seeds/potato, +/obj/item/seeds/garlic, +/obj/item/seeds/onion, +/obj/item/paper/guides/jobs/hydroponics, +/turf/open/floor/plating, +/area/station/security/prison/garden) +"zS" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Armory - Interior" + }, +/obj/structure/table/reinforced, +/obj/item/gun/energy/e_gun/dragnet, +/obj/item/gun/energy/e_gun/dragnet, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/item/melee/hammer, +/obj/item/melee/hammer, +/obj/item/melee/hammer, +/obj/item/storage/box/firingpins, +/obj/item/storage/box/firingpins, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"zT" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/tile, +/obj/effect/turf_decal/tile{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"zU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/north, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"zV" = ( +/turf/closed/wall/rock{ + name = "META 101, 117" + }, +/area/space) +"zW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/security/prison) +"zX" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/table/reinforced/rglass, +/obj/structure/window, +/obj/item/hairbrush, +/obj/item/lipstick/random, +/turf/open/floor/iron, +/area/station/service/salon) +"zZ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"Aa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ab" = ( +/turf/closed/wall/r_wall, +/area/station/security/prison/rec) +"Ac" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/razor{ + pixel_x = -6 + }, +/obj/item/reagent_containers/spray/barbers_aid{ + pixel_x = 6 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark, +/area/station/service/salon) +"Ad" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/warning/pods/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Af" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/security/prison) +"Ai" = ( +/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/prison) +"Aj" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/plating, +/area/space) +"Ak" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Al" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Am" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ao" = ( +/obj/structure/bed, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/glasses/blindfold, +/obj/item/clothing/mask/muzzle, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/security/medical) +"Ap" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Aq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/coin/twoheaded{ + pixel_x = 8; + pixel_y = 6 + }, +/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/maintenance/port/fore) +"Ar" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/wood, +/area/station/security/prison) +"As" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/sofa/bench/left{ + 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/service/salon) +"At" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"Au" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"Av" = ( +/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, +/area/command/heads_quarters/captain/private/nt_rep) +"Ax" = ( +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ay" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/light/warm/directional/north, +/obj/item/kirbyplants/random, +/turf/open/floor/iron, +/area/station/service/salon) +"Az" = ( +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"AA" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 4" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"AB" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Armory" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"AD" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"AE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/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/showroomfloor, +/area/station/ai_monitored/security/armory) +"AG" = ( +/obj/structure/flora/grass/green/style_2, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) +"AH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"AI" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 1; + name = "blue line" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 1 + }, +/area/station/security/prison) +"AJ" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + 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, +/area/station/commons/fitness/recreation) +"AL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Arrivals Dock - Aft Starboard"; + name = "dock camera" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"AM" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"AO" = ( +/obj/machinery/button/curtain{ + id = "prisoncell8"; + pixel_y = 21 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 1 + }, +/area/station/security/prison/safe) +"AP" = ( +/obj/item/kirbyplants{ + icon_state = "plant-18" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile, +/obj/machinery/camera/directional/south{ + c_tag = "Arrivals - Landing Bay Door" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"AQ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"AR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"AS" = ( +/obj/machinery/door/airlock/public{ + name = "Massage Parlour" + }, +/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, +/area/station/service/salon) +"AT" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/stool/bar/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"AV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) +"AW" = ( +/obj/machinery/camera/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"AX" = ( +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"AY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + space_dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"AZ" = ( +/obj/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/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/button/curtain{ + id = "barbershopcurtains"; + pixel_x = 25; + pixel_y = -24 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"Ba" = ( +/obj/structure/curtain/cloth/fancy, +/turf/open/floor/wood/tile, +/area/station/security/execution/transfer) +"Bb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/trash/janitor_supplies, +/turf/open/floor/plating, +/area/station/maintenance/port) +"Bc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Sanitarium" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/red/side{ + dir = 8 + }, +/area/station/security/medical) +"Be" = ( +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"Bh" = ( +/obj/effect/turf_decal/tile, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Bi" = ( +/obj/effect/turf_decal/tile, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Arrivals - Auxilliary Bay Doors" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Bk" = ( +/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/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"Bm" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"Bn" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Arrivals - Aft Arm" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"Bo" = ( +/turf/closed/wall/rock{ + name = "BOX 116, 142" + }, +/area/space) +"Bp" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"Bq" = ( +/obj/effect/landmark/carpspawn, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"Bs" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, +/area/station/security/prison/shower) +"Bt" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_y = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/station/security/medical) +"Bu" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port) +"Bv" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"Bw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Bz" = ( +/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/prisoner, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) +"BA" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile, +/obj/machinery/light/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"BE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"BH" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/comfy/barber_chair{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/service/salon) +"BI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"BK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"BL" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"BM" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/shotguns, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"BN" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Weapon Distribution"; + req_access = list("armory") + }, +/obj/item/paper, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/left/directional/south{ + name = "Requests Window" + }, +/obj/item/pen, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"BO" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"BP" = ( +/obj/structure/cable, +/obj/effect/spawner/liquids_spawner, +/turf/open/floor/iron/pool, +/area/station/security/prison/rec) +"BQ" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/service/salon) +"BS" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/button/curtain{ + id = "barbershopcurtains1"; + pixel_x = -25; + pixel_y = 24 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"BT" = ( +/obj/structure/cable, +/obj/structure/grille, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"BU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/built, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron{ + icon = 'icons/turf/floors.dmi' + }, +/area/station/security/prison/upper) +"BW" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"BX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"BY" = ( +/obj/structure/cable/multilayer/multiz, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"BZ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ca" = ( +/turf/open/floor/iron/dark/red/side{ + dir = 9 + }, +/area/station/security/execution) +"Cb" = ( +/obj/structure/cable, +/turf/open/floor/iron/stairs/old{ + dir = 8 + }, +/area/station/maintenance/fore/lesser) +"Cd" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Arrivals Escape Pod 1" + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Cf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"Ch" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"Ci" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile, +/obj/machinery/light/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ck" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"Cl" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Cm" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/effect/landmark/start/prisoner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"Cn" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Co" = ( +/obj/structure/rack, +/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/machinery/airalarm/directional/west, +/obj/machinery/camera/motion/directional/west{ + c_tag = "Armory - Internal" + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Cp" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 5; + name = "blue line" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 10 + }, +/area/station/security/prison) +"Cq" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "prisonlockdown3"; + name = "Lockdown" + }, +/obj/machinery/button/door/directional/north{ + id = "prisonlockdown3"; + name = "Lockdown"; + req_access = list("brig") + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"Cs" = ( +/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/cable, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/maintenance/fore) +"Cu" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Cv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"Cw" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"Cx" = ( +/obj/effect/turf_decal/stripes/line{ + 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/cable, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/station/maintenance/fore) +"Cy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/cardboard, +/obj/effect/spawner/random/contraband/prison, +/turf/open/floor/plating, +/area/station/security/prison/work) +"CA" = ( +/turf/closed/wall, +/area/station/security/prison/garden) +"CC" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"CD" = ( +/obj/effect/turf_decal/tile/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/service/salon) +"CE" = ( +/obj/structure/transit_tube/crossing, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"CF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/fore) +"CG" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"CI" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"CL" = ( +/obj/structure/bookcase/random/fiction, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"CM" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/airlock/public/glass{ + name = "Garden" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/garden) +"CN" = ( +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"CP" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/clothing/head/helmet/sec{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/sec, +/obj/item/clothing/head/helmet/sec{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/suit/armor/vest/security{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/vest/security, +/obj/item/clothing/suit/armor/vest/security{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"CQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Arrivals" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"CR" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "prisonlockdown1"; + name = "Lockdown" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"CS" = ( +/obj/structure/chair/plastic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"CU" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/brown/side{ + dir = 10 + }, +/area/station/security/prison/safe) +"CX" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/plating, +/area/space) +"CY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"CZ" = ( +/obj/docking_port/stationary/random/icemoon{ + dir = 8; + id = "pod_lavaland"; + name = "lavaland" + }, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"Da" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Dc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Dd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/north{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "prison intercom"; + prison_radio = 1 + }, +/turf/open/floor/iron/dark/brown/side{ + dir = 9 + }, +/area/station/security/prison/safe) +"Df" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/button/door/directional/south{ + id = "maidbay"; + name = "Maid Bay Toggle" + }, +/obj/structure/sign/poster/contraband/random/directional/west, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/maintenance/fore) +"Dg" = ( +/obj/structure/rack, +/obj/item/clothing/suit/hooded/ablative, +/obj/item/gun/energy/ionrifle, +/obj/item/gun/energy/temperature/security, +/obj/structure/reagent_dispensers/wall/peppertank/directional/north, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Di" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/camera{ + c_tag = " Prison - (North-West) Blue Wing Upper"; + dir = 4; + network = list("ss13","prison") + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"Dj" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Dk" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/execution) +"Dl" = ( +/obj/item/toy/snowball{ + pixel_x = -10; + pixel_y = -6 + }, +/obj/item/toy/snowball{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/item/toy/snowball{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/toy/snowball, +/obj/item/toy/plush/lizard_plushie{ + desc = "A lizard plushie that has a bit of snow on it. it feels warm."; + greyscale_colors = "#ccecff#000000"; + name = "Dances-in-Snow" + }, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"Dm" = ( +/obj/structure/bed/maint, +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/item/tank/internals/anesthetic, +/obj/item/clothing/mask/breath, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"Do" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"Dp" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Dr" = ( +/obj/structure/sign/barber{ + pixel_x = -13 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central) +"Ds" = ( +/turf/open/openspace, +/area/station/hallway/primary/central) +"Dt" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Arrivals - Aft Arm - Bay" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Dv" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/tile/red/half, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"Dw" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Arrivals Dock Maintenance Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/iron/smooth, +/area/station/maintenance/port/aft) +"Dx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) +"Dy" = ( +/obj/effect/spawner/liquids_spawner, +/turf/open/floor/iron/pool, +/area/station/security/prison/rec) +"Dz" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"DA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/fore) +"DB" = ( +/turf/closed/wall/r_wall/rust, +/area/station/ai_monitored/security/armory) +"DC" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/stairs, +/area/station/hallway/secondary/entry) +"DG" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/hydroponics/soil{ + desc = "A patch of fertile soil that you can plant stuff in."; + icon = 'icons/turf/floors.dmi'; + icon_state = "dirt"; + layer = 2.0001; + plane = -7; + self_sustaining = 1 + }, +/turf/open/floor/plating, +/area/station/security/prison/garden) +"DJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/button/curtain{ + id = "prisoncell3"; + pixel_x = -22; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/security/prison) +"DL" = ( +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side, +/area/station/security/prison/safe) +"DM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/hydroponics/soil{ + desc = "A patch of fertile soil that you can plant stuff in."; + icon = 'icons/turf/floors.dmi'; + icon_state = "dirt"; + layer = 2.0001; + plane = -7; + self_sustaining = 1 + }, +/obj/item/reagent_containers/glass/bucket{ + pixel_y = -5 + }, +/turf/open/floor/plating, +/area/station/security/prison/garden) +"DQ" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/microfusion, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"DS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "perma-entrance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron, +/area/station/security/brig) +"DT" = ( +/turf/closed/wall/rust, +/area/station/maintenance/fore/lesser) +"DU" = ( +/obj/structure/closet/secure_closet/evidence, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"DW" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/vending/coffee, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"DX" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/book/fish_catalog, +/obj/structure/table/wood, +/turf/open/floor/iron, +/area/station/service/salon) +"DZ" = ( +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"Ec" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/station/hallway/primary/fore) +"Ed" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/random/contraband/cannabis, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"Ee" = ( +/obj/effect/turf_decal/tile, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ef" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"Eg" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 3" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Eh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"Ei" = ( +/obj/structure/chair/office, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"Ek" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/stairs, +/area/station/hallway/secondary/entry) +"Em" = ( +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"Eo" = ( +/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/corner, +/area/station/hallway/secondary/entry) +"Ep" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Armory - Internal - Lower" + }, +/obj/effect/turf_decal/tile/red/half, +/obj/structure/closet/secure_closet/smartgun, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"Eq" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Salon Hallway" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"Er" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"Es" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/rag, +/obj/item/storage/bag/tray, +/obj/item/storage/box/condimentbottles{ + pixel_y = 10 + }, +/obj/item/storage/box/beakers{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"Et" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"Ex" = ( +/obj/docking_port/stationary{ + dheight = 3; + dir = 8; + dwidth = 8; + height = 11; + id = "ferry_home"; + name = "Port Bay 2"; + width = 20 + }, +/turf/open/space/basic, +/area/space) +"Ey" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"EA" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/iron/dark/red/side, +/area/station/security/execution) +"EB" = ( +/obj/structure/flora/rock/pile/icy/style_random, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) +"EC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/binary/pump/layer4{ + name = "Airmix Reserve to Distribution" + }, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"EE" = ( +/obj/structure/railing, +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/tile/red/half{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"EG" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"EH" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"EI" = ( +/obj/effect/turf_decal/tile, +/obj/effect/turf_decal/tile{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"EJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"EK" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"EL" = ( +/obj/structure/cable, +/obj/effect/landmark/start/brigoff, +/turf/open/floor/iron/dark/blue/side, +/area/brigofficer) +"EP" = ( +/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/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"ER" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/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/central/greater) +"ES" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"ET" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/large, +/obj/structure/cable, +/obj/effect/spawner/random/contraband/narcotics, +/obj/effect/spawner/random/contraband/narcotics, +/obj/effect/spawner/random/contraband/narcotics, +/obj/effect/spawner/random/contraband/permabrig_weapon, +/turf/open/floor/plating, +/area/station/security/prison/work) +"EU" = ( +/obj/structure/table/reinforced, +/obj/item/taperecorder, +/obj/item/restraints/handcuffs, +/obj/item/flashlight/lamp, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/red/side{ + dir = 1 + }, +/area/station/security/execution) +"EV" = ( +/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/item/kirbyplants/random, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"EW" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"EX" = ( +/obj/effect/turf_decal/tile, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Arrivals - Auxilliary Docking Ports" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"EY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/ai_monitored/security/armory/upper) +"EZ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron, +/area/station/service/salon) +"Fb" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"Fc" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/red/half, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"Fd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ff" = ( +/obj/machinery/airalarm/directional/south, +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/effect/turf_decal/tile, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Fg" = ( +/obj/item/storage/box/rubbershot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/rubbershot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/rubbershot, +/obj/item/storage/box/rubbershot, +/obj/item/storage/box/rubbershot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/box/rubbershot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/closet/secure_closet{ + name = "shotgun rubber rounds"; + req_access = list("armory") + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Fi" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 4; + name = "blue line" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 4 + }, +/area/station/security/prison) +"Fj" = ( +/obj/effect/turf_decal/bot, +/obj/structure/frame/computer{ + anchored = 1; + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) +"Fk" = ( +/turf/open/floor/glass/reinforced, +/area/station/ai_monitored/security/armory/upper) +"Fl" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"Fm" = ( +/obj/structure/bed/roller, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"Fn" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple/side{ + dir = 6 + }, +/area/station/security/prison/safe) +"Fo" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"Fp" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/computer/cryopod{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/delivery/white{ + color = "#00ff00" + }, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"Fr" = ( +/obj/structure/transit_tube/diagonal/topleft, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"Fs" = ( +/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, +/area/station/ai_monitored/security/armory) +"Ft" = ( +/obj/effect/turf_decal/tile/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/corner{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"Fu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/maintenance/fore) +"Fv" = ( +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 5 + }, +/turf/open/floor/iron/grimy, +/area/station/hallway/secondary/entry) +"Fw" = ( +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/hallway/secondary/entry) +"Fy" = ( +/obj/effect/turf_decal/tile/red/half{ + dir = 4 + }, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/microfusion, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"Fz" = ( +/turf/closed/mineral/random/stationside/asteroid/porus, +/area/mine/explored) +"FA" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/sofa/bench/left, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/service/salon) +"FB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"FD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/public{ + name = "Prison Cell" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue, +/area/station/security/prison/safe) +"FE" = ( +/turf/open/floor/iron/dark/red/side{ + dir = 6 + }, +/area/station/security/execution) +"FF" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 12; + pixel_y = -6 + }, +/obj/structure/sign/poster/contraband/lusty_xenomorph{ + pixel_x = 32 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) +"FG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron{ + icon = 'icons/turf/floors.dmi' + }, +/area/station/security/prison/upper) +"FH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/fore/lesser) +"FI" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"FJ" = ( +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/airalarm/directional/west, +/obj/structure/table, +/obj/item/storage/barricade{ + pixel_y = -5 + }, +/obj/item/storage/barricade, +/obj/item/storage/barricade{ + pixel_y = 5 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"FL" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/stool/bar/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"FM" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"FO" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Public Mining Storage"; + opacity = 0 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/mine/storage) +"FP" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"FS" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"FT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"FU" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"FV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/station/hallway/primary/fore) +"FX" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"FZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"Ga" = ( +/obj/structure/transit_tube/crossing, +/obj/effect/turf_decal/sand/plating, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"Gb" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"Gc" = ( +/obj/machinery/door/window/right/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/execution) +"Ge" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell8"; + name = "curtain" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"Gf" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple/side{ + dir = 6 + }, +/area/station/security/prison/safe) +"Gg" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/secondary/entry) +"Gh" = ( +/obj/structure/fence/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"Gi" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) +"Gj" = ( +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/hallway/secondary/entry) +"Gk" = ( +/obj/machinery/computer/cryopod{ + pixel_y = 32 + }, +/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/common/cryopods) +"Gl" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/clothing, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"Gm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) +"Go" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/security/medical) +"Gq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"Gr" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Gs" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) +"Gt" = ( +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 3" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Gu" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Gw" = ( +/obj/item/storage/box/teargas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/flashbangs{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Gx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "old sink"; + pixel_y = 28 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/station/maintenance/port/fore) +"Gy" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Gz" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"GA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/fore) +"GB" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/captain/private/nt_rep) +"GC" = ( +/obj/structure/table, +/obj/item/storage/box/chemimp{ + pixel_x = 6 + }, +/obj/item/storage/box/trackimp{ + pixel_x = -3 + }, +/obj/item/storage/lockbox/loyalty, +/obj/effect/turf_decal/tile/red/half{ + dir = 1 + }, +/obj/machinery/light_switch/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"GD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison) +"GE" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell10"; + name = "curtain" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"GF" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/mirror/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, +/area/station/security/prison/shower) +"GG" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"GH" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod 3"; + space_dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"GI" = ( +/turf/open/floor/plating/airless, +/area/space) +"GJ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/closet/secure_closet/barber, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron, +/area/station/service/salon) +"GK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"GM" = ( +/obj/structure/bed, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/glasses/blindfold, +/obj/item/clothing/mask/muzzle, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Security - Prison Sanitarium"; + dir = 4; + network = list("ss13","prison") + }, +/turf/open/floor/iron/white, +/area/station/security/medical) +"GN" = ( +/turf/closed/wall/r_wall, +/area/station/security/execution/transfer) +"GO" = ( +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"GP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port) +"GQ" = ( +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"GR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/security/execution/transfer) +"GS" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/docking_port/stationary{ + dheight = 3; + dir = 8; + dwidth = 8; + height = 11; + id = "ferry_home"; + name = "Port Bay 2"; + width = 20 + }, +/turf/open/floor/plating, +/area/space) +"GT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/trash/janitor_supplies, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/station/maintenance/port) +"GU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating{ + initial_gas_mix = "o2=0.01;n2=0.01;TEMP=2.7"; + luminosity = 2; + temperature = 2.7 + }, +/area/station/security/execution/transfer) +"GW" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/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/fore) +"GY" = ( +/obj/structure/rack, +/obj/item/storage/barricade{ + pixel_y = -5 + }, +/obj/item/storage/barricade, +/obj/item/storage/barricade{ + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"GZ" = ( +/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/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"Ha" = ( +/obj/machinery/camera{ + c_tag = "Prison - Visition (Visitor)"; + network = list("ss13","prison") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"Hc" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/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/security/execution/transfer) +"Hd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/port) +"He" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"Hf" = ( +/turf/open/misc/asteroid/airless, +/area/mine/explored) +"Hg" = ( +/obj/machinery/door/airlock/maintenance/external{ + name = "Transit Intersection" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"Hh" = ( +/obj/structure/flora/grass/green/style_random, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) +"Hi" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"Hj" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Hk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/port) +"Hm" = ( +/turf/open/floor/iron, +/area/station/common/cryopods) +"Hn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ho" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/item/kitchen/fork, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"Hr" = ( +/obj/structure/rack, +/obj/item/clothing/head/helmet/sec{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/sec, +/obj/item/clothing/head/helmet/sec{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/suit/armor/vest/security{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/suit/armor/vest/security, +/obj/item/clothing/suit/armor/vest/security{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/red/half{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"Hs" = ( +/obj/structure/window/spawner, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/turf/open/floor/grass, +/area/station/common/cryopods) +"Ht" = ( +/obj/structure/fluff/metalpole{ + dir = 6 + }, +/obj/structure/fluff/metalpole/end, +/turf/open/space/basic, +/area/space/nearstation) +"Hv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"Hx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"Hy" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Hz" = ( +/turf/closed/wall/rust, +/area/station/hallway/secondary/entry) +"HA" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"HB" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"HE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"HF" = ( +/obj/structure/closet/ammunitionlocker/useful, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/delivery/red, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/turf/open/floor/iron/smooth, +/area/station/ai_monitored/security/armory) +"HG" = ( +/turf/closed/wall/rock{ + name = "META 136, 181" + }, +/area/space) +"HH" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets/donkpocketberry, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"HI" = ( +/obj/structure/table, +/obj/structure/cable, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 10 + }, +/area/station/security/prison/safe) +"HJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"HK" = ( +/obj/structure/rack, +/obj/item/clothing/mask/muzzle, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"HM" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"HN" = ( +/obj/machinery/light_switch/directional/north, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/structure/closet/secure_closet/evidence{ + name = "Brig Officer's Locker" + }, +/obj/item/clothing/mask/whistle, +/turf/open/floor/iron/dark/blue/side{ + dir = 5 + }, +/area/brigofficer) +"HO" = ( +/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/hallway/primary/central) +"HP" = ( +/obj/structure/disposalpipe/segment, +/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/fore) +"HQ" = ( +/obj/effect/turf_decal/tile, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"HR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/bed/pod, +/obj/machinery/firealarm/directional/north, +/obj/machinery/camera/directional/west, +/turf/open/floor/iron/dark, +/area/station/service/salon) +"HS" = ( +/turf/closed/wall, +/area/station/security/checkpoint) +"HU" = ( +/obj/effect/spawner/structure/window, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"HV" = ( +/obj/structure/rack, +/obj/item/storage/barricade{ + pixel_y = -5 + }, +/obj/item/storage/barricade, +/obj/item/storage/barricade{ + pixel_y = 5 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"HW" = ( +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) +"HX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 5 + }, +/turf/open/floor/iron/dark/red/side{ + dir = 10 + }, +/area/station/security/execution) +"HY" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/closet/crate/bin, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"HZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Arrivals - Aft Arm - Bay Doors" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ia" = ( +/obj/effect/turf_decal/tile, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Id" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"If" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/obj/effect/turf_decal/tile, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ih" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ii" = ( +/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/central/greater) +"Ij" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/north, +/obj/item/toy/plush/borbplushie{ + name = "Therapeep"; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"Ik" = ( +/obj/machinery/cryopod, +/obj/effect/turf_decal/siding/white, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"In" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"Ip" = ( +/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/prison) +"Iq" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ir" = ( +/obj/structure/bookcase/random/adult, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"Is" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/obj/effect/turf_decal/tile, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"It" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Iw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ix" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Iy" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/service/salon) +"Iz" = ( +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"IA" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/secure/safe/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"IB" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, +/area/station/security/prison/shower) +"IC" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"ID" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Arrivals - Aft Arm - Far" + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"IE" = ( +/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, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"IF" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Public Mining Storage"; + opacity = 0 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"IG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/firealarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) +"IH" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"II" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"IJ" = ( +/turf/closed/wall/r_wall, +/area/station/command/gateway) +"IK" = ( +/turf/open/floor/plating, +/area/space) +"IN" = ( +/obj/structure/table, +/obj/item/stack/license_plates/empty/fifty, +/obj/item/stack/license_plates/empty/fifty, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"IO" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Armory" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"IP" = ( +/obj/effect/landmark/start/hangover, +/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/common/cryopods) +"IQ" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/service/janitor, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) +"IR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/light/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"IS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"IV" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/computer/shuttle/arrivals/recall{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"IX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"IY" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 11; + height = 22; + id = "whiteship_home"; + name = "SS13: Auxiliary Dock, Station-Port"; + width = 35 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"Ja" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Jb" = ( +/turf/closed/wall/rock{ + name = "KILO 77, 151" + }, +/area/space) +"Jc" = ( +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Jd" = ( +/obj/item/beacon, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Je" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/brown/side{ + dir = 10 + }, +/area/station/security/prison/safe) +"Jg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Jh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"Ji" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Jl" = ( +/obj/structure/sign/warning/docking/directional/north, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"Jm" = ( +/obj/structure/table/wood, +/obj/item/book/random{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = 9; + pixel_y = 3 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/grimy, +/area/station/hallway/secondary/entry) +"Jn" = ( +/obj/structure/table, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple/side{ + dir = 10 + }, +/area/station/security/prison/safe) +"Jq" = ( +/obj/structure/table/glass, +/obj/effect/landmark/start/hangover, +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Jr" = ( +/obj/effect/turf_decal/bot_blue, +/obj/structure/closet/secure_closet/smartgun, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Jt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/nanotrasen_consultant, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"Ju" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Jv" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/iron/dark/red/side{ + dir = 8 + }, +/area/station/security/execution) +"Jw" = ( +/obj/structure/bed/maint, +/obj/machinery/flasher{ + id = "IsolationFlash"; + pixel_y = 28 + }, +/obj/item/reagent_containers/glass/bucket/wooden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/brown/side{ + dir = 5 + }, +/area/station/security/prison/safe) +"Jx" = ( +/obj/structure/window/reinforced/spawner, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"Jz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"JA" = ( +/obj/structure/lattice, +/turf/open/openspace/airless/planetary, +/area/space/nearstation) +"JB" = ( +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 4"; + space_dir = 2 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"JC" = ( +/obj/machinery/firealarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) +"JD" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/shotguns, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"JE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/brigoff, +/turf/open/floor/iron/dark/blue, +/area/brigofficer) +"JG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"JH" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + 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 = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"JI" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"JJ" = ( +/obj/structure/disposalpipe/segment{ + 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, +/area/station/commons/fitness/recreation) +"JK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/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/security/general, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"JL" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/airlock/glass_large{ + dir = 8; + name = "Cafeteria" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"JM" = ( +/turf/open/floor/iron/dark/blue/side{ + dir = 1 + }, +/area/brigofficer) +"JN" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/sofa/bench/left, +/turf/open/floor/iron, +/area/station/service/salon) +"JP" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/light_switch/directional/north, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/security/processing) +"JQ" = ( +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 3"; + space_dir = 2 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"JR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"JS" = ( +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/stripes/asteroid/box, +/turf/open/floor/plating/airless, +/area/mine/explored) +"JU" = ( +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side, +/area/station/security/prison/safe) +"JV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "justicechamber"; + name = "Justice Chamber Blast Door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/execution) +"JW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/common/cryopods) +"JZ" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell5"; + name = "curtain" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"Ka" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Kb" = ( +/obj/structure/flora/bush/flowers_yw/style_random, +/turf/open/floor/grass, +/area/station/common/cryopods) +"Kc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/obj/structure/chair/sofa/bench, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"Kd" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"Ke" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Kf" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/warning/docking/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Kg" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"Kh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"Kj" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 11; + height = 22; + id = "whiteship_home"; + name = "SS13: Auxiliary Dock, Station-Port"; + width = 35 + }, +/turf/open/space/openspace, +/area/space) +"Km" = ( +/turf/closed/wall, +/area/station/command/teleporter) +"Kn" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port) +"Ko" = ( +/obj/structure/janitorialcart{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) +"Kp" = ( +/turf/closed/wall, +/area/station/security/execution/transfer) +"Kq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port) +"Kr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"Ks" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"Kt" = ( +/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/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"Ku" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/medical) +"Kv" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/iron/dark, +/area/station/security/execution) +"Kw" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"Kx" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Arrivals - Auxilliary Port" + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Kz" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 3" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"KA" = ( +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port) +"KB" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"KC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"KD" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"KE" = ( +/obj/structure/chair/sofa/bench/left, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"KF" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/comfy/barber_chair{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"KH" = ( +/obj/effect/turf_decal/stripes/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/fore) +"KI" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/security/execution/transfer) +"KJ" = ( +/obj/machinery/door/poddoor/shutters{ + id = "armory"; + name = "Armoury Shutter" + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/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/security/armory) +"KK" = ( +/turf/closed/wall/rock{ + name = "TRAM: 14, 96, 2" + }, +/turf/cordon, +/area/space) +"KL" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigprison"; + name = "Prison Blast Door" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"KM" = ( +/obj/structure/rack, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) +"KN" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/vending/barbervend, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"KO" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"KP" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Salon" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/sofa/bench/right, +/turf/open/floor/iron, +/area/station/service/salon) +"KR" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Public Mining Storage"; + opacity = 0 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/structure/sign/warning/gas_mask/directional/south, +/obj/structure/sign/warning/cold_temp/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"KS" = ( +/obj/effect/turf_decal/tile/green, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/primary/fore) +"KU" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains1" + }, +/turf/open/floor/plating, +/area/station/service/salon) +"KX" = ( +/turf/closed/wall/rock{ + name = "META 101, 170" + }, +/area/space) +"KY" = ( +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/iron/grimy, +/area/station/hallway/secondary/entry) +"KZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/port/fore) +"La" = ( +/obj/structure/table, +/obj/item/storage/box/firingpins, +/obj/item/storage/box/firingpins, +/obj/item/key/security, +/obj/machinery/light/directional/east, +/obj/item/radio/intercom/prison/directional/east, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"Lb" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"Lc" = ( +/obj/structure/closet{ + name = "Evidence Closet 5" + }, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"Ld" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"Le" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/port) +"Lf" = ( +/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/common/cryopods) +"Lg" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port) +"Lh" = ( +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/hos) +"Lj" = ( +/obj/structure/rack, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Lk" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"Ll" = ( +/obj/machinery/button/curtain{ + id = "prisoncell5"; + pixel_y = 21 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple/side{ + dir = 1 + }, +/area/station/security/prison/safe) +"Lq" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/middle, +/obj/structure/transit_tube, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"Lr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"Ls" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"Lt" = ( +/obj/machinery/light/warm/directional/north, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/comfy/barber_chair{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"Lu" = ( +/obj/structure/rack, +/obj/item/storage/box, +/turf/open/floor/plating, +/area/station/maintenance/port) +"Lw" = ( +/obj/structure/cable, +/obj/machinery/computer/cryopod{ + pixel_y = 32 + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/common/cryopods) +"Lx" = ( +/obj/structure/chair/sofa/bench/left, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"Lz" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/cryopod{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"LA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/north{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "prison intercom"; + prison_radio = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple/side{ + dir = 5 + }, +/area/station/security/prison/safe) +"LC" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port) +"LE" = ( +/turf/closed/wall, +/area/station/maintenance/port/greater) +"LF" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"LG" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/book/fish_catalog, +/obj/structure/table/wood, +/turf/open/floor/iron, +/area/station/service/salon) +"LH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"LI" = ( +/obj/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/green{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"LK" = ( +/obj/item/restraints/legcuffs/beartrap, +/obj/effect/decal/cleanable/dirt, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/fore) +"LL" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"LM" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/screwdriver{ + pixel_y = 16 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) +"LN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"LO" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/plating, +/area/space) +"LP" = ( +/obj/machinery/door/airlock/external{ + name = "Arrival Shuttle Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"LQ" = ( +/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, +/obj/machinery/door/airlock/public/glass{ + name = "Salon Hallway" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"LR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/bluespace_vendor/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"LS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/cardboard, +/obj/item/reagent_containers/hypospray/medipen/oxandrolone, +/obj/effect/spawner/random/contraband/permabrig_gear, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"LT" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"LU" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell9"; + name = "curtain" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"LV" = ( +/turf/closed/wall/mineral/plastitanium, +/area/station/security/execution/transfer) +"LW" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Arrivals ERT Bay" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"LX" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/station/maintenance/port/fore) +"LZ" = ( +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/mirror/directional/east, +/obj/item/reagent_containers/spray/barbers_aid{ + pixel_x = 6 + }, +/obj/item/razor{ + pixel_x = -6 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"Ma" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"Mb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Mc" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port) +"Md" = ( +/obj/structure/marker_beacon/burgundy{ + name = "landing marker" + }, +/turf/open/floor/plating/snowed/smoothed/icemoon, +/area/icemoon/underground/explored) +"Me" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Mf" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L13" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"Mg" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/closet/secure_closet/contraband/armory, +/obj/machinery/firealarm/directional/north, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/spawner/random/contraband/armory, +/obj/effect/turf_decal/tile/red/half{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"Mh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Mi" = ( +/obj/structure/chair/sofa/bench/left, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"Mj" = ( +/obj/machinery/newscaster/directional/south, +/obj/structure/table, +/obj/effect/spawner/random/decoration/ornament, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"Mk" = ( +/turf/closed/wall/r_wall, +/area/brigofficer) +"Ml" = ( +/obj/docking_port/stationary{ + dwidth = 1; + height = 13; + id = "arrivals_stationary"; + name = "arrivals"; + roundstart_template = null; + width = 5 + }, +/turf/open/space/basic, +/area/space) +"Mm" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Mn" = ( +/obj/docking_port/stationary/random{ + id = "pod_lavaland"; + name = "lavaland" + }, +/turf/open/space/basic, +/area/space) +"Mo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"Mp" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Mq" = ( +/obj/structure/closet{ + name = "Evidence Closet 1" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"Mr" = ( +/obj/machinery/door/airlock/external{ + name = "Auxiliary Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "whiteship-dock" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Ms" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/sign/warning/vacuum/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Mt" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/fore) +"Mv" = ( +/obj/structure/sign/warning/vacuum/directional/north, +/turf/open/floor/iron/dark/red/side{ + dir = 5 + }, +/area/station/security/execution) +"Mw" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall, +/area/station/hallway/secondary/entry) +"My" = ( +/obj/machinery/button/curtain{ + id = "prisoncell10"; + pixel_y = 21 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/brown/side{ + dir = 1 + }, +/area/station/security/prison/safe) +"MA" = ( +/turf/open/genturf/alternative, +/area/icemoon/underground/unexplored/rivers/deep/shoreline) +"MB" = ( +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"MC" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"MD" = ( +/obj/machinery/cryopod{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/camera/directional/east, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"ME" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Arrivals" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"MF" = ( +/obj/structure/closet/emcloset/anchored, +/obj/item/pickaxe/emergency, +/obj/item/pickaxe/emergency, +/obj/item/pickaxe/emergency, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"MH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"MI" = ( +/obj/structure/sign/warning/no_smoking/circle/directional/south, +/obj/machinery/camera/directional/south, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/white/side{ + dir = 4 + }, +/area/station/commons/fitness/recreation) +"MJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 5 + }, +/turf/open/floor/iron/dark/red/side{ + dir = 4 + }, +/area/station/security/execution) +"ML" = ( +/turf/closed/wall/mineral/plastitanium, +/area/station/hallway/secondary/entry) +"MM" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/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/fore) +"MN" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/security/execution) +"MO" = ( +/turf/closed/wall, +/area/station/maintenance/fore/lesser) +"MQ" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"MR" = ( +/turf/open/genturf, +/area/icemoon/surface/outdoors/unexplored/rivers/no_monsters) +"MS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/blue/side{ + dir = 1 + }, +/area/brigofficer) +"MT" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"MU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/maintenance/fore) +"MV" = ( +/obj/machinery/flasher/directional/north{ + id = "justiceflash" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/red/side{ + dir = 1 + }, +/area/station/security/execution) +"MW" = ( +/obj/structure/table, +/obj/item/trash/candle{ + pixel_y = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"MX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"MY" = ( +/obj/structure/closet{ + name = "Evidence Closet 4" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"MZ" = ( +/obj/item/pillow{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/pillow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/royalblue, +/area/station/security/prison) +"Na" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/obj/structure/closet/secure_closet/smartgun, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"Nb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"Nc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/fedora, +/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"Nh" = ( +/obj/docking_port/stationary{ + dwidth = 1; + height = 4; + name = "escape pod loader"; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/turf/open/space/basic, +/area/space) +"Ni" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/fancy/candle_box, +/obj/structure/rack, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"Nj" = ( +/obj/docking_port/stationary{ + dwidth = 3; + height = 5; + id = "commonmining_home"; + name = "SS13: Common Mining Dock"; + roundstart_template = /datum/map_template/shuttle/mining_common/meta; + width = 7 + }, +/turf/open/space/basic, +/area/space) +"Nk" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Arrivals Bay 3 & 4" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Nm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/rust, +/area/station/maintenance/fore) +"No" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/landmark/start/barber, +/turf/open/floor/iron, +/area/station/service/salon) +"Np" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/trashcart/filled, +/obj/effect/spawner/random/contraband/prison, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"Nq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/external{ + name = "Escape Pod 2"; + space_dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Nr" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"Ns" = ( +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/smooth_half{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"Nt" = ( +/obj/machinery/light/warm/directional/west, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/kirbyplants/random, +/obj/machinery/button/curtain{ + id = "barbershopcurtains"; + pixel_x = -25; + pixel_y = -24 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron, +/area/station/service/salon) +"Nu" = ( +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"Nv" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/vending/cigarette, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"Nw" = ( +/obj/structure/rack, +/obj/effect/spawner/random/engineering/flashlight, +/turf/open/floor/plating, +/area/station/maintenance/port) +"Ny" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/ammunitionlocker/useful, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"Nz" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/lighter, +/obj/structure/cable, +/turf/open/floor/iron/dark/brown/side{ + dir = 10 + }, +/area/station/security/prison/safe) +"NA" = ( +/obj/structure/chair/stool/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"NB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"NC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "perma-entrance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron, +/area/station/security/brig) +"ND" = ( +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central) +"NE" = ( +/obj/machinery/griddle, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"NF" = ( +/obj/structure/table/wood, +/obj/item/folder/yellow, +/obj/item/folder/white{ + pixel_y = 3 + }, +/obj/item/folder/red{ + pixel_y = 6 + }, +/obj/item/folder/blue{ + pixel_y = 9 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"NG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/brigofficer) +"NH" = ( +/turf/closed/wall/rock{ + name = "KILO 80, 77" + }, +/area/space) +"NI" = ( +/obj/structure/cable, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"NK" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/station/maintenance/port) +"NL" = ( +/turf/open/floor/iron/stairs/old, +/area/station/maintenance/port/fore) +"NM" = ( +/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) +"NO" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"NP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"NQ" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/camera/motion/directional/east{ + c_tag = "Armoury Internal" + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"NR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/smooth_half{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"NT" = ( +/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/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"NU" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"NV" = ( +/obj/machinery/cryopod, +/obj/effect/turf_decal/siding/white, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"NW" = ( +/turf/closed/wall/ice, +/area/space) +"NZ" = ( +/obj/structure/table, +/obj/effect/spawner/random/decoration/ornament, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Oa" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 9; + name = "blue line" + }, +/obj/machinery/camera{ + c_tag = " Prison - (West) Purple Wing"; + dir = 4; + network = list("ss13","prison") + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 6 + }, +/area/station/security/prison) +"Ob" = ( +/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/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"Od" = ( +/obj/machinery/light/directional/north, +/obj/structure/chair/sofa/bench/right, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Oe" = ( +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"Of" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/security/prison) +"Og" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/firealarm/directional/south, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/security/processing) +"Oh" = ( +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"Oi" = ( +/obj/structure/cable, +/obj/structure/sign/warning/vacuum/external/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/port) +"Oj" = ( +/obj/structure/chair/stool/bar/directional/west, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"Ok" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"Om" = ( +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"On" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"Op" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"Oq" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/trash/popcorn, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"Or" = ( +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"Os" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/dropper, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/food/drinks/shaker, +/turf/open/floor/wood, +/area/station/maintenance/port/aft) +"Ot" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"Ou" = ( +/obj/machinery/door/airlock/external, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "aux-dock-external" + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"Ov" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/station/maintenance/port) +"Ow" = ( +/obj/structure/mirror/directional/west, +/obj/structure/table/reinforced/rglass, +/obj/item/hairbrush/comb{ + pixel_y = 10 + }, +/obj/item/reagent_containers/dropper, +/obj/machinery/dryer{ + pixel_y = 14 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"Oz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"OA" = ( +/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/security/execution/transfer) +"OB" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "permaouter"; + name = "Permabrig Transfer" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/blue, +/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/security/brig, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"OC" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"OD" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/landmark/start/barber, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"OF" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/station/maintenance/port) +"OG" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/station/maintenance/port) +"OI" = ( +/obj/machinery/door/airlock/external{ + name = "Auxiliary Airlock"; + space_dir = 2 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "whiteship-dock" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"OK" = ( +/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, +/area/command/heads_quarters/captain/private/nt_rep) +"OM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ON" = ( +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/smooth_half{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"OO" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"OP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"OQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"OR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Armoury" + }, +/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, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"OS" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"OT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"OU" = ( +/obj/structure/rack, +/obj/item/gun/energy/ionrifle, +/obj/item/gun/energy/temperature/security, +/obj/item/clothing/suit/hooded/ablative, +/obj/effect/turf_decal/tile/red/half{ + dir = 8 + }, +/obj/item/gun/grenadelauncher, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"OV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/prison) +"OX" = ( +/obj/structure/rack, +/obj/item/gun/energy/ionrifle, +/obj/item/clothing/suit/hooded/ablative, +/obj/item/gun/energy/temperature/security, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"OZ" = ( +/obj/machinery/vending/boozeomat/all_access, +/obj/effect/decal/cleanable/cobweb, +/turf/closed/wall, +/area/station/maintenance/port/aft) +"Pa" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"Pd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/ai_monitored/security/armory) +"Pf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"Pg" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"Ph" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + dir = 1; + pixel_x = 3; + pixel_y = 9 + }, +/obj/item/storage/bag/tray, +/obj/item/kitchen/rollingpin, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"Pj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/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{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"Pk" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/computer/cryopod{ + dir = 4; + pixel_x = -32 + }, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"Pl" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Pm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/hallway/primary/fore) +"Pn" = ( +/obj/structure/noticeboard/directional/south, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/maintenance/fore) +"Po" = ( +/obj/structure/sign/warning/directional/north, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) +"Pq" = ( +/obj/structure/weightmachine/weightlifter, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/prison) +"Pr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/food/pie_smudge, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/maintenance/fore) +"Ps" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/hallway/primary/fore) +"Pt" = ( +/obj/structure/closet/secure_closet/bar{ + pixel_x = -3; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/wood, +/area/station/maintenance/port/aft) +"Pu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/suit_storage_unit/security, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Pv" = ( +/obj/structure/window/reinforced, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"Pw" = ( +/obj/structure/bookcase/random/reference, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"Px" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"PA" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/captain/private/nt_rep) +"PB" = ( +/turf/closed/wall, +/area/station/hallway/primary/fore) +"PD" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"PE" = ( +/obj/machinery/button/curtain{ + id = "prisoncell9"; + pixel_y = 21 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/brown/side{ + dir = 1 + }, +/area/station/security/prison/safe) +"PG" = ( +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 1 + }, +/obj/structure/sign/warning/yes_smoking/circle/directional/west, +/turf/open/floor/iron/grimy, +/area/station/hallway/secondary/entry) +"PH" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"PI" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/decoration/ornament, +/turf/open/floor/wood, +/area/station/maintenance/port/aft) +"PJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"PK" = ( +/obj/effect/turf_decal/stripes/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, +/area/station/hallway/secondary/entry) +"PL" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"PM" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"PN" = ( +/turf/open/floor/carpet/green, +/area/station/maintenance/port/aft) +"PO" = ( +/turf/closed/wall/rock{ + name = "DELTA: 126, 195" + }, +/turf/open/space/basic, +/area/space) +"PP" = ( +/obj/structure/rack, +/obj/effect/spawner/random/food_or_drink/booze{ + spawn_loot_count = 3; + spawn_loot_double = 0; + spawn_random_offset = 1 + }, +/turf/open/floor/wood, +/area/station/maintenance/port/aft) +"PQ" = ( +/obj/effect/spawner/random/structure/girder{ + loot = list(/obj/structure/falsewall=50,/turf/closed/wall=50); + name = "fifty% falsewall, fifty% wall" + }, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"PR" = ( +/obj/structure/fluff/metalpole{ + dir = 1 + }, +/obj/structure/fluff/metalpole/end/left{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"PT" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"PU" = ( +/obj/machinery/hydroponics/soil{ + desc = "A patch of fertile soil that you can plant stuff in."; + icon = 'icons/turf/floors.dmi'; + icon_state = "dirt"; + layer = 2.0001; + plane = -7; + self_sustaining = 1 + }, +/obj/item/reagent_containers/glass/bucket{ + pixel_x = -4 + }, +/turf/open/floor/plating, +/area/station/security/prison/garden) +"PV" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/machinery/button/flasher{ + id = "transferflash"; + pixel_y = 24 + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"PW" = ( +/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/ai_monitored/security/armory) +"PX" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/sign/warning/pods/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"PY" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plating, +/area/space) +"PZ" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"Qa" = ( +/obj/structure/transit_tube/curved/flipped, +/turf/open/space/basic, +/area/space/nearstation) +"Qb" = ( +/obj/structure/closet{ + name = "Evidence Closet 2" + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"Qc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Qd" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/computer/shuttle/mining/common, +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK"; + pixel_y = 32 + }, +/turf/open/floor/iron/smooth_large, +/area/station/hallway/secondary/entry) +"Qe" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/structure/tank_holder/oxygen, +/turf/open/floor/iron/smooth, +/area/station/hallway/secondary/entry) +"Qf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/firealarm/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Qg" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet/green, +/area/station/maintenance/port/aft) +"Qh" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigprison"; + name = "Prison Blast Door" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/pods/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"Qi" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 1; + height = 13; + id = "arrivals_stationary"; + name = "arrivals"; + width = 5 + }, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"Ql" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains"; + name = "Barber Shop Drapes" + }, +/turf/open/floor/plating, +/area/station/service/salon) +"Qm" = ( +/obj/structure/loom, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"Qo" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/structure/mirror/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"Qr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/smooth, +/area/station/hallway/secondary/entry) +"Qt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/smooth, +/area/station/hallway/secondary/entry) +"Qv" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/extinguisher_cabinet/directional/east, +/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/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"Qw" = ( +/turf/closed/wall/rock{ + name = "META: 20, 107" + }, +/turf/open/space/basic, +/area/space) +"Qy" = ( +/obj/structure/reagent_dispensers/wall/peppertank/directional/east, +/obj/structure/table/reinforced, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Qz" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/table, +/obj/machinery/light/directional/north, +/obj/item/radio/intercom/directional/north, +/obj/item/storage/box/tail_pin, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"QA" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_y = 8 + }, +/obj/item/storage/fancy/egg_box, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"QC" = ( +/obj/structure/fence/corner{ + dir = 9 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 9 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"QE" = ( +/obj/structure/chair/comfy/brown, +/turf/open/floor/iron/grimy, +/area/station/hallway/secondary/entry) +"QG" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"QH" = ( +/obj/structure/table, +/obj/machinery/door/poddoor/shutters{ + id = "visitation"; + name = "Visitation Shutters" + }, +/obj/machinery/door/window/right/directional/south{ + name = "Visitation"; + req_access = list("security") + }, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"QI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"QJ" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/space) +"QK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"QN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"QO" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"QP" = ( +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/firedoor, +/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/public/glass{ + name = "Kitchen" + }, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"QQ" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"QR" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/maintenance/fore) +"QS" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/item/radio/intercom/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, +/area/station/commons/fitness/recreation) +"QT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"QU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"QW" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"QX" = ( +/turf/closed/wall/r_wall, +/area/station/security/brig) +"QZ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"Ra" = ( +/obj/machinery/seed_extractor, +/obj/item/radio/intercom/directional/north, +/obj/machinery/airalarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"Rb" = ( +/turf/closed/wall, +/area/station/service/salon) +"Rd" = ( +/obj/structure/mirror/directional/west, +/obj/structure/table/reinforced/rglass, +/obj/item/razor{ + pixel_x = -6 + }, +/obj/item/reagent_containers/spray/barbers_aid{ + pixel_x = 6 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"Re" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"Rf" = ( +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"Rg" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/rack, +/obj/effect/spawner/random/clothing/costume, +/obj/item/clothing/mask/balaclava, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"Rh" = ( +/obj/structure/rack, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = -4 + }, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 4 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 8 + }, +/obj/item/reagent_containers/hypospray/medipen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"Rj" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/service/salon) +"Rk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"Rl" = ( +/obj/structure/table/reinforced/rglass, +/obj/structure/mirror/directional/south, +/obj/item/lipstick/random{ + pixel_x = -6; + pixel_y = -5 + }, +/obj/item/lipstick/random, +/obj/item/reagent_containers/spray/quantum_hair_dye{ + pixel_x = 9 + }, +/turf/open/floor/iron/dark, +/area/station/service/salon) +"Rm" = ( +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"Rn" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/primary/fore) +"Rq" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/fence/door, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"Rs" = ( +/obj/structure/fence/corner{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 5 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"Rt" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/blue, +/obj/machinery/door/airlock/security{ + req_access = list("brig") + }, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "permaturnstile"; + name = "Lockdown" + }, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"Ru" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/button/curtain{ + id = "prisoncell8"; + pixel_x = -22; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"Rw" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/button/door/directional/south{ + id = "armouryaccess"; + name = "Armoury Access"; + req_access = list("armory") + }, +/obj/item/key/security, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Rx" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Rz" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/light/directional/east, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"RA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "perma-entrance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"RB" = ( +/obj/effect/turf_decal/tile{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/sign/warning/docking/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"RC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/security/medical) +"RD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"RE" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/light_switch/directional/west, +/obj/machinery/dryer{ + dir = 4; + pixel_x = -6; + pixel_y = -6 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"RF" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/warning/gas_mask/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"RG" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/stripes/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, +/area/station/hallway/secondary/entry) +"RI" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"RJ" = ( +/obj/structure/fluff/metalpole{ + dir = 10 + }, +/obj/structure/fluff/metalpole/end{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"RK" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"RL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/smooth, +/area/station/hallway/secondary/entry) +"RM" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/table/reinforced/rglass, +/obj/item/hairbrush{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/clothing/gloves/color/latex, +/turf/open/floor/iron/dark, +/area/station/service/salon) +"RN" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/lights/mixed{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/belt/janitor, +/obj/item/storage/bag/trash, +/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) +"RP" = ( +/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, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"RQ" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"RR" = ( +/obj/structure/bed/dogbed, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/sign/poster/contraband/random/directional/west, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/station/maintenance/port/aft) +"RS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/warning/gas_mask/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"RU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"RW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/smooth, +/area/station/hallway/secondary/entry) +"RX" = ( +/obj/structure/fence, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"RY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"Sa" = ( +/turf/closed/wall, +/area/station/security/prison/shower) +"Sb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Sd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"Se" = ( +/obj/effect/turf_decal/stripes/line{ + 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, +/turf/open/floor/plating, +/area/station/hallway/primary/fore) +"Sf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Sg" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell7"; + name = "curtain" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"Sk" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/camera/directional/north, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"Sl" = ( +/obj/machinery/cryopod{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"Sm" = ( +/obj/machinery/cryopod{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/camera/directional/east, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"Sn" = ( +/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, +/area/station/hallway/secondary/entry) +"So" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: BLAST DOORS" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/brig) +"Sp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/hydroponics/soil{ + desc = "A patch of fertile soil that you can plant stuff in."; + icon = 'icons/turf/floors.dmi'; + icon_state = "dirt"; + layer = 2.0001; + plane = -7; + self_sustaining = 1 + }, +/turf/open/floor/plating, +/area/station/security/prison/garden) +"Sq" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/firealarm/directional/west, +/obj/machinery/flasher/portable, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Sr" = ( +/obj/effect/turf_decal/tile/red/half, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"Ss" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"St" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/flashlight/lamp/green{ + on = 0; + pixel_x = -3; + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/hos) +"Su" = ( +/turf/closed/wall/rock{ + name = "ICEBOX: 10, 116, 3" + }, +/turf/open/space/basic, +/area/space) +"Sv" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/sign/warning/vacuum/directional/east, +/turf/open/floor/plating, +/area/station/security/execution/transfer) +"Sy" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/stripes/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, +/area/station/hallway/secondary/entry) +"SA" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen/fountain, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"SB" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/commons/dorms/laundry) +"SC" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/computer/arcade/battle, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"SD" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/rack, +/obj/machinery/light/small/red/directional/south, +/obj/effect/spawner/random/contraband/prison, +/obj/item/toy/crayon/spraycan, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) +"SE" = ( +/turf/closed/wall/r_wall, +/area/station/hallway/secondary/entry) +"SH" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"SI" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"SJ" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/machinery/newscaster/directional/west, +/obj/effect/landmark/start/barber, +/turf/open/floor/iron/dark, +/area/station/service/salon) +"SK" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only, +/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) +"SM" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/iron/smooth_half{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"SN" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"SQ" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + name = "blue line" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side, +/area/station/security/prison) +"SR" = ( +/obj/machinery/holopad, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"SU" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigprison"; + name = "Prison Blast Door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"SV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/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/security/prison/upper) +"SW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "isolationshutter" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"SX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/office) +"SY" = ( +/obj/machinery/camera{ + c_tag = " Prison - (North-West) Blue Wing"; + dir = 6; + network = list("ss13","prison") + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"Ta" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/darkblue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Tb" = ( +/obj/structure/table/wood, +/obj/item/taperecorder{ + pixel_y = 14; + pixel_x = 10 + }, +/obj/item/camera_film{ + pixel_x = -6 + }, +/obj/item/camera_film{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/camera{ + pixel_x = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"Tc" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters{ + id = "sidearmory"; + name = "Side Armoury Shutter" + }, +/obj/machinery/button/door/directional/south{ + id = "sidearmory"; + name = "Armoury Shutter Toggle"; + req_access = list("armory") + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Tg" = ( +/obj/machinery/camera/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"Th" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/prison/rec) +"Ti" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/directional/east{ + c_tag = "Arrivals Dock - Fore Port"; + name = "dock camera" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Tk" = ( +/turf/closed/wall, +/area/station/maintenance/port/aft) +"Tl" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Arrivals Dock - Fore Starboard"; + name = "dock camera" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Tm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Dormitory" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/navigate_destination, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/commons/dorms) +"Tp" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/landmark/blobstart, +/obj/machinery/camera/directional/north{ + c_tag = "Evidence Storage" + }, +/obj/item/storage/secure/safe/directional/north{ + name = "evidence safe" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"Tq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/smooth, +/area/station/hallway/secondary/entry) +"Tr" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, +/area/station/security/prison/shower) +"Ts" = ( +/obj/structure/marker_beacon/burgundy{ + name = "landing marker" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"Tt" = ( +/obj/structure/fans/tiny/forcefield{ + dir = 1 + }, +/obj/structure/sign/warning/vacuum/external/directional/west, +/obj/machinery/door/poddoor/preopen{ + name = "Dock Shutter" + }, +/turf/open/floor/plating, +/area/station/hallway/primary/fore) +"Tu" = ( +/obj/machinery/sparker/directional/south{ + id = "justicespark" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/red/side, +/area/station/security/execution) +"Tv" = ( +/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/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Tw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + name = "Privacy Shutter"; + id = "nt_rep_priv" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/captain/private/nt_rep) +"Tx" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"Ty" = ( +/obj/effect/turf_decal/delivery, +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Tz" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"TB" = ( +/obj/structure/closet/secure_closet/injection, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron/dark/red/side{ + dir = 5 + }, +/area/station/security/execution) +"TD" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall/r_wall, +/area/station/hallway/secondary/entry) +"TE" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"TF" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + dir = 4; + name = "old sink"; + pixel_x = -12 + }, +/obj/structure/mirror/directional/west, +/turf/open/floor/wood, +/area/station/maintenance/port/aft) +"TG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"TH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"TI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/station/maintenance/fore) +"TJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"TK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/iron/smooth_edge{ + dir = 8 + }, +/area/station/hallway/secondary/entry) +"TL" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"TM" = ( +/turf/open/openspace, +/area/station/ai_monitored/security/armory/upper) +"TN" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/chair/stool/directional/north, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"TP" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"TQ" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"TR" = ( +/obj/machinery/computer/cryopod{ + dir = 8; + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/common/cryopods) +"TS" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/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/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) +"TT" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + 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/service/salon) +"TU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/fore) +"TV" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/security/armory/upper) +"TW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"TX" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"TY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"TZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"Ua" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "NT Consultant's Hallway" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"Ub" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains" + }, +/turf/open/floor/plating, +/area/station/service/salon) +"Uc" = ( +/obj/structure/flora/rock/icy/style_random, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) +"Ud" = ( +/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/common/cryopods) +"Ue" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, +/area/station/security/prison/shower) +"Uf" = ( +/obj/effect/landmark/start/nanotrasen_consultant, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"Uh" = ( +/obj/structure/fluff/metalpole{ + dir = 10 + }, +/obj/structure/fluff/metalpole/end{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"Ui" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/warning/cold_temp/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Uj" = ( +/obj/machinery/computer/department_orders/security{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/office) +"Uk" = ( +/turf/open/floor/iron/grimy, +/area/station/hallway/secondary/entry) +"Ul" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/brown/side{ + dir = 10 + }, +/area/station/security/prison/safe) +"Un" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell4"; + name = "curtain" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"Uo" = ( +/obj/effect/turf_decal/tile/neutral/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/dark, +/area/station/commons/fitness/recreation) +"Up" = ( +/obj/structure/fans/tiny/forcefield{ + dir = 1 + }, +/obj/structure/sign/warning/vacuum/external/directional/east, +/obj/machinery/door/poddoor/preopen{ + name = "Dock Shutter" + }, +/turf/open/floor/plating, +/area/station/hallway/primary/fore) +"Uq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"Ur" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"Us" = ( +/obj/effect/spawner/random/structure/girder{ + loot = list(/obj/structure/falsewall=50,/turf/closed/wall=50); + name = "fifty% falsewall, fifty% wall" + }, +/turf/open/floor/plating, +/area/station/security/prison/shower) +"Ut" = ( +/obj/vehicle/ridden/secway, +/obj/effect/turf_decal/tile/red/half, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"Uu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Uv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Uw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/station/common/cryopods) +"Uy" = ( +/obj/structure/cable, +/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/security/medical) +"Uz" = ( +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 1"; + space_dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"UA" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"UB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/security/prison/mess) +"UC" = ( +/turf/closed/wall/rust, +/area/station/service/salon) +"UD" = ( +/obj/structure/chair/stool/bar/directional/east, +/obj/effect/turf_decal/trimline/neutral/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/machinery/bluespace_vendor/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"UF" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/firealarm/directional/west{ + pixel_x = -15 + }, +/turf/open/floor/iron/dark/blue/side{ + dir = 10 + }, +/area/brigofficer) +"UG" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Public Mining Storage"; + opacity = 0 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/sign/warning/gas_mask/directional/south{ + desc = "A sign that warns of dangerous gasses in the air, instructing you to wear internals." + }, +/obj/structure/sign/warning/cold_temp/directional/north, +/turf/open/floor/iron/dark, +/area/mine/storage) +"UH" = ( +/obj/structure/cable, +/obj/item/storage/toolbox/drone, +/obj/structure/rack, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/machinery/camera{ + c_tag = "Security - Prison Outpost"; + network = list("ss13","Security","prison") + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/dark/blue/side, +/area/brigofficer) +"UI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"UJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"UK" = ( +/turf/closed/wall, +/area/station/security/prison/visit) +"UL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/rec) +"UM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/smooth, +/area/station/hallway/secondary/entry) +"UN" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/structure/girder, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"UO" = ( +/obj/structure/rack, +/obj/item/storage/box/teargas{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/flashbangs{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/red/half{ + dir = 8 + }, +/obj/item/storage/toolbox/drone, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"UP" = ( +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"UQ" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"UR" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/structure/closet/secure_closet/barber, +/obj/effect/decal/cleanable/dirt, +/obj/item/pushbroom, +/obj/item/reagent_containers/spray/cleaner, +/obj/machinery/firealarm/directional/west, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/cafeteria, +/area/station/service/salon) +"US" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"UT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "greylair"; + name = "Lair Privacy Shutter" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"UU" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "prisonlockdown4"; + name = "Lockdown" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/button/curtain{ + id = "prisoncell6"; + pixel_x = -22; + pixel_y = 10 + }, +/obj/machinery/button/door/directional/west{ + id = "prisonlockdown4"; + name = "Lockdown"; + req_access = list("brig") + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"UV" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"UW" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"UX" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"UY" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"Va" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/cafeteria, +/area/station/service/salon) +"Vb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) +"Vd" = ( +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/directional/east, +/obj/structure/closet/secure_closet/evidence{ + name = "Brig Officer's Locker" + }, +/obj/item/clothing/mask/whistle, +/turf/open/floor/iron/dark/blue/side{ + dir = 4 + }, +/area/brigofficer) +"Ve" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"Vf" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/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/corner{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"Vi" = ( +/obj/machinery/camera{ + c_tag = " Prison - Library"; + network = list("ss13","prison") + }, +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/contraband/prison, +/obj/effect/spawner/random/entertainment/toy_figure, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/station/security/prison) +"Vj" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Vk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/green{ + 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/primary/fore) +"Vl" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 1" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Vn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/maintenance/fore) +"Vo" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Vp" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 1" + }, +/obj/effect/landmark/navigate_destination{ + location = "Arrival Shuttle" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Vq" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"Vt" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/structure/transit_tube/crossing, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"Vu" = ( +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Vv" = ( +/obj/effect/turf_decal/stripes/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, +/area/station/hallway/secondary/entry) +"Vw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"Vy" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks/beer{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"VA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"VD" = ( +/obj/machinery/door/airlock/maintenance/external{ + name = "Transit Intersection" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"VE" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + space_dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"VG" = ( +/turf/closed/wall, +/area/station/commons/dorms/laundry) +"VH" = ( +/turf/open/genturf, +/area/icemoon/underground/unexplored/rivers) +"VI" = ( +/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" + }, +/turf/open/floor/iron, +/area/station/common/cryopods) +"VJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/sign/warning/docking/directional/south, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"VM" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"VO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/noticeboard/directional/north{ + dir = 2; + name = "Chapel Notice Board" + }, +/obj/machinery/light/directional/north, +/obj/structure/chair/sofa/bench/right, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"VQ" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"VR" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"VS" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/shotguns, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"VT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"VU" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/service/salon) +"VV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"VW" = ( +/obj/machinery/camera/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"VX" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"VZ" = ( +/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, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) +"Wb" = ( +/obj/effect/turf_decal/stripes/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/fore) +"Wc" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Wd" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun/dragnet, +/obj/item/gun/energy/e_gun/dragnet, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/item/melee/hammer, +/obj/item/melee/hammer, +/obj/item/melee/hammer, +/obj/item/melee/hammer, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Wf" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) +"Wg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Wh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + name = "Wildlife Observation Shutters"; + id = "nt_rep_wild" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/captain/private/nt_rep) +"Wi" = ( +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Wj" = ( +/obj/machinery/firealarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"Wl" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/structure/fence, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"Wm" = ( +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"Wn" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"Wo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"Wr" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ws" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/directional/west{ + c_tag = "Arrivals Dock - Publc Mining"; + name = "dock camera" + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/iron/smooth, +/area/station/hallway/secondary/entry) +"Wt" = ( +/obj/effect/turf_decal/bot, +/obj/structure/frame/computer{ + anchored = 1; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) +"Wu" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 1; + height = 4; + name = "escape pod loader"; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"Wv" = ( +/obj/structure/rack, +/obj/effect/spawner/random/engineering/tool, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"Ww" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/security/glass{ + name = "Perma Office" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron/dark/purple, +/area/brigofficer) +"Wx" = ( +/obj/structure/chair/comfy/brown, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/grimy, +/area/station/hallway/secondary/entry) +"Wy" = ( +/obj/structure/fence, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"WC" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"WD" = ( +/obj/effect/turf_decal/stripes/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, +/area/station/hallway/primary/fore) +"WE" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/prison{ + pixel_y = 32 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark/blue/side{ + dir = 9 + }, +/area/brigofficer) +"WF" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod One" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"WG" = ( +/obj/effect/turf_decal/bot, +/obj/structure/marker_beacon/burgundy{ + name = "landing marker" + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"WH" = ( +/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/cable, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"WI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"WJ" = ( +/turf/closed/wall/r_wall, +/area/station/command/teleporter) +"WK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"WL" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"WM" = ( +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"WN" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"WO" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/fore) +"WP" = ( +/obj/structure/sign/warning/pods, +/turf/closed/wall, +/area/station/hallway/secondary/entry) +"WQ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"WR" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/wood/tile, +/area/station/security/execution/transfer) +"WS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "ert-lz-port" + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"WT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"WU" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"WV" = ( +/obj/structure/table, +/obj/structure/cable, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple/side{ + dir = 10 + }, +/area/station/security/prison/safe) +"WW" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 10 + }, +/obj/structure/fence/corner{ + dir = 1 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"WX" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"WY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/computer/shuttle/arrivals/recall, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"WZ" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Xa" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/button/door{ + id = "permainner"; + name = "Inner Bolt Control"; + normaldoorcontrol = 1; + pixel_x = -6; + pixel_y = 25; + specialfunctions = 4 + }, +/obj/machinery/button/door{ + id = "permaouter"; + name = "Outer Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 6; + pixel_y = 25; + specialfunctions = 4 + }, +/obj/machinery/button/door{ + id = "permaturnstile"; + name = "Turnstile Lockdown"; + pixel_y = 37 + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"Xb" = ( +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/bed/pod, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/service/salon) +"Xc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Xd" = ( +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/shotguns, +/obj/effect/turf_decal/delivery/red, +/turf/open/floor/iron/smooth, +/area/station/ai_monitored/security/armory) +"Xe" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/service/salon) +"Xf" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/camera/directional/south, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"Xg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"Xh" = ( +/obj/structure/closet/crate/trashcart/laundry, +/obj/item/reagent_containers/hypospray/medipen, +/obj/item/toy/crayon/spraycan, +/obj/effect/spawner/random/contraband/prison, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) +"Xi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + opacity = 1 + }, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"Xj" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space/basic, +/area/space) +"Xk" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/camera/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"Xl" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Barbershop" + }, +/obj/machinery/door/firedoor, +/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, +/area/station/service/salon) +"Xm" = ( +/obj/machinery/light/directional/west, +/obj/machinery/camera/motion/directional/south{ + c_tag = "Armory - Internal - Upper" + }, +/turf/open/openspace, +/area/station/ai_monitored/security/armory/upper) +"Xn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/service/salon) +"Xo" = ( +/obj/structure/ore_box, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) +"Xs" = ( +/obj/machinery/button/curtain{ + id = "prisoncell11"; + pixel_y = 21 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/brown/side{ + dir = 1 + }, +/area/station/security/prison/safe) +"Xt" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Xu" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Xv" = ( +/obj/structure/barricade/wooden, +/obj/structure/girder, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"Xw" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"Xx" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"Xy" = ( +/turf/open/floor/plating, +/area/station/hallway/primary/fore) +"Xz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/directional/north{ + c_tag = "Security - Escape Pod" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"XA" = ( +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"XC" = ( +/obj/structure/fluff/metalpole{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"XD" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/item/storage/toolbox/drone, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"XF" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + 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, +/area/station/service/salon) +"XG" = ( +/obj/item/trash/popcorn, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/north{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "prison intercom"; + prison_radio = 1 + }, +/turf/open/floor/iron/dark/brown/side{ + dir = 9 + }, +/area/station/security/prison/safe) +"XH" = ( +/obj/item/stack/sheet/cardboard{ + amount = 10 + }, +/obj/structure/loom, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"XI" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains" + }, +/turf/open/floor/plating, +/area/station/service/salon) +"XJ" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/structure/fence, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"XK" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"XL" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/warning/cold_temp/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"XP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/space/basic, +/area/space/nearstation) +"XR" = ( +/obj/docking_port/stationary{ + dheight = 3; + dir = 8; + dwidth = 8; + height = 11; + id = "ferry_home"; + name = "Port Bay 2"; + width = 20 + }, +/turf/open/floor/plating, +/area/station/hallway/primary/fore) +"XS" = ( +/obj/machinery/light/directional/south, +/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/corner, +/area/station/hallway/secondary/entry) +"XT" = ( +/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, +/area/station/hallway/secondary/entry) +"XU" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 4; + pixel_y = 10 + }, +/turf/open/floor/iron/grimy, +/area/station/hallway/secondary/entry) +"XV" = ( +/turf/closed/wall/rock{ + name = "KILO 59, 118" + }, +/area/space) +"XY" = ( +/obj/structure/rack, +/obj/item/gun/energy/ionrifle{ + pixel_y = 4 + }, +/obj/item/gun/energy/temperature/security, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/item/clothing/suit/hooded/ablative, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Ya" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/cold_temp, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Yb" = ( +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Yc" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = -6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/mirror/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple/side{ + dir = 9 + }, +/area/station/security/prison/safe) +"Yd" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Yf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/official/random/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"Yg" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/blue, +/area/brigofficer) +"Yh" = ( +/obj/structure/table, +/obj/item/grenade/barrier{ + pixel_x = 4 + }, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier{ + pixel_x = -4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Yi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/gas_mask, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Yk" = ( +/obj/structure/closet/crate, +/obj/item/reagent_containers/glass/bowl, +/obj/effect/spawner/random/contraband/prison, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/kitchen/fork/plastic, +/obj/item/kitchen/fork/plastic, +/obj/item/kitchen/fork/plastic, +/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/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"Yl" = ( +/obj/structure/closet/crate, +/obj/item/hand_labeler, +/obj/item/storage/crayons, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/station/maintenance/fore) +"Ym" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"Yp" = ( +/obj/structure/closet/bombcloset/security, +/obj/effect/turf_decal/bot_blue, +/obj/item/clothing/suit/bomb_suit/security, +/obj/item/clothing/suit/bomb_suit/security, +/obj/item/clothing/head/bomb_hood/security, +/obj/item/clothing/head/bomb_hood/security, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) +"Yq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/security/prison/mess) +"Yr" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ys" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "ert-lz-port" + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + space_dir = 4 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Yu" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"Yv" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Ferry Dock" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/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/fore) +"Yw" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall/rust, +/area/station/ai_monitored/security/armory) +"Yx" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"Yy" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"Yz" = ( +/obj/structure/fans/tiny/forcefield{ + dir = 1 + }, +/obj/machinery/door/poddoor/preopen{ + name = "Dock Shutter" + }, +/turf/open/floor/plating, +/area/station/hallway/primary/fore) +"YA" = ( +/obj/structure/fluff/metalpole{ + dir = 1 + }, +/obj/structure/fluff/metalpole/end/right{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"YB" = ( +/obj/effect/turf_decal/stripes/full, +/obj/machinery/door/poddoor{ + id = "justiceblast"; + name = "Justice Blast Door" + }, +/turf/open/floor/iron/dark, +/area/station/security/execution) +"YC" = ( +/turf/closed/wall/r_wall, +/area/station/security/prison/upper) +"YD" = ( +/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/extinguisher_cabinet/directional/east{ + pixel_y = -5 + }, +/obj/machinery/button/curtain{ + id = "prisoncell10"; + pixel_x = 22; + pixel_y = 10 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"YE" = ( +/turf/closed/wall/rock{ + name = "BOX 100, 177, 2" + }, +/area/space) +"YF" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/station/service/salon) +"YG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"YH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"YJ" = ( +/obj/structure/table, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/turf/open/floor/iron, +/area/station/security/prison) +"YK" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + 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/security/brig) +"YL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"YM" = ( +/turf/closed/wall/rock{ + name = "TRAM 74, 102, 2" + }, +/area/space) +"YN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"YO" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/common/cryopods) +"YP" = ( +/turf/closed/wall/rock{ + name = "DELTA 189, 154" + }, +/area/space) +"YR" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"YT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Armory" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/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/ai_monitored/security/armory) +"YU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"YV" = ( +/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/security/prison/upper) +"YW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"YX" = ( +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 1 + }, +/turf/open/floor/iron/grimy, +/area/station/hallway/secondary/entry) +"YY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Za" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/button/door/directional/north{ + id = "brigprison"; + name = "Prison Lockdown" + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"Zb" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Zc" = ( +/obj/structure/flora/rock/pile/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"Zd" = ( +/obj/structure/chair/comfy{ + color = "#596479" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"Ze" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison) +"Zf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison) +"Zg" = ( +/obj/structure/table, +/obj/item/storage/box/rubbershot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/rubbershot, +/obj/item/storage/box/rubbershot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Zi" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/maintenance/fore) +"Zj" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "Abandoned Cell"; + name = "Abandoned Cell" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/fore) +"Zk" = ( +/obj/structure/bed/maint, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/lusty_xenomorph{ + pixel_x = 32 + }, +/turf/open/floor/iron{ + icon = 'icons/turf/floors.dmi' + }, +/area/station/security/prison/upper) +"Zl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Zm" = ( +/obj/machinery/door/airlock/external{ + name = "Security External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/plating, +/area/station/security/execution/transfer) +"Zn" = ( +/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/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"Zo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Zp" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Zq" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/landmark/start/hangover, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Zr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Zs" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = -6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/mirror/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 9 + }, +/area/station/security/prison/safe) +"Zt" = ( +/turf/cordon, +/area/space) +"Zu" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Zv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Zw" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Zx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Zz" = ( +/obj/structure/window/reinforced, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"ZA" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/noticeboard/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"ZC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ZD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ZE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + space_dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ZF" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/turf_decal/tile/red/half{ + dir = 8 + }, +/obj/structure/closet/ammunitionlocker/useful, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"ZG" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate{ + name = "firesuit crate" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/head/hardhat/red, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) +"ZI" = ( +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"ZK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ZL" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/cafeteria, +/area/station/service/salon) +"ZM" = ( +/turf/closed/wall, +/area/station/hallway/secondary/entry) +"ZO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"ZP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ZQ" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"ZR" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Arrivals Bay 2" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ZS" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/item/pen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"ZT" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/landmark/start/hangover, +/obj/machinery/light/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ZU" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod One"; + space_dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"ZV" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/station/security/execution/transfer) +"ZW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "greylair"; + name = "Lair Privacy Shutter" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"ZX" = ( +/obj/effect/turf_decal/tile{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ZZ" = ( +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell8"; + name = "curtain" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/prison/safe) + +(1,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(2,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(3,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +Zt +gy +Zt +Zt +Zt +Zt +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(4,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +gy +Zt +gy +Zt +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +Zt +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(5,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +Zt +gy +gy +Zt +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +Zt +Zt +Zt +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(6,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(7,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(8,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +Aj +sq +gy +gy +NW +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Su +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +PO +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Jb +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Qw +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +KK +gy +"} +(9,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +IK +IK +QJ +Aj +IK +IK +sq +QJ +IK +IK +IK +IK +IK +IK +QJ +IK +IK +Aj +IK +IK +gy +gy +NW +gy +Zt +MR +MR +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +Zu +NO +Zu +PT +ZD +ZD +Ti +ZD +YY +ZD +ZD +ZD +VR +YY +ZD +ZD +ZD +ZD +Ms +Xt +ZD +ZD +vT +Ad +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +Xj +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +cQ +PL +gy +gy +gy +gy +Or +Or +mo +hb +fE +wU +zZ +gj +Vb +AV +Gm +jA +Op +nj +Wf +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +XP +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +XP +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +Em +eJ +eJ +eJ +eJ +eJ +Zt +gy +"} +(10,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +IK +Aj +IK +IK +IK +IK +IK +IK +sq +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +gy +gy +NW +gy +Zt +MR +MR +ZI +QC +Wy +Wy +XJ +XJ +XJ +XJ +XJ +XJ +XJ +XJ +XJ +wu +XJ +XJ +wu +XJ +XJ +XJ +XJ +XJ +XJ +XJ +XJ +XJ +WW +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +ML +ZM +ZM +ZM +ZM +ZM +ZM +Zu +Zu +ZM +Zu +Zb +Zu +Yd +Zq +ZT +Ty +IV +Zu +Zb +Zu +Zu +ZM +Zu +Zu +ZM +ZM +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +hb +gy +gy +gy +gy +Or +Or +gy +gy +gy +Rn +Rn +Rn +Rn +Rn +Rn +gy +gy +gy +gy +gy +gy +pc +PL +PL +PL +PL +PL +ra +Kd +FS +GK +Aq +bT +mW +oN +oN +oN +oN +PZ +xp +fb +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +PL +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +PL +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +Oe +eJ +eJ +eJ +eJ +eJ +Zt +gy +"} +(11,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +vP +vP +IK +sq +IK +IK +Aj +IK +IK +LO +gy +gy +NW +gy +Zt +MR +MR +ZI +QG +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +vV +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +Oh +Oh +Oh +gy +Oh +gy +gy +Oh +Zu +Sn +Zu +Zu +ZM +ZM +ZM +Zu +Zu +Sn +Zu +gy +Oh +gy +gy +gy +ZM +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +hb +Or +gy +gy +Or +Or +Or +Or +gy +Rn +Rn +uU +Yu +bf +uU +Rn +Rn +gy +gy +gy +gy +gy +gy +pK +Or +Or +Or +Or +Or +Or +qN +oc +wU +gE +fa +LX +nt +Oq +nt +mb +nw +TS +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +ky +gy +gy +gy +gy +gy +gy +gy +PL +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +PL +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +Oe +eJ +Em +eJ +eJ +eJ +Zt +gy +"} +(12,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Aj +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +gy +gy +NW +gy +Zt +MR +MR +ZI +QG +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +vV +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +Oh +Oh +Oh +Oh +Oh +Oh +Zu +VE +Zu +Oh +gy +gy +gy +Oh +Zu +AY +Zu +Oh +Oh +Oh +Oh +Oh +Zu +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +hb +Or +Or +gy +ft +Or +Or +Or +Or +Rn +Rm +mS +fR +fR +mc +Rm +Rn +Or +Or +Or +Or +gy +Or +Or +pb +Or +Or +Or +Or +Or +qN +fb +fE +nu +wW +Gq +yl +ya +ya +fh +eU +fb +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +XP +gy +gy +gy +PL +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +PL +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +Oe +eJ +Oe +eJ +eJ +eJ +Zt +gy +"} +(13,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +kN +IK +IK +IK +IK +QJ +IK +IK +IK +IK +ee +IK +IK +IK +IK +IK +IK +QJ +IK +IK +gy +gy +NW +gy +Zt +MR +MR +ZI +QG +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +WG +Om +Om +WG +Om +Om +Om +Om +Om +US +mz +Om +Om +vV +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +QQ +gy +Oh +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +ZM +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Or +Or +Or +Or +Or +Or +Or +Or +Rn +Rn +fR +ni +vY +XA +nD +Xy +Rn +Rn +Or +ft +Or +Or +Or +Or +Or +Fr +Or +Or +Or +hb +qN +hb +fb +fE +uJ +fs +ey +yW +gm +ij +fb +fE +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +PL +gy +gy +ZM +ZM +mV +mV +mV +mV +mV +mV +mV +mV +mV +mV +mV +mV +mV +ZM +ZM +gy +gy +gy +gy +gy +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +Oe +Oe +Oe +eJ +eJ +eJ +Zt +gy +"} +(14,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +CX +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +gy +gy +NW +gy +Zt +MR +MR +ZI +QW +Om +Om +Om +Om +WG +US +Om +Om +mz +WG +Om +Om +Om +Om +Om +Om +Om +WG +Om +US +Om +Om +Om +WG +vV +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +QQ +gy +Oh +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Ml +gy +gy +gy +gy +Zu +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Or +Or +Or +Or +Or +Or +Or +Or +PB +Sk +fR +NB +Rm +fR +xx +Rm +Az +PB +Or +Or +Or +Or +Or +Or +Or +Or +Fr +Or +gy +gy +Tz +qz +tA +fb +fb +fE +fE +fb +fb +fE +fb +Gx +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +PL +gy +gy +ZM +po +sK +nm +sK +nm +sK +nm +sK +nm +sK +nm +sK +nm +sK +HE +Zu +gy +gy +gy +gy +gy +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +Oe +eJ +eJ +eJ +eJ +eJ +Zt +gy +"} +(15,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +PY +GS +IK +LO +IK +IK +CX +IK +IK +sq +gy +gy +NW +gy +Zt +MR +MR +ZI +Rq +Om +Om +Om +US +Om +Om +Om +Om +Om +Om +mz +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +vV +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +QQ +gy +Oh +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zu +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Or +Or +kF +kF +PB +Rn +Rn +Rn +PB +In +JI +lN +hl +gU +Wm +Ot +FM +kF +kF +Rn +Rn +Rn +PB +PB +Rn +PB +gy +dP +PL +PL +PL +uH +qN +hb +hb +hb +hb +fb +KZ +sS +NL +aM +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +PL +gy +gy +ZM +WC +Yb +Yb +Yb +Yb +Yb +wq +sj +Ka +Yb +Yb +Yb +Yb +Yb +Uu +Zu +gy +gy +gy +gy +XP +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +Oe +eJ +eJ +eJ +eJ +eJ +Zt +gy +"} +(16,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +IK +CX +IK +IK +IK +IK +IK +IK +LO +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +gy +gy +NW +gy +Zt +MR +MR +ZI +QW +Om +Ts +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +zN +zN +Om +mz +Om +Om +US +Om +Om +xd +Om +Om +vV +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +QQ +gy +Oh +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zu +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +PB +AW +dA +Pm +vg +bk +vg +vg +MB +Px +MB +MB +HJ +vg +vg +Xy +CN +mg +iX +MB +HA +FV +vg +Rn +gy +PL +pK +gy +gy +PL +qN +hb +hb +hb +hb +fE +fE +VD +fb +Ni +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +PL +gy +gy +ZM +uw +Yb +Yb +Yb +wq +Yb +Yb +Yb +Yb +Yb +Ka +Yb +Yb +Yb +Uu +Zu +gy +gy +gy +gy +PL +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +Oe +eJ +eJ +eJ +eJ +eJ +Zt +gy +"} +(17,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +IK +IK +QJ +CX +IK +IK +LO +QJ +IK +IK +IK +IK +IK +IK +QJ +IK +IK +CX +IK +IK +gy +gy +NW +gy +Zt +MR +MR +ZI +QW +Om +Om +US +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +vb +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +QQ +Oh +Oh +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zu +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +PB +RQ +Nb +tq +tq +Wb +Wb +Wb +vW +vW +Wb +Wb +Wb +vW +vW +Wb +Wb +Wb +Wb +Wb +Wb +mh +bk +Rn +gy +PL +PL +pK +gy +ra +Tz +qz +qz +qz +qz +su +sP +PJ +fE +fE +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +ZM +Zu +Zu +ZM +py +Yb +Yb +iQ +Yb +Yb +Yb +Yb +Yb +Yb +Yb +iQ +Yb +Yb +HZ +ZM +gy +gy +gy +gy +PL +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +Oe +eJ +eJ +eJ +eJ +eJ +Zt +gy +"} +(18,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +CX +LO +gy +gy +NW +gy +Zt +MR +MR +ZI +QW +Om +Om +UV +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +kW +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +QQ +gy +Oh +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zu +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +Tt +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +KH +ut +Rn +gy +gy +PL +PL +Qa +CE +cD +cD +CE +cD +cD +Ga +Vt +oP +Lq +wI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zu +ja +lr +tU +WC +Yb +Yb +wq +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Ka +Yb +Yb +Uu +Zu +gy +gy +gy +gy +PL +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +eJ +Oe +eJ +eJ +eJ +eJ +eJ +Zt +gy +"} +(19,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +MR +MR +ZI +QW +Om +Om +UW +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +vb +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +QQ +gy +Oh +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zu +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +Yz +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +KH +Wj +PB +PL +PL +PL +PL +PL +ra +yK +Or +Or +Or +Or +Jx +pk +TG +jV +lB +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +ZM +te +kg +ui +WC +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Uu +Zu +gy +gy +gy +gy +PL +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +eJ +eJ +gA +ZM +Zu +Zu +ZM +Zu +ZM +mV +mV +mV +mV +mV +mV +mV +mV +mV +mV +mV +ZM +Zu +ZM +Oe +eJ +eJ +eJ +Em +eJ +Zt +gy +"} +(20,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +IK +IK +IK +IK +Aj +vP +sq +IK +IK +IK +IK +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +MR +MR +ZI +QW +Om +Ts +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +uO +ty +Om +xd +Om +Om +UW +Om +Om +mz +Om +Om +vb +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +QQ +gy +Oh +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zu +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +Yz +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +KH +Tg +PB +gy +gy +PL +gy +PL +PL +Rb +Rb +UC +Rb +Rb +UC +MO +Hg +DT +nM +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +dl +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zu +jk +kg +ui +pF +Yb +Yb +Yb +Yb +Yb +Yb +iQ +Yb +Yb +Yb +Yb +Yb +Yb +Ih +ZM +Zu +Zu +Zu +gy +PL +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +eJ +eJ +gA +Zu +ja +lr +hu +io +kx +sK +nm +sK +nm +sK +nm +sK +nm +sK +nm +sK +yw +zT +Zu +Oe +eJ +eJ +eJ +Oe +eJ +Zt +gy +"} +(21,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +IK +IK +Aj +IK +IK +IK +IK +IK +sq +IK +IK +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +MR +MR +ZI +QG +Om +Om +Om +UW +Om +Om +Om +Om +Om +Om +xd +SE +bg +bg +SE +Om +Om +Om +Om +Om +Om +Om +Om +Om +vV +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +QQ +gy +Oh +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +ZM +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +Yz +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Ps +hJ +Rn +gy +gy +Rb +UC +Rb +UC +UC +UR +gv +Va +SJ +tL +MO +FH +MO +VO +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +PL +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zu +jn +kg +ui +pV +Yb +Yb +nc +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Ke +Yb +Yb +Uu +ME +cw +Lb +Zu +Zu +Zu +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +eJ +eJ +gA +ZM +fD +kg +SI +ZX +kS +Yb +Yb +Yb +Yb +wq +sj +Ka +Yb +Yb +Yb +Yb +yy +Ax +Zu +Oe +eJ +eJ +eJ +Oe +eJ +Zt +gy +"} +(22,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +IK +QJ +IK +IK +IK +IK +IK +IK +IK +QJ +IK +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +MR +MR +ZI +QG +Om +Om +Om +Om +WG +UW +Om +Om +xd +WG +Om +Zu +Qc +Qc +Zu +Om +Om +WG +Om +UW +Om +Om +Om +Ts +vV +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +Oh +Oh +Oh +Oh +Oh +Oh +Zu +ZE +Zu +Oh +gy +gy +gy +Oh +Zu +ZE +Zu +Oh +Oh +Oh +Oh +Oh +Zu +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +Yz +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Se +vg +Rn +gy +gy +UC +HR +nY +jw +UC +iF +yo +uY +aA +Rl +MO +Cb +DT +Kc +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +PL +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zu +jp +lX +ui +pV +Yb +Yb +iQ +Yb +Yb +Yb +Yb +Yb +Yb +Yb +iQ +Yb +Yb +Uu +ME +cw +Oz +OI +Mm +Mr +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +eJ +eJ +gA +Zu +jk +kg +SI +ZX +WC +Yb +Yb +wq +Yb +Yb +Yb +Yb +Yb +Ka +Yb +Yb +Uu +AP +Zu +eJ +eJ +eJ +eJ +Oe +eJ +Zt +gy +"} +(23,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +IK +Aj +IK +IK +IK +IK +IK +IK +IK +sq +IK +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +MR +MR +ZI +QG +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Om +Zu +Yb +Yb +Zu +Om +Om +Om +Om +Om +UW +xd +Om +Om +vV +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +Oh +Oh +Oh +gy +Oh +gy +gy +Oh +Zu +Sn +Zu +Zu +ZM +ZM +ZM +Zu +Zu +Sn +Zu +gy +Oh +gy +gy +gy +ZM +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +Yz +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +ti +vg +Rn +gy +gy +UC +RM +xI +CD +AS +ZL +TT +TT +kU +Ac +MO +ly +MO +yQ +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +PL +gy +gy +gy +gy +gy +gy +gy +gy +gy +ZM +jG +nI +ui +uF +Yb +Yb +Yb +nc +Yb +Yb +Yb +Yb +Yb +Ke +Yb +Yb +Yb +VA +ZM +NU +Oz +OI +gr +Mr +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +eJ +eJ +gA +Zu +jn +kg +SI +ZX +WC +Yb +iQ +Yb +Yb +Yb +Yb +Yb +Yb +Yb +iQ +Yb +Uu +AQ +ZM +eJ +eJ +eJ +eJ +Oe +eJ +Zt +gy +"} +(24,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +MR +MR +ZI +Rs +RX +RX +RX +Wl +Wl +Wl +Wl +Wl +Wl +RX +RX +SE +jo +WM +SE +Om +Om +Om +Om +Om +Om +Om +Om +Om +vV +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +ML +ZM +ZM +ZM +ZM +ZM +ZM +Zu +Zu +ZM +Zu +ne +Zu +Yr +iY +Jq +wy +go +Zu +PH +Zu +TY +ZM +Zu +Zu +ZM +WP +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +Yz +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +ti +ZA +PB +Rn +Rn +Rb +aS +aS +aS +Rb +Ql +Ql +dM +Ql +Ql +DT +wm +MO +Lx +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +PL +gy +gy +XP +PL +PL +PL +XP +gy +gy +Zu +kg +nN +ui +qe +rA +ss +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Fw +rA +It +Zu +cw +Lr +Zu +Zu +Zu +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +eJ +eJ +gA +Zu +jp +kg +SI +ZX +WC +Yb +wq +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Ka +Yb +Uu +BA +ZM +eJ +eJ +eJ +eJ +Oe +eJ +Zt +gy +"} +(25,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +IK +IK +IK +IK +IK +QJ +IK +IK +IK +IK +IK +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +MR +MR +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +SE +vq +vq +SE +MF +MF +Om +Om +Om +Om +Om +Om +Om +vV +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +Zu +QK +Zu +Sb +GG +TW +Wi +bD +bD +YG +YG +Zr +YG +YG +YG +YG +OP +an +ZK +AL +ZK +ZK +tu +Tv +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +Yz +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +XR +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +KH +rJ +dd +Jh +AR +dd +Jh +rY +rY +hr +rY +rY +NT +qn +qn +qn +Bm +Eq +wF +Zt +gy +gy +NW +gy +gy +Zt +Zu +Zu +Zu +Zu +PL +PL +gy +gy +gy +PL +PL +Zu +Zu +kg +tC +ZM +vd +cw +tb +rA +vH +pl +Yb +iQ +Yb +uQ +DC +rA +FX +cw +Mb +Zu +cw +Ls +ZM +gy +PL +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +eJ +eJ +gA +ZM +jj +kg +SI +ZX +ru +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Uu +BL +Zu +eJ +eJ +eJ +eJ +Oe +eJ +Zt +gy +"} +(26,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +IK +CX +IK +IK +IK +IK +IK +IK +IK +LO +IK +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +MR +MR +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +Zu +sH +bD +SE +SE +SE +Om +qv +ml +Wl +Wl +Wl +Wl +ph +ZI +Zt +gy +gy +NW +gy +gy +Zt +Mn +gy +gy +gy +Nh +Nq +NP +Nq +Uu +Iq +Iq +Iq +Xu +Iq +WU +Iq +Xu +Iq +Xu +Iq +Iq +bp +Iq +Xu +Iq +Xu +Iq +WC +aX +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +Yz +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +ti +iy +Yv +Pj +MM +Yv +bt +gW +GW +HP +HP +Vk +yG +yG +yG +yG +LI +LQ +Qv +Zt +gy +gy +NW +gy +gy +Zt +as +cy +Mw +PL +gy +gy +gy +gy +gy +gy +gy +PL +Zu +kh +gC +ZM +rS +cw +tj +sd +vR +lY +Yb +Yb +Yb +uQ +Ek +sd +Gg +cw +aB +ZM +Kx +LL +Zu +Zu +PL +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +eJ +eJ +gA +Zu +kg +ge +SI +ZX +lE +Yb +Yb +Yb +Yb +Yb +iQ +Yb +Yb +Yb +Yb +Yb +zA +Cn +Zu +eJ +eJ +eJ +eJ +Oe +eJ +Zt +gy +"} +(27,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +IK +QJ +IK +IK +IK +IK +IK +IK +IK +QJ +IK +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +MR +MR +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +Zu +th +cw +PG +KY +SE +Wl +Gh +ZI +ZI +ZI +ZI +ZI +ZI +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +Zu +NO +Zu +PX +ZD +rG +Tl +ZD +VR +YY +ZD +ZD +jb +jb +ZD +YY +ZD +ZD +Ms +Xt +ZD +VR +Qf +bR +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +Yz +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +ti +iD +PB +Rn +Rn +PB +PB +PB +TJ +MB +KS +rE +rE +rE +es +Nm +TU +rE +es +Zt +gy +gy +NW +gy +gy +Zt +Uu +WC +Zu +PL +gy +gy +gy +gy +gy +gy +gy +PL +Mw +kk +oj +Zu +qf +sd +tk +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Gj +sd +Iw +Zu +qO +LL +jk +Zu +PL +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +eJ +eJ +gA +Zu +kg +lX +SI +ZX +lE +Yb +nc +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Ke +Yb +Uu +Cn +Zu +eJ +eJ +eJ +eJ +Oe +eJ +Zt +gy +"} +(28,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +IK +IK +CX +IK +IK +IK +IK +IK +LO +IK +IK +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +MR +MR +ZI +ZI +ZI +ZI +ZI +CZ +ZI +ZI +ZI +ZI +ZI +ZI +ZI +Zu +uC +EJ +YX +ca +Zu +ZI +ZI +ZI +Dl +ZI +ZI +ZI +ZI +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +ML +ZM +ZM +ZM +ZM +ZM +ZM +Zu +Zu +ZM +TY +Zu +Zu +Zu +ZM +WS +WS +ZM +Zu +Zu +Zu +Zu +ZM +Zu +Zu +ZM +ZM +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +Up +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +Xy +ti +Ec +Rn +Or +Or +Or +Or +kF +Cv +MB +mL +es +bu +nz +Pn +rE +cB +rE +Yl +Zt +gy +gy +NW +gy +gy +Zt +bc +cE +ZM +PL +gy +gy +gy +gy +gy +gy +gy +PL +Zu +Uu +oV +Zu +qh +Yb +Yb +Yb +Yb +nc +Yb +Yb +Yb +Ke +Yb +Yb +Yb +Yb +Ix +Zu +NZ +LL +Mi +Zu +PL +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +eJ +eJ +gA +Zu +kh +gC +ZM +iw +lE +Yb +iQ +Yb +Yb +Yb +Yb +Yb +Yb +Yb +iQ +Yb +Uu +BZ +ZM +Zu +Zu +ZM +Oe +Oe +eJ +Zt +gy +"} +(29,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +MR +MR +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +Zu +uC +cw +YX +QE +Zu +ZI +ZI +ZI +rO +ZI +ZI +ZI +ZI +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +PL +gy +gy +gy +RJ +gy +PL +RJ +gy +gy +Pv +kd +Ld +LT +gy +gy +XC +gy +gy +gy +gy +gy +ZM +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +PB +Tx +gt +fk +fk +yP +yP +yP +wC +WD +wC +wC +wC +wC +WD +WD +WD +cN +WD +WD +WD +oF +MB +Rn +Or +Or +Or +Zc +kF +IC +jl +dG +rE +dX +mu +oU +es +cK +rE +rE +Zt +gy +gy +NW +gy +gy +Zt +bh +WC +Jg +Jg +Jg +gy +gy +gy +gy +gy +Zu +Zu +Zu +ki +oV +Zu +qs +Yb +Yb +iQ +Yb +Yb +Yb +Yb +Yb +Yb +Yb +iQ +Yb +Yb +ID +ZM +Od +LL +Mj +ZM +XP +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +eJ +eJ +gA +ZM +bI +Zo +ZM +jm +lE +Yb +Yb +nc +Yb +Yb +Yb +Yb +Yb +Ke +Yb +Yb +Uu +Bh +ME +Ey +EI +Zu +eJ +JA +eJ +Zt +gy +"} +(30,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +IK +IK +IK +kN +IK +QJ +IK +zB +IK +IK +IK +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +MR +MR +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +Zu +LW +cw +YX +XU +Zu +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +XP +gy +gy +gy +gy +gy +gy +gy +gy +gy +Pv +RI +sl +LT +PL +PL +kH +gy +gy +gy +gy +gy +Zu +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +PB +VW +vg +vg +Ef +Yf +hJ +vg +ka +yV +MB +MB +MB +MB +AX +rr +vg +vg +hJ +MB +yV +IS +MB +Rn +Or +Or +Or +Or +PB +kF +PB +PB +es +kP +Mt +Vn +pJ +Cx +km +Cs +Zt +gy +gy +NW +gy +gy +Zt +bi +WC +el +gr +ir +gy +gy +gy +gy +gy +iN +iG +kv +kj +LH +ZM +vk +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +ab +Zu +KE +LL +jk +Zu +PL +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +eJ +eJ +gA +Zu +fO +mC +ZM +jB +lE +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Uu +Bh +ME +cw +HQ +Zu +eJ +JA +eJ +Zt +gy +"} +(31,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +IK +IK +IK +kN +IK +IK +IK +zB +IK +IK +IK +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +MR +MR +ZI +ZI +ZI +ZI +Om +Wu +Om +ZI +ZI +ZI +ZI +ZI +ZI +SE +nP +cw +YX +Wx +Zu +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zz +Ys +Ys +TL +gy +gy +hq +gy +gy +gy +gy +Ht +Zu +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +kF +Rn +Rn +Rn +PB +kF +Rn +Rn +Rn +PB +PB +Rn +Rn +Rn +PB +PB +Rn +Rn +Rn +PB +PB +Rn +Rn +kF +Or +Or +gy +hb +hb +hb +hb +hb +rE +jy +MU +qX +ac +QR +Fu +cI +Zt +gy +gy +NW +gy +gy +Zt +Uu +WC +Zu +Zu +Zu +gy +gy +gy +gy +gy +Zu +Zu +Zu +Uu +tI +ZM +ri +Yb +Yb +Yb +Yb +wq +Yb +Yb +Yb +Ka +Yb +Yb +Yb +Yb +ab +Zu +fl +LN +Mi +Zu +PL +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +Zu +Zu +Zu +Zu +ki +Zv +Zu +ZX +lE +Yb +Yb +Yb +pl +Yb +iQ +Yb +uQ +Yb +Yb +Yb +Uu +Bi +ZM +EH +Ey +Zu +Zu +Zu +eJ +Zt +gy +"} +(32,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +IK +IK +nH +IK +IK +IK +IK +IK +IK +IK +IK +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +ZI +ZI +ZI +ZI +ZI +SE +ZM +ZU +ZM +SE +ZI +ZI +ZI +ZI +ZI +Zu +uC +cw +YX +Uk +Zu +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +PR +gy +gy +gy +gy +gy +ZM +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +Or +Or +Or +Or +Or +Or +Or +id +Or +Or +Or +Or +Or +Or +Or +Or +Or +Or +Or +Or +Or +Or +gy +gy +hb +hb +hb +hb +hb +es +tS +ji +rj +es +xM +IQ +rE +Zt +gy +gy +NW +gy +gy +Zt +bn +cx +cy +fi +Zu +gy +gy +gy +gy +gy +Zu +qu +hd +QO +oV +Mw +qs +Yb +Yb +wq +Yb +Yb +Yb +iQ +Yb +Yb +Yb +Ka +Yb +Yb +II +ZM +EH +Ma +Zu +Zu +PL +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +iN +iG +Yb +kv +kj +Zv +Zu +ZX +lE +Yb +Yb +Yb +lY +Yb +Yb +Yb +uQ +Yb +Yb +Yb +Uu +Cn +Zu +Hy +EJ +Gt +Yb +JB +Kj +Zt +gy +"} +(33,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +IK +IK +IK +CX +IK +IK +IK +LO +IK +IK +IK +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +ZI +ZI +ZI +ZI +ZI +TD +UX +Yb +Cd +SE +ZI +ZI +ZI +ZI +ZI +Zu +uC +cw +YX +hm +Zu +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zu +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +Or +Or +Or +Or +Or +Or +Or +Or +Or +Or +Or +Or +Or +Or +gy +gy +gy +gy +gy +gy +gy +gy +gy +Xj +gy +hb +hb +hb +hb +es +WO +Zj +rE +rE +RN +CF +Df +Zt +gy +gy +NW +gy +gy +Zt +ab +cw +WC +fl +Zu +gy +gy +gy +gy +gy +Zu +qI +Uu +cw +BX +ZM +qs +Yb +wq +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Ka +Yb +IX +Zu +cw +Ma +Zu +gy +PL +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +Zu +Zu +Zu +Zu +Uu +ta +Zu +ZX +lE +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Uu +Cn +Zu +Iz +Ia +Zu +Zu +Zu +eJ +Zt +gy +"} +(34,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +IK +QJ +IK +IK +IK +IK +IK +IK +IK +QJ +IK +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +ZI +ZI +ZI +ZI +ZI +SE +ZM +WF +WP +SE +ZI +ZI +ZI +ZI +ZI +Zu +Ft +Fd +YX +Jm +SE +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zu +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +Or +Or +Or +Zc +hb +hb +Or +Or +Or +Or +Or +Or +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +hb +hb +hb +hb +rE +ig +Zi +rE +cX +TI +DA +Zt +gy +gy +NW +gy +gy +Zt +ab +cw +WC +fl +Zu +gy +gy +gy +gy +gy +Zu +qJ +Uu +cw +BX +ow +qs +Yb +nc +Yb +Yb +Ke +Yb +Yb +Yb +nc +Yb +Yb +Ke +Yb +IX +Zu +cw +VJ +ZM +PL +XP +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +eJ +eJ +Zu +hd +QO +Zv +Zu +ZX +lE +Yb +Yb +Yb +nc +Yb +Yb +Yb +Ke +Yb +Yb +Yb +zC +Ji +Zu +Hy +HQ +Zu +gA +gA +eJ +Zt +gy +"} +(35,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +IK +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +ZI +ZI +ZI +Om +Zu +Zu +Zu +RS +Xf +SE +ZI +ZI +ZI +ZI +ZI +Zu +Ft +cw +Fv +wM +TD +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zu +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +Or +Or +hb +hb +hb +dx +FZ +uH +hb +Or +Zc +hb +uH +PL +pE +nb +nb +nb +PL +uH +PL +pE +nb +nb +nb +nb +PL +uH +hb +hb +hb +es +LK +GA +es +sf +Pr +zb +Zt +gy +gy +NW +gy +gy +Zt +by +cw +WC +fG +Zu +gy +gy +gy +gy +gy +Zu +fl +Uu +cw +BX +uj +WC +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Ja +ZM +NU +Ma +Zu +gy +PL +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +eJ +eJ +Zu +Uu +cw +WI +ZM +ZX +mp +Yb +iQ +Yb +Yb +Yb +Yb +Yb +Yb +Yb +iQ +Yb +Uu +Cu +ZM +FU +HQ +Zu +gA +gA +eJ +Zt +gy +"} +(36,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +IK +IK +IK +Aj +IK +IK +IK +sq +IK +IK +IK +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +ZI +ZI +ZI +Om +Uz +Yb +Vl +Pl +tE +Zu +ZI +ZI +ZI +ZI +ZI +Zu +Ft +cw +RF +Zu +Zu +Zu +Om +ZI +ZI +ZI +ZI +ZI +ZI +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Ex +gy +gy +gy +YA +gy +gy +gy +gy +gy +ZM +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +gy +gy +NW +gy +gy +Zt +ae +cs +dF +fM +Zu +gy +gy +gy +gy +gy +Zu +qO +hy +MT +BX +uj +cx +bD +wz +wz +wz +xK +xK +Aa +Aa +Aa +Aa +Aa +Aa +Aa +Ju +Mp +BX +Ma +Zu +gy +PL +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +eJ +eJ +Zu +WY +cw +gN +ZM +jN +mD +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Uu +Ji +Zu +Hy +EX +Zu +gA +gA +eJ +Zt +gy +"} +(37,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +IK +Aj +IK +IK +IK +QJ +IK +IK +IK +sq +IK +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +ZI +ZI +ZI +Om +Zu +Zu +Zu +Ui +tE +Zu +ZI +ZI +ZI +ZI +ZI +SE +im +cw +WC +AA +Yb +wx +IY +ZI +ZI +ZI +ZI +ZI +ZI +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zz +bg +bg +TL +gy +gy +hq +gy +gy +gy +gy +Ht +Zu +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +ai +WC +Zu +Zu +Zu +gy +gy +gy +gy +gy +Zu +Zu +Zu +kk +BX +ZM +vx +cw +sE +cw +yc +FP +Am +cw +cw +Dt +FP +GO +cw +Gu +cw +uj +cw +Me +ZM +gy +PL +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +eJ +eJ +Zu +Uu +cw +mT +ZM +RB +iZ +Yb +Yb +Yb +wq +Yb +Yb +Yb +Ka +Yb +Yb +Yb +Uu +Cl +ZM +Gr +HQ +Zu +gA +gA +eJ +Zt +gy +"} +(38,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Aj +IK +IK +IK +IK +IK +IK +IK +IK +IK +sq +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +ZI +ZI +ZI +ZI +Zu +WX +bD +WL +Xw +Zu +ZI +ZI +ZI +ZI +ZI +Zu +Ft +cw +XL +Zu +Zu +Zu +Om +ZI +ZI +ZI +ZI +ZI +ZI +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +XP +gy +gy +gy +gy +gy +gy +gy +gy +gy +Pv +lG +tH +LT +PL +PL +kH +gy +gy +gy +gy +gy +Zu +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +XV +gy +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +jc +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +az +WC +el +gr +ir +gy +gy +gy +gy +gy +iN +iG +kv +Uu +tJ +ZM +vD +vK +wN +vK +ZM +ZM +ZM +vK +vK +ZM +yp +yp +KA +yp +yp +yp +yp +yp +yp +OO +OO +gy +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +eJ +eJ +Zu +hy +MT +mT +hU +jZ +iZ +Yb +wq +Yb +Yb +Yb +iQ +Yb +Yb +Yb +Ka +Yb +Uu +Ji +Zu +Hy +Ey +Zu +Zu +Zu +eJ +Zt +gy +"} +(39,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +CX +IK +IK +LO +IK +IK +IK +CX +IK +IK +LO +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +ZI +ZI +ZI +ZI +Zu +WY +cw +cw +Xw +Zu +ZI +ZI +ZI +ZI +ZI +Zu +Ft +cw +cx +bD +Zp +Zu +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +PL +gy +gy +gy +Uh +gy +PL +Uh +gy +gy +Pv +kd +Ld +LT +gy +gy +XC +gy +gy +gy +gy +gy +ZM +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +jH +ov +ov +ov +ov +ov +Zt +gy +gy +gy +Zt +ds +Hz +hb +Do +GI +GI +GI +GI +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +az +WC +Zu +Zu +Zu +gy +gy +gy +gy +gy +Zu +Zu +Zu +Uu +BX +ZM +vG +Uu +sE +WC +vf +ZM +cw +cw +cw +EK +Bu +GP +KD +Le +yp +Nw +Oi +Kn +Ou +OO +OO +OO +gy +gy +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +Zu +Zu +Zu +Zu +kk +mT +ME +ZX +WC +wq +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Yb +Ka +Uu +Ji +Zu +Gy +Fd +Gt +Yb +JQ +eJ +Zt +gy +"} +(40,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +ZI +ZI +ZI +ZI +Zu +Jd +cw +cw +Xw +Zu +ZI +ZI +ZI +ZI +ZI +Zu +Ft +cw +cw +cw +un +Zu +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +ZM +Zu +ZM +Zu +Zu +Zu +ZM +Zu +Zu +Zu +Zu +ZM +bE +bE +ZM +Zu +Zu +Zu +TY +ZM +Zu +Zu +ZM +ZM +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Fj +UT +sm +YO +qE +dv +Zt +gy +gy +gy +Zt +Wn +ZM +hb +Bp +GI +hz +GI +GI +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +aG +cx +cb +Zu +PL +gy +gy +gy +kJ +gy +PL +Zu +hI +QO +BX +Wr +bD +QO +sE +xb +yj +yX +AH +AH +AH +EP +yp +GT +Kn +Lg +yp +NK +Kn +OF +Tk +Tk +TX +TX +Tk +Tk +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +iN +iG +Yb +kv +Uu +mT +ME +ZX +WC +nc +Yb +Yb +Ke +Yb +Yb +Yb +nc +Yb +Yb +Ke +Uu +Ji +Zu +Hn +Ia +Zu +Zu +Zu +eJ +Zt +gy +"} +(41,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +ZI +ZI +ZI +ZI +Zu +TE +cw +cw +Xw +Zu +ZI +ZI +ZI +ZI +ZI +Zu +Ft +cw +cw +cw +Nk +Zu +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +Nj +Ns +NR +ON +SM +TK +UM +Ws +eP +bD +TW +bD +bD +bC +us +bD +bD +bD +TW +bD +lK +bD +bD +cy +gK +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Wt +ZW +wp +Hm +Hm +at +Zt +gy +gy +gy +Zt +mm +Hz +ZM +Mw +GI +GI +GI +GI +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +aI +cw +eg +ZM +ZM +ZM +Zu +Zu +Zu +ZM +ZM +ZM +sx +cw +BX +wk +cw +cw +wO +xl +ym +zi +AM +gR +Bn +EV +yp +Hd +Kn +yp +yp +yp +Ou +yp +Tk +OZ +Os +PI +RR +TF +Zt +gy +gy +NW +gy +gy +Zt +eJ +eJ +eJ +Zu +Zu +Zu +Zu +Uu +mT +ME +ZX +cx +bD +bD +bD +bD +bD +bD +bD +bD +bD +bD +bD +QO +Dj +ZM +Hn +HQ +Zu +eJ +Oe +eJ +Zt +gy +"} +(42,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +ZI +ZI +ZI +ZI +Zu +TQ +ZD +WQ +Eo +Zu +ZI +ZI +ZI +ZI +ZI +Zu +Ft +cw +Ak +ZD +gl +Zu +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +ZM +Zu +ZM +Qd +Qr +RL +RL +Uu +Wc +WZ +Xu +Xu +Xu +Iq +Xu +Xu +rU +Xu +Iq +PM +Iq +PD +WC +gK +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +oi +gB +yr +JW +hs +dv +Zt +gy +gy +gy +Zt +LR +LP +cn +zM +GI +GI +GI +GI +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +bA +uZ +eA +gM +gM +gg +gM +gM +kT +ob +os +rF +sB +uZ +uZ +pe +wl +wl +wl +tE +yp +yp +yp +yp +yp +yp +yp +Hk +Kn +Lu +yp +NM +Ov +Le +Tk +Pt +PN +PN +Qg +PN +Zt +gy +gy +NW +gy +gy +Zt +eJ +bl +eJ +eJ +eJ +dq +hI +QO +ha +ZM +qt +rK +tW +tW +tW +tW +tW +tW +tW +Ci +wb +xC +tW +tW +CG +Zu +Hn +HQ +Zu +eJ +Oe +eJ +Zt +gy +"} +(43,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +ZI +ZI +ZI +Om +Zu +Zu +Zu +Ui +Eo +Zu +ZI +ZI +ZI +ZI +ZI +Zu +Ft +cw +XL +Zu +Zu +Zu +Om +ZI +ZI +ZI +ZI +ZI +ZI +ZI +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +Zu +Qe +Qt +RW +Tq +Uv +Wg +Xc +YL +ZC +yF +Zx +ZC +ZC +ZC +Ss +Mh +ZC +lw +OM +hG +QN +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +LM +UT +jx +TR +MD +dv +Zt +gy +gy +gy +Zt +wD +Zu +Zu +Zu +GI +GI +GI +GI +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +aQ +cF +eB +gR +fX +gp +fX +iT +ld +oe +pL +qZ +sJ +oz +oz +wZ +kZ +qZ +wP +xu +yu +zn +Kn +Bb +Bu +Kq +Kq +Kq +Kq +LC +Mc +Kn +Kn +OG +Tk +PP +Qg +PN +PN +PN +Zt +gy +gy +NW +gy +gy +Zt +Zu +Zu +Zu +Zu +SE +SE +eD +eD +hc +ZM +ZM +ZM +Zu +Zu +ol +ol +ol +Zu +Zu +ZM +ZM +ZM +ZM +ol +CQ +ZM +Hn +Ff +ZM +eJ +Oe +eJ +Zt +gy +"} +(44,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +ZI +ZI +ZI +Om +kf +Yb +Vp +mR +Eo +Zu +ZI +Om +Om +Om +ZI +Zu +Ft +cw +WC +Eg +Yb +Kz +Om +ZI +ZI +ZI +ZI +ZI +ZI +ZI +Zt +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +LE +ov +ov +ov +ov +ov +Zt +gy +gy +gy +Zt +ox +qU +Zu +wV +GI +GI +GI +GI +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +gy +gy +NW +gy +gy +Zt +bD +bD +bD +bD +bD +ec +QO +cw +Hn +qq +kl +mN +cw +cw +cw +cw +cw +cw +cw +mN +wS +xL +yv +cw +Dc +cw +Hn +If +ZM +eJ +Oe +eJ +Zt +gy +"} +(45,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +ZI +ZI +ZI +Om +Zu +Zu +Zu +RS +XS +SE +ZI +Zu +ok +Zu +ZI +SE +Vf +cw +RF +Zu +Zu +Zu +Om +ZI +ZI +ZI +ZI +Bq +ZI +ZI +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +gy +gy +gy +Zt +qW +Gl +QT +Bp +GI +GI +GI +GI +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +aq +bK +bV +cl +db +eh +cw +fV +ht +ua +cw +mU +ua +no +Da +Da +rx +Da +uq +vF +xz +xP +mA +mA +Ee +Ee +mA +Is +ZM +eJ +Oe +Hf +Zt +gy +"} +(46,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +ZI +ZI +Qi +ZI +ZI +Zu +hd +QO +dy +SE +Zu +Zu +Yb +Zu +Zu +SE +Ft +cw +cx +cy +Zu +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +Zt +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +nS +gy +Zt +Zt +Zt +Zt +Zt +Zt +vi +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +pP +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +dU +Ks +Zu +qQ +GI +GI +GI +GI +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +zV +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +HG +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +cT +cT +cT +da +dh +gL +fA +fA +mt +Da +Da +rM +kE +np +ZM +ZM +ZM +ZM +ZM +Tk +Tk +Tk +Tk +Tk +Tk +Dw +Tk +Tk +ZM +Hf +JS +Hf +Zt +gy +"} +(47,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +Zu +Zu +Zu +SE +SE +SE +Vu +cw +XT +ZM +Zp +Ya +Vj +Yi +Ap +ZM +fZ +cw +cw +sG +SE +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +Zt +gy +gy +NW +gy +gy +Zt +cY +cY +cY +cY +cY +cY +Zt +gy +Zt +UA +sy +rs +MI +dJ +Zt +gy +Zt +fT +fT +Pd +Pd +fT +Pd +OR +aK +vO +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +NH +gy +Zt +dU +ba +Zu +Bp +GI +GI +GI +GI +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +WJ +WJ +Km +Km +Km +WJ +Zt +gy +Zt +ov +dv +dv +dv +ov +dJ +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +gy +"} +(48,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +PK +PK +PK +RG +Sy +PK +Vv +ua +ua +YU +ZP +YG +yk +PK +xy +mU +mU +EJ +cw +Dp +SE +Jl +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +Zt +gy +gy +NW +gy +gy +Zt +lc +BS +oZ +Qo +bJ +Rb +Zt +gy +Zt +ov +dv +yB +dv +ov +Zt +gy +Zt +fT +rg +rg +rg +Sq +kp +fy +FT +Rw +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +fT +fT +fT +DB +eL +fT +DB +fT +Zt +gy +Zt +fg +Zu +Zu +Zu +GI +GI +GI +GI +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +lc +BS +oZ +Qo +bJ +Rb +Zt +gy +Zt +ov +dt +FI +FI +dv +fo +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(49,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +xD +ua +cw +cw +SR +cw +cw +AH +cw +Zl +ZR +cw +WT +db +Rz +hS +tw +cw +cw +Kf +ZM +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +Zt +gy +gy +NW +gy +gy +Zt +Rb +kr +mX +cV +cv +hi +Zt +gy +Zt +dv +NV +IP +Sl +dv +Zt +gy +Zt +fT +nv +Al +uM +uM +uM +ve +FT +wf +Fs +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +fT +FJ +eY +vr +ul +Fg +kK +Yw +Zt +gy +Zt +qp +xe +Rx +zM +GI +GI +GI +GI +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Rb +kr +mX +cV +cv +hi +Zt +gy +Zt +ov +Lw +ay +Ud +sN +Uo +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +vv +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +YM +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(50,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +gy +gy +NW +gy +gy +Zt +hi +lM +yi +Rj +td +Rb +Zt +gy +Zt +dv +Ik +iI +Sl +dv +Zt +gy +Zt +fT +yD +VV +aW +DQ +bq +BM +EG +Vo +gT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +fT +CP +QZ +xB +TP +xV +mx +DB +Zt +gy +Zt +Hz +ZM +Hz +Mw +GI +GI +GI +GI +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +hi +lM +yi +Rj +td +Rb +Zt +gy +Zt +ov +mM +mB +lq +dv +fo +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Rb +Rb +Rb +Rb +Rb +Rb +Rb +dR +Zt +gy +Zt +HS +ov +ov +ov +ov +ov +ov +aO +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(51,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Rb +Rb +Rb +ga +Rb +Rb +Zt +gy +Zt +dv +vm +zJ +Sm +dv +Zt +gy +Zt +fT +sw +RD +Sf +Sf +Sf +Sf +Zw +zS +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +rR +av +AE +jR +Ny +Wo +Pu +fT +Zt +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Rb +Rb +Rb +ga +Rb +Rb +Zt +gy +Zt +ov +dv +dv +dv +ov +dJ +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Rb +Ow +nh +Rd +Bv +aE +we +dR +Zt +gy +Zt +HS +hw +kD +Kg +Pk +Xk +ng +Oj +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(52,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +tF +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Bo +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Rb +xF +GJ +Rj +vS +af +Zt +gy +Zt +ov +ov +ov +ov +ov +Zt +gy +Zt +fT +xm +rN +jJ +IA +ry +OX +zo +Qy +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +tY +gw +vs +aP +JD +Wo +lS +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Rb +xF +GJ +Rj +Nt +af +Zt +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Rb +KF +No +BH +aE +oW +gS +dR +Zt +gy +Zt +HS +Kb +mr +JW +JW +Lf +VI +AJ +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(53,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +LE +LE +LE +LE +LE +Fo +Yy +LE +Zt +gy +Zt +oD +oD +SN +tg +yf +Mf +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +rI +aE +gi +Xe +aE +af +Zt +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +gy +Zt +fT +fT +fT +fT +fT +fT +fT +fT +fT +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +fT +lb +RU +qy +uS +lf +la +DB +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +rI +qR +qR +Xe +iS +af +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Rb +Ay +iK +qM +nZ +Jz +KN +dR +Zt +gy +Zt +HS +kq +Hs +dz +Lz +hF +ng +JJ +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(54,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Rb +Ow +nh +Rd +Rb +dT +Rb +Rb +Zt +gy +Zt +ov +ov +ov +ng +ng +Nu +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Rb +KP +LG +As +EZ +Rb +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +aw +zL +NQ +pI +yR +XY +Gw +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Rb +KP +DX +As +EZ +Rb +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Rb +xX +aE +lC +oW +hf +xo +dR +Zt +gy +Zt +HS +VG +VG +SB +SB +VG +VG +QS +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(55,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Rb +KF +No +BH +Bv +Mo +RE +hO +Zt +gy +Zt +ov +he +AD +FI +ng +Nu +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +BQ +FA +iz +jz +Rj +zH +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +fT +fT +aw +cL +Tc +fT +fT +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +af +JN +iz +jz +Rj +zH +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Rb +Xb +uD +tB +oW +YH +xa +dR +Zt +gy +Zt +HS +xY +qK +hX +hX +hX +OS +zr +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(56,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Rb +Ay +iK +qM +nZ +Bk +oQ +Rb +Zt +gy +Zt +ov +Gk +JW +JW +ng +Pa +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +iu +Rj +sW +Rj +aE +Rb +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +af +aE +Iy +VU +aE +Rb +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Rb +ce +vI +zX +aE +oW +AZ +dR +Zt +gy +Zt +HS +rv +FB +yO +yO +SH +SK +yL +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(57,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Rb +xX +aE +lC +oW +hf +fp +Rb +Zt +gy +Zt +ov +Uw +sV +tK +ng +er +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Rb +Lt +OD +gh +aE +af +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Rb +Lt +OD +gh +aE +af +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Rb +Rb +Rb +Rb +af +mI +vM +dR +Zt +gy +Zt +HS +VG +wA +sZ +qS +Rg +VG +UD +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(58,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Rb +Xb +uD +tB +oW +Xn +xa +Rb +Zt +gy +Zt +ov +sN +ov +ng +ng +ev +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Ub +bo +gG +LZ +em +af +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Ub +bo +gG +LZ +em +af +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Fz +Fz +Fz +nx +vB +jq +JH +od +Zt +gy +Zt +HS +VG +VG +VG +VG +VG +VG +cz +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(59,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Rb +ce +vI +zX +YF +XF +zg +Rb +Zt +gy +Zt +dS +lt +Tm +ls +ls +Eh +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +IJ +IJ +IJ +IJ +IJ +IJ +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +IJ +ro +ro +ro +ro +IJ +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(60,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Rb +Rb +KU +Rb +af +Xl +XI +hO +Zt +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(61,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Rb +Ds +Ds +Dr +en +HO +HO +Rb +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +zE +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(62,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +YP +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +KX +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +Hf +Hf +Hf +Hf +fT +fT +fT +fT +fT +JP +Og +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(63,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +QQ +QQ +QQ +gy +QQ +QQ +QQ +QQ +QQ +QQ +gy +gy +gy +Oh +gy +Oh +Oh +Oh +Oh +gy +gy +gy +gy +gy +gy +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +QX +qj +Qb +Mq +fL +fT +fT +Pd +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +Fz +Fz +Fz +fT +fT +YR +mj +ln +fT +fT +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(64,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +rZ +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +YE +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Oh +gy +gy +gy +gy +Oh +gy +gy +gy +gy +gy +vp +Oh +Oh +gy +gy +Oh +gy +gy +QQ +QQ +QQ +QQ +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +QX +Tp +dV +kM +YK +Pd +iA +BO +gz +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +Fz +Fz +Fz +fT +cg +Bw +Dz +RK +wo +Zg +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(65,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +Zt +TV +TV +EY +EY +EY +TV +TV +Zt +gy +Zt +fT +fT +fT +fT +fT +fT +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Oh +gy +gy +gy +gy +Oh +gy +gy +gy +gy +gy +vp +gy +Oh +gy +gy +Oh +gy +gy +Oh +gy +gy +Oh +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +QX +DU +Lc +MY +jK +fT +ic +BO +gz +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +fT +fT +fT +fT +ie +JG +Nr +ZO +RK +hK +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(66,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +Zt +vu +UP +Dv +Fk +EE +Xm +TV +Zt +gy +Zt +fT +Fc +Ur +PW +PW +PW +ho +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +uN +uN +ZZ +uN +uN +sv +uN +uN +oL +uN +uN +zG +uN +uN +bd +uN +uN +uN +hD +hD +hD +hD +hD +hD +hD +hD +Oh +Oh +Oh +Oh +Oh +Oh +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +fT +fT +fT +fT +fT +fT +Lj +kQ +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +fT +rg +rg +rg +WK +TZ +Na +XD +ZO +GY +Pd +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(67,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +Zt +eH +UP +Sr +Fk +fx +TM +TV +Zt +gy +Zt +fT +aU +GQ +ag +gd +cr +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +uN +Zs +HI +ep +Zs +HI +ep +Zs +HI +ep +hk +oG +ep +Yc +WV +ep +hk +Jn +yT +Qm +Hx +fu +XH +hA +ET +hD +gy +gy +gy +Oh +gy +ea +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +fT +Xd +eV +zq +hR +Co +pS +pR +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +fT +RK +RK +RK +BK +fI +vO +xc +zj +RK +ex +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(68,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +Zt +TV +zP +EW +Fk +pg +uT +IO +Zt +gy +Zt +fT +lZ +GQ +ag +gd +gd +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +kb +kb +kb +kb +uN +AO +DL +ep +pT +DL +ep +le +JU +ep +Ll +eN +ep +bs +eN +ep +uh +be +yT +dL +Hx +NI +IN +yT +rL +ea +ea +Ku +Ku +Ku +ea +ea +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +fT +HF +yA +oC +zz +oC +zz +zp +BN +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +fT +Yh +uG +yn +BK +WH +uP +vU +pm +RK +Pd +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(69,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +Zt +TV +ps +Fk +Fk +Fk +Fk +AB +Zt +gy +Zt +fT +uf +GQ +ag +VS +Fy +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +kb +bF +Tr +IB +ep +cP +qP +ep +cP +qP +ep +cP +qP +ep +LA +Gf +ep +LA +fq +ep +LA +Fn +yT +uX +Hx +vz +iC +yT +lx +ea +dr +qY +Go +qY +qw +ea +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +fT +zv +Ta +Hj +vL +UQ +pZ +lh +YT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +fT +fT +fT +fT +Dg +xk +qD +pm +RK +vX +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(70,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +Zt +TV +Mg +Gb +Fk +Kw +ar +TV +Zt +gy +Zt +fT +Ep +uW +dj +GQ +fW +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +gy +gy +vp +Oh +kb +GF +bw +wv +ep +FD +Ge +ep +FD +Sg +ep +FD +zO +ep +yz +JZ +ep +yz +Un +ep +yz +rh +yT +yT +Kr +vz +IN +aD +ks +ea +RC +dB +iR +dg +aL +ea +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +fT +ch +eV +HV +yE +Jr +xQ +ug +Pd +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +Fz +Fz +Fz +fT +Wd +UJ +cd +RK +RK +Jc +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(71,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +Zt +TV +TV +Ut +MQ +GC +La +TV +Zt +gy +Zt +fT +fT +UO +Hr +ZF +OU +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +vp +gy +vp +gy +kb +Bs +Ue +tn +pO +eb +RP +Ru +wr +UI +hW +wr +RP +UU +wr +RP +mQ +do +RP +wT +wr +RP +DJ +ah +kI +dc +iv +yT +Cy +ea +wQ +Uy +GM +Ao +Bt +ea +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +cj +fT +Pd +Pd +fT +fT +fT +fT +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +Lh +Lh +Lh +fT +fT +iM +BK +KB +fT +fT +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(72,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +Zt +yg +TV +TV +sY +za +TV +TV +Zt +gy +Zt +fT +fT +fT +fT +fT +fT +fT +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +vp +Oh +vp +gy +kb +Us +Sa +Sa +Sa +bG +Di +CY +CY +lP +nR +MH +SY +zs +CY +CY +CY +CY +rm +CY +CY +Of +IG +hD +hD +hD +hD +hD +hD +ea +Ku +Bc +ea +ea +ea +ea +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +bX +hQ +St +Lh +fT +fT +KJ +tG +fT +Uj +ip +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(73,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +vp +gy +vp +gy +YC +Xi +ZG +wB +xN +yZ +yZ +yZ +de +zK +de +yZ +yZ +yZ +jP +ze +ze +ze +ze +Cp +Pq +VM +hV +Mk +WE +mf +UF +NG +gy +wX +ke +zt +aT +Qh +Hc +DS +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(74,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +Zt +vp +gy +vp +Oh +YC +jr +VT +Rk +gc +yZ +aR +fd +wG +Gz +wG +aR +uI +yZ +fH +eC +eC +eC +eC +SQ +OV +um +VZ +NG +JM +iO +ct +NG +gy +wX +ke +rH +qH +SU +Cf +So +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(75,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +qc +gy +gy +NW +gy +gy +Zt +vp +gy +vp +gy +YC +VT +Rk +Rk +SD +yZ +Qz +MC +VQ +Gz +HY +my +iq +yZ +ur +pB +eC +eC +eC +SQ +vZ +Xg +VZ +Ww +MS +JE +UH +Mk +Oh +GN +bM +rH +RA +lU +HM +NC +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(76,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +Hh +HW +HW +HW +AG +HW +HW +HW +HW +HW +HW +HW +HW +HW +HW +Md +HW +HW +HW +HW +oM +HW +HW +HW +HW +HW +HW +MA +HW +oM +Zt +gy +gy +NW +gy +gy +Zt +vp +Oh +vp +gy +YC +xN +xN +xN +xN +yZ +aH +Cm +wG +Gz +wG +om +Cm +yZ +AI +eC +eC +xZ +eC +SQ +OV +um +VZ +NG +js +Yg +EL +NG +gy +wX +ke +rH +GN +GN +sh +gn +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(77,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +HW +HW +HW +HW +HW +HW +HW +HW +HW +nx +xT +xT +xT +xT +nx +HW +HW +HW +nC +EB +HW +HW +HW +oM +HW +Md +MA +MA +MA +HW +Zt +gy +gy +NW +gy +gy +Zt +vp +gy +vp +gy +YC +cp +wi +Rk +Np +yZ +SC +Hi +wG +Gz +Vq +DW +Nv +yZ +nJ +Fi +ot +Fi +Fi +Oa +pU +um +nq +Mk +HN +Vd +hj +NG +gy +wX +ke +rH +GN +cU +wj +gn +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(78,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +HW +HW +HW +HW +Hh +Wh +Wh +GB +GB +GB +ND +Er +QI +lk +nx +nx +HW +HW +nC +nC +HW +HW +Uc +nC +MA +MA +MA +MA +MA +Md +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +vp +Oh +YC +mi +EC +gx +op +yZ +dD +qa +qa +oX +Gz +rP +KO +CA +CA +ud +ud +CA +ud +ud +CA +Cq +et +hM +hM +hM +hM +hM +rb +hM +BW +tz +GN +Yp +ou +SX +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(79,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +HW +HW +HW +AG +Wh +Wh +xt +nV +oS +GB +qT +Er +yh +Nu +lu +nx +HW +HW +HW +nC +nC +oM +nC +nC +MA +MA +MA +MA +MA +nC +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +YC +ub +gP +yI +yZ +yZ +jW +ZQ +HH +pq +FL +Fb +Et +CA +Ra +DM +mZ +DG +mZ +mZ +ud +um +VZ +ap +Fp +ap +tV +qb +YJ +hM +kc +of +GN +GN +GN +gn +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(80,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +HW +HW +HW +Wh +Wh +VX +Uf +ws +Uf +Tw +Nu +Nu +yh +Nu +nx +hZ +hZ +Po +HW +HW +HW +HW +MA +MA +MA +MA +MA +MA +MA +MA +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +YC +Rh +YN +YV +Ok +vC +hL +Hv +Ck +gq +AT +rP +oB +CA +dH +Sp +mZ +mZ +mZ +mZ +ud +rw +to +uv +UI +UI +ib +pX +pX +OB +oH +rH +mv +Ba +WR +gn +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(81,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +HW +HW +HW +Wh +Rf +mJ +Be +dY +SA +Tw +bv +Nu +Ua +nx +nx +WN +hZ +IF +hZ +Po +HW +HW +HW +HW +MA +MA +MA +MA +MA +nC +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +YC +xN +xN +BT +yZ +At +KC +Ph +yq +Pg +AT +hY +ko +CM +OT +Sp +mZ +mZ +PU +zR +CA +je +eo +Zf +GD +fQ +tV +fN +zW +hM +Xa +rH +rC +GN +GN +gn +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(82,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +MA +HW +HW +GB +yd +OK +Be +mk +mk +Tw +Id +Nu +On +nx +dW +Yx +hZ +hE +hZ +HW +HW +HW +HW +HW +HW +HW +MA +MA +nC +nC +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +gy +gy +YC +Ed +nl +xE +yZ +QA +Uq +Es +kL +yZ +yZ +HB +JL +CA +dO +Sp +jL +mZ +mZ +mZ +ud +QU +sD +bP +fJ +CY +uy +vy +zF +Rt +ke +zt +bj +qH +gy +SX +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(83,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +MA +MA +HW +GB +PA +IE +TH +TH +uo +GB +Xx +Nu +yM +nx +dW +Yx +hZ +KR +hZ +hZ +HW +hZ +tm +tm +hZ +HW +jX +oM +jX +MA +Zt +gy +gy +NW +gy +gy +Zt +gy +gy +vp +Oh +YC +LS +Nc +JR +yZ +dC +Uq +NE +jD +jQ +yZ +zU +ej +CA +fm +Sp +mZ +jf +mZ +mZ +ud +um +VZ +IH +ix +tT +tV +kV +nO +hM +PV +rH +bY +GN +Oh +gn +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(84,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +VH +MA +MA +GB +xn +Jt +cH +CC +Av +vJ +jS +Nu +dK +nx +hE +hE +ei +hE +ei +hZ +hZ +hZ +hE +Wv +hZ +HW +oM +HW +oM +MA +Zt +gy +gy +NW +gy +gy +Zt +vp +gy +vp +gy +YC +xN +xN +BT +yZ +iV +tO +Zn +kB +lp +QP +Kt +Gs +CA +CA +ii +ii +CA +ii +ii +CA +xi +CR +UK +sI +UK +UK +UK +UK +GN +ke +rH +GN +GN +gy +gn +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(85,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +Zt +VH +VH +VH +GB +hB +yt +NF +Tb +bH +GB +jS +jS +jS +ER +Ii +GZ +Ii +GZ +Ii +Ii +Ii +rd +Ii +Ym +hZ +hZ +jX +oM +jX +MA +Zt +gy +gy +gy +gy +gy +Zt +vp +Oh +vp +gy +YC +Re +oY +JR +yZ +Yk +gu +zy +Vy +Cw +yZ +tl +JC +tV +Zd +eR +cf +fB +wc +Vi +tV +um +VZ +UK +pG +vo +QH +oO +RY +dE +oH +rH +tx +GN +Oh +gn +Zt +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +NW +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(86,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +VH +VH +VH +GB +GB +GB +GB +GB +GB +GB +IR +yh +YW +nx +hZ +hZ +hZ +hE +Yx +hE +hE +hZ +GZ +Ii +nX +hZ +HW +HW +HW +MA +Zt +gy +gy +gy +gy +gy +Zt +vp +gy +vp +gy +lT +vt +sa +xE +yZ +yZ +xH +ep +ep +ep +ep +ew +qV +tV +Ir +rf +Ar +BE +He +DZ +tV +um +Ip +UK +eT +uR +pr +TN +lH +GN +fj +zt +KM +qH +gy +gn +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(87,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +VH +VH +VH +VH +VH +VH +VH +VH +VH +nx +nx +kO +nx +nx +hT +OC +hZ +hZ +iW +iW +lO +hZ +hE +BY +aZ +hZ +HW +HW +HW +MA +Zt +gy +gy +gy +gy +gy +Zt +vp +gy +vp +Oh +YC +xN +xN +xR +yZ +eF +Yq +ep +aN +ih +wH +Kt +rW +tV +CL +Pw +lJ +oa +Ei +sF +tV +um +on +UK +pD +UY +tc +fU +Ha +GN +ke +rH +sC +GN +Oh +Oh +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(88,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +VH +VH +VH +VH +VH +VH +VH +VH +VH +hZ +Pf +Pf +Sd +hE +Pf +Sd +Sd +hZ +hZ +hZ +hZ +hZ +tm +tm +hZ +hZ +HW +HW +HW +MA +Zt +gy +gy +gy +gy +gy +Zt +vp +gy +vp +gy +YC +Vw +oY +BI +yZ +iL +UB +ep +Jw +gk +SW +yH +nQ +tV +MZ +bS +lJ +uz +ef +sn +tV +LF +xv +UK +nE +pd +wE +NA +OQ +GN +Ch +CI +GN +GN +Oh +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(89,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +VH +VH +VH +VH +VH +VH +VH +VH +VH +hZ +hZ +UN +xG +ns +vn +mq +ns +Sd +hZ +HW +HW +HW +HW +HW +HW +HW +HW +HW +HW +HW +Zt +gy +gy +gy +gy +gy +Zt +vp +Oh +vp +gy +YC +mE +HU +FG +yZ +yZ +yZ +ep +ep +ep +ep +fC +ej +tV +tV +tV +bB +tV +tV +tV +tV +ez +bU +ep +ep +ep +nW +nW +nW +nW +rB +zt +qH +Oh +Oh +Oh +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(90,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +VH +VH +VH +VH +VH +VH +VH +VH +VH +VH +hZ +hZ +XK +Ho +Ve +Yx +co +hZ +hZ +MA +HW +HW +HW +HW +sg +HW +sg +HW +HW +HW +Zt +gy +gy +gy +gy +gy +Zt +vp +gy +vp +gy +YC +xN +xN +BU +yC +aV +aV +aV +qm +gf +tQ +ku +nB +mn +pY +pY +in +eS +gF +MX +pY +Af +Bz +jF +kX +Ul +nW +Kv +it +nW +OA +rH +qH +gy +Oh +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(91,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +VH +VH +VH +VH +VH +VH +VH +VH +VH +VH +VH +hZ +hE +qF +CS +MW +Fl +hZ +MA +MA +MA +HW +HW +HW +aC +FO +aC +HW +HW +HW +Zt +gy +gy +gy +gy +gy +Zt +gy +gy +vp +Oh +YC +Vw +oY +SV +vj +mw +UL +UL +UL +rl +lo +me +Kh +sT +Ob +aj +Ai +wt +dI +Ai +YD +dI +li +ep +rQ +nL +nW +fr +xg +nW +Za +tP +GN +Oh +Oh +Oh +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(92,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +VH +VH +VH +VH +VH +VH +VH +VH +VH +VH +VH +hZ +pa +Sd +Sd +hZ +hZ +hZ +MA +MA +MA +HW +HW +HW +eK +bm +eK +HW +HW +HW +Zt +gy +gy +gy +gy +gy +Zt +gy +gy +gy +gy +YC +Zk +HU +Au +yC +st +zu +hv +rT +tV +tV +yb +tV +tV +ep +hh +px +ep +hh +GE +ep +hh +LU +ep +PQ +uN +nW +xh +Gc +nW +JK +qH +GN +Oh +gy +Oh +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(93,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +VH +VH +VH +VH +VH +VH +VH +VH +VH +VH +VH +hZ +hZ +hZ +hZ +hZ +MA +MA +MA +MA +HW +HW +HW +oo +oo +UG +oo +oo +Xo +HW +Zt +gy +gy +gy +gy +gy +Zt +gy +gy +gy +gy +YC +YC +YC +YC +Ab +BP +Dy +Dy +Dy +tV +Ko +Dx +ci +xs +ep +Dd +Nz +ep +Dd +CU +ep +XG +Je +ep +di +nW +il +bN +HX +oq +sc +tf +GN +GN +GN +Oh +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(94,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +gy +gy +gy +gy +gy +Zt +gy +gy +gy +gy +Oh +Oh +gy +gy +Th +BP +Dy +Dy +up +tV +xf +oR +Gi +Xh +ep +Xs +pf +ep +My +pf +ep +PE +pf +ep +ES +nW +zD +MN +bZ +nW +KL +SU +Zm +Sv +bQ +QQ +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(95,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +gy +gy +gy +Oh +Oh +gy +gy +gy +Th +Dy +Dy +Dy +Dy +tV +dN +FF +Gi +vw +ep +pM +vN +ep +wR +bW +ep +wR +vN +ep +di +nW +EU +bb +EA +nW +aa +qH +GN +Kp +GN +Oh +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(96,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +gy +gy +vp +Oh +gy +gy +gy +Oh +Th +Th +Th +Ab +Ab +hM +se +xU +se +tV +ep +ep +cA +ep +ep +cA +ep +ep +cA +ep +Xv +nW +TB +MJ +ts +nW +oI +KI +ZS +Kp +gy +Oh +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(97,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +gy +gy +vp +vp +gy +gy +Oh +Oh +Oh +gy +gy +gy +Oh +hM +oT +tR +nG +Ze +di +mY +di +di +mY +di +ep +fS +qk +HK +di +nW +JV +vl +JV +nW +GR +kR +ik +qH +gy +Oh +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(98,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +gy +gy +gy +vp +vp +Oh +Oh +Oh +gy +gy +gy +Oh +Oh +hM +se +hM +se +hM +uN +uN +uN +uN +uN +uN +uN +Ij +di +di +yJ +nW +Ca +Jv +pw +nW +Xz +ed +ZV +Kp +gy +Oh +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(99,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +gy +gy +gy +gy +vp +vp +Oh +gy +gy +gy +Oh +Oh +gy +gy +Oh +gy +Oh +gy +gy +gy +Oh +gy +Oh +gy +uN +fS +Fm +Dm +mK +nW +MV +Dk +Tu +nW +wX +GH +wX +Kp +ak +Lk +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(100,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +gy +gy +gy +gy +gy +vp +vp +gy +gy +Oh +Oh +gy +gy +vp +vp +vp +vp +vp +gy +gy +vp +vp +vp +gy +uN +uN +uN +uN +uN +nW +Mv +gD +FE +nW +lQ +lQ +GU +Kp +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(101,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +gy +gy +gy +gy +gy +gy +vp +vp +Oh +Oh +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Oh +gy +gy +gy +nW +YB +YB +YB +rp +wX +uB +wX +Kp +ak +PL +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(102,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +vp +vp +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +vp +vp +gy +gy +gy +gy +gy +gy +Kp +gy +sX +gy +Kp +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(103,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Xj +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Kp +gy +gy +gy +Kp +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(104,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +LV +gy +gy +gy +LV +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(105,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(106,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gI +gy +gy +gy +gy +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(107,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +Zt +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(108,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(109,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(110,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(111,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(112,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(113,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(114,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(115,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(116,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(117,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(118,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(119,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(120,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(121,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(122,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(123,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(124,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(125,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(126,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(127,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(128,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(129,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(130,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(131,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(132,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(133,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(134,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(135,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(136,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(137,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(138,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(139,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(140,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(141,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(142,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(143,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(144,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(145,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(146,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(147,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(148,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(149,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(150,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(151,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(152,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(153,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(154,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(155,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(156,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(157,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(158,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(159,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(160,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(161,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(162,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(163,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(164,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(165,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(166,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(167,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(168,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(169,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(170,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(171,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(172,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(173,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(174,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(175,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(176,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(177,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(178,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(179,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(180,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(181,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(182,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(183,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(184,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(185,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(186,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(187,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(188,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(189,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(190,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(191,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(192,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(193,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(194,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(195,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(196,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(197,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(198,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(199,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(200,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(201,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(202,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(203,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(204,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(205,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(206,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(207,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(208,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(209,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(210,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(211,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(212,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(213,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(214,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(215,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(216,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(217,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(218,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(219,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(220,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(221,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(222,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(223,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(224,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(225,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(226,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(227,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(228,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(229,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(230,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(231,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(232,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(233,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(234,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(235,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(236,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(237,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(238,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(239,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(240,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(241,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(242,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(243,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(244,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(245,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(246,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(247,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(248,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(249,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(250,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(251,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(252,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(253,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(254,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(255,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(256,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(257,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(258,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(259,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(260,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(261,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(262,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(263,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(264,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(265,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(266,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(267,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(268,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(269,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(270,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(271,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(272,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(273,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(274,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(275,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(276,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(277,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(278,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(279,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(280,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(281,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(282,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(283,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(284,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(285,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(286,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(287,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(288,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(289,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(290,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(291,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(292,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(293,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(294,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(295,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(296,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(297,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(298,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(299,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} +(300,1,1) = {" +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +gy +"} diff --git a/_maps/skyrat/automapper/templates/deltastation/deltastation_armory.dmm b/_maps/skyrat/automapper/templates/deltastation/deltastation_armory.dmm new file mode 100644 index 00000000000..653fd76ad16 --- /dev/null +++ b/_maps/skyrat/automapper/templates/deltastation/deltastation_armory.dmm @@ -0,0 +1,516 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/security/armory) +"c" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"e" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/mob/living/simple_animal/bot/secbot/beepsky/armsky, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"f" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Armory - Interior" + }, +/obj/structure/table/reinforced, +/obj/item/gun/energy/e_gun/dragnet, +/obj/item/gun/energy/e_gun/dragnet, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/item/melee/hammer, +/obj/item/melee/hammer, +/obj/item/melee/hammer, +/obj/item/storage/box/firingpins, +/obj/item/storage/box/firingpins, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"g" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"h" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"j" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/smartgun, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"k" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"l" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/shotguns, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"m" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/item/storage/barricade{ + pixel_y = -5 + }, +/obj/item/storage/barricade, +/obj/item/storage/barricade{ + pixel_y = 5 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"n" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/dish_drive/bullet{ + succrange = 6 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"o" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"p" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"t" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"u" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"v" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"w" = ( +/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, +/area/station/ai_monitored/security/armory) +"x" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/ai_monitored/security/armory) +"y" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/firealarm/directional/west, +/obj/machinery/flasher/portable, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"A" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"B" = ( +/obj/structure/reagent_dispensers/wall/peppertank/directional/east, +/obj/structure/table/reinforced, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"C" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/button/door/directional/south{ + id = "armouryaccess"; + name = "Armoury Access"; + req_access = list("armory") + }, +/obj/item/key/security, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"D" = ( +/obj/item/storage/box/teargas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/flashbangs{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/item/gun/grenadelauncher, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"F" = ( +/obj/structure/rack, +/obj/item/gun/energy/ionrifle, +/obj/item/clothing/suit/hooded/ablative, +/obj/item/gun/energy/temperature/security, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"G" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/secure/safe/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"I" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/spawner/random/contraband/armory, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"J" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/closet/ammunitionlocker/useful, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"K" = ( +/obj/item/grenade/barrier{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier{ + pixel_x = 3; + pixel_y = -1 + }, +/obj/item/grenade/barrier{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"L" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/microfusion, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"M" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"N" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Armoury" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/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/security/armory, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"O" = ( +/obj/item/storage/box/chemimp{ + pixel_x = 6 + }, +/obj/item/storage/box/trackimp{ + pixel_x = -3 + }, +/obj/item/storage/lockbox/loyalty, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"P" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Q" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/right/directional/north{ + name = "Armoury Desk"; + req_access = list("armory") + }, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/door/window/right/directional/south{ + name = "Armoury Desk" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"S" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"V" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Armoury" + }, +/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, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"W" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/item/clothing/head/helmet/sec{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/sec, +/obj/item/clothing/head/helmet/sec{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/suit/armor/vest/security{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/suit/armor/vest/security, +/obj/item/clothing/suit/armor/vest/security{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"X" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/cmg, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Y" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/ai_monitored/security/armory) + +(1,1,1) = {" +a +a +Y +Y +a +Y +V +N +x +a +"} +(2,1,1) = {" +a +p +p +p +y +J +v +g +C +a +"} +(3,1,1) = {" +a +K +u +S +S +S +t +g +e +w +"} +(4,1,1) = {" +a +O +o +X +L +j +l +k +h +Q +"} +(5,1,1) = {" +a +m +A +M +M +M +M +c +f +a +"} +(6,1,1) = {" +a +D +I +W +G +P +F +n +B +a +"} +(7,1,1) = {" +a +a +a +a +a +a +a +a +a +a +"} diff --git a/_maps/skyrat/automapper/templates/deltastation/deltastation_arrivals.dmm b/_maps/skyrat/automapper/templates/deltastation/deltastation_arrivals.dmm new file mode 100644 index 00000000000..53689fb93b6 --- /dev/null +++ b/_maps/skyrat/automapper/templates/deltastation/deltastation_arrivals.dmm @@ -0,0 +1,2255 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"am" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"au" = ( +/obj/effect/turf_decal/delivery, +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"aF" = ( +/obj/structure/window/reinforced, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bU" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"cq" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/space/basic, +/area/space/nearstation) +"ct" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + space_dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"cF" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"cW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"cZ" = ( +/obj/structure/fluff/metalpole{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"dC" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"dT" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/directional/east{ + c_tag = "Arrivals Dock - Fore Port"; + name = "dock camera" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"eC" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/sign/warning/pods/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"fo" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"fy" = ( +/obj/docking_port/stationary{ + dwidth = 1; + height = 4; + name = "escape pod loader"; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/turf/open/space/basic, +/area/space) +"fV" = ( +/obj/structure/fluff/metalpole{ + dir = 1 + }, +/obj/structure/fluff/metalpole/end/left{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"fY" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"hG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"id" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ig" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "ert-lz-port" + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + space_dir = 4 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"iL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/smooth, +/area/station/hallway/secondary/entry) +"iR" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"jc" = ( +/obj/structure/sign/warning/pods, +/turf/closed/wall, +/area/station/hallway/secondary/entry) +"jn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"jy" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"jJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Arrivals Dock - Auxiliary Construction"; + name = "dock camera" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"kg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/iron/smooth_edge{ + dir = 8 + }, +/area/station/hallway/secondary/entry) +"kk" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"kT" = ( +/obj/structure/fluff/metalpole{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/space/basic, +/area/space/nearstation) +"lf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/sign/warning/vacuum/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"lj" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/vacuum/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"lO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"lX" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/landmark/start/hangover, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"md" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ml" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"mA" = ( +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"mT" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"ne" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ni" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/smooth, +/area/station/hallway/secondary/entry) +"nL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"pf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/smooth, +/area/station/hallway/secondary/entry) +"ph" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"pO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Arrivals Dock - Aft Starboard"; + name = "dock camera" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"pV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"qb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/caution{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"qQ" = ( +/obj/structure/fluff/metalpole{ + dir = 10 + }, +/obj/structure/fluff/metalpole/end{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"ri" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"rt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"rD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"rX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/smooth, +/area/station/hallway/secondary/entry) +"sd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"sp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"to" = ( +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/smooth_half{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"tx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"tT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/firealarm/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"uj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"vz" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"vU" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"wk" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"wN" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"wU" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/landmark/start/hangover, +/obj/machinery/light/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"xm" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"xr" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"xG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"xN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"yn" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"yH" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"yN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"zy" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/delivery, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"zM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/smooth_half{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"zX" = ( +/obj/docking_port/stationary{ + dwidth = 3; + height = 5; + id = "commonmining_home"; + name = "SS13: Common Mining Dock"; + roundstart_template = /datum/map_template/shuttle/mining_common/meta; + width = 7 + }, +/turf/open/space/basic, +/area/space) +"Af" = ( +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ay" = ( +/obj/structure/fluff/metalpole{ + dir = 6 + }, +/obj/structure/fluff/metalpole/end, +/turf/open/space/basic, +/area/space/nearstation) +"AQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + space_dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"AV" = ( +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/smooth_half{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"Bf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "ert-lz-starboard" + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + space_dir = 8 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Bq" = ( +/obj/structure/fluff/metalpole{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"Cj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Cy" = ( +/obj/effect/landmark/start/hangover, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Cz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/smooth, +/area/station/hallway/secondary/entry) +"CM" = ( +/obj/structure/fluff/metalpole{ + dir = 10 + }, +/obj/structure/fluff/metalpole/end{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"CP" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"De" = ( +/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/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Dh" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Dy" = ( +/obj/effect/turf_decal/delivery, +/obj/item/kirbyplants/random, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"DO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"DT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + space_dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"DY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ef" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Arrivals Dock - Fore Starboard"; + name = "dock camera" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ep" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/computer/shuttle/arrivals/recall{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ez" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "ert-lz-port" + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Fr" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"FK" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"Ha" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/caution{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Hq" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/directional/west{ + c_tag = "Arrivals Dock - Publc Mining"; + name = "dock camera" + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/iron/smooth, +/area/station/hallway/secondary/entry) +"HM" = ( +/obj/docking_port/stationary{ + dwidth = 1; + height = 13; + id = "arrivals_stationary"; + name = "arrivals"; + roundstart_template = null; + width = 5 + }, +/turf/open/space/basic, +/area/space) +"Io" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/external{ + name = "Escape Pod 2"; + space_dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"IR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"JZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Kk" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/structure/tank_holder/oxygen, +/turf/open/floor/iron/smooth, +/area/station/hallway/secondary/entry) +"KL" = ( +/turf/closed/wall/mineral/plastitanium, +/area/station/hallway/secondary/entry) +"LF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Mv" = ( +/turf/closed/wall, +/area/station/hallway/secondary/entry) +"Ne" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/computer/shuttle/mining/common, +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK"; + pixel_y = 32 + }, +/turf/open/floor/iron/smooth_large, +/area/station/hallway/secondary/entry) +"NJ" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"NS" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/warning/pods/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"OP" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Pd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"PI" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Qx" = ( +/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, +/area/station/hallway/secondary/entry) +"QS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"QV" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"SG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "ert-lz-starboard" + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"SW" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/iron/smooth_half{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"Ue" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Uy" = ( +/obj/docking_port/stationary/random{ + id = "pod_lavaland"; + name = "lavaland" + }, +/turf/open/space/basic, +/area/space) +"UE" = ( +/obj/docking_port/stationary{ + dheight = 3; + dir = 8; + dwidth = 8; + height = 11; + id = "ferry_home"; + name = "Port Bay 2"; + width = 20 + }, +/turf/open/space/basic, +/area/space) +"UZ" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/caution{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"VZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Wi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ws" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Xd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"XB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"XE" = ( +/obj/structure/table/glass, +/obj/effect/landmark/start/hangover, +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Yd" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"Ym" = ( +/turf/open/space/basic, +/area/space) +"Yy" = ( +/obj/structure/window/reinforced, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"YH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Zk" = ( +/obj/structure/fluff/metalpole{ + dir = 1 + }, +/obj/structure/fluff/metalpole/end/right{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"Zx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/smooth, +/area/station/hallway/secondary/entry) +"ZP" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) + +(1,1,1) = {" +Ym +Ym +Ym +Ym +Ym +wN +am +wN +ne +LF +LF +dT +LF +hG +LF +LF +LF +vU +hG +LF +LF +LF +LF +lf +Ue +LF +LF +cW +NS +"} +(2,1,1) = {" +Ym +Ym +KL +Mv +Mv +Mv +Mv +Mv +Mv +wN +wN +Mv +wN +kk +wN +OP +lX +wU +au +Ep +wN +kk +wN +wN +Mv +wN +wN +Mv +Mv +"} +(3,1,1) = {" +Ym +Ym +Ym +Ym +mA +mA +mA +Ym +mA +Ym +Ym +mA +wN +Qx +wN +wN +Mv +Mv +Mv +wN +wN +Qx +wN +Ym +mA +Ym +Ym +Ym +Mv +"} +(4,1,1) = {" +Ym +Ym +Ym +Ym +Ym +Ym +mA +mA +mA +mA +mA +mA +wN +ct +wN +mA +Ym +Ym +Ym +mA +wN +AQ +wN +mA +mA +mA +mA +mA +wN +"} +(5,1,1) = {" +Ym +Ym +Ym +Ym +Ym +Ym +fo +Ym +mA +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Mv +"} +(6,1,1) = {" +Ym +Ym +Ym +Ym +Ym +Ym +fo +Ym +mA +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +HM +Ym +Ym +Ym +Ym +wN +"} +(7,1,1) = {" +Ym +Ym +Ym +Ym +Ym +Ym +fo +Ym +mA +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +wN +"} +(8,1,1) = {" +Ym +Ym +Ym +Ym +Ym +Ym +fo +Ym +mA +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +wN +"} +(9,1,1) = {" +Ym +Ym +Ym +Ym +Ym +Ym +fo +mA +mA +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +wN +"} +(10,1,1) = {" +Ym +Ym +Ym +Ym +Ym +Ym +fo +Ym +mA +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +wN +"} +(11,1,1) = {" +Ym +Ym +Ym +Ym +Ym +Ym +fo +Ym +mA +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +wN +"} +(12,1,1) = {" +Ym +Ym +Ym +Ym +Ym +Ym +fo +Ym +mA +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +wN +"} +(13,1,1) = {" +Ym +Ym +Ym +Ym +Ym +Ym +fo +Ym +mA +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Mv +"} +(14,1,1) = {" +Ym +Ym +Ym +Ym +Ym +Ym +mA +mA +mA +mA +mA +mA +wN +DT +wN +mA +Ym +Ym +Ym +mA +wN +DT +wN +mA +mA +mA +mA +mA +wN +"} +(15,1,1) = {" +Ym +Ym +Ym +Ym +mA +mA +mA +Ym +mA +Ym +Ym +mA +wN +Qx +wN +wN +Mv +Mv +Mv +wN +wN +Qx +wN +Ym +mA +Ym +Ym +Ym +Mv +"} +(16,1,1) = {" +Ym +Ym +KL +Mv +Mv +Mv +Mv +Mv +Mv +wN +wN +Mv +wN +Wi +wN +Dh +zy +XE +aa +Dy +wN +Ws +wN +Xd +Mv +wN +wN +Mv +jc +"} +(17,1,1) = {" +Ym +Ym +Ym +Ym +Ym +wN +DO +wN +YH +jy +jn +Af +sp +sp +Pd +Pd +Cj +Pd +Pd +Pd +Pd +IR +ml +QS +pO +QS +QS +rt +De +"} +(18,1,1) = {" +Uy +Ym +Ym +Ym +fy +Io +JZ +Io +uj +vz +vz +vz +ZP +vz +QV +vz +ZP +vz +ZP +vz +vz +CP +vz +ZP +vz +ZP +vz +wk +Cy +"} +(19,1,1) = {" +Ym +Ym +Ym +Ym +Ym +wN +am +wN +eC +LF +xr +Ef +LF +vU +hG +LF +LF +qb +qb +LF +hG +LF +LF +lf +Ue +LF +vU +tT +yH +"} +(20,1,1) = {" +Ym +Ym +KL +Mv +Mv +Mv +Mv +Mv +Mv +wN +wN +Mv +Xd +wN +wN +wN +Mv +Ez +Ez +Mv +wN +wN +wN +wN +Mv +wN +wN +Mv +Mv +"} +(21,1,1) = {" +Ym +Ym +Ym +Ym +Ym +Ym +Yd +Ym +Ym +Ym +CM +Ym +Yd +CM +Ym +Ym +Yy +bU +FK +Fr +Ym +Ym +cZ +Ym +Ym +Ym +Ym +Ym +Mv +"} +(22,1,1) = {" +Ym +Ym +Ym +Ym +Ym +Ym +cq +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Yy +dC +fY +Fr +Yd +Yd +kT +Ym +Ym +Ym +Ym +Ym +wN +"} +(23,1,1) = {" +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +aF +ig +ig +ri +Ym +Ym +Bq +Ym +Ym +Ym +Ym +Ay +wN +"} +(24,1,1) = {" +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +fV +Ym +Ym +Ym +Ym +Ym +Mv +"} +(25,1,1) = {" +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +wN +"} +(26,1,1) = {" +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +wN +"} +(27,1,1) = {" +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +wN +"} +(28,1,1) = {" +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +UE +Ym +Ym +Ym +Zk +Ym +Ym +Ym +Ym +Ym +Mv +"} +(29,1,1) = {" +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +aF +Bf +Bf +ri +Ym +Ym +Bq +Ym +Ym +Ym +Ym +Ay +wN +"} +(30,1,1) = {" +Ym +Ym +Ym +Ym +Ym +Ym +cq +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Yy +iR +mT +Fr +Yd +Yd +kT +Ym +Ym +Ym +Ym +Ym +wN +"} +(31,1,1) = {" +Ym +Ym +Ym +Ym +Ym +Ym +Yd +Ym +Ym +Ym +qQ +Ym +Yd +qQ +Ym +Ym +Yy +bU +FK +Fr +Ym +Ym +cZ +Ym +Ym +Ym +Ym +Ym +Mv +"} +(32,1,1) = {" +Ym +Ym +Ym +Ym +Ym +Mv +wN +Mv +wN +wN +wN +Mv +wN +wN +wN +wN +Mv +SG +SG +Mv +wN +wN +wN +Xd +Mv +wN +wN +Mv +Mv +"} +(33,1,1) = {" +Ym +Ym +Ym +Ym +zX +AV +zM +to +SW +kg +pf +Hq +lj +sp +jn +sp +sp +UZ +Ha +sp +sp +sp +jn +sp +jJ +sp +sp +sd +yn +"} +(34,1,1) = {" +Ym +Ym +Ym +Ym +Ym +Mv +wN +Mv +Ne +iL +Cz +Cz +uj +xm +ph +ZP +ZP +ZP +vz +ZP +ZP +PI +ZP +vz +NJ +vz +cF +wk +yn +"} +(35,1,1) = {" +Ym +Ym +Ym +Ym +Ym +Ym +Ym +wN +Kk +ni +rX +Zx +nL +tx +rD +yN +XB +lO +xG +XB +XB +XB +DY +md +XB +VZ +xN +pV +id +"} diff --git a/_maps/skyrat/automapper/templates/deltastation/deltastation_barber.dmm b/_maps/skyrat/automapper/templates/deltastation/deltastation_barber.dmm new file mode 100644 index 00000000000..f29e2ce1b53 --- /dev/null +++ b/_maps/skyrat/automapper/templates/deltastation/deltastation_barber.dmm @@ -0,0 +1,553 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains" + }, +/turf/open/floor/plating, +/area/station/service/salon) +"b" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/service/salon) +"c" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/structure/mirror/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"d" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Barbershop" + }, +/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, +/area/station/service/salon) +"e" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron, +/area/station/service/salon) +"f" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Salon" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/sofa/bench/right, +/turf/open/floor/iron, +/area/station/service/salon) +"g" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/kirbyplants/random, +/turf/open/floor/iron, +/area/station/service/salon) +"h" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/service/salon) +"i" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains" + }, +/turf/open/floor/plating, +/area/station/service/salon) +"j" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/hairbrush, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/lipstick/random, +/turf/open/floor/iron, +/area/station/service/salon) +"k" = ( +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains1" + }, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/service/salon) +"l" = ( +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/mirror/directional/east, +/obj/item/reagent_containers/spray/barbers_aid{ + pixel_x = 6 + }, +/obj/item/razor{ + pixel_x = -6 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"n" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/service/salon) +"o" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron, +/area/station/service/salon) +"p" = ( +/turf/closed/wall/r_wall, +/area/station/command/gateway) +"s" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron, +/area/station/service/salon) +"u" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/dryer{ + dir = 4; + pixel_x = -6; + pixel_y = -6 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"v" = ( +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/kirbyplants/random, +/turf/open/floor/iron, +/area/station/service/salon) +"w" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/service/salon) +"x" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/service/salon) +"y" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/sofa/bench/left{ + 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/service/salon) +"C" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/closet/secure_closet/barber, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron, +/area/station/service/salon) +"D" = ( +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/vending/barbervend, +/obj/machinery/button/curtain{ + id = "barbershopcurtains"; + pixel_x = -25; + pixel_y = 24 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"E" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/button/curtain{ + id = "barbershopcurtains1"; + pixel_x = -25; + pixel_y = 24 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"F" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/hairbrush, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/lipstick/random, +/obj/machinery/camera/directional/east{ + c_tag = "Salon - Massage Parlour" + }, +/turf/open/floor/iron, +/area/station/service/salon) +"G" = ( +/obj/structure/bed/pod, +/obj/machinery/light/warm/directional/north, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/service/salon) +"H" = ( +/turf/closed/wall, +/area/station/service/salon) +"I" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/service/salon) +"J" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/sofa/bench/left, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/service/salon) +"K" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/lipstick/random, +/obj/structure/table/wood, +/turf/open/floor/iron, +/area/station/service/salon) +"L" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/door/airlock/public{ + name = "Massage Parlour" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/station/service/salon) +"M" = ( +/obj/structure/bed/pod, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron, +/area/station/service/salon) +"N" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/command/storage/eva) +"O" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/book/fish_catalog, +/obj/structure/table/wood, +/turf/open/floor/iron, +/area/station/service/salon) +"P" = ( +/obj/machinery/light/warm/directional/north, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/comfy/barber_chair{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"Q" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/comfy/barber_chair{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"R" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/start/barber, +/turf/open/floor/iron, +/area/station/service/salon) +"S" = ( +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains1" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/service/salon) +"T" = ( +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/mirror/directional/east, +/obj/item/reagent_containers/dropper, +/obj/item/hairbrush/comb{ + pixel_y = 10 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"U" = ( +/obj/machinery/light/warm/directional/west, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/kirbyplants/random, +/obj/machinery/button/curtain{ + id = "barbershopcurtains"; + pixel_x = -25; + pixel_y = -24 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"V" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock/public/glass{ + name = "Barbershop" + }, +/turf/open/floor/iron, +/area/station/service/salon) +"W" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/service/salon) +"X" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/landmark/start/barber, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"Y" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/lipstick/random, +/obj/item/reagent_containers/spray/quantum_hair_dye{ + pixel_x = 6 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"Z" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains" + }, +/turf/open/floor/plating, +/area/station/service/salon) + +(1,1,1) = {" +N +N +N +N +N +N +"} +(2,1,1) = {" +S +E +u +c +o +H +"} +(3,1,1) = {" +H +G +R +b +M +k +"} +(4,1,1) = {" +k +F +g +I +j +H +"} +(5,1,1) = {" +H +H +H +L +H +H +"} +(6,1,1) = {" +H +D +C +I +U +a +"} +(7,1,1) = {" +V +s +n +W +s +a +"} +(8,1,1) = {" +H +f +O +y +e +H +"} +(9,1,1) = {" +h +J +K +x +I +d +"} +(10,1,1) = {" +Z +I +w +I +s +H +"} +(11,1,1) = {" +H +P +X +Q +s +a +"} +(12,1,1) = {" +i +T +Y +l +v +a +"} +(13,1,1) = {" +p +p +p +p +p +p +"} diff --git a/_maps/skyrat/automapper/templates/deltastation/deltastation_cryo.dmm b/_maps/skyrat/automapper/templates/deltastation/deltastation_cryo.dmm new file mode 100644 index 00000000000..50a23c250da --- /dev/null +++ b/_maps/skyrat/automapper/templates/deltastation/deltastation_cryo.dmm @@ -0,0 +1,156 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall, +/area/station/commons/fitness/recreation) +"b" = ( +/obj/machinery/cryopod, +/obj/effect/turf_decal/siding/white, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"d" = ( +/obj/machinery/cryopod, +/obj/effect/turf_decal/siding/white, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"e" = ( +/obj/machinery/cryopod{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/camera/directional/east, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"h" = ( +/obj/machinery/cryopod, +/obj/effect/turf_decal/siding/white, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"p" = ( +/obj/effect/landmark/start/hangover, +/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/common/cryopods) +"q" = ( +/obj/structure/sign/warning/no_smoking/circle/directional/south, +/obj/machinery/camera/directional/south, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/white/side{ + dir = 4 + }, +/area/station/commons/fitness/recreation) +"t" = ( +/obj/machinery/computer/cryopod{ + dir = 8; + pixel_x = 32 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/white, +/area/station/common/cryopods) +"x" = ( +/obj/machinery/cryopod{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"C" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/common/cryopods) +"G" = ( +/obj/effect/landmark/start/hangover, +/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/side{ + dir = 4 + }, +/area/station/commons/fitness/recreation) +"J" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/common/cryopods) +"L" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"N" = ( +/turf/closed/wall, +/area/station/common/cryopods) +"Q" = ( +/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/public/glass{ + name = "Cryopods" + }, +/turf/open/floor/iron/white, +/area/station/common/cryopods) +"X" = ( +/turf/open/floor/iron/white/side{ + dir = 4 + }, +/area/station/commons/fitness/recreation) + +(1,1,1) = {" +L +X +G +q +a +"} +(2,1,1) = {" +N +C +Q +C +N +"} +(3,1,1) = {" +C +h +p +x +C +"} +(4,1,1) = {" +C +d +J +x +C +"} +(5,1,1) = {" +C +b +t +e +C +"} +(6,1,1) = {" +N +N +N +N +N +"} diff --git a/_maps/skyrat/automapper/templates/deltastation/deltastation_ntrep_office.dmm b/_maps/skyrat/automapper/templates/deltastation/deltastation_ntrep_office.dmm new file mode 100644 index 00000000000..f73bc9ab810 --- /dev/null +++ b/_maps/skyrat/automapper/templates/deltastation/deltastation_ntrep_office.dmm @@ -0,0 +1,428 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/captain/private/nt_rep) +"b" = ( +/obj/structure/table/wood, +/obj/item/stamp{ + pixel_x = -6 + }, +/obj/item/stamp/denied{ + pixel_x = 6 + }, +/obj/item/stamp/centcom{ + pixel_y = 8 + }, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"c" = ( +/obj/structure/sign/directions/engineering, +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/obj/structure/sign/directions/science{ + pixel_y = 8 + }, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/captain/private/nt_rep) +"d" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"e" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"f" = ( +/obj/structure/table/wood, +/obj/item/camera_film{ + pixel_x = 6 + }, +/obj/item/camera_film{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/camera{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/captain/private/nt_rep) +"i" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central/fore) +"j" = ( +/obj/machinery/light/directional/east, +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"k" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/landmark/start/nanotrasen_consultant, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"m" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"n" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"o" = ( +/obj/machinery/button/door/directional/south{ + pixel_x = 8; + id = "nt_rep_priv"; + name = "Privacy Shutters Control" + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"q" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"r" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"s" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/cent_com/rep_door, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"t" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/directional/west, +/obj/structure/sign/poster/official/random/directional/north, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"u" = ( +/obj/structure/cable, +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"v" = ( +/obj/machinery/newscaster/directional/west, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/nanotrasen_consultant, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"w" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + name = "Privacy Shutter"; + id = "nt_rep_priv" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/captain/private/nt_rep) +"x" = ( +/obj/structure/sign/poster/official/random/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/table/wood, +/obj/item/folder/yellow{ + pixel_x = 4 + }, +/obj/item/folder/white, +/obj/item/folder/red{ + pixel_x = -4 + }, +/obj/item/folder/blue{ + pixel_x = -8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"y" = ( +/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, +/area/command/heads_quarters/captain/private/nt_rep) +"z" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/landmark/start/nanotrasen_consultant, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"B" = ( +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"C" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"D" = ( +/obj/structure/closet/secure_closet/nanotrasen_consultant/station, +/obj/item/storage/briefcase, +/obj/item/assembly/flash/handheld, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/captain/private/nt_rep) +"E" = ( +/obj/structure/filingcabinet/employment, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"F" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"H" = ( +/turf/closed/wall, +/area/station/maintenance/port/fore) +"I" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/comfy{ + dir = 1 + }, +/obj/effect/landmark/start/nanotrasen_consultant, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"J" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen/fountain, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"K" = ( +/obj/machinery/light_switch/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"L" = ( +/obj/machinery/door/airlock/corporate{ + name = "NT Consultant's Office" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/cent_com/rep_door, +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/command/heads_quarters/captain/private/nt_rep) +"M" = ( +/obj/machinery/status_display/ai/directional/south, +/obj/machinery/modular_computer/console/preset/command{ + dir = 1 + }, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"O" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/coffee, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central/fore) +"P" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/camera/directional/south{ + c_tag = "NT Consultant's Office"; + name = "command camera" + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"Q" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/taperecorder{ + pixel_y = 5; + pixel_x = 5 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"S" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"U" = ( +/obj/structure/fireplace, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/captain/private/nt_rep) +"V" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/landmark/start/nanotrasen_consultant, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"W" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"X" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/cigarette, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central/fore) +"Y" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) + +(1,1,1) = {" +H +d +a +a +a +a +a +"} +(2,1,1) = {" +r +e +a +t +v +M +a +"} +(3,1,1) = {" +a +a +a +m +b +J +a +"} +(4,1,1) = {" +a +u +E +Y +q +q +a +"} +(5,1,1) = {" +a +z +V +F +C +P +a +"} +(6,1,1) = {" +a +D +k +B +n +y +s +"} +(7,1,1) = {" +a +U +I +B +B +S +a +"} +(8,1,1) = {" +a +f +Q +j +W +x +a +"} +(9,1,1) = {" +a +a +a +a +K +o +a +"} +(10,1,1) = {" +O +X +i +c +L +w +a +"} diff --git a/_maps/skyrat/automapper/templates/deltastation/deltastation_prison.dmm b/_maps/skyrat/automapper/templates/deltastation/deltastation_prison.dmm new file mode 100644 index 00000000000..df794a0e46d --- /dev/null +++ b/_maps/skyrat/automapper/templates/deltastation/deltastation_prison.dmm @@ -0,0 +1,7528 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ae" = ( +/obj/item/soap/nanotrasen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, +/area/station/security/prison/shower) +"af" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "prisonlockdown1"; + name = "Lockdown" + }, +/obj/machinery/button/door/directional/north{ + id = "prisonlockdown1"; + name = "Lockdown"; + req_access = list("brig") + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"ai" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"al" = ( +/obj/machinery/door/window/left/directional/east, +/obj/structure/closet/crate, +/obj/item/tank/internals/oxygen/red{ + pixel_x = 3 + }, +/obj/item/tank/internals/oxygen/red{ + pixel_x = -3 + }, +/obj/item/wrench, +/turf/open/floor/iron/dark, +/area/station/security/execution) +"am" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell5"; + name = "curtain" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"ao" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "prisonlockdown3"; + name = "Lockdown" + }, +/obj/machinery/button/door/directional/north{ + id = "prisonlockdown3"; + name = "Lockdown"; + req_access = list("brig") + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"aq" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"ar" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/airlock/glass_large{ + dir = 8; + name = "Cafeteria" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"as" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"aD" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/closet/crate, +/obj/item/reagent_containers/hypospray/medipen, +/obj/effect/spawner/random/contraband/prison, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) +"aG" = ( +/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/prisoner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"aH" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space/basic, +/area/space) +"aL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/small/directional/west, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/iron/dark/brown/side{ + dir = 9 + }, +/area/station/security/prison/safe) +"aP" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/prison) +"aV" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/closet/crate/bin, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"aY" = ( +/obj/effect/spawner/random/structure/girder{ + loot = list(/obj/structure/falsewall=50,/turf/closed/wall=50); + name = "fifty% falsewall, fifty% wall" + }, +/turf/open/floor/plating, +/area/station/security/prison/work) +"bb" = ( +/obj/item/pillow{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/pillow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/royalblue, +/area/station/security/prison) +"be" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell3"; + name = "curtain" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"bg" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/secure_closet/brigoff, +/turf/open/floor/iron/dark/blue/side{ + dir = 6 + }, +/area/brigofficer) +"bi" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/security/medical) +"bj" = ( +/obj/structure/table, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters{ + id = "visitation"; + name = "Visitation Shutters" + }, +/obj/structure/window/reinforced, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"bo" = ( +/obj/structure/bed/maint, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"br" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) +"bt" = ( +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell8"; + name = "curtain" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"by" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"bz" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"bH" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"bI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/security/prison/mess) +"bK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "perma-entrance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron, +/area/station/security/brig) +"bO" = ( +/obj/machinery/washing_machine, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) +"bU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"bZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) +"cd" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"cf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/built, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron{ + icon = 'icons/turf/floors.dmi' + }, +/area/station/security/prison/upper) +"cs" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/stool/bar/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"cw" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/firealarm/directional/west{ + pixel_x = -15 + }, +/turf/open/floor/iron/dark/blue/side{ + dir = 10 + }, +/area/brigofficer) +"cx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison) +"cy" = ( +/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/security/execution/transfer) +"cA" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"cB" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/table, +/obj/machinery/light/directional/south, +/obj/item/storage/photo_album/prison, +/obj/item/camera, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"cH" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 10; + name = "blue line" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 5 + }, +/area/station/security/prison) +"dg" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/stool/bar/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"dj" = ( +/obj/structure/closet/secure_closet/freezer/fridge{ + req_access = null + }, +/obj/item/storage/box/ingredients/vegetarian, +/obj/item/storage/box/ingredients/italian, +/obj/item/storage/box/ingredients/fruity, +/obj/item/storage/box/ingredients/fiesta, +/obj/item/storage/box/ingredients/american, +/obj/item/reagent_containers/food/condiment/flour{ + list_reagents = list(/datum/reagent/consumable/flour=600); + name = "Premium All-Purpose Flour (16KG)"; + volume = 600 + }, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/enzyme{ + list_reagents = list(/datum/reagent/consumable/enzyme=500); + name = "universe-sized universal enyzyme"; + volume = 500 + }, +/obj/item/reagent_containers/food/condiment/rice{ + list_reagents = list(/datum/reagent/consumable/rice=150); + name = "Basmati Rice Sack (4KG)"; + volume = 150 + }, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/security/prison/mess) +"dl" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/structure/rack, +/obj/item/stack/medical/suture, +/obj/item/stack/medical/mesh, +/obj/item/reagent_containers/syringe/contraband/space_drugs, +/obj/item/reagent_containers/syringe{ + list_reagents = list(/datum/reagent/drug/aphrodisiac=20); + name = "crocin syringe"; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"ds" = ( +/obj/machinery/button/curtain{ + id = "prisoncell6"; + pixel_y = 21 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 1 + }, +/area/station/security/prison/safe) +"dy" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/machinery/button/flasher{ + id = "transferflash"; + pixel_y = 24 + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"dB" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/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/security/execution/transfer) +"dG" = ( +/obj/structure/table, +/obj/item/stack/license_plates/empty/fifty, +/obj/item/stack/license_plates/empty/fifty, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"dH" = ( +/obj/effect/turf_decal/trimline/darkblue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/rec) +"dM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 5 + }, +/obj/machinery/meter, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark, +/area/station/security/execution) +"dU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"dV" = ( +/obj/effect/spawner/random/structure/girder{ + loot = list(/obj/structure/falsewall=50,/turf/closed/wall=50); + name = "fifty% falsewall, fifty% wall" + }, +/turf/open/floor/plating, +/area/station/security/prison/shower) +"ea" = ( +/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/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"ee" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple/side, +/area/station/security/prison/safe) +"eg" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/effect/landmark/start/prisoner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"ei" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"el" = ( +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell7"; + name = "curtain" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"eo" = ( +/obj/machinery/door/airlock/external{ + name = "Security External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/plating, +/area/station/security/execution/transfer) +"eq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron{ + icon = 'icons/turf/floors.dmi' + }, +/area/station/security/prison/upper) +"er" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "perma-entrance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron, +/area/station/security/brig) +"ez" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"eB" = ( +/turf/closed/wall, +/area/station/security/prison/rec) +"eC" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/camera{ + c_tag = " Prison - (North-West) Blue Wing Upper"; + dir = 4; + network = list("ss13","prison") + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"eG" = ( +/turf/open/space/basic, +/area/space) +"eJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"eO" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 12; + pixel_y = -6 + }, +/obj/structure/sign/poster/contraband/lusty_xenomorph{ + pixel_x = 32 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) +"eQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"eW" = ( +/obj/structure/table, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/item/stack/license_plates/empty/fifty, +/obj/item/stack/license_plates/empty/fifty, +/obj/machinery/airalarm/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"eX" = ( +/turf/closed/wall, +/area/station/security/prison/work) +"fe" = ( +/obj/structure/table, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple/side{ + dir = 10 + }, +/area/station/security/prison/safe) +"ff" = ( +/obj/machinery/button/curtain{ + id = "prisoncell5"; + pixel_y = 21 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple/side{ + dir = 1 + }, +/area/station/security/prison/safe) +"fj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"fn" = ( +/turf/closed/wall, +/area/station/security/prison/safe) +"fB" = ( +/obj/item/folder/red, +/obj/item/pen, +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/security/medical) +"fE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/landmark/start/prisoner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"fJ" = ( +/obj/structure/rack, +/obj/item/tank/internals/plasmaman/belt{ + pixel_x = -6 + }, +/obj/item/tank/internals/plasmaman/belt{ + pixel_x = 3 + }, +/obj/item/tank/internals/nitrogen/belt{ + pixel_x = -6 + }, +/obj/item/tank/internals/nitrogen/belt, +/obj/item/tank/internals/nitrogen/belt{ + pixel_x = 6 + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"fL" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/sofa/corp/left{ + dir = 4 + }, +/obj/effect/landmark/start/prisoner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"fN" = ( +/obj/item/trash/popcorn, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/north{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "prison intercom"; + prison_radio = 1 + }, +/turf/open/floor/iron/dark/brown/side{ + dir = 9 + }, +/area/station/security/prison/safe) +"fT" = ( +/obj/structure/sign/warning/vacuum/directional/north, +/turf/open/floor/iron/dark/red/side{ + dir = 5 + }, +/area/station/security/execution) +"fX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 5 + }, +/turf/open/floor/iron/dark/red/side{ + dir = 4 + }, +/area/station/security/execution) +"fZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"gb" = ( +/obj/machinery/door/airlock/security{ + name = "Permabrig Visitation" + }, +/obj/effect/turf_decal/delivery/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/visit) +"gc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/north, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"gd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"gf" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"gt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/firealarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) +"gx" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, +/area/station/security/prison/shower) +"gy" = ( +/obj/structure/barricade/wooden{ + opacity = 1 + }, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/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/plating, +/area/station/security/prison/rec) +"gJ" = ( +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell4"; + name = "curtain" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"gN" = ( +/turf/open/floor/plating, +/area/station/security/execution/transfer) +"gQ" = ( +/obj/structure/chair/stool/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/airalarm/directional/west{ + pixel_x = -22 + }, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"gR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison) +"gV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/station/security/prison) +"hd" = ( +/obj/structure/bed/roller, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"hv" = ( +/obj/structure/weightmachine/stacklifter, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/prison) +"hA" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) +"hH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/hydroponics/soil{ + desc = "A patch of fertile soil that you can plant stuff in."; + icon = 'icons/turf/floors.dmi'; + icon_state = "dirt"; + layer = 2.0001; + plane = -7; + self_sustaining = 1 + }, +/obj/item/reagent_containers/glass/bucket{ + pixel_y = -5 + }, +/turf/open/floor/plating, +/area/station/security/prison/garden) +"hQ" = ( +/obj/structure/closet/crate/trashcart/laundry, +/obj/item/reagent_containers/hypospray/medipen, +/obj/item/toy/crayon/spraycan, +/obj/effect/spawner/random/contraband/prison, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) +"hW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/security/execution) +"hY" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/hydroponics/soil{ + desc = "A patch of fertile soil that you can plant stuff in."; + icon = 'icons/turf/floors.dmi'; + icon_state = "dirt"; + layer = 2.0001; + plane = -7; + self_sustaining = 1 + }, +/turf/open/floor/plating, +/area/station/security/prison/garden) +"if" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/security/prison) +"il" = ( +/obj/machinery/washing_machine, +/obj/machinery/camera{ + c_tag = " Prison - Janitorial"; + dir = 1; + network = list("ss13","prison") + }, +/obj/machinery/light/directional/north, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) +"ir" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/mirror/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, +/area/station/security/prison/shower) +"iw" = ( +/obj/structure/closet/secure_closet/injection, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron/dark/red/side{ + dir = 5 + }, +/area/station/security/execution) +"iB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"iH" = ( +/obj/structure/table, +/obj/structure/cable, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple/side{ + dir = 10 + }, +/area/station/security/prison/safe) +"iV" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + 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/security/execution/transfer) +"iX" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/vending/coffee, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"jm" = ( +/turf/closed/wall, +/area/station/security/prison/garden) +"js" = ( +/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/prisoner, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"jx" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/computer/arcade/battle, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"jy" = ( +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side, +/area/station/security/prison/safe) +"jz" = ( +/obj/machinery/hydroponics/soil{ + desc = "A patch of fertile soil that you can plant stuff in."; + icon = 'icons/turf/floors.dmi'; + icon_state = "dirt"; + layer = 2.0001; + plane = -7; + self_sustaining = 1 + }, +/obj/item/reagent_containers/glass/bucket{ + pixel_x = -4 + }, +/turf/open/floor/plating, +/area/station/security/prison/garden) +"jD" = ( +/turf/open/floor/iron/dark/red/side{ + dir = 9 + }, +/area/station/security/execution) +"jF" = ( +/obj/structure/table, +/obj/item/restraints/handcuffs, +/obj/item/clothing/suit/armor/vest, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"jH" = ( +/obj/structure/cable, +/obj/structure/grille, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"jO" = ( +/obj/machinery/sparker/directional/south{ + id = "justicespark" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/red/side, +/area/station/security/execution) +"jP" = ( +/obj/docking_port/stationary/random{ + dir = 4; + id = "pod_4_lavaland"; + name = "lavaland" + }, +/turf/open/space, +/area/space) +"jR" = ( +/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/machinery/light/directional/south, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) +"jS" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"jU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"kg" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"kj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/public{ + name = "Prison Cell" + }, +/turf/open/floor/iron/dark/brown, +/area/station/security/prison/safe) +"kw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"kC" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"kH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/north{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "prison intercom"; + prison_radio = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 5 + }, +/area/station/security/prison/safe) +"kS" = ( +/obj/structure/bed/roller, +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron/white, +/area/station/security/medical) +"kU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"la" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/brown/side{ + dir = 6 + }, +/area/station/security/prison/safe) +"lb" = ( +/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/landmark/start/prisoner, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"ls" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"lw" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/chair/stool/directional/north, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"lx" = ( +/obj/structure/rack, +/obj/item/clothing/mask/muzzle, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"ly" = ( +/obj/effect/turf_decal/trimline/darkblue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/rec) +"lA" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/vending/cigarette, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"lB" = ( +/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, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) +"lE" = ( +/obj/machinery/biogenerator, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"lF" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigprison"; + name = "Prison Blast Door" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"lL" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark/blue/side{ + dir = 8 + }, +/area/brigofficer) +"lR" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + dir = 1; + pixel_x = 3; + pixel_y = 9 + }, +/obj/item/storage/bag/tray, +/obj/item/kitchen/rollingpin, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"lU" = ( +/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/security/prison/upper) +"lW" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"mb" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/button/door/directional/north{ + id = "brigprison"; + name = "Prison Lockdown" + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"mg" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_y = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/white, +/area/station/security/medical) +"mi" = ( +/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/security/prison) +"my" = ( +/turf/closed/wall, +/area/station/security/execution/transfer) +"mA" = ( +/obj/machinery/hydroponics/soil{ + desc = "A patch of fertile soil that you can plant stuff in."; + icon = 'icons/turf/floors.dmi'; + icon_state = "dirt"; + layer = 2.0001; + plane = -7; + self_sustaining = 1 + }, +/obj/machinery/camera{ + c_tag = " Prison - Garden"; + network = list("ss13","prison") + }, +/obj/structure/closet/crate/hydroponics, +/obj/item/seeds/tobacco, +/obj/item/seeds/cotton, +/obj/item/seeds/tomato, +/obj/item/seeds/tower, +/obj/item/seeds/pumpkin, +/obj/item/seeds/wheat, +/obj/item/seeds/ambrosia, +/obj/item/seeds/grass, +/obj/item/seeds/carrot, +/obj/item/seeds/potato, +/obj/item/seeds/garlic, +/obj/item/seeds/onion, +/obj/item/paper/guides/jobs/hydroponics, +/turf/open/floor/plating, +/area/station/security/prison/garden) +"mG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"mM" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/reagent_containers/glass/bottle/chloralhydrate{ + pixel_x = -7 + }, +/obj/item/reagent_containers/glass/bottle/facid{ + pixel_x = 7 + }, +/obj/item/storage/backpack/duffelbag/sec/surgery{ + pixel_y = 5 + }, +/obj/machinery/button/door/directional/north{ + id = "justiceblast"; + name = "Justice Shutters Control"; + pixel_x = -6 + }, +/obj/machinery/button/door/directional/north{ + id = "justicechamber"; + name = "Justice Chamber Control"; + pixel_x = -6; + pixel_y = 34 + }, +/obj/machinery/button/ignition{ + id = "justicespark"; + pixel_x = 7; + pixel_y = 24 + }, +/obj/machinery/button/flasher{ + id = "justiceflash"; + pixel_x = 6; + pixel_y = 34 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark/red/side{ + dir = 9 + }, +/area/station/security/execution) +"mR" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"mY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/rec) +"nb" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"ng" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/stool/bar/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"no" = ( +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell6"; + name = "curtain" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"nr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/office) +"nt" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/chair/stool/directional/north, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"nx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/trashcart/filled, +/obj/effect/spawner/random/contraband/prison, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"nB" = ( +/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/prisoner, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) +"nC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/security/prison) +"nL" = ( +/turf/open/floor/iron/dark/red/side{ + dir = 10 + }, +/area/station/security/execution) +"nP" = ( +/turf/closed/wall/r_wall, +/area/brigofficer) +"nS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"oj" = ( +/obj/structure/table/reinforced, +/obj/item/taperecorder, +/obj/item/restraints/handcuffs, +/obj/item/flashlight/lamp, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/red/side{ + dir = 1 + }, +/area/station/security/execution) +"ol" = ( +/turf/closed/wall, +/area/station/security/prison/mess) +"on" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod 3"; + space_dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"oo" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"ox" = ( +/obj/structure/rack, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = -4 + }, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 4 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 8 + }, +/obj/item/reagent_containers/hypospray/medipen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"oz" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/airlock/public/glass{ + name = "Garden" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/garden) +"oD" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) +"oI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"oL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"oT" = ( +/obj/item/kirbyplants/random, +/obj/structure/sign/warning/pods/directional/south{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"oU" = ( +/obj/machinery/camera{ + c_tag = " Prison - Library"; + network = list("ss13","prison") + }, +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/contraband/prison, +/obj/effect/spawner/random/entertainment/toy_figure, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/station/security/prison) +"oW" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) +"pa" = ( +/turf/closed/wall/r_wall, +/area/station/security/prison) +"pc" = ( +/obj/structure/toilet/secret{ + dir = 4; + secret_type = /obj/item/card/emag/one_shot + }, +/obj/machinery/airalarm/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, +/area/station/security/prison/shower) +"pk" = ( +/obj/machinery/plate_press{ + pixel_y = -3 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"pm" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"pp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"pw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/security/prison) +"pA" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "prisonlockdown1"; + name = "Lockdown" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"pB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/fedora, +/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"pH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/contraband/narcotics, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"pI" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "permaouter"; + name = "Permabrig Transfer" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/blue, +/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/security/brig, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"pK" = ( +/obj/effect/turf_decal/trimline/darkblue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/rec) +"pM" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 4; + name = "blue line" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 4 + }, +/area/station/security/prison) +"pV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"pZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"qh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/binary/pump/layer4{ + name = "Airmix Reserve to Distribution" + }, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"qj" = ( +/obj/structure/rack, +/obj/machinery/light/directional/north, +/obj/item/plant_analyzer, +/obj/item/cultivator, +/obj/item/shovel/spade, +/obj/item/storage/bag/plants, +/obj/item/reagent_containers/glass/watering_can, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"qk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/under/rank/prisoner/classic, +/obj/item/clothing/suit/jacket/leather/overcoat, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"qm" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"qq" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) +"qr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/directional/west, +/obj/machinery/button/curtain{ + id = "prisoncell7"; + pixel_x = -22; + pixel_y = 10 + }, +/obj/machinery/airalarm/directional/west{ + pixel_y = -4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"qt" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 1; + name = "blue line" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 1 + }, +/area/station/security/prison) +"qx" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/iron/dark, +/area/station/security/execution) +"qB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/hydroponics/soil{ + desc = "A patch of fertile soil that you can plant stuff in."; + icon = 'icons/turf/floors.dmi'; + icon_state = "dirt"; + layer = 2.0001; + plane = -7; + self_sustaining = 1 + }, +/turf/open/floor/plating, +/area/station/security/prison/garden) +"qF" = ( +/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/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"qJ" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"qM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/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/security/general, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"qU" = ( +/obj/structure/bookcase/random/religion, +/obj/item/radio/intercom/directional/east{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "prison intercom"; + prison_radio = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"ra" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/blue, +/obj/machinery/door/airlock/security{ + req_access = list("brig") + }, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "permaturnstile"; + name = "Lockdown" + }, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"rk" = ( +/obj/machinery/door/poddoor/preopen{ + id = "justicechamber"; + name = "Justice Chamber Blast Door" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/door/window/brigdoor/left/directional/west{ + req_access = list("brig") + }, +/obj/machinery/door/window/brigdoor/left/directional/east{ + req_access = list("brig") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/security/execution) +"rm" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/brown/side{ + dir = 10 + }, +/area/station/security/prison/safe) +"ro" = ( +/obj/machinery/camera{ + c_tag = " Prison - East Hallway"; + network = list("ss13","prison") + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) +"rs" = ( +/obj/effect/turf_decal/delivery/blue, +/obj/machinery/door/airlock/security{ + req_access = list("brig") + }, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "permaturnstile"; + name = "Lockdown" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"rv" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"rE" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"rH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "perma-entrance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"rJ" = ( +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = " Prison - (East) Brown Wing"; + network = list("ss13","prison") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/button/curtain{ + id = "prisoncell9"; + pixel_x = 22; + pixel_y = -22 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/security/prison) +"rK" = ( +/obj/effect/turf_decal/stripes/full, +/obj/machinery/door/poddoor{ + id = "justiceblast"; + name = "Justice Blast Door" + }, +/turf/open/floor/iron/dark, +/area/station/security/execution) +"rR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/reagent_dispensers/plumbed, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"rV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) +"sa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"sc" = ( +/obj/structure/rack, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) +"sd" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "prisonlockdown4"; + name = "Lockdown" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/button/curtain{ + id = "prisoncell6"; + pixel_x = -22; + pixel_y = 10 + }, +/obj/machinery/button/door/directional/west{ + id = "prisonlockdown4"; + name = "Lockdown"; + req_access = list("brig") + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"se" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/blue/side{ + dir = 1 + }, +/area/brigofficer) +"st" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"sv" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 4; + name = "blue line" + }, +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 4 + }, +/area/station/security/prison) +"sw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/plate_press{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"sx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"sC" = ( +/turf/closed/wall/r_wall, +/area/station/security/office) +"sF" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/iron/dark/red/side, +/area/station/security/execution) +"sL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"sY" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 5; + name = "blue line" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 10 + }, +/area/station/security/prison) +"tc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"tf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"th" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"tm" = ( +/turf/open/floor/iron/dark/red/side{ + dir = 4 + }, +/area/station/security/execution) +"tp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"ts" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 6 + }, +/area/station/security/prison/safe) +"tt" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell7"; + name = "curtain" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"tx" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/glass{ + dir = 1 + }, +/obj/effect/decal/cleanable/glass{ + dir = 4 + }, +/obj/effect/decal/cleanable/glass{ + dir = 8 + }, +/obj/structure/grille/broken, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"ty" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/machinery/button/door/directional/north{ + id = "isolationshutter"; + name = "Isolation Shutter"; + req_access = list("brig") + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"tB" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/execution/transfer) +"tI" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 8; + name = "blue line" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 8 + }, +/area/station/security/prison) +"tP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 5 + }, +/turf/open/floor/iron/dark/red/side{ + dir = 10 + }, +/area/station/security/execution) +"tQ" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell10"; + name = "curtain" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"tV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"ua" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets/donkpocketberry, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"uk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"ut" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/security/prison/mess) +"uz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"uI" = ( +/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/iron/dark/side, +/area/station/security/prison) +"uL" = ( +/turf/closed/wall, +/area/station/security/prison/upper) +"uU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + opacity = 1 + }, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"uZ" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/station/security/prison) +"va" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"vo" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple/side{ + dir = 6 + }, +/area/station/security/prison/safe) +"vq" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, +/area/station/security/prison/shower) +"vH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"vI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"vL" = ( +/obj/structure/table, +/obj/machinery/light/directional/north, +/obj/item/storage/box/drinkingglasses{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/machinery/camera{ + c_tag = " Prison - Kitchen"; + dir = 1; + network = list("ss13","prison") + }, +/obj/item/clothing/suit/apron/chef, +/obj/item/storage/box/drinkingglasses, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"vN" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell4"; + name = "curtain" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"vP" = ( +/obj/machinery/flasher/directional/north{ + id = "justiceflash" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/red/side{ + dir = 1 + }, +/area/station/security/execution) +"wc" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"wh" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"wi" = ( +/obj/machinery/light/directional/east, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/security/prison) +"wm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/button/curtain{ + id = "prisoncell8"; + pixel_x = -22; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"wn" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "prisonlockdown3"; + name = "Lockdown" + }, +/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, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"wp" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/security/prison/mess) +"wq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"wy" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/closet/secure_closet/brig/genpop, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) +"wz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/security/prison) +"wA" = ( +/obj/machinery/camera{ + c_tag = " Prison - Entrance"; + network = list("ss13","prison") + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron, +/area/station/security/prison) +"wD" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 16 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"wU" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, +/area/station/security/prison/shower) +"wW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/security/prison/work) +"xb" = ( +/obj/structure/bed/maint, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/iron{ + icon = 'icons/turf/floors.dmi' + }, +/area/station/security/prison/upper) +"xc" = ( +/obj/item/chair/plastic{ + pixel_y = 10 + }, +/obj/item/chair/plastic{ + pixel_y = 10 + }, +/obj/item/chair/plastic{ + pixel_y = 10 + }, +/obj/item/chair/plastic{ + pixel_y = 10 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"xg" = ( +/obj/machinery/griddle, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"xm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/security/execution/transfer) +"xA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"xH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"xL" = ( +/obj/structure/cable, +/obj/item/storage/toolbox/drone, +/obj/structure/rack, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/machinery/camera{ + c_tag = "Security - Prison Outpost"; + network = list("ss13","Security","prison") + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/dark/blue/side, +/area/brigofficer) +"xQ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigprison"; + name = "Prison Blast Door" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/pods/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"xR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/brigoff, +/turf/open/floor/iron/dark/blue, +/area/brigofficer) +"yi" = ( +/obj/machinery/airalarm/directional/east, +/obj/structure/water_source{ + dir = 8; + name = "sink"; + pixel_x = 12; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"yn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/security/medical) +"yo" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = -6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/mirror/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple/side{ + dir = 9 + }, +/area/station/security/prison/safe) +"yw" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = -6; + reclaim_rate = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"yB" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/iron/dark/brown/side{ + dir = 6 + }, +/area/station/security/prison/safe) +"yC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/medical) +"yH" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/iron/dark, +/area/station/security/execution) +"yK" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisonlibrarycurtain"; + name = "curtain" + }, +/turf/open/floor/plating, +/area/station/security/prison/garden) +"yO" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Permabrig Visitation" + }, +/obj/effect/turf_decal/delivery/blue, +/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/security/brig, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) +"yS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"yU" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/execution) +"yY" = ( +/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/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) +"za" = ( +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/directional/east, +/obj/structure/closet/secure_closet/evidence{ + name = "Brig Officer's Locker" + }, +/obj/item/clothing/mask/whistle, +/turf/open/floor/iron/dark/blue/side{ + dir = 4 + }, +/area/brigofficer) +"zc" = ( +/obj/structure/table, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/turf/open/floor/iron, +/area/station/security/prison) +"zf" = ( +/obj/structure/cable, +/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/security/medical) +"zg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"zi" = ( +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/security/prison) +"zj" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"zl" = ( +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/red/side, +/area/station/security/execution) +"zt" = ( +/obj/machinery/button/flasher{ + id = "IsolationFlash"; + pixel_x = 21; + pixel_y = 21 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"zE" = ( +/obj/structure/bed, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/glasses/blindfold, +/obj/item/clothing/mask/muzzle, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/security/medical) +"zG" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"zL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/random/contraband/cannabis, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"zN" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/prison/rec) +"zW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/light/cold/no_nightlight/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/brown/side{ + dir = 9 + }, +/area/station/security/prison/safe) +"zX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"Ac" = ( +/obj/structure/holohoop{ + density = 0; + pixel_y = 18 + }, +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 1; + name = "blue line" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 1 + }, +/area/station/security/prison) +"Ad" = ( +/obj/machinery/door/airlock/external{ + name = "Security External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/plating, +/area/station/security/execution/transfer) +"Ae" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/brown/side, +/area/station/security/prison/safe) +"Aj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "justicechamber"; + name = "Justice Chamber Blast Door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/execution) +"Al" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/security/glass{ + name = "Perma Office" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron/dark/purple, +/area/brigofficer) +"An" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_y = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/station/security/medical) +"Ay" = ( +/obj/machinery/hydroponics/soil{ + desc = "A patch of fertile soil that you can plant stuff in."; + icon = 'icons/turf/floors.dmi'; + icon_state = "dirt"; + layer = 2.0001; + plane = -7; + self_sustaining = 1 + }, +/obj/structure/water_source{ + dir = 8; + name = "sink"; + pixel_x = 12; + pixel_y = -6 + }, +/turf/open/floor/plating, +/area/station/security/prison/garden) +"AA" = ( +/obj/machinery/light_switch/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/red/side{ + dir = 6 + }, +/area/station/security/execution) +"AF" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"AY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/security{ + name = "Isolation Cell" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/safe) +"Ba" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = 12; + pixel_y = -6 + }, +/obj/structure/mirror/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/brown/side{ + dir = 5 + }, +/area/station/security/prison/safe) +"Bb" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, +/area/station/security/prison/shower) +"Bh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"Bk" = ( +/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, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"Br" = ( +/obj/machinery/hydroponics/soil{ + desc = "A patch of fertile soil that you can plant stuff in."; + icon = 'icons/turf/floors.dmi'; + icon_state = "dirt"; + layer = 2.0001; + plane = -7; + self_sustaining = 1 + }, +/obj/item/reagent_containers/glass/bucket{ + pixel_x = 6; + pixel_y = -8 + }, +/turf/open/floor/plating, +/area/station/security/prison/garden) +"BA" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"BB" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/darkblue/end{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/rec) +"BL" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/sofa/corp/right{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = " Prison - Cafeteria"; + dir = 8; + network = list("ss13","prison") + }, +/obj/effect/landmark/start/prisoner, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"BP" = ( +/obj/item/stack/sheet/cardboard{ + amount = 10 + }, +/obj/structure/loom, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"BR" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigprison"; + name = "Prison Blast Door" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/button/door/directional/east{ + id = "brigprison"; + name = "Prison Lockdown" + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"BS" = ( +/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/prisoner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"BU" = ( +/obj/structure/cable, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/security/prison) +"Cf" = ( +/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/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"Ch" = ( +/obj/machinery/firealarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) +"Ck" = ( +/obj/structure/cable, +/obj/effect/landmark/start/brigoff, +/turf/open/floor/iron/dark/blue/side, +/area/brigofficer) +"Cl" = ( +/obj/structure/table, +/obj/machinery/door/poddoor/shutters{ + id = "visitation"; + name = "Visitation Shutters" + }, +/obj/machinery/door/window/left/directional/south{ + name = "Visitation"; + req_access = list("security") + }, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"Cq" = ( +/obj/machinery/button/curtain{ + id = "prisoncell3"; + pixel_y = 21 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple/side{ + dir = 1 + }, +/area/station/security/prison/safe) +"Ct" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"Cv" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/button/door{ + id = "permainner"; + name = "Inner Bolt Control"; + normaldoorcontrol = 1; + pixel_x = -6; + pixel_y = 25; + specialfunctions = 4 + }, +/obj/machinery/button/door{ + id = "permaouter"; + name = "Outer Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 6; + pixel_y = 25; + specialfunctions = 4 + }, +/obj/machinery/button/door{ + id = "permaturnstile"; + name = "Turnstile Lockdown"; + pixel_y = 37 + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"CE" = ( +/turf/closed/wall/r_wall, +/area/station/security/prison/upper) +"CH" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"CO" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigprison"; + name = "Prison Blast Door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"CP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Sanitarium" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/red/side{ + dir = 8 + }, +/area/station/security/medical) +"CR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating{ + initial_gas_mix = "o2=0.01;n2=0.01;TEMP=2.7"; + luminosity = 2; + temperature = 2.7 + }, +/area/station/security/execution/transfer) +"CX" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/sofa/corp/right{ + dir = 4 + }, +/obj/effect/landmark/start/prisoner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"Da" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/flasher/directional/north{ + id = "visitorflash" + }, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"Db" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"De" = ( +/obj/machinery/oven, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"Dj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"Dk" = ( +/obj/machinery/camera{ + c_tag = "Prison Isolation Cell"; + dir = 4; + network = list("ss13","prison","isolation") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/brown/side{ + dir = 6 + }, +/area/station/security/prison/safe) +"Dl" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple/side, +/area/station/security/prison/safe) +"Dt" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + name = "blue line" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side, +/area/station/security/prison) +"Du" = ( +/turf/closed/wall, +/area/station/security/prison/visit) +"DA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/work) +"DB" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell6"; + name = "curtain" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"DD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + aiControlDisabled = 1; + name = "Education Chamber" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/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/security/brig, +/turf/open/floor/iron/dark, +/area/station/security/execution) +"DH" = ( +/obj/structure/barricade/wooden, +/obj/structure/girder, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"DK" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/red{ + 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, +/area/station/security/execution/transfer) +"DN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"DP" = ( +/obj/machinery/button/curtain{ + id = "prisoncell8"; + pixel_y = 21 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 1 + }, +/area/station/security/prison/safe) +"DT" = ( +/obj/structure/curtain/bounty, +/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, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/rec) +"Eb" = ( +/obj/machinery/smartfridge, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/rust, +/area/station/security/prison/mess) +"Ec" = ( +/obj/machinery/firealarm/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"Ee" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"El" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/iron/dark/red/side{ + dir = 8 + }, +/area/station/security/execution) +"Em" = ( +/obj/machinery/status_display/ai/directional/south, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/closet/secure_closet/brig/genpop, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) +"En" = ( +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/security/prison) +"Es" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/north{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "prison intercom"; + prison_radio = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple/side{ + dir = 5 + }, +/area/station/security/prison/safe) +"Et" = ( +/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/prison) +"Ex" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron{ + icon = 'icons/turf/floors.dmi' + }, +/area/station/security/prison/upper) +"Ez" = ( +/obj/structure/closet/bombcloset/security, +/obj/effect/turf_decal/bot_blue, +/obj/item/clothing/suit/bomb_suit/security, +/obj/item/clothing/suit/bomb_suit/security, +/obj/item/clothing/head/bomb_hood/security, +/obj/item/clothing/head/bomb_hood/security, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) +"EA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/rec) +"EG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"EK" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"ER" = ( +/turf/closed/wall/r_wall, +/area/station/security/prison/shower) +"EW" = ( +/obj/structure/table, +/obj/machinery/computer/secure_data/laptop{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/blue/side, +/area/brigofficer) +"EX" = ( +/obj/structure/cable, +/obj/effect/spawner/liquids_spawner, +/turf/open/floor/iron/pool, +/area/station/security/prison/rec) +"Fb" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"Fg" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_y = 8 + }, +/obj/item/storage/fancy/egg_box, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"Fh" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/brown/side{ + dir = 10 + }, +/area/station/security/prison/safe) +"Fo" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"Fw" = ( +/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, +/turf/open/floor/iron/dark/corner, +/area/station/security/prison) +"Fy" = ( +/obj/machinery/iv_drip, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"Fz" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, +/area/station/security/prison/shower) +"FD" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"FE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"FK" = ( +/turf/open/floor/iron/dark/red/side{ + dir = 6 + }, +/area/station/security/execution) +"FS" = ( +/obj/structure/janitorialcart{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) +"FT" = ( +/obj/structure/cable, +/obj/structure/grille, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/security/prison/work) +"FV" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/prison) +"FW" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = " Prison - (East) Brown Wing Upper"; + dir = 8; + network = list("ss13","prison") + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"FZ" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"Ga" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"Gf" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/lighter, +/obj/structure/cable, +/turf/open/floor/iron/dark/brown/side{ + dir = 10 + }, +/area/station/security/prison/safe) +"Gr" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera{ + c_tag = "Security - Genpop Lockers"; + dir = 5 + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"Gs" = ( +/obj/structure/bed/maint, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/lusty_xenomorph{ + pixel_x = 32 + }, +/turf/open/floor/iron{ + icon = 'icons/turf/floors.dmi' + }, +/area/station/security/prison/upper) +"Gv" = ( +/obj/structure/chair/stool/directional/south, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"Gy" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/machinery/camera{ + c_tag = "Security - Upper Brig"; + dir = 1; + network = list("ss13","prison") + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"GD" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/north, +/obj/item/toy/plush/borbplushie{ + name = "Therapeep"; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"GE" = ( +/turf/open/floor/iron/dark/blue/side{ + dir = 1 + }, +/area/brigofficer) +"GI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating{ + initial_gas_mix = "o2=0.01;n2=0.01;TEMP=2.7"; + luminosity = 2; + temperature = 2.7 + }, +/area/station/security/execution/transfer) +"GO" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/sign/warning/vacuum/directional/east, +/turf/open/floor/plating, +/area/station/security/execution/transfer) +"He" = ( +/obj/machinery/button/curtain{ + id = "prisoncell10"; + pixel_y = 21 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/brown/side{ + dir = 1 + }, +/area/station/security/prison/safe) +"Hf" = ( +/obj/structure/curtain/cloth, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, +/area/station/security/prison/shower) +"Hk" = ( +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side, +/area/station/security/prison/safe) +"Hr" = ( +/turf/closed/wall/r_wall, +/area/station/security/prison/rec) +"Ht" = ( +/turf/open/floor/iron, +/area/station/security/prison) +"Hv" = ( +/obj/machinery/light/directional/north, +/obj/machinery/firealarm/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"HF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"HO" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/item/pen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"HR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) +"HU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"HY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"Ic" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"Ig" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/public{ + name = "Prison Cell" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple, +/area/station/security/prison/safe) +"Ii" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/closet/secure_closet/brig/genpop, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) +"Ij" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/reagent_containers/dropper, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/white, +/area/station/security/medical) +"Il" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"Im" = ( +/obj/effect/spawner/liquids_spawner, +/turf/open/floor/iron/pool, +/area/station/security/prison/rec) +"Io" = ( +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"Ir" = ( +/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 = 8 + }, +/area/station/security/prison) +"Ix" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/effect/landmark/start/prisoner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"Iz" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/obj/structure/window{ + dir = 4 + }, +/obj/effect/landmark/start/prisoner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"IH" = ( +/obj/effect/spawner/random/structure/girder{ + loot = list(/obj/structure/falsewall=50,/turf/closed/wall=50); + name = "fifty% falsewall, fifty% wall" + }, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"II" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/east{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "prison intercom"; + prison_radio = 1 + }, +/turf/open/floor/iron/dark/brown/side{ + dir = 6 + }, +/area/station/security/prison/safe) +"IK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"IN" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/computer/cryopod{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/delivery/white{ + color = "#00ff00" + }, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"IS" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"IV" = ( +/obj/structure/bed/maint, +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/item/tank/internals/anesthetic, +/obj/item/clothing/mask/breath, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"Ja" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/security/medical) +"Jc" = ( +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"Jg" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell11"; + name = "curtain" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"Jj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"Js" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison) +"JE" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = -6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/mirror/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 9 + }, +/area/station/security/prison/safe) +"JG" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate{ + name = "firesuit crate" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/head/hardhat/red, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) +"JK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/large, +/obj/structure/cable, +/obj/effect/spawner/random/contraband/narcotics, +/obj/effect/spawner/random/contraband/narcotics, +/obj/effect/spawner/random/contraband/narcotics, +/obj/effect/spawner/random/contraband/permabrig_weapon, +/turf/open/floor/plating, +/area/station/security/prison/work) +"JV" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "prisonlockdown4"; + name = "Lockdown" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"JX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"JY" = ( +/obj/structure/loom, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"JZ" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/wood, +/area/station/security/prison) +"Kb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) +"Kd" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 6; + name = "blue line" + }, +/obj/structure/sign/gym{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 9 + }, +/area/station/security/prison) +"Ke" = ( +/obj/structure/weightmachine/weightlifter, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/prison) +"Kh" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell8"; + name = "curtain" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"Km" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible/layer4, +/obj/machinery/atmospherics/components/tank/air{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"Kt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/security/prison) +"Kv" = ( +/turf/closed/wall, +/area/station/security/prison/shower) +"KG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/obj/structure/cable, +/obj/effect/decal/remains/human{ + desc = "They look like human remains. The bones are charred and burned."; + name = "charred remains" + }, +/turf/open/floor/plating, +/area/station/security/prison/work) +"KW" = ( +/obj/machinery/seed_extractor, +/obj/item/radio/intercom/directional/north, +/obj/machinery/airalarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"KY" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks/beer{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"La" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "perma-entrance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"Ld" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/wood, +/area/station/security/prison) +"Le" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/security/prison) +"Lj" = ( +/obj/structure/chair/stool/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"Ls" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/public{ + name = "Prison Cell" + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/brown, +/area/station/security/prison/safe) +"Lt" = ( +/obj/effect/turf_decal/tile/red{ + 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/security/execution/transfer) +"Lw" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"LA" = ( +/obj/effect/spawner/structure/window, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"LD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) +"LF" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "prisonlockdown2"; + name = "Lockdown" + }, +/obj/machinery/button/door/directional/west{ + id = "prisonlockdown1"; + name = "Lockdown"; + req_access = list("brig") + }, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"LH" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"LI" = ( +/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/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"LL" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/security/medical) +"LM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"LN" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell9"; + name = "curtain" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"LO" = ( +/obj/structure/table/reinforced, +/obj/item/electropack, +/obj/item/assembly/signaler, +/obj/machinery/light/directional/west, +/obj/item/clothing/head/helmet/sec, +/turf/open/floor/iron/dark/red/side{ + dir = 1 + }, +/area/station/security/execution) +"LU" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/light, +/obj/structure/table/reinforced, +/obj/machinery/processor{ + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"Mb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) +"Md" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/reagent_dispensers/wall/peppertank/directional/south, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) +"Mi" = ( +/obj/structure/curtain/bounty, +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/rec) +"Mp" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"Mz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"MF" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"MH" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table, +/obj/machinery/airalarm/directional/north, +/obj/item/clothing/under/rank/prisoner, +/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/item/clothing/under/rank/prisoner/skirt, +/turf/open/floor/iron, +/area/station/security/prison) +"MT" = ( +/obj/structure/table, +/obj/machinery/button/curtain{ + id = "prisonlibrarycurtain"; + pixel_x = -24 + }, +/obj/machinery/computer/libraryconsole/bookmanagement{ + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"MV" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple/side{ + dir = 6 + }, +/area/station/security/prison/safe) +"MY" = ( +/obj/structure/cable, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"Nf" = ( +/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/extinguisher_cabinet/directional/east{ + pixel_y = -5 + }, +/obj/machinery/button/curtain{ + id = "prisoncell10"; + pixel_x = 22; + pixel_y = 10 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"Ni" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"Nm" = ( +/obj/structure/rack, +/obj/item/storage/box/lights/mixed, +/obj/item/clothing/gloves/botanic_leather, +/obj/item/clothing/gloves/color/blue, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/reagent_containers/glass/bucket, +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/obj/item/mop, +/obj/item/storage/bag/trash, +/obj/item/pushbroom, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) +"Nt" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/prison{ + pixel_y = 32 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark/blue/side{ + dir = 9 + }, +/area/brigofficer) +"Nu" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/stool/bar/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"NB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/directional/north{ + c_tag = "Security - Escape Pod" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"NF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/station/security/prison) +"NK" = ( +/obj/machinery/door_timer{ + id = "isolation"; + name = "Solitary Timer"; + pixel_y = 28 + }, +/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/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"Oc" = ( +/obj/machinery/button/curtain{ + id = "prisoncell7"; + pixel_y = 21 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 1 + }, +/area/station/security/prison/safe) +"Ou" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"Ov" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/security/medical) +"OM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/airalarm/directional/west{ + pixel_y = -4 + }, +/obj/machinery/button/curtain{ + id = "prisoncell4"; + pixel_x = -22; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"ON" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/prisoner, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) +"OP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/brigofficer) +"OS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/east{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "prison intercom"; + prison_radio = 1 + }, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/security/prison) +"OT" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 1; + name = "blue line" + }, +/obj/structure/sign/gym/right{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 1 + }, +/area/station/security/prison) +"OW" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/computer/arcade/orion_trail, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"Pa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/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/security/prison/upper) +"Pb" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"Pj" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"Pn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"Pr" = ( +/obj/structure/chair/stool/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"Ps" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space, +/area/space/nearstation) +"Pu" = ( +/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/prison) +"Pw" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "permainner"; + name = "Permabrig Transfer" + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"Px" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 5 + }, +/turf/open/floor/iron/dark/red/side{ + dir = 8 + }, +/area/station/security/execution) +"Pz" = ( +/obj/structure/cable, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/security/prison) +"PA" = ( +/obj/structure/bed/maint, +/obj/machinery/flasher{ + id = "IsolationFlash"; + pixel_y = 28 + }, +/obj/item/reagent_containers/glass/bucket/wooden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/brown/side{ + dir = 5 + }, +/area/station/security/prison/safe) +"PC" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"PG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron{ + icon = 'icons/turf/floors.dmi' + }, +/area/station/security/prison/upper) +"PS" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/blue/side{ + dir = 1 + }, +/area/brigofficer) +"Qf" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = 12; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/mirror/directional/north, +/turf/open/floor/iron/dark/brown/side{ + dir = 5 + }, +/area/station/security/prison/safe) +"Qm" = ( +/turf/closed/wall/r_wall, +/area/station/security/prison/work) +"Qn" = ( +/obj/structure/table, +/obj/item/reagent_containers/blood/random, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"Qp" = ( +/turf/closed/wall, +/area/station/security/prison) +"Qq" = ( +/obj/machinery/camera{ + c_tag = " Prison - Central"; + network = list("ss13","prison") + }, +/obj/machinery/light_switch/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison) +"Qu" = ( +/obj/structure/chair/office, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"QF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/security/execution) +"QM" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/effect/turf_decal/delivery/white{ + color = "#00ff00" + }, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"QR" = ( +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/station/security/prison) +"QT" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/wood/tile, +/area/station/security/execution/transfer) +"Rh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"Rx" = ( +/obj/structure/bookcase/random/adult, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"Rz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/red/directional/north, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"RA" = ( +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"RC" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = -6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/mirror/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple/side{ + dir = 9 + }, +/area/station/security/prison/safe) +"RI" = ( +/turf/closed/wall/r_wall, +/area/station/security/execution/transfer) +"RL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/directional/west, +/obj/structure/extinguisher_cabinet/directional/west{ + pixel_y = -6 + }, +/obj/machinery/button/curtain{ + id = "prisoncell5"; + pixel_x = -22; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"RX" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/rag, +/obj/item/storage/bag/tray, +/obj/item/storage/box/condimentbottles{ + pixel_y = 10 + }, +/obj/item/storage/box/beakers{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"RZ" = ( +/obj/machinery/button/curtain{ + id = "prisoncell11"; + pixel_y = 21 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/brown/side{ + dir = 1 + }, +/area/station/security/prison/safe) +"Sd" = ( +/obj/machinery/hydroponics/soil{ + desc = "A patch of fertile soil that you can plant stuff in."; + icon = 'icons/turf/floors.dmi'; + icon_state = "dirt"; + layer = 2.0001; + plane = -7; + self_sustaining = 1 + }, +/turf/open/floor/plating, +/area/station/security/prison/garden) +"Se" = ( +/turf/closed/wall, +/area/station/security/execution) +"Sg" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/security/execution) +"Sl" = ( +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/firedoor, +/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/public/glass{ + name = "Kitchen" + }, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"Sp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: BLAST DOORS" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/brig) +"Su" = ( +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell5"; + name = "curtain" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"Sx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock/public/glass{ + name = "Workshop" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/work) +"SG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/button/curtain{ + id = "prisoncell3"; + pixel_x = -22; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/security/prison) +"SH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"SJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/brown/side{ + dir = 10 + }, +/area/station/security/prison/safe) +"SK" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple/side{ + dir = 6 + }, +/area/station/security/prison/safe) +"SP" = ( +/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, +/turf/open/floor/iron, +/area/station/security/prison) +"SV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"SY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Storage Closet" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"Ta" = ( +/obj/structure/closet/secure_closet/freezer/meat{ + req_access = null + }, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/rawbacon, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/security/prison/mess) +"Tb" = ( +/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/machinery/button/curtain{ + id = "prisoncell11"; + pixel_x = 22; + pixel_y = 10 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"Te" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/bucket/wooden, +/obj/structure/cable, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple/side{ + dir = 10 + }, +/area/station/security/prison/safe) +"Tn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"To" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = 12; + pixel_y = -6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/mirror/directional/north, +/turf/open/floor/iron/dark/brown/side{ + dir = 5 + }, +/area/station/security/prison/safe) +"Tr" = ( +/obj/machinery/button/curtain{ + id = "prisoncell4"; + pixel_y = 21 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/purple/side{ + dir = 1 + }, +/area/station/security/prison/safe) +"Tx" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/rack, +/obj/machinery/light/small/red/directional/south, +/obj/effect/spawner/random/contraband/prison, +/obj/item/toy/crayon/spraycan, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) +"Ty" = ( +/obj/item/toy/plush/beeplushie{ + desc = "Maybe hugging this will make you feel better about yourself."; + name = "Therabee" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/brown/side{ + dir = 10 + }, +/area/station/security/prison/safe) +"TE" = ( +/turf/closed/wall/r_wall, +/area/station/security/execution) +"TH" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 9; + name = "blue line" + }, +/obj/machinery/camera{ + c_tag = " Prison - (West) Purple Wing"; + dir = 4; + network = list("ss13","prison") + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 6 + }, +/area/station/security/prison) +"TU" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "prisonlockdown2"; + name = "Lockdown" + }, +/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) +"Ue" = ( +/obj/structure/curtain/cloth/fancy, +/turf/open/floor/wood/tile, +/area/station/security/execution/transfer) +"Ui" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"Uj" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"Uo" = ( +/obj/structure/closet/crate, +/obj/item/reagent_containers/glass/bowl, +/obj/effect/spawner/random/contraband/prison, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/kitchen/fork/plastic, +/obj/item/kitchen/fork/plastic, +/obj/item/kitchen/fork/plastic, +/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/effect/decal/cleanable/dirt, +/turf/open/floor/iron/kitchen, +/area/station/security/prison/mess) +"Us" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/blue, +/area/brigofficer) +"Ux" = ( +/obj/machinery/camera{ + c_tag = " Prison - (North-West) Blue Wing"; + dir = 6; + network = list("ss13","prison") + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"UA" = ( +/obj/structure/table, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters{ + id = "visitation"; + name = "Visitation Shutters" + }, +/obj/structure/window/reinforced, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"UJ" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"UL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Prison - Visitation (Prisoner)"; + dir = 1; + network = list("ss13","prison") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"UU" = ( +/obj/item/toy/beach_ball/holoball, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"UZ" = ( +/obj/machinery/firealarm/directional/north, +/obj/structure/rack, +/obj/item/plant_analyzer, +/obj/item/cultivator, +/obj/item/shovel/spade, +/obj/item/storage/bag/plants, +/obj/item/reagent_containers/glass/watering_can, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison/garden) +"Va" = ( +/turf/closed/wall/mineral/plastitanium, +/area/station/security/execution/transfer) +"Vd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/cardboard, +/obj/effect/spawner/random/contraband/prison, +/turf/open/floor/plating, +/area/station/security/prison/work) +"Vi" = ( +/obj/structure/closet/l3closet/security, +/obj/effect/turf_decal/bot_blue, +/obj/item/clothing/suit/bio_suit/security, +/obj/item/clothing/suit/bio_suit/security, +/obj/item/clothing/head/bio_hood/security, +/obj/item/clothing/head/bio_hood/security, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) +"Vw" = ( +/obj/machinery/flasher{ + id = "transferflash"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/security/prison) +"VB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/north{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "prison intercom"; + prison_radio = 1 + }, +/turf/open/floor/iron/dark/brown/side{ + dir = 9 + }, +/area/station/security/prison/safe) +"VD" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"VI" = ( +/obj/effect/turf_decal/delivery/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/public/glass{ + name = "Cafeteria" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"VR" = ( +/obj/machinery/plate_press{ + pixel_y = 4 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/work) +"Wc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/public{ + name = "Prison Cell" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue, +/area/station/security/prison/safe) +"Wd" = ( +/obj/structure/table, +/obj/structure/cable, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/blue/side{ + dir = 10 + }, +/area/station/security/prison/safe) +"Wj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/security/prison) +"Wp" = ( +/turf/closed/wall/r_wall, +/area/station/security/prison/safe) +"Ws" = ( +/obj/machinery/light/directional/south, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/landmark/start/prisoner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, +/area/station/security/prison/shower) +"Wt" = ( +/obj/machinery/camera{ + c_tag = "Prison - Visition (Visitor)"; + network = list("ss13","prison") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"Wv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/execution/transfer) +"WB" = ( +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) +"WK" = ( +/obj/machinery/button/curtain{ + id = "prisoncell9"; + pixel_y = 21 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/brown/side{ + dir = 1 + }, +/area/station/security/prison/safe) +"WN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/cardboard, +/obj/item/reagent_containers/hypospray/medipen/oxandrolone, +/obj/effect/spawner/random/contraband/permabrig_gear, +/turf/open/floor/plating, +/area/station/security/prison/upper) +"WR" = ( +/turf/closed/wall/r_wall, +/area/station/security/medical) +"Xl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"Xn" = ( +/obj/machinery/door/window/right/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/execution) +"Xp" = ( +/obj/structure/table, +/obj/machinery/door/poddoor/shutters{ + id = "visitation"; + name = "Visitation Shutters" + }, +/obj/machinery/door/window/right/directional/south{ + name = "Visitation"; + req_access = list("security") + }, +/turf/open/floor/iron, +/area/station/security/prison/visit) +"Xz" = ( +/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/white, +/area/station/security/medical) +"XG" = ( +/obj/structure/bookcase/random/nonfiction, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"XI" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/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/security/execution/transfer) +"XL" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 1; + height = 4; + name = "escape pod loader"; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/turf/open/space/basic, +/area/space) +"XM" = ( +/obj/structure/punching_bag, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/prison) +"XN" = ( +/obj/structure/chair/comfy{ + color = "#596479" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"XR" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"XT" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/station/security/execution/transfer) +"XW" = ( +/obj/effect/turf_decal/delivery/red, +/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/public/glass{ + name = "Janitorial" + }, +/obj/machinery/door/firedoor, +/obj/machinery/duct, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"Ya" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"Yd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "isolationshutter" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"Yi" = ( +/obj/structure/bed, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/glasses/blindfold, +/obj/item/clothing/mask/muzzle, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Security - Prison Sanitarium"; + dir = 4; + network = list("ss13","prison") + }, +/turf/open/floor/iron/white, +/area/station/security/medical) +"Yn" = ( +/obj/machinery/door/airlock/freezer, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/mess) +"Yo" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"Yq" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/table, +/obj/machinery/light/directional/north, +/obj/item/radio/intercom/directional/north, +/obj/item/storage/box/tail_pin, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/security/prison/mess) +"Yr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = " Prison - Pool"; + dir = 8; + network = list("ss13","prison") + }, +/obj/machinery/firealarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/rec) +"Ys" = ( +/obj/structure/bookcase/random/reference, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"Yt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/brigoff, +/turf/open/floor/iron/dark/blue, +/area/brigofficer) +"Yu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/prison) +"Yz" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/security/prison/garden) +"YG" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/security/execution/transfer) +"YH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"YK" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod 3"; + space_dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron, +/area/station/security/execution/transfer) +"Zg" = ( +/obj/machinery/light_switch/directional/north, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/structure/closet/secure_closet/evidence{ + name = "Brig Officer's Locker" + }, +/obj/item/clothing/mask/whistle, +/turf/open/floor/iron/dark/blue/side{ + dir = 5 + }, +/area/brigofficer) +"Zp" = ( +/obj/structure/bookcase/random/fiction, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) +"Zs" = ( +/obj/machinery/light/directional/south, +/obj/effect/spawner/liquids_spawner, +/turf/open/floor/iron/pool, +/area/station/security/prison/rec) +"ZE" = ( +/obj/effect/turf_decal/trimline/darkblue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/structure/cable, +/obj/machinery/airalarm/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison/rec) +"ZL" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/inflatable, +/obj/item/inflatable/door, +/obj/item/inflatable/door, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) +"ZY" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/blue, +/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 = "Library" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/security/prison) + +(1,1,1) = {" +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +CH +CH +CH +eG +CH +CH +CH +CH +CH +CH +eG +eG +eG +Io +eG +Io +Io +Io +Io +eG +eG +eG +eG +eG +eG +"} +(2,1,1) = {" +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +Io +eG +eG +eG +eG +Io +eG +eG +eG +eG +eG +Ps +Io +Io +eG +eG +Io +eG +eG +CH +CH +CH +CH +"} +(3,1,1) = {" +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +Io +eG +eG +eG +eG +Io +eG +eG +eG +eG +eG +Ps +eG +Io +eG +eG +Io +eG +eG +Io +eG +eG +Io +"} +(4,1,1) = {" +eG +eG +eG +eG +eG +eG +eG +eG +Wp +Wp +bt +Wp +Wp +el +Wp +Wp +no +Wp +Wp +Su +Wp +Wp +gJ +Wp +Wp +Wp +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Io +Io +Io +Io +Io +Io +"} +(5,1,1) = {" +eG +eG +eG +eG +eG +eG +eG +eG +Wp +JE +Wd +fn +JE +Wd +fn +JE +Wd +fn +yo +Te +fn +RC +iH +fn +yo +fe +eX +JY +nS +xc +BP +DA +JK +Qm +eG +eG +eG +Io +eG +WR +"} +(6,1,1) = {" +eG +eG +eG +eG +ER +ER +ER +ER +Wp +DP +Hk +fn +Oc +Hk +fn +ds +jy +fn +ff +Dl +fn +Tr +Dl +fn +Cq +ee +eX +eW +nS +MY +dG +eX +KG +WR +WR +yC +yC +yC +WR +WR +"} +(7,1,1) = {" +eG +eG +eG +eG +ER +pc +wU +Fz +fn +kH +ts +fn +kH +ts +fn +kH +ts +fn +Es +MV +fn +Es +vo +fn +Es +SK +eX +VR +nS +EK +pk +eX +FT +WR +fB +LL +bi +LL +mg +WR +"} +(8,1,1) = {" +eG +eG +Ps +Io +ER +ir +ae +Ws +fn +Wc +Kh +fn +Wc +tt +fn +Wc +DB +fn +Ig +am +fn +Ig +vN +fn +Ig +be +eX +eX +eJ +EK +dG +aY +wW +WR +Ja +Xz +Ov +yn +Ij +WR +"} +(9,1,1) = {" +Ps +eG +Ps +eG +ER +Bb +vq +gx +Hf +fE +Bk +wm +BS +zX +qr +BS +Bk +sd +BS +Bk +RL +aG +Bk +OM +BS +Bk +SG +Sx +SV +Mz +sw +eX +Vd +WR +kS +zf +Yi +zE +An +WR +"} +(10,1,1) = {" +Ps +Io +Ps +eG +ER +dV +Kv +Kv +Kv +va +eC +LM +LM +xA +Fo +eQ +Ux +JV +LM +LM +LM +LM +as +LM +LM +pw +gt +Qm +Qm +Qm +Qm +Qm +Qm +WR +yC +CP +WR +WR +WR +WR +"} +(11,1,1) = {" +Ps +eG +Ps +eG +CE +uU +JG +ZL +uL +ol +ol +ol +wp +VI +wp +ol +ol +ol +Kd +tI +tI +tI +tI +sY +Ke +zG +HR +nP +Nt +lL +cw +OP +eG +tB +Pj +iV +La +xQ +dB +er +"} +(12,1,1) = {" +Ps +eG +Ps +Io +CE +Rz +wq +oL +aD +ol +fL +BL +VD +XR +VD +fL +CX +ol +OT +HY +HY +HY +HY +Dt +Yu +fj +lB +OP +GE +Yt +EW +OP +eG +tB +Pj +Lt +Wv +CO +Dj +Sp +"} +(13,1,1) = {" +Ps +eG +Ps +eG +CE +wq +oL +oL +Tx +ol +Yq +Ui +by +XR +aV +wD +cB +ol +Ac +UU +HY +HY +HY +Dt +XM +vI +lB +Al +se +xR +xL +nP +Io +RI +lW +Lt +rH +BR +Ya +bK +"} +(14,1,1) = {" +Ps +Io +Ps +eG +CE +uL +uL +uL +uL +ol +Iz +eg +VD +XR +VD +Ix +eg +ol +qt +HY +HY +qm +HY +Dt +Yu +fj +lB +OP +PS +Us +Ck +OP +eG +tB +Pj +Lt +RI +RI +SY +sC +"} +(15,1,1) = {" +Ps +eG +Ps +eG +CE +yS +SH +oL +nx +ol +jx +rv +VD +XR +IS +iX +lA +ol +cH +pM +sv +pM +pM +TH +hv +fj +yY +nP +Zg +za +bg +OP +eG +tB +Pj +Lt +RI +uk +xH +sC +"} +(16,1,1) = {" +eG +eG +Ps +Io +CE +Km +qh +PC +BA +ol +OW +dg +dg +Nu +XR +jS +ai +jm +jm +Yz +Yz +jm +Yz +Yz +jm +ao +wn +pa +pa +pa +pa +pa +FV +pa +nb +DK +RI +Ez +Vi +nr +"} +(17,1,1) = {" +eG +eG +eG +eG +CE +fJ +cA +mG +ol +ol +Eb +qJ +ua +Ni +ng +Yo +Il +jm +KW +hH +Sd +hY +Sd +Sd +Yz +fj +lB +QM +IN +QM +Qp +MH +zc +pa +wc +Gr +RI +RI +RI +sC +"} +(18,1,1) = {" +eG +eG +eG +eG +CE +ox +HU +lU +th +pp +yw +oo +fZ +cd +cs +jS +kC +jm +lE +qB +Sd +Sd +Sd +Sd +Yz +tf +if +FE +zX +zX +Pw +mi +mi +pI +Ic +Lt +oD +Ue +QT +sC +"} +(19,1,1) = {" +eG +eG +eG +eG +CE +uL +uL +jH +ol +Uj +uz +lR +kU +aq +cs +FD +bz +oz +Bh +qB +Sd +Sd +jz +mA +jm +Hv +SP +cx +Js +Qq +Qp +Vw +wz +pa +Cv +Lt +Em +RI +RI +sC +"} +(20,1,1) = {" +eG +eG +eG +eG +CE +zL +qk +EG +ol +Fg +iB +RX +bU +ol +ol +zj +ar +jm +UZ +qB +Br +Sd +Sd +Sd +Yz +oI +Fw +bH +qF +LM +rs +zi +Ht +ra +Pj +iV +wy +Wv +eG +nr +"} +(21,1,1) = {" +eG +eG +Ps +Io +CE +WN +pB +gd +ol +vL +iB +xg +ls +LU +ol +gc +Mb +jm +qj +qB +Sd +Ay +Sd +Sd +Yz +fj +lB +Ou +kw +RA +Qp +wi +wA +pa +dy +Lt +Ii +RI +Io +sC +"} +(22,1,1) = {" +Ps +eG +Ps +eG +CE +uL +uL +jH +ol +De +jU +LI +sL +Pn +Sl +Cf +rV +jm +jm +yK +yK +jm +yK +yK +jm +af +pA +Du +gb +Du +Du +Du +Du +RI +Pj +Lt +RI +RI +eG +sC +"} +(23,1,1) = {" +Ps +Io +Ps +eG +CE +Ee +PG +gd +ol +Uo +Xl +yi +KY +Fb +ol +rR +Ch +Qp +XN +NF +tp +MT +AF +oU +Qp +fj +lB +Du +sa +Gv +Xp +gQ +IK +yO +Ic +Lt +Md +RI +Io +sC +"} +(24,1,1) = {" +Ps +eG +Ps +eG +MF +xb +tx +EG +ol +ol +Yn +fn +fn +fn +fn +NK +WB +Qp +Rx +XG +Ld +Jj +sx +Jc +Qp +fj +Et +Du +UL +mR +UA +nt +gf +RI +Gy +iV +sc +Wv +eG +sC +"} +(25,1,1) = {" +Ps +eG +Ps +Io +CE +uL +uL +Ex +ol +dj +ut +fn +zW +Ty +AY +Cf +bZ +Qp +Zp +Ys +tV +gV +Qu +st +Qp +fj +uI +Du +Da +kg +bj +lw +Wt +RI +Pj +Lt +ON +RI +Io +Io +"} +(26,1,1) = {" +Ps +eG +Ps +eG +CE +pZ +PG +Tn +ol +Ta +bI +fn +PA +Dk +Yd +zt +ro +Qp +bb +Ec +tV +qU +JZ +QR +Qp +ei +jR +Du +pV +Lj +Cl +Pr +JX +RI +rE +LH +RI +RI +Io +eG +"} +(27,1,1) = {" +Ps +Io +Ps +eG +CE +bo +LA +eq +ol +ol +ol +fn +fn +fn +fn +ty +Mb +Qp +Qp +Qp +ZY +Qp +Qp +Qp +Qp +Rh +br +fn +fn +fn +TE +TE +TE +TE +pm +iV +Wv +Io +Io +Io +"} +(28,1,1) = {" +Ps +eG +Ps +eG +CE +uL +uL +cf +eB +BB +BB +BB +Yr +Mi +Le +nC +Kt +LF +HF +HF +Ir +FW +dU +vH +HF +Wj +nB +Ls +aL +SJ +TE +qx +QF +TE +cy +Lt +Wv +eG +Io +eG +"} +(29,1,1) = {" +eG +eG +Ps +Io +CE +pZ +PG +Pa +gy +EA +mY +mY +mY +DT +OS +tc +YH +TU +ea +lb +Pu +Tb +js +Pu +Nf +js +rJ +fn +To +II +TE +yH +dM +TE +mb +oT +RI +Io +Io +Io +"} +(30,1,1) = {" +eG +eG +eG +eG +CE +Gs +LA +DN +eB +ZE +dH +pK +ly +Qp +Qp +XW +Qp +Qp +fn +kj +Jg +fn +kj +tQ +fn +kj +LN +fn +IH +Wp +TE +al +Xn +TE +qM +Wv +RI +Io +eG +Io +"} +(31,1,1) = {" +eG +eG +eG +eG +CE +CE +CE +CE +Hr +EX +Im +Im +Im +Qp +FS +LD +Kb +oW +fn +VB +Gf +fn +VB +Fh +fn +fN +rm +fn +Ct +TE +mM +Px +tP +DD +XI +ez +RI +RI +RI +Io +"} +(32,1,1) = {" +eG +eG +eG +eG +Io +Io +eG +eG +zN +EX +Im +Im +Zs +Qp +il +hA +qq +hQ +fn +RZ +Ae +fn +He +Ae +fn +WK +Ae +fn +zg +TE +LO +Sg +zl +TE +lF +CO +Ad +GO +eo +CH +"} +(33,1,1) = {" +eG +eG +eG +Io +Io +eG +eG +eG +zN +Im +Im +Im +Im +Qp +bO +eO +qq +Nm +fn +Ba +la +fn +Qf +yB +fn +Qf +la +fn +Ct +TE +oj +hW +sF +TE +Db +Wv +RI +my +RI +Io +"} +(34,1,1) = {" +eG +eG +Ps +Io +eG +eG +eG +Io +zN +zN +zN +Hr +Hr +pa +aP +uZ +aP +Qp +fn +fn +Mp +fn +fn +Mp +fn +fn +Mp +fn +DH +TE +iw +fX +AA +TE +wh +YG +HO +my +eG +Io +"} +(35,1,1) = {" +eG +eG +Ps +Ps +eG +eG +Io +Io +Io +eG +eG +eG +Io +pa +BU +En +Pz +gR +Ct +pH +Ct +Ct +pH +Ct +fn +Qn +dl +lx +Ct +TE +Aj +rk +Aj +TE +xm +Ga +jF +Wv +eG +Io +"} +(36,1,1) = {" +eG +eG +eG +Ps +Ps +Io +Io +Io +eG +eG +eG +Io +Io +pa +aP +pa +aP +pa +Wp +Wp +Wp +Wp +Wp +Wp +Wp +GD +Ct +Ct +Pb +TE +jD +El +nL +TE +NB +gN +XT +my +eG +Io +"} +(37,1,1) = {" +eG +eG +eG +eG +Ps +Ps +Io +eG +eG +eG +Io +Io +eG +eG +Io +eG +Io +eG +eG +eG +Io +eG +Io +eG +Wp +Qn +hd +IV +Fy +TE +vP +yU +jO +TE +tB +on +tB +my +FZ +UJ +"} +(38,1,1) = {" +eG +eG +eG +eG +eG +Ps +Ps +eG +eG +Io +Io +eG +eG +Ps +Ps +Ps +Ps +Ps +eG +eG +Ps +Ps +Ps +eG +Wp +Wp +Wp +Wp +Wp +TE +fT +tm +FK +TE +GI +GI +CR +my +eG +eG +"} +(39,1,1) = {" +eG +eG +eG +eG +eG +eG +Ps +Ps +Io +Io +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +Io +eG +eG +eG +TE +rK +rK +rK +Se +tB +YK +tB +my +FZ +Lw +"} +(40,1,1) = {" +eG +eG +eG +eG +eG +eG +eG +Ps +Ps +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +Ps +Ps +eG +eG +eG +eG +eG +eG +my +eG +XL +eG +my +eG +eG +"} +(41,1,1) = {" +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +aH +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +my +eG +eG +eG +my +eG +eG +"} +(42,1,1) = {" +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +Va +eG +eG +eG +Va +eG +eG +"} +(43,1,1) = {" +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +"} +(44,1,1) = {" +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +jP +eG +eG +eG +eG +"} diff --git a/_maps/skyrat/automapper/templates/icebox/icebox_armory_middle.dmm b/_maps/skyrat/automapper/templates/icebox/icebox_armory_middle.dmm new file mode 100644 index 00000000000..ac40cd377b0 --- /dev/null +++ b/_maps/skyrat/automapper/templates/icebox/icebox_armory_middle.dmm @@ -0,0 +1,294 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/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/ai_monitored/security/armory) +"d" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/turf_decal/tile/red/half{ + dir = 8 + }, +/obj/structure/closet/ammunitionlocker/useful, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"e" = ( +/obj/machinery/light/directional/north, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/cmg, +/obj/effect/turf_decal/tile/red/half, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"f" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"g" = ( +/obj/structure/rack, +/obj/item/gun/energy/ionrifle, +/obj/item/gun/energy/temperature/security, +/obj/item/clothing/suit/hooded/ablative, +/obj/effect/turf_decal/tile/red/half{ + dir = 8 + }, +/obj/item/gun/grenadelauncher, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"i" = ( +/obj/structure/rack, +/obj/item/clothing/head/helmet/sec{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/sec, +/obj/item/clothing/head/helmet/sec{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/suit/armor/vest/security{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/suit/armor/vest/security, +/obj/item/clothing/suit/armor/vest/security{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/red/half{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"m" = ( +/obj/structure/stairs/east, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"q" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/shotguns, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"t" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/red/half, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"v" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/security/armory) +"w" = ( +/obj/machinery/recharger, +/obj/structure/table, +/obj/effect/turf_decal/tile/red/half, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"x" = ( +/obj/effect/turf_decal/tile/red/half{ + dir = 4 + }, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/microfusion, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"y" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"B" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Armory - Internal - Lower" + }, +/obj/effect/turf_decal/tile/red/half, +/obj/structure/closet/secure_closet/smartgun, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"L" = ( +/turf/closed/wall, +/area/station/ai_monitored/security/armory) +"M" = ( +/obj/structure/rack, +/obj/item/storage/box/teargas{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/flashbangs{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/red/half{ + dir = 8 + }, +/obj/item/storage/toolbox/drone, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"N" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"Q" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"S" = ( +/mob/living/simple_animal/bot/secbot/beepsky/armsky, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"W" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/ai_monitored/security/armory) +"X" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/red/half, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"Y" = ( +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) + +(1,1,1) = {" +v +v +v +v +v +v +v +"} +(2,1,1) = {" +v +t +Q +a +a +a +W +"} +(3,1,1) = {" +v +X +Y +f +L +m +v +"} +(4,1,1) = {" +v +w +Y +f +L +L +v +"} +(5,1,1) = {" +v +e +Y +f +q +x +v +"} +(6,1,1) = {" +v +B +S +N +Y +y +v +"} +(7,1,1) = {" +v +v +M +i +d +g +v +"} +(8,1,1) = {" +v +v +v +v +v +v +v +"} diff --git a/_maps/skyrat/automapper/templates/icebox/icebox_armory_top.dmm b/_maps/skyrat/automapper/templates/icebox/icebox_armory_top.dmm new file mode 100644 index 00000000000..da02103adc5 --- /dev/null +++ b/_maps/skyrat/automapper/templates/icebox/icebox_armory_top.dmm @@ -0,0 +1,320 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/security/armory/upper) +"b" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"c" = ( +/obj/machinery/light/directional/west, +/obj/machinery/camera/motion/directional/south{ + c_tag = "Armory - Internal - Upper" + }, +/turf/open/openspace, +/area/station/ai_monitored/security/armory/upper) +"f" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/closed/wall/r_wall, +/area/station/ai_monitored/security/armory/upper) +"i" = ( +/obj/structure/railing, +/obj/structure/rack, +/obj/item/gun/energy/e_gun/dragnet{ + pixel_y = 4 + }, +/obj/item/gun/energy/e_gun/dragnet, +/obj/effect/turf_decal/tile/red/half{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"j" = ( +/turf/open/openspace, +/area/station/ai_monitored/security/armory/upper) +"k" = ( +/obj/structure/table, +/obj/item/storage/box/chemimp{ + pixel_x = 6 + }, +/obj/item/storage/box/trackimp{ + pixel_x = -3 + }, +/obj/item/storage/lockbox/loyalty, +/obj/effect/turf_decal/tile/red/half{ + dir = 1 + }, +/obj/machinery/light_switch/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"l" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor{ + name = "Armory Desk"; + req_access = list("armory") + }, +/obj/machinery/door/window/left/directional/north{ + name = "Armory Desk" + }, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory/upper) +"m" = ( +/obj/structure/table, +/obj/item/storage/box/firingpins, +/obj/item/storage/box/firingpins, +/obj/item/key/security, +/obj/machinery/light/directional/east, +/obj/item/radio/intercom/prison/directional/east, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"n" = ( +/obj/item/grenade/barrier{ + pixel_x = 4 + }, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier{ + pixel_x = -4 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/red/half{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"o" = ( +/obj/structure/railing, +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/tile/red/half{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"p" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Armory" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory/upper) +"q" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"r" = ( +/turf/open/floor/glass/reinforced, +/area/station/ai_monitored/security/armory/upper) +"t" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"w" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/closet/secure_closet/contraband/armory, +/obj/machinery/firealarm/directional/north, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/spawner/random/contraband/armory, +/obj/effect/turf_decal/tile/red/half{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"x" = ( +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"y" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/ai_monitored/security/armory/upper) +"z" = ( +/obj/machinery/door/poddoor/shutters{ + id = "armory"; + name = "Armory Shutter" + }, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory/upper) +"E" = ( +/obj/machinery/airalarm/directional/north, +/turf/open/floor/glass/reinforced, +/area/station/ai_monitored/security/armory/upper) +"J" = ( +/obj/vehicle/ridden/secway, +/obj/effect/turf_decal/tile/red/half, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"K" = ( +/obj/effect/turf_decal/tile/red/half, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"N" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"O" = ( +/obj/item/gun/energy/laser/practice{ + pixel_y = 5 + }, +/obj/item/gun/energy/laser/practice, +/obj/item/gun/energy/laser/practice{ + pixel_y = -5 + }, +/obj/structure/rack, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"P" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/tile/red/half, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"Q" = ( +/obj/machinery/button/door/directional/east{ + id = "armory"; + name = "Armory Shutters"; + pixel_x = -9; + pixel_y = 30; + req_access = list("armory") + }, +/obj/structure/rack, +/obj/item/gun/energy/e_gun{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/e_gun, +/obj/item/gun/energy/e_gun{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/red/half{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"T" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Armory" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"U" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Armory" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"W" = ( +/obj/effect/turf_decal/tile/red/half{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) +"Z" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory/upper) + +(1,1,1) = {" +a +a +y +y +y +a +a +"} +(2,1,1) = {" +l +x +P +r +o +c +a +"} +(3,1,1) = {" +z +x +K +r +i +j +a +"} +(4,1,1) = {" +a +Q +t +r +b +W +T +"} +(5,1,1) = {" +a +E +r +r +r +r +U +"} +(6,1,1) = {" +a +w +Z +r +N +n +a +"} +(7,1,1) = {" +a +a +J +q +k +m +a +"} +(8,1,1) = {" +O +a +a +p +f +a +a +"} diff --git a/_maps/skyrat/automapper/templates/icebox/icebox_arrivals.dmm b/_maps/skyrat/automapper/templates/icebox/icebox_arrivals.dmm new file mode 100644 index 00000000000..ae90ea1f8c5 --- /dev/null +++ b/_maps/skyrat/automapper/templates/icebox/icebox_arrivals.dmm @@ -0,0 +1,2363 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"al" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"as" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"aD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"aT" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/obj/structure/fence/corner, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"bE" = ( +/obj/structure/sign/warning/docking/directional/north, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"bI" = ( +/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/secondary/entry) +"ca" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"co" = ( +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"cp" = ( +/turf/closed/wall, +/area/station/hallway/secondary/entry) +"ct" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"cA" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"cI" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/fence/door, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"dr" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 1; + height = 13; + id = "arrivals_stationary"; + name = "arrivals"; + width = 5 + }, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"dt" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 3" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"dG" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 1" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"ej" = ( +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"ep" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"ex" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/docking_port/stationary{ + dheight = 3; + dir = 8; + dwidth = 8; + height = 11; + id = "ferry_home"; + name = "Port Bay 2"; + width = 20 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"eF" = ( +/obj/structure/chair/comfy/brown, +/turf/open/floor/iron/grimy, +/area/station/hallway/secondary/entry) +"eP" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/structure/fence, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"eR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"fc" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/warning/gas_mask/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"fV" = ( +/obj/structure/table/wood, +/obj/item/book/random{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = 9; + pixel_y = 3 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/grimy, +/area/station/hallway/secondary/entry) +"fW" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/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/corner{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"gd" = ( +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"gT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"hE" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 4" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"hS" = ( +/obj/structure/statue/snow/snowman, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"iv" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/warning/docking/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"iy" = ( +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"iO" = ( +/obj/item/beacon, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"iP" = ( +/obj/structure/fence, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"jm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"jn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"jT" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/iron/grimy, +/area/station/hallway/secondary/entry) +"ks" = ( +/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/corner, +/area/station/hallway/secondary/entry) +"kz" = ( +/obj/item/toy/snowball{ + pixel_x = -10; + pixel_y = -6 + }, +/obj/item/toy/snowball{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/item/toy/snowball{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/toy/snowball, +/obj/item/toy/plush/lizard_plushie{ + desc = "A lizard plushie that has a bit of snow on it. it feels warm."; + greyscale_colors = "#ccecff#000000"; + name = "Dances-in-Snow" + }, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"lr" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"lA" = ( +/obj/effect/turf_decal/tile/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/corner{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"lY" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"mk" = ( +/obj/structure/fence/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"mt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"mM" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/structure/fence, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"nc" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"nH" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"nJ" = ( +/turf/open/floor/iron/grimy, +/area/station/hallway/secondary/entry) +"nR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/computer/shuttle/arrivals/recall, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"pd" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 1" + }, +/obj/effect/landmark/navigate_destination{ + location = "Arrival Shuttle" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"pq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"qb" = ( +/obj/effect/landmark/carpspawn, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"qB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"qD" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"rR" = ( +/turf/closed/wall/r_wall, +/area/station/hallway/secondary/entry) +"rT" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"sm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/warning/gas_mask/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"sO" = ( +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 1 + }, +/obj/structure/sign/warning/yes_smoking/circle/directional/west, +/turf/open/floor/iron/grimy, +/area/station/hallway/secondary/entry) +"tv" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"tB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"tV" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Arrivals Escape Pod 1" + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"ub" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 1"; + space_dir = 1 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"uG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"uR" = ( +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/iron/grimy, +/area/station/hallway/secondary/entry) +"vG" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"wj" = ( +/obj/structure/chair/comfy/brown, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/grimy, +/area/station/hallway/secondary/entry) +"wQ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"xd" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/camera/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/corner, +/area/station/hallway/secondary/entry) +"xf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"xr" = ( +/obj/structure/closet/emcloset/anchored, +/obj/item/pickaxe/emergency, +/obj/item/pickaxe/emergency, +/obj/item/pickaxe/emergency, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"xC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/cold_temp, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"xD" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"xI" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 4; + pixel_y = 10 + }, +/turf/open/floor/iron/grimy, +/area/station/hallway/secondary/entry) +"yO" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Arrivals ERT Bay" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"yV" = ( +/obj/structure/sign/warning/pods, +/turf/closed/wall, +/area/station/hallway/secondary/entry) +"zA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"zX" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/grimy, +/area/station/hallway/secondary/entry) +"Ar" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"AH" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 3" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Be" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Bo" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ci" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ck" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Dr" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/stripes/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, +/area/station/hallway/secondary/entry) +"DW" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/camera/directional/south, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"EN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Fd" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Arrivals Bay 3 & 4" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"FC" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"FG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/warning/cold_temp/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"FL" = ( +/obj/structure/fence/corner{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 5 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"FR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"Gc" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod One"; + space_dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Gw" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Gy" = ( +/obj/effect/turf_decal/bot, +/obj/structure/marker_beacon/burgundy{ + name = "landing marker" + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"Hm" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 11; + height = 22; + id = "whiteship_home"; + name = "SS13: Auxiliary Dock, Station-Port"; + width = 35 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"HQ" = ( +/obj/docking_port/stationary/random/icemoon{ + dir = 8; + id = "pod_lavaland"; + name = "lavaland" + }, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"HX" = ( +/obj/effect/turf_decal/stripes/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, +/area/station/hallway/secondary/entry) +"IC" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"II" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"Jj" = ( +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 1 + }, +/turf/open/floor/iron/grimy, +/area/station/hallway/secondary/entry) +"Jy" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"JC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"JP" = ( +/obj/structure/marker_beacon/burgundy{ + name = "landing marker" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"JQ" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"JR" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 4" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Kr" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/fence/door, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"LB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/gas_mask, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"LL" = ( +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"LM" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/light/directional/east, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Mh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Nt" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 1; + height = 4; + name = "escape pod loader"; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"Nw" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"Nz" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ot" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"OJ" = ( +/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, +/area/station/hallway/secondary/entry) +"OL" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"OQ" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall/r_wall, +/area/station/hallway/secondary/entry) +"OZ" = ( +/obj/effect/turf_decal/stripes/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, +/area/station/hallway/secondary/entry) +"Pb" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Pn" = ( +/turf/open/genturf, +/area/icemoon/surface/outdoors/unexplored/rivers/no_monsters) +"PC" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/warning/cold_temp/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"PY" = ( +/obj/structure/fence/corner{ + dir = 9 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"Qg" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"QV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "ert-lz-starboard" + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + space_dir = 8 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"QW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Rx" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 10 + }, +/obj/structure/fence/corner{ + dir = 1 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"RC" = ( +/obj/structure/fence, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"RH" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/structure/fence/door{ + dir = 4 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"Se" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Sw" = ( +/obj/machinery/door/airlock/external{ + name = "Landing Pad Umbilical" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "ert-lz-starboard" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"SQ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"SS" = ( +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 5 + }, +/turf/open/floor/iron/grimy, +/area/station/hallway/secondary/entry) +"Th" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Tt" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"TC" = ( +/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, +/area/station/hallway/secondary/entry) +"Uh" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/iron/grimy, +/area/station/hallway/secondary/entry) +"Uj" = ( +/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, +/area/station/hallway/secondary/entry) +"UH" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"UO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Vp" = ( +/obj/machinery/holopad, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"VD" = ( +/obj/machinery/light/directional/south, +/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/corner, +/area/station/hallway/secondary/entry) +"Wb" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/structure/fence/door{ + dir = 4 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"WC" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/stripes/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, +/area/station/hallway/secondary/entry) +"Xd" = ( +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Xj" = ( +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Xp" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod One" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"XM" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Arrivals Bay 2" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ya" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + space_dir = 8 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Zb" = ( +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 1"; + space_dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Zk" = ( +/obj/structure/fence/corner{ + dir = 9 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 9 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"ZN" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) + +(1,1,1) = {" +Pn +Pn +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +"} +(2,1,1) = {" +Pn +Pn +ej +Zk +iP +iP +eP +eP +eP +eP +eP +eP +eP +eP +eP +RH +eP +eP +RH +eP +eP +eP +eP +eP +eP +eP +eP +eP +Rx +ej +"} +(3,1,1) = {" +Pn +Pn +ej +II +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +rT +ej +"} +(4,1,1) = {" +Pn +Pn +ej +II +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +rT +ej +"} +(5,1,1) = {" +Pn +Pn +ej +II +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +Gy +iy +iy +Gy +iy +iy +iy +iy +iy +Tt +Nw +iy +iy +rT +ej +"} +(6,1,1) = {" +Pn +Pn +ej +ct +iy +iy +iy +iy +Gy +Tt +iy +iy +Nw +Gy +iy +iy +iy +iy +iy +iy +iy +Gy +iy +Tt +iy +iy +iy +Gy +rT +ej +"} +(7,1,1) = {" +Pn +Pn +ej +cI +iy +iy +iy +Tt +iy +iy +iy +iy +iy +iy +Nw +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +rT +ej +"} +(8,1,1) = {" +Pn +Pn +ej +ct +iy +JP +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +FC +FC +iy +Nw +iy +iy +Tt +iy +iy +ep +iy +iy +rT +ej +"} +(9,1,1) = {" +Pn +Pn +ej +ct +iy +iy +Tt +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +Ot +ej +"} +(10,1,1) = {" +Pn +Pn +ej +ct +iy +iy +nH +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +Kr +ej +"} +(11,1,1) = {" +Pn +Pn +ej +ct +iy +iy +Qg +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +Ot +ej +"} +(12,1,1) = {" +Pn +Pn +ej +ct +iy +JP +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +JQ +ex +iy +ep +iy +iy +Qg +iy +iy +Nw +iy +iy +Ot +ej +"} +(13,1,1) = {" +Pn +Pn +ej +II +iy +iy +iy +Qg +iy +iy +iy +iy +iy +iy +ep +rR +QV +QV +rR +iy +iy +iy +iy +iy +iy +iy +iy +iy +rT +ej +"} +(14,1,1) = {" +Pn +Pn +ej +II +iy +iy +iy +iy +Gy +Qg +iy +iy +ep +Gy +iy +IC +as +as +IC +iy +iy +Gy +iy +Qg +iy +iy +iy +JP +rT +ej +"} +(15,1,1) = {" +Pn +Pn +ej +II +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +IC +co +co +IC +iy +iy +iy +iy +iy +Qg +ep +iy +iy +rT +ej +"} +(16,1,1) = {" +Pn +Pn +ej +FL +RC +RC +RC +mM +mM +mM +mM +mM +mM +RC +RC +rR +lr +gd +rR +iy +iy +iy +iy +iy +iy +iy +iy +iy +rT +ej +"} +(17,1,1) = {" +Pn +Pn +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +rR +Sw +Sw +rR +xr +xr +iy +iy +iy +iy +iy +iy +iy +rT +ej +"} +(18,1,1) = {" +Pn +Pn +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +IC +cA +jn +rR +rR +rR +iy +PY +Wb +mM +mM +mM +mM +aT +ej +"} +(19,1,1) = {" +Pn +Pn +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +IC +tB +LL +sO +uR +rR +mM +mk +ej +ej +ej +ej +ej +ej +ej +"} +(20,1,1) = {" +Pn +Pn +ej +ej +ej +ej +ej +HQ +ej +ej +ej +ej +ej +ej +ej +IC +wQ +UO +Jj +jT +IC +ej +ej +ej +kz +ej +ej +ej +ej +ej +"} +(21,1,1) = {" +Pn +Pn +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +IC +wQ +LL +Jj +eF +IC +ej +ej +ej +hS +ej +ej +ej +ej +ej +"} +(22,1,1) = {" +Pn +Pn +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +ej +IC +yO +LL +Jj +xI +IC +ej +ej +ej +ej +ej +ej +ej +ej +ej +"} +(23,1,1) = {" +Pn +Pn +ej +ej +ej +ej +iy +Nt +iy +ej +ej +ej +ej +ej +ej +rR +OL +LL +Jj +wj +IC +ej +ej +ej +ej +ej +ej +ej +ej +ej +"} +(24,1,1) = {" +ej +ej +ej +ej +ej +rR +cp +Gc +cp +rR +ej +ej +ej +ej +ej +IC +wQ +LL +Jj +nJ +IC +ej +ej +ej +ej +ej +ej +ej +ej +ej +"} +(25,1,1) = {" +ej +ej +ej +ej +ej +OQ +qD +co +tV +rR +ej +ej +ej +ej +ej +IC +wQ +LL +Jj +Uh +IC +ej +ej +ej +ej +ej +ej +ej +ej +ej +"} +(26,1,1) = {" +ej +ej +ej +ej +ej +rR +cp +Xp +yV +rR +ej +ej +ej +ej +ej +IC +lA +jm +Jj +fV +rR +ej +ej +ej +ej +ej +ej +ej +ej +ej +"} +(27,1,1) = {" +ej +ej +ej +iy +IC +IC +IC +sm +DW +rR +ej +ej +ej +ej +ej +IC +lA +LL +SS +zX +OQ +ej +ej +ej +ej +ej +ej +ej +ej +ej +"} +(28,1,1) = {" +ej +ej +ej +iy +Zb +co +dG +ca +pq +IC +ej +ej +ej +ej +ej +IC +lA +LL +fc +IC +IC +IC +iy +ej +ej +ej +ej +ej +ej +ej +"} +(29,1,1) = {" +ej +ej +ej +iy +IC +IC +IC +FG +pq +IC +ej +ej +ej +ej +ej +rR +lY +LL +Ck +JR +co +hE +Hm +ej +ej +ej +ej +ej +ej +ej +"} +(30,1,1) = {" +ej +ej +ej +ej +IC +ZN +jn +nc +FR +IC +ej +ej +ej +ej +ej +IC +lA +LL +PC +IC +IC +IC +iy +ej +ej +ej +ej +ej +ej +ej +"} +(31,1,1) = {" +ej +ej +ej +ej +IC +nR +LL +LL +FR +IC +ej +ej +ej +ej +ej +IC +lA +LL +Bo +jn +vG +IC +ej +ej +ej +ej +ej +ej +ej +ej +"} +(32,1,1) = {" +ej +ej +ej +ej +IC +iO +LL +LL +FR +IC +ej +ej +ej +ej +ej +IC +lA +LL +LL +LL +Jy +IC +ej +ej +ej +ej +ej +ej +ej +ej +"} +(33,1,1) = {" +ej +ej +ej +ej +IC +Nz +LL +LL +FR +IC +ej +ej +ej +ej +ej +IC +lA +LL +LL +LL +Fd +IC +ej +ej +ej +ej +ej +ej +ej +ej +"} +(34,1,1) = {" +ej +ej +ej +ej +IC +UH +Mh +Gw +ks +IC +ej +ej +ej +ej +ej +IC +lA +LL +Be +Mh +Ar +IC +ej +ej +ej +ej +ej +ej +ej +ej +"} +(35,1,1) = {" +ej +ej +ej +iy +IC +IC +IC +FG +ks +IC +ej +ej +ej +ej +ej +IC +lA +LL +PC +IC +IC +IC +iy +ej +ej +ej +ej +ej +ej +ej +"} +(36,1,1) = {" +ej +ej +ej +iy +ub +co +pd +al +ks +IC +ej +iy +iy +iy +ej +IC +lA +LL +Ck +AH +co +dt +iy +ej +ej +ej +ej +ej +ej +ej +"} +(37,1,1) = {" +ej +ej +ej +iy +IC +IC +IC +sm +VD +rR +ej +IC +Ya +IC +ej +rR +fW +LL +fc +IC +IC +IC +iy +ej +ej +ej +ej +qb +ej +ej +"} +(38,1,1) = {" +ej +ej +dr +ej +ej +IC +zA +SQ +xd +rR +IC +IC +co +IC +IC +rR +lA +LL +Bo +EN +IC +ej +ej +ej +ej +ej +ej +ej +ej +ej +"} +(39,1,1) = {" +IC +IC +IC +rR +rR +rR +Xd +LL +OJ +cp +vG +xC +Pb +LB +tv +cp +eR +LL +LL +Ci +rR +ej +ej +ej +ej +ej +ej +ej +ej +ej +"} +(40,1,1) = {" +OZ +OZ +OZ +WC +Dr +OZ +HX +gT +gT +qB +xf +uG +Th +OZ +TC +bI +bI +UO +LL +xD +rR +bE +ej +ej +ej +ej +ej +ej +ej +ej +"} +(41,1,1) = {" +Se +gT +LL +LL +Vp +LL +LL +JC +LL +QW +XM +LL +mt +Uj +LM +Xj +aD +LL +LL +iv +cp +ej +ej +ej +ej +ej +ej +ej +ej +ej +"} diff --git a/_maps/skyrat/automapper/templates/icebox/icebox_barber.dmm b/_maps/skyrat/automapper/templates/icebox/icebox_barber.dmm new file mode 100644 index 00000000000..df7b0aa1a90 --- /dev/null +++ b/_maps/skyrat/automapper/templates/icebox/icebox_barber.dmm @@ -0,0 +1,526 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall, +/area/station/service/salon) +"b" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"c" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/landmark/start/barber, +/obj/machinery/button/curtain{ + id = "barbershopcurtains1"; + pixel_x = 25; + pixel_y = 24 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"d" = ( +/obj/structure/mirror/directional/west, +/obj/structure/table/reinforced/rglass, +/obj/item/hairbrush/comb{ + pixel_y = 10 + }, +/obj/item/reagent_containers/dropper, +/obj/machinery/dryer{ + pixel_y = 14 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"e" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/table/reinforced/rglass, +/obj/item/hairbrush, +/turf/open/floor/iron, +/area/station/service/salon) +"f" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/bed/pod, +/obj/structure/window, +/turf/open/floor/iron, +/area/station/service/salon) +"g" = ( +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central) +"h" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/service/salon) +"i" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron, +/area/station/service/salon) +"j" = ( +/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/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"k" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/station/service/salon) +"l" = ( +/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/hallway/primary/central) +"m" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains" + }, +/turf/open/floor/plating, +/area/station/service/salon) +"n" = ( +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Salon" + }, +/turf/open/floor/iron, +/area/station/service/salon) +"o" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/button/curtain{ + id = "barbershopcurtains"; + pixel_x = 25; + pixel_y = -24 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"p" = ( +/turf/closed/wall, +/area/station/maintenance/port/greater) +"q" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/holopad, +/turf/open/floor/iron, +/area/station/service/salon) +"r" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"s" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains" + }, +/turf/open/floor/plating, +/area/station/service/salon) +"t" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron, +/area/station/service/salon) +"u" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/comfy/barber_chair{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"w" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/vending/barbervend, +/turf/open/floor/iron, +/area/station/service/salon) +"x" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/landmark/start/barber, +/turf/open/floor/iron, +/area/station/service/salon) +"y" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/structure/window, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"z" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron, +/area/station/service/salon) +"A" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access = list("maint_tunnels") + }, +/turf/open/floor/plating, +/area/station/service/salon) +"C" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + 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, +/area/station/service/salon) +"D" = ( +/turf/open/openspace, +/area/station/hallway/primary/central) +"E" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"F" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/table/reinforced/rglass, +/obj/structure/window, +/obj/item/hairbrush, +/obj/item/lipstick/random, +/turf/open/floor/iron, +/area/station/service/salon) +"H" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron, +/area/station/service/salon) +"I" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/light_switch/directional/west, +/obj/machinery/dryer{ + dir = 4; + pixel_x = -6; + pixel_y = -6 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"K" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"M" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"O" = ( +/obj/machinery/power/apc/auto_name/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{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"P" = ( +/obj/structure/mirror/directional/west, +/obj/structure/table/reinforced/rglass, +/obj/item/razor{ + pixel_x = -6 + }, +/obj/item/reagent_containers/spray/barbers_aid{ + pixel_x = 6 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"Q" = ( +/obj/item/storage/secure/safe/directional/south, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/closet/secure_closet/barber, +/turf/open/floor/iron, +/area/station/service/salon) +"R" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Barbershop" + }, +/obj/machinery/door/firedoor, +/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, +/area/station/service/salon) +"S" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"T" = ( +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/bed/pod, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/service/salon) +"U" = ( +/obj/structure/sign/barber{ + pixel_x = -13 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central) +"V" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/station/service/salon) +"W" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/light/warm/directional/north, +/obj/item/kirbyplants/random, +/turf/open/floor/iron, +/area/station/service/salon) +"X" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains1" + }, +/turf/open/floor/plating, +/area/station/service/salon) +"Y" = ( +/obj/item/radio/intercom/directional/west, +/obj/structure/table/reinforced/rglass, +/obj/item/reagent_containers/spray/quantum_hair_dye{ + pixel_x = 6 + }, +/obj/item/lipstick/random, +/turf/open/floor/iron, +/area/station/service/salon) +"Z" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/comfy/barber_chair{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/service/salon) + +(1,1,1) = {" +p +p +p +p +p +S +r +p +"} +(2,1,1) = {" +a +d +Y +P +a +A +a +a +"} +(3,1,1) = {" +a +u +x +Z +E +K +I +k +"} +(4,1,1) = {" +a +W +z +t +i +j +w +a +"} +(5,1,1) = {" +a +n +H +y +b +M +Q +a +"} +(6,1,1) = {" +a +T +q +f +b +h +O +a +"} +(7,1,1) = {" +a +e +c +F +V +C +o +a +"} +(8,1,1) = {" +a +a +X +a +s +R +m +k +"} +(9,1,1) = {" +a +D +D +U +g +l +l +a +"} diff --git a/_maps/skyrat/automapper/templates/icebox/icebox_cryo.dmm b/_maps/skyrat/automapper/templates/icebox/icebox_cryo.dmm new file mode 100644 index 00000000000..d042fdb938b --- /dev/null +++ b/_maps/skyrat/automapper/templates/icebox/icebox_cryo.dmm @@ -0,0 +1,258 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/common/cryopods) +"b" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"f" = ( +/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/public/glass{ + name = "Cryopods" + }, +/turf/open/floor/iron, +/area/station/common/cryopods) +"h" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Dormitory" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/navigate_destination, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/commons/dorms) +"i" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"j" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"k" = ( +/obj/machinery/computer/cryopod{ + pixel_y = 32 + }, +/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/common/cryopods) +"m" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/camera/directional/west{ + c_tag = "Dormitory South" + }, +/turf/open/floor/iron, +/area/station/commons/dorms) +"o" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"q" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L13" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"s" = ( +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"v" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/common/cryopods) +"y" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"z" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"C" = ( +/turf/closed/wall, +/area/station/common/cryopods) +"E" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/camera/directional/west, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"H" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"I" = ( +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"J" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"K" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/station/common/cryopods) +"M" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/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/commons/dorms) +"O" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"Q" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"U" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"Z" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) + +(1,1,1) = {" +I +I +U +o +Z +q +"} +(2,1,1) = {" +C +C +C +v +v +s +"} +(3,1,1) = {" +C +E +J +b +v +s +"} +(4,1,1) = {" +C +k +a +a +v +O +"} +(5,1,1) = {" +C +K +j +z +v +i +"} +(6,1,1) = {" +C +f +C +v +v +y +"} +(7,1,1) = {" +m +M +h +H +H +Q +"} diff --git a/_maps/skyrat/automapper/templates/icebox/icebox_ntrep_office.dmm b/_maps/skyrat/automapper/templates/icebox/icebox_ntrep_office.dmm new file mode 100644 index 00000000000..2dcd4c6147a --- /dev/null +++ b/_maps/skyrat/automapper/templates/icebox/icebox_ntrep_office.dmm @@ -0,0 +1,1267 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ak" = ( +/obj/structure/table/wood, +/obj/item/stamp/centcom{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/stamp/denied{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/stamp{ + pixel_x = -6 + }, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"an" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/captain/private/nt_rep) +"aB" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"aU" = ( +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"bp" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"bG" = ( +/obj/structure/sign/warning, +/turf/closed/wall/r_wall, +/area/mine/storage) +"bK" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/structure/girder, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"cm" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"cn" = ( +/turf/closed/mineral/random/snow, +/area/icemoon/underground/explored) +"cB" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"do" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"dX" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/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/central/greater) +"fn" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"fC" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"fK" = ( +/obj/structure/cable/multilayer/multiz, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"fN" = ( +/turf/closed/wall/ice, +/area/icemoon/underground/explored) +"fV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"he" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"hi" = ( +/obj/structure/marker_beacon/burgundy{ + name = "landing marker" + }, +/turf/open/floor/plating/snowed/smoothed/icemoon, +/area/icemoon/underground/explored) +"hp" = ( +/obj/effect/spawner/random/structure/crate_empty, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"hA" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Public Mining Storage"; + opacity = 0 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/sign/warning/gas_mask/directional/south{ + desc = "A sign that warns of dangerous gasses in the air, instructing you to wear internals." + }, +/obj/structure/sign/warning/cold_temp/directional/north, +/turf/open/floor/iron/dark, +/area/mine/storage) +"hW" = ( +/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, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"hX" = ( +/obj/structure/flora/rock/icy/style_random, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) +"jY" = ( +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"kF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"kL" = ( +/turf/open/floor/iron/dark, +/area/mine/storage) +"lu" = ( +/turf/closed/wall, +/area/station/hallway/primary/central) +"lD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/structure/girder, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"lJ" = ( +/obj/structure/fireplace, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/captain/private/nt_rep) +"lX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/item/kitchen/fork, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"mc" = ( +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"ms" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/primary/central) +"mE" = ( +/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) +"nq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"oI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"oP" = ( +/obj/machinery/light/directional/east, +/turf/open/misc/asteroid/snow/icemoon, +/area/mine/storage) +"pK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"qb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/champagne{ + pixel_y = 18; + pixel_x = -5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"qr" = ( +/obj/structure/flora/grass/green/style_random, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) +"rN" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"sd" = ( +/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, +/area/command/heads_quarters/captain/private/nt_rep) +"sV" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"tw" = ( +/obj/structure/filingcabinet/employment, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"tD" = ( +/obj/machinery/modular_computer/console/preset/command{ + dir = 4 + }, +/obj/machinery/button/door/directional/west{ + pixel_y = 8; + id = "nt_rep_priv"; + name = "Privacy Shutters Control" + }, +/obj/machinery/button/door/directional/west{ + id = "nt_rep_wild"; + name = "Wildlife Observation Shutters Control"; + pixel_y = -8 + }, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"uu" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"uy" = ( +/turf/open/genturf, +/area/icemoon/underground/unexplored/rivers) +"uD" = ( +/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, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"uK" = ( +/turf/closed/wall, +/area/station/maintenance/central/greater) +"uN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"uT" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/middle{ + dir = 1 + }, +/turf/open/floor/plating, +/area/mine/storage) +"uZ" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen/fountain, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"vS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"vZ" = ( +/obj/structure/ore_box, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) +"wb" = ( +/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, +/area/command/heads_quarters/captain/private/nt_rep) +"yt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "NT Consultant's Hallway" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"yu" = ( +/obj/structure/closet/secure_closet/nanotrasen_consultant/station, +/obj/item/assembly/flash/handheld, +/obj/machinery/light/directional/west, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"zD" = ( +/obj/structure/table/wood, +/obj/item/folder/yellow, +/obj/item/folder/white{ + pixel_y = 3 + }, +/obj/item/folder/red{ + pixel_y = 6 + }, +/obj/item/folder/blue{ + pixel_y = 9 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"zQ" = ( +/obj/effect/landmark/start/nanotrasen_consultant, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"Ag" = ( +/obj/effect/spawner/random/trash/hobo_squat, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"BF" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"Cb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/camera/directional/south{ + c_tag = "NT Consultant's Office"; + name = "command camera" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"Ct" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"Cz" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"CN" = ( +/obj/machinery/vending/sustenance, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"DJ" = ( +/turf/open/floor/plating/snowed/smoothed/icemoon, +/area/icemoon/underground/explored) +"DN" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"Ey" = ( +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central) +"EH" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/nanotrasen_consultant, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"Fk" = ( +/turf/open/genturf/alternative, +/area/icemoon/underground/unexplored/rivers/deep/shoreline) +"FF" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"Hy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + name = "Privacy Shutter"; + id = "nt_rep_priv" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/captain/private/nt_rep) +"HF" = ( +/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/central/greater) +"HI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"HS" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Public Mining Storage"; + opacity = 0 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/mine/storage) +"Iq" = ( +/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/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"Jj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"JF" = ( +/obj/structure/rack, +/obj/effect/spawner/random/engineering/tool, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"JQ" = ( +/obj/structure/table/wood, +/obj/item/taperecorder{ + pixel_y = 14; + pixel_x = 10 + }, +/obj/item/camera_film{ + pixel_x = -6 + }, +/obj/item/camera_film{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/camera{ + pixel_x = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"Kq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/nanotrasen_consultant, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"Lj" = ( +/turf/closed/wall/r_wall, +/area/mine/storage) +"Lv" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"Md" = ( +/obj/structure/stairs/north{ + dir = 2 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"MO" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/east, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"Nb" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"NP" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"NT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"Oc" = ( +/obj/structure/table, +/obj/item/trash/candle{ + pixel_y = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"OO" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central) +"OY" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Public Mining Storage"; + opacity = 0 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/structure/sign/warning/gas_mask/directional/south, +/obj/structure/sign/warning/cold_temp/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"Pn" = ( +/obj/machinery/door/airlock/corporate{ + name = "NT Consultant's Office" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/cent_com/rep_door, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"Qm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/light/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"Qs" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"Rc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"Rd" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Public Mining Storage"; + opacity = 0 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"Rg" = ( +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) +"Rx" = ( +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"RE" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"RH" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/captain/private/nt_rep) +"RJ" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"RS" = ( +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"ST" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"TP" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/captain/private/nt_rep) +"Uj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + name = "Wildlife Observation Shutters"; + id = "nt_rep_wild" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/captain/private/nt_rep) +"Xo" = ( +/obj/structure/sign/warning/directional/north, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) +"XT" = ( +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + name = "Supply multi deck pipe adapter" + }, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + name = "Scrubbers multi deck pipe adapter" + }, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"XU" = ( +/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/central/greater) +"Yp" = ( +/obj/structure/chair/plastic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"YD" = ( +/obj/structure/flora/rock/pile/icy/style_random, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) +"YG" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) +"YQ" = ( +/obj/structure/flora/grass/green/style_2, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/underground/explored) +"YS" = ( +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) + +(1,1,1) = {" +qr +Rg +Rg +Rg +YQ +Rg +Rg +Rg +Rg +Rg +Rg +Rg +Rg +Rg +Rg +hi +Rg +Rg +Rg +Rg +DJ +Rg +Rg +Rg +Rg +Rg +Rg +Fk +Rg +DJ +"} +(2,1,1) = {" +Rg +Rg +Rg +Rg +Rg +Rg +Rg +Rg +Rg +lu +ms +ms +ms +ms +lu +Rg +Rg +Rg +cn +YD +Rg +Rg +Rg +DJ +Rg +hi +Fk +Fk +Fk +Rg +"} +(3,1,1) = {" +Rg +Rg +Rg +Rg +qr +Uj +Uj +an +an +an +Ey +RJ +Ct +bp +lu +lu +Rg +Rg +cn +cn +Rg +Rg +hX +cn +Fk +Fk +Fk +Fk +Fk +hi +"} +(4,1,1) = {" +Rg +Rg +Rg +YQ +Uj +Uj +tw +tD +yu +an +OO +RJ +fV +mc +Md +lu +Rg +Rg +Rg +cn +cn +DJ +cn +cn +Fk +Fk +Fk +Fk +Fk +cn +"} +(5,1,1) = {" +Rg +Rg +Rg +Uj +Uj +cm +zQ +EH +zQ +Hy +mc +mc +fV +mc +lu +uK +uK +Xo +Rg +Rg +Rg +Rg +Fk +Fk +Fk +Fk +Fk +Fk +Fk +Fk +"} +(6,1,1) = {" +Rg +Rg +Rg +Uj +YS +do +RS +ak +uZ +Hy +vS +mc +yt +lu +lu +Cz +uK +Rd +uK +Xo +Rg +Rg +Rg +Rg +Fk +Fk +Fk +Fk +Fk +cn +"} +(7,1,1) = {" +Fk +Rg +Rg +an +qb +wb +RS +sV +sV +Hy +pK +mc +aB +lu +Nb +YG +uK +aU +uK +Rg +Rg +Rg +Rg +Rg +Rg +Rg +Fk +Fk +cn +cn +"} +(8,1,1) = {" +Fk +Fk +Rg +an +TP +hW +kF +kF +Cb +an +fn +mc +Rx +lu +Nb +YG +uK +OY +uK +uK +Rg +uK +uu +uu +uK +Rg +fN +DJ +fN +Fk +"} +(9,1,1) = {" +uy +Fk +Fk +an +lJ +Kq +oI +FF +sd +Pn +mE +mc +Lv +lu +aU +aU +BF +aU +BF +uK +uK +uK +aU +JF +uK +Rg +DJ +Rg +DJ +Fk +"} +(10,1,1) = {" +uy +uy +uy +an +RH +Rc +zD +JQ +MO +an +mE +mE +mE +dX +HF +Iq +HF +Iq +HF +HF +HF +uD +HF +RE +uK +uK +fN +DJ +fN +Fk +"} +(11,1,1) = {" +uy +uy +uy +an +an +an +an +an +an +an +Qm +fV +uN +lu +uK +uK +uK +aU +YG +aU +aU +uK +Iq +HF +XU +uK +Rg +Rg +Rg +Fk +"} +(12,1,1) = {" +uy +uy +uy +uy +uy +uy +uy +uy +uy +lu +lu +NP +lu +lu +rN +Qs +uK +uK +hp +hp +fC +uK +aU +fK +XT +uK +Rg +Rg +Rg +Fk +"} +(13,1,1) = {" +uy +uy +uy +uy +uy +uy +uy +uy +uy +uK +nq +nq +Jj +aU +nq +Jj +Jj +uK +uK +uK +uK +uK +uu +uu +uK +uK +Rg +Rg +Rg +Fk +"} +(14,1,1) = {" +uy +uy +uy +uy +uy +uy +uy +uy +uy +uK +uK +bK +lD +ST +he +Ag +ST +Jj +uK +Rg +Rg +Rg +Rg +Rg +Rg +Rg +Rg +Rg +Rg +Rg +"} +(15,1,1) = {" +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uK +uK +DN +lX +NT +YG +jY +uK +uK +Fk +Rg +Rg +Rg +Rg +oP +Rg +oP +Rg +Rg +Rg +"} +(16,1,1) = {" +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uK +aU +HI +Yp +Oc +cB +uK +Fk +Fk +Fk +Rg +Rg +Rg +bG +HS +bG +Rg +Rg +Rg +"} +(17,1,1) = {" +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uK +CN +Jj +Jj +uK +uK +uK +Fk +Fk +Fk +Rg +Rg +Rg +uT +kL +uT +Rg +Rg +Rg +"} +(18,1,1) = {" +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uK +uK +uK +uK +uK +Fk +Fk +Fk +Fk +Rg +Rg +Rg +Lj +Lj +hA +Lj +Lj +vZ +Rg +"} diff --git a/_maps/skyrat/automapper/templates/kilostation/kilostation_armory.dmm b/_maps/skyrat/automapper/templates/kilostation/kilostation_armory.dmm new file mode 100644 index 00000000000..b7aafbf6f05 --- /dev/null +++ b/_maps/skyrat/automapper/templates/kilostation/kilostation_armory.dmm @@ -0,0 +1,732 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/suit_storage_unit/security, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"b" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"c" = ( +/obj/structure/rack, +/obj/item/gun/energy/ionrifle{ + pixel_y = 4 + }, +/obj/item/gun/energy/temperature/security, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/item/clothing/suit/hooded/ablative, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"e" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/ammunitionlocker/useful, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"f" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/security{ + name = "Armoury" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"h" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/security{ + name = "Armoury" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"i" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"j" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/camera/motion/directional/east{ + c_tag = "Armoury Internal" + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"k" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"l" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters{ + id = "sidearmory"; + name = "Side Armoury Shutter" + }, +/obj/machinery/button/door/directional/south{ + id = "sidearmory"; + name = "Armoury Shutter Toggle"; + req_access = list("armory") + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"m" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"n" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"o" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"p" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/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/showroomfloor, +/area/station/ai_monitored/security/armory) +"q" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/microfusion, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"r" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/south, +/obj/machinery/suit_storage_unit/security, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"s" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"t" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/mob/living/simple_animal/bot/secbot/beepsky/armsky, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"u" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/clothing/head/helmet/sec{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/sec, +/obj/item/clothing/head/helmet/sec{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/suit/armor/vest/security{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/vest/security, +/obj/item/clothing/suit/armor/vest/security{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"v" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"w" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/cmg, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"y" = ( +/obj/item/storage/box/teargas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/flashbangs{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"z" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"A" = ( +/turf/closed/wall/r_wall/rust, +/area/station/ai_monitored/security/armory) +"B" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"D" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/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/showroomfloor, +/area/station/ai_monitored/security/armory) +"E" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"F" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall/rust, +/area/station/ai_monitored/security/armory) +"G" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/shotguns, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"H" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/door/window/brigdoor/right/directional/west{ + name = "Armoury Desk"; + req_access = list("armory") + }, +/turf/open/floor/plating, +/area/station/ai_monitored/security/armory) +"J" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"K" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"M" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"N" = ( +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/airalarm/directional/west, +/obj/structure/table, +/obj/item/storage/barricade{ + pixel_y = -5 + }, +/obj/item/storage/barricade, +/obj/item/storage/barricade{ + pixel_y = 5 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"O" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall/r_wall, +/area/station/ai_monitored/security/armory) +"P" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/closet/secure_closet{ + name = "contraband locker"; + req_access = list("armory") + }, +/obj/effect/spawner/random/contraband/armory, +/obj/effect/spawner/random/maintenance/three, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"R" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/north, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"S" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/security/armory) +"T" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"V" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/showroomfloor, +/area/station/ai_monitored/security/armory) +"W" = ( +/obj/item/storage/box/rubbershot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/rubbershot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/rubbershot, +/obj/item/storage/box/rubbershot, +/obj/item/storage/box/rubbershot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/box/rubbershot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/closet/secure_closet{ + name = "shotgun rubber rounds"; + req_access = list("armory") + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"X" = ( +/obj/item/grenade/barrier{ + pixel_x = 4 + }, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier{ + pixel_x = -4 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/key/security, +/obj/item/key/security, +/obj/item/gun/energy/e_gun/dragnet, +/obj/item/gun/energy/e_gun/dragnet{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Y" = ( +/obj/item/storage/box/chemimp{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/box/trackimp{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/structure/reagent_dispensers/wall/peppertank/directional/south, +/obj/item/storage/box/firingpins, +/obj/item/storage/box/firingpins, +/obj/item/storage/lockbox/loyalty, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Z" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Armoury" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/hos, +/obj/machinery/door/poddoor/shutters{ + id = "frontarmory"; + name = "Front Armoury Shutter" + }, +/obj/machinery/button/door/directional/north{ + id = "frontarmory"; + name = "Armoury Shutter Toggle"; + req_access = list("armory") + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) + +(1,1,1) = {" +S +S +S +A +Z +S +A +S +"} +(2,1,1) = {" +S +N +b +B +i +W +X +F +"} +(3,1,1) = {" +S +u +m +V +J +s +Y +A +"} +(4,1,1) = {" +f +D +p +w +e +v +a +S +"} +(5,1,1) = {" +h +z +T +q +G +v +r +S +"} +(6,1,1) = {" +S +R +K +t +k +M +P +A +"} +(7,1,1) = {" +O +o +j +E +n +c +y +S +"} +(8,1,1) = {" +S +S +O +H +l +S +S +S +"} diff --git a/_maps/skyrat/automapper/templates/kilostation/kilostation_arrivals.dmm b/_maps/skyrat/automapper/templates/kilostation/kilostation_arrivals.dmm new file mode 100644 index 00000000000..108830d7a2e --- /dev/null +++ b/_maps/skyrat/automapper/templates/kilostation/kilostation_arrivals.dmm @@ -0,0 +1,351 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/open/floor/plating/airless, +/area/space) +"e" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/shuttle/arrivals/recall{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"f" = ( +/turf/closed/wall/rust, +/area/station/hallway/secondary/entry) +"h" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"i" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/stripes/line, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"j" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"k" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"n" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"p" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"q" = ( +/turf/closed/wall, +/area/station/hallway/secondary/entry) +"r" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/bluespace_vendor/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"s" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/flora/bush/pale/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"t" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"v" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"x" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/sign/poster/contraband/random/directional/south, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"z" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"A" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"D" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"E" = ( +/obj/machinery/door/airlock/external{ + name = "Arrival Shuttle Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"F" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"G" = ( +/obj/machinery/door/airlock/external{ + name = "Arrival Shuttle Airlock"; + space_dir = 2 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"I" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall, +/area/station/hallway/secondary/entry) +"J" = ( +/obj/effect/turf_decal/tile/red, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"M" = ( +/turf/closed/mineral/random/labormineral, +/area/space/nearstation) +"O" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 1; + height = 13; + id = "arrivals_stationary"; + name = "arrivals"; + width = 5 + }, +/turf/open/floor/plating/airless, +/area/space) +"S" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"T" = ( +/obj/structure/sign/warning/secure_area{ + name = "EMERGENCY STORAGE" + }, +/turf/closed/wall, +/area/station/hallway/secondary/entry) +"V" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/clothing, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"W" = ( +/obj/machinery/door/airlock/external{ + name = "Arrival Shuttle Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"X" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) +"Y" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) + +(1,1,1) = {" +x +f +M +S +a +a +a +a +"} +(2,1,1) = {" +X +q +M +v +a +O +a +a +"} +(3,1,1) = {" +T +f +q +I +a +a +a +a +"} +(4,1,1) = {" +r +E +j +G +a +a +a +a +"} +(5,1,1) = {" +A +F +F +F +a +a +a +a +"} +(6,1,1) = {" +h +n +F +s +a +a +a +a +"} +(7,1,1) = {" +Y +V +k +v +a +a +a +a +"} +(8,1,1) = {" +J +z +F +D +a +a +a +a +"} +(9,1,1) = {" +J +e +F +v +a +a +a +a +"} +(10,1,1) = {" +p +F +F +F +a +a +a +a +"} +(11,1,1) = {" +i +W +t +G +a +a +a +a +"} +(12,1,1) = {" +f +q +f +I +a +a +a +a +"} diff --git a/_maps/skyrat/automapper/templates/kilostation/kilostation_cryo.dmm b/_maps/skyrat/automapper/templates/kilostation/kilostation_cryo.dmm new file mode 100644 index 00000000000..e0cce6b4034 --- /dev/null +++ b/_maps/skyrat/automapper/templates/kilostation/kilostation_cryo.dmm @@ -0,0 +1,211 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall, +/area/station/common/cryopods) +"c" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/screwdriver{ + pixel_y = 16 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) +"d" = ( +/obj/effect/turf_decal/bot, +/obj/structure/frame/computer{ + anchored = 1; + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) +"e" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "greylair"; + name = "Lair Privacy Shutter" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"g" = ( +/turf/open/floor/iron, +/area/station/common/cryopods) +"j" = ( +/obj/machinery/computer/cryopod{ + dir = 8; + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/common/cryopods) +"l" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/common/cryopods) +"o" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/common/cryopods) +"r" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "greylair"; + name = "Lair Privacy Shutter" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"u" = ( +/obj/effect/turf_decal/bot, +/obj/structure/frame/computer{ + anchored = 1; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) +"x" = ( +/obj/machinery/cryopod, +/obj/effect/turf_decal/siding/white, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"z" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Cryopods" + }, +/turf/open/floor/iron, +/area/station/common/cryopods) +"A" = ( +/obj/machinery/cryopod, +/obj/effect/turf_decal/siding/white, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"D" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/common/cryopods) +"F" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/iron, +/area/station/common/cryopods) +"J" = ( +/obj/machinery/cryopod{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/camera/directional/east, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"O" = ( +/obj/machinery/cryopod, +/obj/effect/turf_decal/siding/white, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"Q" = ( +/obj/structure/table, +/obj/item/storage/secure/briefcase, +/obj/item/taperecorder, +/obj/structure/sign/warning/electric_shock/directional/south, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) +"R" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "greylair"; + name = "Lair Privacy Shutter" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) +"S" = ( +/obj/machinery/cryopod{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"U" = ( +/turf/closed/wall, +/area/station/maintenance/port/greater) +"W" = ( +/obj/machinery/cryopod, +/obj/effect/turf_decal/siding/white, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"X" = ( +/obj/effect/turf_decal/bot, +/obj/structure/frame/computer{ + anchored = 1; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) + +(1,1,1) = {" +Q +a +a +a +a +a +"} +(2,1,1) = {" +d +r +W +o +F +l +"} +(3,1,1) = {" +X +e +O +g +g +z +"} +(4,1,1) = {" +u +R +A +D +S +l +"} +(5,1,1) = {" +c +r +x +j +J +l +"} +(6,1,1) = {" +U +a +a +a +a +a +"} diff --git a/_maps/skyrat/automapper/templates/kilostation/kilostation_ert_bay.dmm b/_maps/skyrat/automapper/templates/kilostation/kilostation_ert_bay.dmm new file mode 100644 index 00000000000..6ed8213b355 --- /dev/null +++ b/_maps/skyrat/automapper/templates/kilostation/kilostation_ert_bay.dmm @@ -0,0 +1,3570 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ad" = ( +/obj/structure/transit_tube/diagonal/topleft, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"aj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/table/reinforced/rglass, +/obj/item/hairbrush{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/clothing/gloves/color/latex, +/turf/open/floor/iron/dark, +/area/station/service/salon) +"an" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/official/random/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"az" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/button/door/directional/east{ + id = "Abandoned Cell"; + name = "Abandoned Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/structure/table, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/neck/stethoscope, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore) +"aB" = ( +/obj/structure/chair/sofa/bench/corner{ + dir = 8 + }, +/obj/machinery/camera/directional/east, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/primary/fore) +"bb" = ( +/obj/machinery/door/airlock/maintenance/external{ + name = "Transit Intersection" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"bj" = ( +/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, +/obj/machinery/door/airlock/public/glass{ + name = "Salon Hallway" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"bn" = ( +/turf/closed/wall, +/area/station/maintenance/port/fore) +"bH" = ( +/obj/structure/transit_tube/diagonal/crossing/topleft, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"bV" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/station/hallway/primary/fore) +"bZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/fore) +"cc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"cf" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"cE" = ( +/obj/machinery/door/airlock/public{ + name = "Massage Parlour" + }, +/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, +/area/station/service/salon) +"cW" = ( +/obj/structure/fans/tiny/forcefield{ + dir = 1 + }, +/obj/structure/sign/warning/vacuum/external/directional/east, +/obj/machinery/door/poddoor/preopen{ + name = "Dock Shutter" + }, +/turf/open/floor/plating, +/area/station/hallway/primary/fore) +"df" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"ds" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/primary/fore) +"dt" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/reagent_containers/dropper, +/obj/item/hairbrush/comb{ + pixel_y = 10 + }, +/obj/machinery/button/curtain{ + id = "barbershopcurtains"; + pixel_x = 10; + pixel_y = -26 + }, +/turf/open/floor/iron/dark, +/area/station/service/salon) +"dw" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"dG" = ( +/obj/machinery/camera/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"dV" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/middle, +/obj/structure/transit_tube, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"dY" = ( +/obj/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/green{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"dZ" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"ea" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/maintenance/fore) +"ef" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/maintenance/fore) +"eo" = ( +/obj/structure/sign/departments/security, +/turf/closed/wall, +/area/station/maintenance/fore) +"ew" = ( +/obj/structure/sign/departments/custodian, +/turf/closed/wall, +/area/station/maintenance/fore) +"eC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/structure/table/wood, +/obj/item/clipboard{ + pixel_x = 4 + }, +/obj/item/stack/spacecash/c50{ + pixel_y = 8 + }, +/obj/item/stack/spacecash/c50, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) +"eL" = ( +/obj/structure/closet{ + name = "maid locker" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/color/white, +/obj/item/clothing/accessory/maidapron{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/clothing/shoes/laceup, +/obj/structure/mirror/directional/north, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) +"eQ" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/mousetraps{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/flashlight, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) +"eZ" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/service/janitor, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) +"fb" = ( +/obj/effect/turf_decal/tile/green{ + 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/primary/fore) +"fc" = ( +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"fr" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"fA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced/spawner/north, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"fE" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/punching_bag, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/fore) +"fF" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"fR" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall, +/area/space/nearstation) +"fY" = ( +/obj/structure/transit_tube/crossing, +/obj/effect/turf_decal/sand/plating, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"gk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"gv" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"gw" = ( +/obj/effect/turf_decal/stripes/line{ + 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, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"gx" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/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{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"gy" = ( +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"gB" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "Abandoned Cell"; + name = "Abandoned Cell" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/fore) +"gH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"gJ" = ( +/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, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"gW" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"ha" = ( +/obj/structure/sign/departments/holy{ + pixel_y = 30 + }, +/turf/open/floor/iron/stairs/right{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"hd" = ( +/obj/machinery/firealarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"hj" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"hs" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"hx" = ( +/turf/closed/wall/rust, +/area/station/maintenance/port/fore) +"hz" = ( +/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, +/area/station/maintenance/port/fore) +"hF" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/station/maintenance/fore) +"hS" = ( +/obj/structure/transit_tube/diagonal/crossing/topleft, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"ic" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random/directional/west, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/port/fore) +"iv" = ( +/obj/structure/cable, +/turf/open/floor/iron/stairs/old{ + dir = 8 + }, +/area/station/maintenance/fore/lesser) +"iy" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/fore/lesser) +"iD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/hallway/primary/fore) +"iJ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/fore) +"iM" = ( +/obj/structure/fans/tiny/forcefield{ + dir = 1 + }, +/obj/machinery/door/poddoor/preopen{ + name = "Dock Shutter" + }, +/turf/open/floor/plating, +/area/station/hallway/primary/fore) +"iV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/hallway/primary/fore) +"ju" = ( +/obj/item/restraints/legcuffs/beartrap, +/obj/effect/decal/cleanable/dirt, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/fore) +"jC" = ( +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"jJ" = ( +/obj/structure/transit_tube/crossing, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"jK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"jS" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"jU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) +"jV" = ( +/turf/open/floor/plating, +/area/station/hallway/primary/fore) +"jY" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space/basic, +/area/space) +"kc" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/cafeteria, +/area/station/service/salon) +"kh" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/hallway/primary/fore) +"kl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/structure/closet/cabinet, +/obj/item/stack/sheet/glass{ + amount = 10 + }, +/obj/item/stack/rods/ten, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) +"ks" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "old sink"; + pixel_y = 28 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/station/maintenance/port/fore) +"ku" = ( +/obj/machinery/camera/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"kE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/hallway/primary/fore) +"kI" = ( +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"kN" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"kP" = ( +/obj/effect/turf_decal/stripes/line{ + 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/iron, +/area/station/hallway/primary/fore) +"lr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Fore Hallway Monastary Tube"; + name = "fore camera" + }, +/obj/structure/chair/sofa/bench, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"lw" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/structure/transit_tube/crossing, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"mi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"mU" = ( +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"nv" = ( +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"nA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/button/door/directional/south{ + id = "maidbay"; + name = "Maid Bay Toggle" + }, +/obj/structure/sign/poster/contraband/random/directional/west, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/maintenance/fore) +"nE" = ( +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"nF" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"nN" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/primary/fore) +"nW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"oa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/hallway/primary/fore) +"oi" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/extinguisher_cabinet/directional/east, +/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/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"op" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"ou" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains"; + name = "Barber Shop Drapes" + }, +/turf/open/floor/plating, +/area/station/service/salon) +"oC" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/station/maintenance/port/fore) +"pb" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/button/curtain{ + id = "barbershopcurtains1"; + pixel_x = -25; + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/service/salon) +"pf" = ( +/turf/closed/wall, +/area/station/maintenance/fore) +"pp" = ( +/obj/structure/noticeboard/directional/south, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/maintenance/fore) +"qg" = ( +/obj/structure/closet/crate, +/obj/item/hand_labeler, +/obj/item/storage/crayons, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/station/maintenance/fore) +"qj" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"qr" = ( +/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/cable, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/maintenance/fore) +"qS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/noticeboard/directional/north{ + dir = 2; + name = "Chapel Notice Board" + }, +/obj/machinery/light/directional/north, +/obj/structure/chair/sofa/bench/right, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"qU" = ( +/obj/effect/turf_decal/tile/green, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/primary/fore) +"rt" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"rv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) +"rz" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/camera/directional/north, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"rE" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"rT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"sk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/trash/chips, +/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, +/area/station/maintenance/port/fore) +"sm" = ( +/obj/effect/turf_decal/bot, +/obj/structure/frame/computer{ + anchored = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) +"su" = ( +/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/green{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"sz" = ( +/obj/effect/turf_decal/stripes/line{ + 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, +/area/station/hallway/primary/fore) +"sB" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/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/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) +"sG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/fore) +"sX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/bodybag{ + pixel_y = 5 + }, +/obj/item/shovel, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) +"tc" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/machinery/newscaster/directional/west, +/obj/effect/landmark/start/barber, +/turf/open/floor/iron/dark, +/area/station/service/salon) +"tg" = ( +/turf/closed/wall/rust, +/area/station/maintenance/fore) +"tz" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/sign/warning/secure_area/directional/east, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"tU" = ( +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"ud" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"uj" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space/basic, +/area/space/nearstation) +"uI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/station/maintenance/fore) +"uX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/obj/structure/chair/sofa/bench, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"vp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/fore/lesser) +"vq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/fore) +"vs" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/disposalpipe/segment{ + 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/plating/airless, +/area/space/nearstation) +"vz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/fancy/candle_box, +/obj/structure/rack, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"vE" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"vM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) +"vV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/fore) +"wh" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"wA" = ( +/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, +/area/station/maintenance/port/fore) +"wB" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/fore) +"wF" = ( +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"wL" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Ferry Dock" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/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/fore) +"wX" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"wY" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/cafeteria, +/area/station/service/salon) +"yd" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/primary/fore) +"yz" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/trash/popcorn, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"yM" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"yU" = ( +/obj/item/trash/candy, +/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, +/area/station/maintenance/port/fore) +"ze" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"zV" = ( +/obj/effect/turf_decal/tile/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/service/salon) +"zZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/grimy, +/area/station/hallway/primary/fore) +"Ae" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) +"Ag" = ( +/turf/closed/wall/rust, +/area/station/maintenance/fore/lesser) +"Ah" = ( +/obj/structure/chair/comfy/barber_chair, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/service/salon) +"AB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"Bf" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"Bi" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/sign/warning/electric_shock/directional/north, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) +"Bx" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/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/fore) +"BN" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/fore) +"BP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) +"BZ" = ( +/obj/structure/transit_tube/diagonal/crossing/topleft, +/turf/open/space/basic, +/area/space/nearstation) +"Ce" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"Cm" = ( +/obj/structure/flora/rock/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"Cq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/station/maintenance/port/fore) +"Cs" = ( +/obj/structure/window/reinforced/spawner, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"Da" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"Dh" = ( +/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, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"Dl" = ( +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"Dp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/east, +/obj/machinery/camera/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"DC" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Salon Hallway" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"Ef" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"Eg" = ( +/turf/closed/wall, +/area/station/hallway/primary/fore) +"Eh" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"Ek" = ( +/obj/effect/turf_decal/stripes/line{ + 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/cable, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/station/maintenance/fore) +"En" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Ferry Dock" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"Ey" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/maintenance/port/fore) +"EM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/maintenance/fore/lesser) +"EN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/bed/pod, +/obj/machinery/firealarm/directional/north, +/obj/machinery/camera/directional/west, +/turf/open/floor/iron/dark, +/area/station/service/salon) +"EO" = ( +/obj/structure/transit_tube/curved/flipped, +/turf/open/space/basic, +/area/space/nearstation) +"EP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/station/hallway/primary/fore) +"EW" = ( +/obj/structure/grille, +/obj/structure/barricade/wooden, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) +"Fg" = ( +/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/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"Fl" = ( +/obj/effect/turf_decal/stripes/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/fore) +"Fo" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains1"; + name = "Massage Parlour Drapes" + }, +/turf/open/floor/plating, +/area/station/service/salon) +"Fz" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"FQ" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"Gh" = ( +/turf/open/space/basic, +/area/space) +"Gw" = ( +/obj/structure/chair/sofa/bench/left, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"GX" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"Hl" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/razor{ + pixel_x = -6 + }, +/obj/item/reagent_containers/spray/barbers_aid{ + pixel_x = 6 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark, +/area/station/service/salon) +"HJ" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/noticeboard/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"HW" = ( +/obj/effect/turf_decal/stripes/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/fore) +"Ia" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"Ib" = ( +/turf/closed/wall, +/area/station/maintenance/fore/lesser) +"Iv" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"IT" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/item/restraints/handcuffs, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/revolver{ + pixel_y = 32 + }, +/obj/structure/grille/broken, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) +"Ja" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/fore) +"Jl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"Jn" = ( +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"Jq" = ( +/obj/effect/turf_decal/stripes/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, +/area/station/hallway/primary/fore) +"Jv" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + 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/service/salon) +"JP" = ( +/obj/machinery/camera/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"KC" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Barbershop" + }, +/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, +/area/station/service/salon) +"KE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/hallway/primary/fore) +"KG" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"KL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/station/maintenance/fore) +"Lr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stock_parts/cell/high, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) +"Lw" = ( +/obj/structure/transit_tube/diagonal/topleft, +/turf/open/space/basic, +/area/space/nearstation) +"LD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/assist, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/punch_shit{ + pixel_x = 30 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) +"LI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"LL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/station/maintenance/fore) +"Me" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/basic, +/area/space/nearstation) +"Mj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark, +/area/station/service/salon) +"Mq" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/machinery/vending/barbervend, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/cafeteria, +/area/station/service/salon) +"Mt" = ( +/turf/closed/wall/rust, +/area/station/hallway/primary/fore) +"Mu" = ( +/obj/structure/flora/rock/pile/style_2, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"Mx" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) +"MA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/rust, +/area/station/maintenance/fore) +"MG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"ML" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"MO" = ( +/obj/effect/turf_decal/stripes/line{ + 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, +/turf/open/floor/plating, +/area/station/hallway/primary/fore) +"MP" = ( +/turf/closed/wall/rust, +/area/space/nearstation) +"Nt" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"Nu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/station/maintenance/fore) +"NF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/coin/twoheaded{ + pixel_x = 8; + pixel_y = 6 + }, +/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/maintenance/port/fore) +"NP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"NU" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/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/fore) +"Op" = ( +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"Oq" = ( +/obj/docking_port/stationary{ + dheight = 3; + dir = 8; + dwidth = 8; + height = 11; + id = "ferry_home"; + name = "Port Bay 2"; + width = 20 + }, +/turf/open/floor/plating, +/area/station/hallway/primary/fore) +"Ot" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/turf/open/floor/iron/cafeteria, +/area/station/service/salon) +"Ox" = ( +/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{ + icon_state = "wood-broken6" + }, +/area/station/maintenance/port/fore) +"Oy" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"OH" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/station/maintenance/port/fore) +"OJ" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"OO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"OY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/maintenance/fore) +"Pd" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"Pi" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"Pt" = ( +/obj/structure/fans/tiny/forcefield{ + dir = 1 + }, +/obj/structure/sign/warning/vacuum/external/directional/west, +/obj/machinery/door/poddoor/preopen{ + name = "Dock Shutter" + }, +/turf/open/floor/plating, +/area/station/hallway/primary/fore) +"Pu" = ( +/turf/closed/wall/rust, +/area/station/service/salon) +"Pw" = ( +/obj/structure/transit_tube, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"PD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/fore) +"PF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/landmark/start/barber, +/turf/open/floor/iron/dark, +/area/station/service/salon) +"Qy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"Rf" = ( +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"Rj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"Ry" = ( +/obj/effect/turf_decal/stripes/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, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"RA" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"RM" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/cafeteria, +/area/station/service/salon) +"RU" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/lights/mixed{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/belt/janitor, +/obj/item/storage/bag/trash, +/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) +"Sa" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"Se" = ( +/obj/machinery/door/airlock/maintenance/external{ + name = "Transit Intersection" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"Sg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"SN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"SR" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"SV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/structure/noticeboard/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) +"Th" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"Ts" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random/directional/south, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/fore) +"Tt" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"TD" = ( +/obj/structure/transit_tube, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/iron/grimy, +/area/station/hallway/primary/fore) +"TG" = ( +/obj/effect/turf_decal/stripes/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/fore) +"TI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/port/fore) +"TM" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/structure/closet/secure_closet/barber, +/obj/effect/decal/cleanable/dirt, +/obj/item/pushbroom, +/obj/item/reagent_containers/spray/cleaner, +/obj/machinery/firealarm/directional/west, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/cafeteria, +/area/station/service/salon) +"TS" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) +"Uc" = ( +/obj/structure/transit_tube/diagonal/topleft, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"Ul" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/food/pie_smudge, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/maintenance/fore) +"Um" = ( +/obj/structure/flora/rock/pile/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"Uw" = ( +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"Uz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/port/fore) +"UZ" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/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{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"Vj" = ( +/obj/structure/sign/poster/contraband/the_griffin{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/fore) +"VB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/maintenance/fore) +"VG" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/station/hallway/primary/fore) +"VJ" = ( +/obj/machinery/computer/slot_machine, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) +"VW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/pen, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) +"Wi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/hallway/primary/fore) +"Wq" = ( +/obj/effect/turf_decal/bot, +/obj/structure/frame/computer{ + anchored = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) +"Xc" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/start/barber, +/turf/open/floor/iron/dark, +/area/station/service/salon) +"Xi" = ( +/turf/closed/wall, +/area/station/service/salon) +"Xo" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/green{ + 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/primary/fore) +"Xp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"Xr" = ( +/turf/open/floor/iron/stairs/old, +/area/station/maintenance/port/fore) +"XI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"XJ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/maintenance/fore) +"XL" = ( +/turf/closed/mineral/random/labormineral, +/area/space/nearstation) +"XP" = ( +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"Yq" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/directional/west, +/turf/open/floor/iron/cafeteria, +/area/station/service/salon) +"YS" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"Za" = ( +/obj/structure/table/reinforced/rglass, +/obj/structure/mirror/directional/south, +/obj/item/lipstick/random{ + pixel_x = -6; + pixel_y = -5 + }, +/obj/item/lipstick/random, +/obj/item/reagent_containers/spray/quantum_hair_dye{ + pixel_x = 9 + }, +/turf/open/floor/iron/dark, +/area/station/service/salon) +"Ze" = ( +/obj/structure/transit_tube/crossing, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"Zv" = ( +/obj/structure/disposalpipe/segment, +/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/fore) +"ZO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) + +(1,1,1) = {" +Gh +Gh +Gh +Gh +Gh +Gh +Gh +Gh +Gh +jY +Gh +Gh +Gh +Gh +Gh +Gh +Gh +Gh +Gh +Gh +Gh +BZ +dZ +Gh +Gh +Gh +Gh +Dl +Dl +vs +XL +hx +VJ +Tt +KG +jU +Ae +BP +vM +dw +Ey +TS +"} +(2,1,1) = {" +XL +Gh +Gh +Gh +Gh +Dl +Dl +Gh +Gh +Gh +nN +nN +nN +nN +nN +nN +Gh +Gh +Gh +Gh +Gh +Gh +ad +dZ +dZ +dZ +dZ +dZ +XP +gW +vE +SN +NF +oC +SR +op +op +op +op +kN +Nt +bn +"} +(3,1,1) = {" +XL +Dl +Gh +Gh +Dl +Dl +Dl +Dl +Gh +nN +nN +rE +wh +kh +rE +nN +nN +Gh +Gh +Gh +Gh +Gh +Gh +Lw +Dl +Dl +Dl +Dl +Dl +Dl +hj +NP +VJ +wX +sk +OH +Bf +yz +Bf +Cq +gJ +sB +"} +(4,1,1) = {" +XL +Dl +Dl +Gh +Mu +Dl +Dl +Dl +Dl +nN +Uw +Rj +jK +jK +cc +Uw +nN +Dl +Dl +Dl +Dl +Gh +Dl +Dl +hS +Dl +Dl +Dl +Dl +Dl +hj +bn +hx +kl +hz +ML +Ox +wA +wA +yU +eC +bn +"} +(5,1,1) = {" +Dl +Dl +Dl +Dl +Dl +Dl +Dl +Dl +nN +nN +jK +bV +mU +gy +Sa +jV +nN +nN +Dl +Mu +Dl +Dl +Dl +Dl +Dl +Uc +Dl +Dl +Dl +XL +hj +XL +bn +hx +sX +LD +Lr +SV +ZO +VW +bn +hx +"} +(6,1,1) = {" +Dl +Dl +Dl +Dl +Dl +Dl +Dl +Dl +Eg +rz +jK +LI +Uw +jK +ud +Uw +tU +Eg +Dl +Dl +Dl +Dl +Dl +Dl +Dl +Dl +Uc +Dl +Gh +Gh +yM +OJ +YS +bn +bn +hx +hx +bn +bn +hx +bn +ks +"} +(7,1,1) = {" +Dl +Dl +Mt +Mt +Eg +nN +nN +nN +Eg +jS +qj +Rf +Jn +jC +nE +Da +hs +Mt +Mt +nN +nN +nN +Eg +Eg +nN +Eg +Gh +bH +dZ +dZ +dZ +fR +hj +XL +XL +XL +XL +bn +TI +ic +Xr +Uz +"} +(8,1,1) = {" +Gh +Gh +Eg +ku +cf +oa +nW +MG +nW +nW +wF +rT +wF +wF +XI +nW +nW +jV +fc +fF +kI +wF +fr +EP +nW +nN +Gh +dZ +Lw +Gh +Gh +dZ +hj +XL +XL +XL +XL +hx +hx +Se +bn +vz +"} +(9,1,1) = {" +Gh +Gh +Eg +Ef +AB +Jl +Jl +Fl +Fl +Fl +sz +sz +Fl +Fl +Fl +sz +sz +Fl +Fl +Fl +Fl +Fl +Fl +Dh +MG +nN +Gh +dZ +dZ +Lw +Gh +XP +yM +OJ +OJ +OJ +OJ +Pi +fA +RA +hx +hx +"} +(10,1,1) = {" +Gh +Gh +Pt +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +HW +iD +nN +Gh +Gh +dZ +dZ +EO +Ze +Pw +Pw +Ze +Pw +Pw +fY +lw +jJ +dV +TD +"} +(11,1,1) = {" +Gh +Gh +iM +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +HW +hd +Eg +dZ +dZ +dZ +dZ +dZ +XP +tz +Dl +Dl +Dl +Dl +Cs +rt +gH +Fz +zZ +"} +(12,1,1) = {" +Gh +Gh +iM +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +HW +JP +Eg +Gh +Gh +dZ +Gh +dZ +dZ +Xi +Xi +Pu +Xi +Xi +Pu +Ib +bb +Ag +ha +"} +(13,1,1) = {" +Gh +Gh +iM +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +Wi +kE +nN +Gh +Gh +Xi +Pu +Xi +Pu +Pu +TM +Yq +kc +tc +dt +Ib +vp +Ib +qS +"} +(14,1,1) = {" +Gh +Gh +iM +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +MO +nW +nN +Gh +Gh +Pu +EN +pb +Mj +Pu +Mq +RM +Ot +Ah +Za +Ib +iv +Ag +uX +"} +(15,1,1) = {" +Gh +Gh +iM +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +gw +nW +nN +Gh +Gh +Pu +aj +PF +zV +cE +wY +Jv +Jv +Xc +Hl +Ib +EM +Ib +lr +"} +(16,1,1) = {" +Gh +Gh +iM +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +gw +HJ +Eg +nN +nN +Xi +Fo +Fo +Fo +Xi +ou +ou +KC +ou +ou +Ag +iy +Ib +Gw +"} +(17,1,1) = {" +Gh +Gh +iM +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +Oq +jV +jV +jV +jV +jV +jV +jV +jV +HW +FQ +En +gv +Oy +En +gv +GX +GX +Pd +GX +GX +Fg +nF +nF +nF +Eh +DC +Ce +"} +(18,1,1) = {" +Gh +Gh +iM +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +gw +TG +wL +gx +NU +wL +UZ +fb +Bx +Zv +Zv +Xo +su +su +su +su +dY +bj +oi +"} +(19,1,1) = {" +Gh +Gh +iM +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +gw +ze +Eg +nN +nN +Eg +Eg +Eg +OO +wF +qU +pf +pf +pf +tg +MA +bZ +pf +tg +"} +(20,1,1) = {" +Gh +Gh +cW +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +jV +gw +VG +nN +Dl +Dl +Dl +Dl +Mt +gk +wF +yd +tg +Vj +Mx +pp +pf +Ts +pf +qg +"} +(21,1,1) = {" +Gh +Gh +Eg +Iv +iV +Sg +Sg +Qy +Qy +Qy +kP +Jq +kP +kP +kP +kP +Jq +Jq +Jq +KE +Jq +Jq +Jq +Ry +wF +nN +Dl +Dl +Dl +Um +Mt +df +ds +aB +pf +IT +LL +fE +tg +iJ +pf +pf +"} +(22,1,1) = {" +Gh +Gh +Eg +dG +nW +nW +Th +an +kE +nW +Ia +Op +wF +wF +wF +wF +nv +Dp +nW +nW +kE +wF +Op +Xp +wF +nN +Dl +Dl +Dl +Dl +Eg +Mt +Eg +Eg +tg +Wq +wB +VB +EW +Ek +Ja +qr +"} +(23,1,1) = {" +Gh +Gh +Mt +nN +nN +nN +Eg +Mt +nN +nN +nN +Eg +Eg +nN +nN +nN +Eg +Eg +nN +nN +nN +Eg +Eg +nN +nN +Mt +Dl +Dl +Gh +XL +XL +XL +XL +XL +pf +sm +ea +hF +eo +XJ +OY +KL +"} +(24,1,1) = {" +Gh +Gh +Gh +Gh +Gh +Dl +Dl +Dl +Dl +Dl +Dl +Dl +Cm +Dl +Dl +Dl +Dl +Dl +Dl +Dl +Dl +Dl +Dl +Dl +Dl +Dl +Dl +Gh +Gh +XL +XL +XL +XL +XL +tg +Bi +rv +az +tg +ew +eZ +pf +"} +(25,1,1) = {" +Gh +Gh +Gh +Gh +Gh +Dl +Dl +Dl +Dl +Dl +Dl +Dl +Dl +Dl +Dl +Dl +Dl +Dl +Dl +Gh +Gh +Gh +Gh +Gh +Gh +Gh +Gh +Gh +jY +Gh +XL +XL +XL +XL +tg +BN +gB +pf +pf +RU +PD +nA +"} +(26,1,1) = {" +Gh +Gh +Gh +Gh +Dl +Dl +Dl +Um +XL +XL +Dl +Dl +Dl +Dl +Dl +Dl +Gh +Gh +Gh +Gh +Gh +Gh +Gh +Gh +Gh +Gh +Gh +Gh +Gh +Gh +Gh +XL +XL +XL +XL +pf +vq +ef +pf +eL +Nu +vV +"} +(27,1,1) = {" +Gh +Gh +Gh +Gh +Dl +Dl +XL +XL +XL +MP +mi +fR +XL +Dl +Um +XL +fR +dZ +uj +Me +Me +Me +dZ +fR +dZ +uj +Me +Me +Me +Me +dZ +fR +XL +XL +XL +tg +ju +sG +tg +eQ +Ul +uI +"} diff --git a/_maps/skyrat/automapper/templates/metastation/metastation_armory.dmm b/_maps/skyrat/automapper/templates/metastation/metastation_armory.dmm new file mode 100644 index 00000000000..68e0b8b46cd --- /dev/null +++ b/_maps/skyrat/automapper/templates/metastation/metastation_armory.dmm @@ -0,0 +1,591 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall/r_wall, +/area/station/security/brig) +"b" = ( +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/shotguns, +/obj/effect/turf_decal/delivery/red, +/turf/open/floor/iron/smooth, +/area/station/ai_monitored/security/armory) +"c" = ( +/obj/structure/closet{ + name = "Evidence Closet 2" + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"d" = ( +/obj/structure/closet{ + name = "Evidence Closet 5" + }, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"e" = ( +/obj/machinery/airalarm/directional/north, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/microfusion, +/obj/effect/turf_decal/delivery/red, +/turf/open/floor/iron/smooth, +/area/station/ai_monitored/security/armory) +"f" = ( +/obj/effect/turf_decal/trimline/red/filled/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/ai_monitored/security/armory) +"g" = ( +/obj/effect/turf_decal/bot_blue, +/obj/structure/closet/secure_closet/smartgun, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"h" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"i" = ( +/turf/closed/wall/r_wall, +/area/station/security/lockers) +"j" = ( +/obj/machinery/dish_drive/bullet{ + succrange = 2 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"l" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"m" = ( +/obj/structure/closet/secure_closet/evidence, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"n" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"o" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/darkblue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"p" = ( +/obj/structure/rack, +/obj/item/storage/barricade{ + pixel_y = -5 + }, +/obj/item/storage/barricade, +/obj/item/storage/barricade{ + pixel_y = 5 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"q" = ( +/obj/structure/rack, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"r" = ( +/obj/structure/rack, +/obj/item/grenade/barrier{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier{ + pixel_x = 3; + pixel_y = -1 + }, +/obj/item/grenade/barrier{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"s" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/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, +/area/station/security/brig) +"t" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/item/melee/hammer, +/obj/item/melee/hammer, +/obj/item/melee/hammer, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"u" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"v" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + 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/security/brig) +"w" = ( +/obj/structure/closet/ammunitionlocker/useful, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/delivery/red, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/turf/open/floor/iron/smooth, +/area/station/ai_monitored/security/armory) +"x" = ( +/obj/structure/closet{ + name = "Evidence Closet 1" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"y" = ( +/obj/effect/turf_decal/trimline/red/filled/corner, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"z" = ( +/obj/structure/closet{ + name = "Evidence Closet 4" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"A" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/ai_monitored/security/armory) +"B" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/landmark/blobstart, +/obj/machinery/camera/directional/north{ + c_tag = "Evidence Storage" + }, +/obj/item/storage/secure/safe/directional/north{ + name = "evidence safe" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"C" = ( +/obj/effect/turf_decal/delivery/red, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/cmg, +/turf/open/floor/iron/smooth, +/area/station/ai_monitored/security/armory) +"D" = ( +/obj/effect/turf_decal/trimline/darkblue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"E" = ( +/obj/structure/closet{ + name = "Evidence Closet 3" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"F" = ( +/obj/structure/rack, +/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/machinery/airalarm/directional/west, +/obj/machinery/camera/motion/directional/west{ + c_tag = "Armory - Internal" + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"G" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"H" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/door/poddoor/shutters/window{ + id = "armory"; + name = "Armory Shutters" + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"I" = ( +/obj/structure/cable, +/obj/machinery/button/door/directional/south{ + id = "armory"; + name = "Armory Shutters"; + req_access = list("armory") + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"J" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/clothing/suit/armor/riot{ + pixel_y = 2 + }, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_y = -2 + }, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/machinery/requests_console/directional/north{ + department = "Security"; + departmentType = 3; + name = "Security Requests Console" + }, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"K" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Armory" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/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/ai_monitored/security/armory) +"L" = ( +/obj/effect/turf_decal/bot, +/mob/living/simple_animal/bot/secbot/beepsky/armsky, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"M" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"N" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/security/armory) +"O" = ( +/obj/structure/rack, +/obj/machinery/light/directional/west, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_y = 2 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_y = -2 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"P" = ( +/obj/structure/filingcabinet/security{ + pixel_x = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"Q" = ( +/obj/effect/turf_decal/trimline/darkblue/filled/corner, +/obj/effect/turf_decal/trimline/darkblue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"R" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Weapon Distribution"; + req_access = list("armory") + }, +/obj/item/paper, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/left/directional/south{ + name = "Requests Window" + }, +/obj/item/pen, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"T" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"U" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"V" = ( +/obj/structure/rack, +/obj/item/gun/energy/ionrifle, +/obj/item/gun/energy/temperature/security, +/obj/item/clothing/suit/hooded/ablative, +/obj/item/gun/grenadelauncher, +/obj/item/storage/box/teargas{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/item/storage/box/flashes{ + pixel_x = 3 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"W" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"X" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Y" = ( +/obj/item/grenade/barrier{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier{ + pixel_x = 3; + pixel_y = -1 + }, +/obj/item/grenade/barrier{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/structure/rack, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) + +(1,1,1) = {" +a +E +c +x +s +N +N +A +N +"} +(2,1,1) = {" +a +B +U +W +v +A +O +u +H +"} +(3,1,1) = {" +a +m +d +z +P +N +J +u +H +"} +(4,1,1) = {" +N +N +N +N +N +N +q +I +N +"} +(5,1,1) = {" +N +b +D +r +t +F +L +h +N +"} +(6,1,1) = {" +N +w +Q +n +y +n +y +T +R +"} +(7,1,1) = {" +N +e +o +M +l +X +G +f +K +"} +(8,1,1) = {" +N +C +D +p +V +g +Y +j +A +"} +(9,1,1) = {" +i +N +A +A +N +N +N +N +N +"} diff --git a/_maps/skyrat/automapper/templates/metastation/metastation_arrivals.dmm b/_maps/skyrat/automapper/templates/metastation/metastation_arrivals.dmm new file mode 100644 index 00000000000..e955640c202 --- /dev/null +++ b/_maps/skyrat/automapper/templates/metastation/metastation_arrivals.dmm @@ -0,0 +1,3411 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/iron/stairs{ + dir = 4 + }, +/area/station/hallway/secondary/entry) +"ax" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"aG" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"aJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"aP" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"aS" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"aT" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/dropper, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/food/drinks/shaker, +/turf/open/floor/wood, +/area/station/maintenance/port/aft) +"bb" = ( +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"bd" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"be" = ( +/turf/closed/wall, +/area/station/maintenance/port) +"bv" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port) +"bA" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"bH" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port) +"bO" = ( +/turf/closed/wall, +/area/station/hallway/secondary/entry) +"cI" = ( +/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, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"dp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"dq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"dJ" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"em" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"fa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"fd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"fg" = ( +/obj/structure/chair/sofa/bench, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"fr" = ( +/obj/machinery/vending/boozeomat/all_access, +/obj/effect/decal/cleanable/cobweb, +/turf/closed/wall, +/area/station/maintenance/port/aft) +"fx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"gp" = ( +/obj/structure/sign/warning/vacuum/external/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"gw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/holopad, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"gy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"gL" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"gN" = ( +/obj/machinery/door/airlock{ + name = "Port Emergency Storage" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port) +"gO" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"gY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"gZ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"he" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"hr" = ( +/turf/closed/wall, +/area/station/maintenance/port/aft) +"hG" = ( +/obj/item/radio/intercom/directional/north, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron/cafeteria, +/area/station/hallway/secondary/entry) +"ic" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"iV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"js" = ( +/obj/structure/chair/sofa/bench/right, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"jA" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"jP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"jR" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/stairs{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"jV" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"jW" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Arrivals - Aft Arm - Bay" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ki" = ( +/obj/structure/chair, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ky" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"kC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"kP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"lx" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"lB" = ( +/obj/item/beacon, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"lE" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port) +"lT" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/obj/item/instrument/musicalmoth{ + name = "Syl Labee" + }, +/turf/open/space/basic, +/area/space/nearstation) +"mg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"mi" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"mv" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"mS" = ( +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"mT" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"ns" = ( +/obj/structure/chair/sofa/bench/left, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ny" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"nN" = ( +/obj/structure/chair/sofa/bench/left, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"nW" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"ov" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"oB" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"oN" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock"; + space_dir = 2 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"pb" = ( +/obj/structure/rack, +/obj/effect/spawner/random/food_or_drink/booze{ + spawn_loot_count = 3; + spawn_loot_double = 0; + spawn_random_offset = 1 + }, +/turf/open/floor/wood, +/area/station/maintenance/port/aft) +"pi" = ( +/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/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"pt" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Arrivals - Aft Arm - Bay" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"pz" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/station/maintenance/port) +"qc" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"qo" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/warning/vacuum/external/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"qt" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"qw" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/button/door/directional/north{ + id = "ert_bay_door"; + name = "Landing Bay Doors" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"qA" = ( +/turf/open/floor/carpet/green, +/area/station/maintenance/port/aft) +"qU" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ra" = ( +/obj/structure/closet/secure_closet/bar{ + pixel_x = -3; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/wood, +/area/station/maintenance/port/aft) +"re" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"rs" = ( +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"rO" = ( +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/hallway/secondary/entry) +"sn" = ( +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/hallway/secondary/entry) +"sP" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock"; + space_dir = 1 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"sV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"sY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/caution{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"tl" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"tu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"tx" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"ty" = ( +/obj/structure/table, +/obj/effect/spawner/random/decoration/ornament, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"tB" = ( +/obj/structure/rack, +/obj/item/storage/box, +/turf/open/floor/plating, +/area/station/maintenance/port) +"tF" = ( +/obj/structure/bed/dogbed, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/sign/poster/contraband/random/directional/west, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/station/maintenance/port/aft) +"tP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"tV" = ( +/obj/structure/cable, +/obj/structure/sign/warning/vacuum/external/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/port) +"ut" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 1; + height = 13; + id = "arrivals_stationary"; + name = "arrivals"; + roundstart_template = null; + width = 5 + }, +/turf/open/space/basic, +/area/space) +"uw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"uy" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"uF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"uI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/port) +"uZ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"vf" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"vn" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"vq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Arrivals - Aft Arm - Bay Doors" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"vD" = ( +/obj/item/kirbyplants{ + icon_state = "plant-18" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"vV" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/port) +"wf" = ( +/obj/item/kirbyplants{ + icon_state = "plant-13" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"wr" = ( +/obj/structure/sign/warning/vacuum/external/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"wV" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"wY" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"xo" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/sign/poster/official/random/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"xz" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/stairs{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"xS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"xW" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ye" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall, +/area/station/hallway/secondary/entry) +"ys" = ( +/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/item/kirbyplants/random, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"yD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"zd" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"zE" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"zF" = ( +/obj/machinery/light/directional/north, +/obj/structure/chair/sofa/bench/right, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"zH" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"zW" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/station/maintenance/port) +"Ab" = ( +/obj/machinery/door/airlock/external, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "aux-dock-external" + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"Ak" = ( +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Au" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"AA" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"AF" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"AK" = ( +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/hallway/secondary/entry) +"AM" = ( +/obj/structure/chair/sofa/bench/left, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"Bs" = ( +/obj/effect/turf_decal/delivery, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Bx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"BG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"BN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"BX" = ( +/obj/structure/cable, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"Cr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ct" = ( +/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/secondary/entry) +"CR" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"CW" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Arrivals - Aft Arm - Lounge" + }, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/hallway/secondary/entry) +"Dc" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Dj" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Dl" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/docking_port/stationary{ + dheight = 3; + dir = 2; + dwidth = 8; + height = 11; + id = "ferry_home"; + name = "Port Bay 2"; + width = 20 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Dt" = ( +/obj/structure/fans/tiny/forcefield{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "ert_bay_door" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"DG" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"DI" = ( +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/hallway/secondary/entry) +"Ee" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Em" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet/green, +/area/station/maintenance/port/aft) +"En" = ( +/obj/item/radio/intercom/directional/north, +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Et" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ex" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/secondary/entry) +"EA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"EL" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"EQ" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"EW" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"Fa" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Fc" = ( +/obj/structure/chair, +/obj/machinery/camera/directional/north{ + c_tag = "Arrivals - Fore Arm - Far" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Fh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"Fz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/port) +"FF" = ( +/turf/open/space/basic, +/area/space) +"FH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"FL" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"FX" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/secondary/entry) +"Gj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Gm" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"GS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/trash/janitor_supplies, +/turf/open/floor/plating, +/area/station/maintenance/port) +"GT" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Hg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ho" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Arrivals - Fore Arm" + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"HA" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/secondary/entry) +"HF" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port) +"HZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"IC" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"IW" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Jk" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"JI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Kk" = ( +/obj/machinery/newscaster/directional/south, +/obj/structure/table, +/obj/effect/spawner/random/decoration/ornament, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"Kl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Kv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"KG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"KO" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/stairs, +/area/station/hallway/secondary/entry) +"KT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ld" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Arrivals - Station Entrance" + }, +/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, +/area/station/hallway/secondary/entry) +"Lp" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/space/basic, +/area/space/nearstation) +"Ls" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"LH" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/secondary/entry) +"LL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/sign/warning/docking/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"LQ" = ( +/obj/machinery/computer/shuttle/arrivals/recall, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"LV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"LW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Mc" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"MK" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Arrivals" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"MU" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + dir = 4; + name = "old sink"; + pixel_x = -12 + }, +/obj/structure/mirror/directional/west, +/turf/open/floor/wood, +/area/station/maintenance/port/aft) +"MX" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"MY" = ( +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"Nf" = ( +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"Nh" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/stairs, +/area/station/hallway/secondary/entry) +"Nl" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"NI" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"NO" = ( +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"NT" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Of" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"Os" = ( +/turf/open/floor/iron/stairs{ + dir = 4 + }, +/area/station/hallway/secondary/entry) +"Oy" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"OF" = ( +/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/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"OR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port) +"OW" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"OZ" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Pq" = ( +/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/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Pz" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/decoration/ornament, +/turf/open/floor/wood, +/area/station/maintenance/port/aft) +"PD" = ( +/obj/machinery/door/airlock/external{ + name = "Auxiliary Airlock"; + space_dir = 2 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "whiteship-dock" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"PK" = ( +/obj/structure/railing/corner, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/secondary/entry) +"PW" = ( +/obj/effect/landmark/start/hangover, +/obj/structure/table, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"PY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port) +"Qs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"QB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"QO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"QR" = ( +/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, +/area/station/hallway/secondary/entry) +"Rb" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ru" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"RC" = ( +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"RD" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/station/maintenance/port) +"RG" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"RR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"Sf" = ( +/obj/machinery/status_display/evac/directional, +/turf/closed/wall, +/area/station/hallway/secondary/entry) +"Sg" = ( +/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) +"Sp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port) +"SI" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port) +"SL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/trash/janitor_supplies, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/station/maintenance/port) +"SO" = ( +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port) +"SW" = ( +/obj/machinery/door/firedoor, +/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, +/area/station/hallway/secondary/entry) +"SZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Arrivals - Aft Arm - Far" + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ta" = ( +/obj/structure/rack, +/obj/effect/spawner/random/engineering/flashlight, +/turf/open/floor/plating, +/area/station/maintenance/port) +"Ty" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space, +/area/space) +"TS" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Arrivals - Auxilliary Port" + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Uf" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"Ug" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ut" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"Vd" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Vj" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Arrivals" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Vq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Vz" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/hallway/secondary/entry) +"VJ" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Arrivals - Aft Arm" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"VQ" = ( +/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/stripes/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"We" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Wm" = ( +/obj/machinery/door/airlock/external{ + name = "Auxiliary Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "whiteship-dock" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Ws" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ww" = ( +/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{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"WV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"WW" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/sign/warning/docking/directional/south, +/turf/open/floor/iron/white/corner, +/area/station/hallway/secondary/entry) +"Ya" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Yc" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Yf" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"Yj" = ( +/obj/structure/sign/warning/vacuum/external/directional/south, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"YI" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/station/maintenance/port) +"Zf" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Zl" = ( +/obj/structure/window/reinforced/spawner, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/hallway/secondary/entry) +"Zw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Zx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ZY" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) + +(1,1,1) = {" +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +Lp +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +Lp +FF +FF +FF +FF +FF +FF +FF +FF +FF +"} +(2,1,1) = {" +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +tx +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +tx +FF +FF +FF +FF +FF +FF +FF +FF +FF +"} +(3,1,1) = {" +FF +FF +FF +FF +FF +FF +FF +FF +Ty +FF +FF +FF +FF +FF +FF +FF +tx +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +tx +FF +FF +FF +FF +FF +FF +FF +FF +FF +"} +(4,1,1) = {" +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +Lp +FF +FF +FF +tx +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +tx +FF +FF +FF +FF +FF +FF +FF +FF +FF +"} +(5,1,1) = {" +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +tx +FF +FF +bO +bO +Dt +Dt +Dt +Dt +Dt +Dt +Dt +Dt +Dt +Dt +Dt +Dt +Dt +bO +bO +FF +FF +FF +FF +FF +FF +FF +FF +"} +(6,1,1) = {" +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +tx +FF +FF +bO +Nl +sY +fa +sY +fa +sY +fa +sY +fa +sY +fa +sY +fa +sY +tP +aJ +FF +FF +FF +FF +FF +FF +FF +FF +"} +(7,1,1) = {" +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +tx +FF +FF +bO +zd +bb +bb +bb +bb +bb +lx +Zf +uy +bb +bb +bb +bb +bb +sV +aJ +FF +FF +FF +FF +Lp +FF +FF +FF +"} +(8,1,1) = {" +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +tx +FF +FF +bO +qw +bb +bb +bb +lx +bb +bb +bb +bb +bb +uy +bb +bb +bb +sV +aJ +FF +FF +FF +FF +tx +FF +FF +FF +"} +(9,1,1) = {" +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +bO +aJ +aJ +bO +IC +bb +bb +Fa +bb +bb +bb +bb +bb +bb +bb +Fa +bb +bb +vq +bO +FF +FF +FF +FF +tx +FF +FF +FF +"} +(10,1,1) = {" +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +aJ +Mc +mi +CW +zd +bb +bb +lx +bb +bb +bb +bb +bb +bb +bb +uy +bb +bb +sV +aJ +FF +FF +FF +FF +tx +FF +FF +FF +"} +(11,1,1) = {" +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +FF +bO +PW +Nf +Zl +zd +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +sV +aJ +FF +FF +FF +FF +tx +FF +FF +FF +"} +(12,1,1) = {" +FF +FF +lT +FF +FF +FF +FF +FF +FF +FF +FF +FF +aJ +js +Nf +Zl +Et +bb +bb +bb +bb +bb +bb +Fa +bb +bb +bb +bb +bb +bb +xS +bO +aJ +aJ +aJ +FF +tx +FF +FF +FF +"} +(13,1,1) = {" +FF +FF +tx +FF +FF +FF +FF +FF +FF +FF +FF +FF +aJ +fg +Nf +Zl +IW +bb +bb +mv +bb +bb +bb +bb +bb +bb +bb +zE +bb +bb +sV +Vj +NO +nW +aJ +aJ +aJ +FF +FF +FF +"} +(14,1,1) = {" +FF +FF +tx +FF +FF +FF +FF +FF +FF +FF +FF +FF +aJ +nN +QO +Zl +IW +bb +bb +Fa +bb +bb +bb +bb +bb +bb +bb +Fa +bb +bb +sV +Vj +NO +EW +PD +Ya +Wm +FF +FF +FF +"} +(15,1,1) = {" +FF +FF +tx +FF +FF +FF +FF +FF +FF +FF +FF +FF +bO +EL +ky +Zl +ZY +bb +bb +bb +mv +bb +bb +bb +bb +bb +zE +bb +bb +bb +Zx +bO +Dj +EW +PD +aG +Wm +FF +FF +FF +"} +(16,1,1) = {" +FF +FF +tx +FF +FF +Lp +tx +tx +tx +Lp +FF +FF +aJ +Nf +gw +Zl +ov +Vz +DI +bb +bb +bb +bb +bb +bb +bb +bb +bb +AK +Vz +iV +aJ +NO +ny +aJ +aJ +aJ +FF +FF +FF +"} +(17,1,1) = {" +aJ +aJ +aJ +aJ +tx +tx +FF +FF +FF +tx +tx +aJ +aJ +Nf +gy +bO +jW +NO +Ex +Vz +xz +GT +bb +Fa +bb +oB +KO +Vz +FX +NO +JI +aJ +NO +Fh +bO +FF +tx +FF +FF +FF +"} +(18,1,1) = {" +wf +Kl +ye +tx +FF +FF +FF +FF +FF +FF +FF +tx +aJ +Os +aj +bO +qt +NO +PK +HA +jR +Dl +bb +bb +bb +oB +Nh +HA +LH +NO +LL +bO +TS +bd +aJ +aJ +tx +FF +FF +FF +"} +(19,1,1) = {" +sV +zd +aJ +tx +FF +FF +FF +FF +FF +FF +FF +tx +ye +yD +We +aJ +KT +HA +sn +bb +bb +bb +bb +bb +bb +bb +bb +bb +rO +HA +Kv +aJ +xW +bd +js +aJ +tx +FF +FF +FF +"} +(20,1,1) = {" +En +qo +bO +tx +FF +FF +FF +FF +FF +FF +FF +tx +aJ +sV +HZ +aJ +Zw +bb +bb +bb +bb +mv +bb +bb +bb +zE +bb +bb +bb +bb +Gj +aJ +ty +bd +AM +aJ +tx +FF +FF +FF +"} +(21,1,1) = {" +ki +zd +uw +uw +uw +FF +FF +FF +FF +FF +aJ +aJ +aJ +wr +HZ +aJ +qU +bb +bb +Fa +bb +bb +bb +bb +bb +bb +bb +Fa +bb +bb +SZ +bO +zF +bd +Kk +bO +Lp +FF +FF +FF +"} +(22,1,1) = {" +Fc +zd +uZ +aG +oN +FF +FF +FF +FF +FF +sP +LV +vf +Ak +Qs +bO +aS +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +kC +aJ +ns +bd +js +aJ +tx +FF +FF +FF +"} +(23,1,1) = {" +sV +zd +aJ +aJ +aJ +FF +FF +FF +FF +FF +aJ +aJ +aJ +sV +Bx +bO +Vd +bb +bb +bb +bb +lx +bb +bb +bb +uy +bb +bb +bb +bb +kC +aJ +Oy +gL +AM +aJ +tx +FF +FF +FF +"} +(24,1,1) = {" +OZ +Yc +Kl +Bs +aJ +FF +FF +FF +FF +FF +aJ +AA +jP +DG +HZ +ye +qU +bb +bb +lx +bb +bb +bb +Fa +bb +bb +bb +uy +bb +bb +ic +bO +Gm +BN +aJ +aJ +tx +FF +FF +FF +"} +(25,1,1) = {" +kC +NO +zd +Oy +aJ +FF +FF +FF +FF +FF +aJ +LQ +sV +NO +Vq +bO +qU +bb +lx +bb +bb +bb +bb +bb +bb +bb +bb +bb +uy +bb +Ws +aJ +NO +BN +aJ +FF +tx +FF +FF +FF +"} +(26,1,1) = {" +kC +NO +zd +Oy +aJ +FF +FF +FF +FF +FF +aJ +lB +sV +NO +Vq +MK +qU +bb +mv +bb +bb +zE +bb +bb +bb +mv +bb +bb +zE +bb +Ws +aJ +NO +WW +bO +tx +Lp +FF +FF +FF +"} +(27,1,1) = {" +NT +NO +zd +aP +aJ +FF +FF +FF +FF +FF +aJ +Oy +sV +NO +Vq +zH +zd +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +EA +bO +Dj +BN +aJ +FF +tx +FF +FF +FF +"} +(28,1,1) = {" +Jk +bA +Cr +vn +aJ +FF +FF +FF +FF +FF +aJ +xW +dq +Rb +Vq +zH +Yc +QB +Hg +Hg +Hg +tu +tu +fd +fd +fd +fd +fd +fd +fd +LW +he +Vq +BN +aJ +FF +tx +FF +FF +FF +"} +(29,1,1) = {" +em +zd +aJ +aJ +aJ +FF +FF +FF +FF +FF +aJ +aJ +aJ +yD +Vq +bO +mS +NO +gY +NO +RC +Dc +ax +NO +NO +pt +Dc +rs +NO +gO +NO +zH +NO +RG +bO +FF +tx +FF +FF +FF +"} +(30,1,1) = {" +fx +zd +uZ +aG +oN +FF +FF +FF +FF +FF +sP +LV +vf +sV +KG +bO +Sf +Ru +AF +Ru +bO +bO +bO +Ru +Ru +bO +be +be +SO +be +be +be +be +be +be +NI +NI +FF +FF +FF +"} +(31,1,1) = {" +fx +zd +aJ +aJ +aJ +FF +FF +FF +FF +FF +aJ +aJ +aJ +sV +Vq +bO +EQ +sV +gY +zd +OW +bO +NO +NO +NO +wY +bv +OR +FH +vV +be +Ta +tV +SI +Ab +NI +NI +NI +FF +FF +"} +(32,1,1) = {" +VQ +Yc +re +aJ +tx +FF +FF +FF +ut +FF +tx +aJ +vD +DG +Vq +Yc +QB +DG +gY +uF +Ee +dp +kP +kP +kP +pi +be +SL +SI +HF +be +zW +SI +YI +hr +hr +Yf +Yf +hr +hr +"} +(33,1,1) = {" +Pq +NO +Yj +bO +bO +bO +aJ +aJ +aJ +bO +bO +bO +gp +NO +Vq +NO +NO +NO +Ug +BX +tl +xo +FL +Of +VJ +ys +be +Fz +SI +be +be +be +Ab +be +hr +fr +aT +Pz +tF +MU +"} +(34,1,1) = {" +mT +Ct +cI +QR +QR +Ww +QR +QR +SW +BG +WV +Ld +OF +Ct +Ct +mg +mg +mg +mg +Uf +be +be +be +be +be +be +be +uI +SI +tB +be +Sg +RD +vV +hr +ra +qA +qA +Em +qA +"} +(35,1,1) = {" +hG +Ho +CR +Of +gZ +MY +gZ +MX +dJ +RR +qc +jV +jA +Au +Au +Au +wV +jV +Ut +Ls +gN +Sp +SI +GS +bv +PY +PY +PY +PY +lE +bH +SI +SI +pz +hr +pb +Em +qA +qA +qA +"} diff --git a/_maps/skyrat/automapper/templates/metastation/metastation_barber.dmm b/_maps/skyrat/automapper/templates/metastation/metastation_barber.dmm new file mode 100644 index 00000000000..0cc9152dbbe --- /dev/null +++ b/_maps/skyrat/automapper/templates/metastation/metastation_barber.dmm @@ -0,0 +1,560 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall, +/area/station/command/teleporter) +"b" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"c" = ( +/turf/closed/wall, +/area/station/command/gateway) +"e" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/kirbyplants/random, +/turf/open/floor/iron, +/area/station/service/salon) +"f" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/sofa/bench/left, +/turf/open/floor/iron, +/area/station/service/salon) +"g" = ( +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/vending/barbervend, +/obj/machinery/button/curtain{ + id = "barbershopcurtains"; + pixel_x = -25; + pixel_y = 24 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"h" = ( +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains1" + }, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/service/salon) +"i" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/structure/mirror/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"j" = ( +/obj/machinery/light/warm/directional/north, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/comfy/barber_chair{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"k" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains" + }, +/turf/open/floor/plating, +/area/station/service/salon) +"m" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/start/barber, +/turf/open/floor/iron, +/area/station/service/salon) +"n" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron, +/area/station/service/salon) +"o" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/sofa/bench/left{ + 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/service/salon) +"p" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/service/salon) +"q" = ( +/obj/structure/bed/pod, +/obj/machinery/light/warm/directional/north, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/service/salon) +"r" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/hairbrush, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/lipstick/random, +/turf/open/floor/iron, +/area/station/service/salon) +"s" = ( +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/mirror/directional/east, +/obj/item/reagent_containers/spray/barbers_aid{ + pixel_x = 6 + }, +/obj/item/razor{ + pixel_x = -6 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"t" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/service/salon) +"v" = ( +/turf/closed/wall/r_wall, +/area/station/command/gateway) +"w" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron, +/area/station/service/salon) +"x" = ( +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/mirror/directional/east, +/obj/item/reagent_containers/dropper, +/obj/item/hairbrush/comb{ + pixel_y = 10 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"z" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/hairbrush, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/lipstick/random, +/obj/machinery/camera/directional/east{ + c_tag = "Salon - Massage Parlour" + }, +/turf/open/floor/iron, +/area/station/service/salon) +"A" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron, +/area/station/service/salon) +"C" = ( +/turf/closed/wall, +/area/station/service/salon) +"D" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/door/airlock/public{ + name = "Massage Parlour" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/station/service/salon) +"E" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/landmark/start/barber, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"F" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/dryer{ + dir = 4; + pixel_x = -6; + pixel_y = -6 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"G" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/button/curtain{ + id = "barbershopcurtains1"; + pixel_x = -25; + pixel_y = 24 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"H" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron, +/area/station/service/salon) +"I" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/lipstick/random, +/obj/item/reagent_containers/spray/quantum_hair_dye{ + pixel_x = 6 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"J" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/service/salon) +"K" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Barbershop" + }, +/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, +/area/station/service/salon) +"L" = ( +/obj/machinery/light/warm/directional/west, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/kirbyplants/random, +/obj/machinery/button/curtain{ + id = "barbershopcurtains"; + pixel_x = -25; + pixel_y = -24 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron, +/area/station/service/salon) +"M" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/service/salon) +"N" = ( +/turf/closed/wall/r_wall, +/area/station/command/teleporter) +"O" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/book/fish_catalog, +/obj/structure/table/wood, +/turf/open/floor/iron, +/area/station/service/salon) +"P" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/lipstick/random, +/obj/structure/table/wood, +/turf/open/floor/iron, +/area/station/service/salon) +"Q" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains" + }, +/turf/open/floor/plating, +/area/station/service/salon) +"R" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/service/salon) +"S" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock/public/glass{ + name = "Barbershop" + }, +/turf/open/floor/iron, +/area/station/service/salon) +"T" = ( +/obj/structure/bed/pod, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron, +/area/station/service/salon) +"U" = ( +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/kirbyplants/random, +/turf/open/floor/iron, +/area/station/service/salon) +"V" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/service/salon) +"W" = ( +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains1" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/service/salon) +"X" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/closet/secure_closet/barber, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron, +/area/station/service/salon) +"Y" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/comfy/barber_chair{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"Z" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Salon" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/sofa/bench/right, +/turf/open/floor/iron, +/area/station/service/salon) + +(1,1,1) = {" +N +N +a +a +a +N +"} +(2,1,1) = {" +W +G +F +i +w +C +"} +(3,1,1) = {" +C +q +m +J +T +h +"} +(4,1,1) = {" +h +z +e +R +r +C +"} +(5,1,1) = {" +C +C +C +D +C +C +"} +(6,1,1) = {" +C +g +X +R +L +Q +"} +(7,1,1) = {" +S +n +n +p +b +Q +"} +(8,1,1) = {" +C +Z +O +o +H +C +"} +(9,1,1) = {" +Q +f +P +V +R +K +"} +(10,1,1) = {" +Q +A +t +M +A +C +"} +(11,1,1) = {" +C +j +E +Y +A +Q +"} +(12,1,1) = {" +k +x +I +s +U +Q +"} +(13,1,1) = {" +v +c +c +c +c +v +"} diff --git a/_maps/skyrat/automapper/templates/metastation/metastation_cryo.dmm b/_maps/skyrat/automapper/templates/metastation/metastation_cryo.dmm new file mode 100644 index 00000000000..32db5ad6552 --- /dev/null +++ b/_maps/skyrat/automapper/templates/metastation/metastation_cryo.dmm @@ -0,0 +1,147 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall, +/area/station/commons/fitness/recreation) +"l" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) +"p" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"q" = ( +/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/public/glass{ + name = "Cryopods" + }, +/turf/open/floor/iron, +/area/station/common/cryopods) +"v" = ( +/obj/structure/cable, +/obj/machinery/computer/cryopod{ + pixel_y = 32 + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/common/cryopods) +"w" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/common/cryopods) +"A" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"B" = ( +/obj/effect/turf_decal/tile/neutral/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/dark, +/area/station/commons/fitness/recreation) +"C" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/common/cryopods) +"F" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/machinery/camera/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"L" = ( +/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/common/cryopods) +"N" = ( +/turf/closed/wall, +/area/station/common/cryopods) +"O" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"U" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) + +(1,1,1) = {" +N +C +C +C +N +a +"} +(2,1,1) = {" +N +F +p +p +C +l +"} +(3,1,1) = {" +N +v +w +L +q +B +"} +(4,1,1) = {" +N +O +A +U +C +l +"} +(5,1,1) = {" +N +C +C +C +N +a +"} diff --git a/_maps/skyrat/automapper/templates/metastation/metastation_ntrep_office.dmm b/_maps/skyrat/automapper/templates/metastation/metastation_ntrep_office.dmm new file mode 100644 index 00000000000..2e61b3e574c --- /dev/null +++ b/_maps/skyrat/automapper/templates/metastation/metastation_ntrep_office.dmm @@ -0,0 +1,459 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + name = "Privacy Shutter"; + id = "nt_rep_priv" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/captain/private/nt_rep) +"b" = ( +/obj/structure/table/wood, +/obj/item/camera_film{ + pixel_x = 6 + }, +/obj/item/camera_film{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"c" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/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/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"d" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/port) +"e" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"f" = ( +/obj/machinery/button/door/directional/west{ + id = "nt_rep_priv"; + name = "Privacy Shutters Control"; + pixel_y = 8 + }, +/obj/structure/table/wood, +/obj/item/folder/yellow{ + pixel_x = 8; + pixel_y = -1 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/folder/red{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/item/folder/blue{ + pixel_y = 6; + pixel_x = -2 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"g" = ( +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"h" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/iron, +/area/station/maintenance/port) +"i" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"j" = ( +/obj/structure/sign/poster/official/random/directional/south, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/nanotrasen_consultant, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"k" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"l" = ( +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"m" = ( +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"n" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Port Primary Hallway - Mining Shuttle" + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"o" = ( +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/port) +"p" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"q" = ( +/turf/closed/wall, +/area/command/heads_quarters/captain/private/nt_rep) +"r" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/station/maintenance/port) +"s" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"t" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"u" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"v" = ( +/obj/machinery/camera/directional/west{ + name = "command camera"; + c_tag = "NT Consultant's Office" + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"w" = ( +/obj/structure/table/wood, +/obj/item/stamp/centcom{ + pixel_x = 8 + }, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"x" = ( +/obj/machinery/light/directional/west, +/obj/machinery/modular_computer/console/preset/command{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"y" = ( +/obj/machinery/firealarm/directional/east, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"z" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen/fountain, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"A" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/directional/east, +/obj/structure/closet/secure_closet/nanotrasen_consultant/station, +/obj/item/assembly/flash/handheld, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"B" = ( +/obj/structure/filingcabinet/employment, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"C" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"D" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"E" = ( +/obj/item/kirbyplants/random, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"F" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"G" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"H" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"I" = ( +/obj/structure/table/wood, +/obj/item/taperecorder{ + pixel_y = 5; + pixel_x = 5 + }, +/obj/item/camera{ + pixel_x = -4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"J" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port) +"K" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"L" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/nanotrasen_consultant, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"M" = ( +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"N" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"O" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"P" = ( +/obj/structure/table/wood, +/obj/item/stamp/denied{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/stamp{ + pixel_y = 6; + pixel_x = -2 + }, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"Q" = ( +/obj/machinery/door/airlock/corporate{ + name = "NT Consultant's Office" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/cent_com/rep_door, +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/command/heads_quarters/captain/private/nt_rep) +"R" = ( +/turf/open/floor/plating, +/area/station/maintenance/port) +"S" = ( +/obj/machinery/newscaster/directional/north, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"T" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"U" = ( +/turf/closed/wall, +/area/station/maintenance/port) +"V" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/cent_com/rep_door, +/turf/open/floor/plating, +/area/station/maintenance/port) +"W" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"X" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"Y" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/captain/private/nt_rep) +"Z" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) + +(1,1,1) = {" +n +U +h +o +r +U +J +R +m +"} +(2,1,1) = {" +t +d +d +d +d +d +d +d +d +"} +(3,1,1) = {" +p +a +f +s +v +Z +I +x +d +"} +(4,1,1) = {" +p +a +i +k +l +l +g +j +d +"} +(5,1,1) = {" +W +Q +F +C +N +N +e +O +d +"} +(6,1,1) = {" +D +Y +Y +b +w +z +T +u +V +"} +(7,1,1) = {" +K +H +Y +S +L +P +T +E +d +"} +(8,1,1) = {" +G +X +Y +A +y +M +T +B +d +"} +(9,1,1) = {" +c +q +Y +Y +d +d +d +d +d +"} diff --git a/_maps/skyrat/automapper/templates/tramstation/tramstation_armory.dmm b/_maps/skyrat/automapper/templates/tramstation/tramstation_armory.dmm new file mode 100644 index 00000000000..2c9f5ad8ae6 --- /dev/null +++ b/_maps/skyrat/automapper/templates/tramstation/tramstation_armory.dmm @@ -0,0 +1,666 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ac" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"au" = ( +/obj/machinery/newscaster/directional/north, +/obj/machinery/modular_computer/console/preset/id, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/hos) +"aX" = ( +/obj/machinery/modular_computer/console/preset/cargochat/security{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/security/office) +"bu" = ( +/turf/open/misc/asteroid/airless, +/area/mine/explored) +"cy" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/cmg, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"cQ" = ( +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/hos) +"cR" = ( +/obj/vehicle/ridden/secway, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"fc" = ( +/obj/structure/table, +/obj/item/storage/box/teargas{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/flashbangs{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/item/gun/grenadelauncher, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"fx" = ( +/obj/structure/table/wood, +/obj/item/storage/box/seccarts{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/storage/box/deputy, +/obj/item/radio/intercom/directional/west, +/obj/machinery/button/door/directional/west{ + id = "HOSOffice"; + name = "Emergency Blast Doors"; + pixel_y = -8; + req_access = list("hos") + }, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/hos) +"gK" = ( +/obj/machinery/door/window/left/directional/south{ + name = "Armory"; + req_access = list("armory") + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"hx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/ai_monitored/security/armory) +"jD" = ( +/obj/machinery/computer/department_orders/security{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/office) +"ko" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"kS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"kT" = ( +/obj/structure/table, +/obj/item/grenade/barrier{ + pixel_x = 4 + }, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier{ + pixel_x = -4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"lp" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"nh" = ( +/turf/closed/mineral/random/stationside/asteroid/porus, +/area/mine/explored) +"sS" = ( +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"wj" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/item/storage/toolbox/drone, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"wo" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/light_switch/directional/north, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/security/processing) +"wr" = ( +/obj/machinery/door/poddoor/shutters{ + id = "armory"; + name = "Armoury Shutter" + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/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/security/armory) +"ww" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"wJ" = ( +/obj/structure/table, +/obj/item/storage/box/rubbershot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/rubbershot, +/obj/item/storage/box/rubbershot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"yt" = ( +/obj/effect/turf_decal/stripes/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, +/area/station/ai_monitored/security/armory) +"zL" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/effect/spawner/random/contraband/armory, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"BF" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"BX" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Df" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Fl" = ( +/obj/structure/table, +/obj/item/storage/box/chemimp{ + pixel_x = 6 + }, +/obj/item/storage/box/trackimp{ + pixel_x = -3 + }, +/obj/item/storage/lockbox/loyalty, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Gk" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"GO" = ( +/obj/structure/table, +/obj/structure/reagent_dispensers/wall/peppertank/directional/west, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Hv" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Security - Armory"; + network = list("ss13","Security") + }, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/shotguns, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"HT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"Kc" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/flashlight/lamp/green{ + on = 0; + pixel_x = -3; + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/hos) +"KC" = ( +/obj/machinery/button/door/directional/east{ + id = "armory"; + name = "Armory Shutters"; + req_access = list("armory") + }, +/obj/machinery/status_display/ai/directional/north, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"LV" = ( +/obj/structure/rack, +/obj/item/clothing/suit/hooded/ablative, +/obj/item/gun/energy/ionrifle, +/obj/item/gun/energy/temperature/security, +/obj/structure/reagent_dispensers/wall/peppertank/directional/north, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"LX" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun/dragnet, +/obj/item/gun/energy/e_gun/dragnet, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/item/melee/hammer, +/obj/item/melee/hammer, +/obj/item/melee/hammer, +/obj/item/melee/hammer, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Mf" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Mj" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/microfusion, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"Mp" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/obj/structure/closet/secure_closet/smartgun, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"NW" = ( +/obj/structure/table, +/obj/item/storage/box/firingpins, +/obj/item/storage/box/firingpins, +/obj/item/key/security, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"OF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"OH" = ( +/obj/effect/turf_decal/stripes/line, +/mob/living/simple_animal/bot/secbot/beepsky/armsky, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"SD" = ( +/obj/structure/rack, +/obj/item/storage/barricade{ + pixel_y = -5 + }, +/obj/item/storage/barricade, +/obj/item/storage/barricade{ + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Tw" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/firealarm/directional/south, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/security/processing) +"Tz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"TA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"TG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/left/directional/west{ + name = "Armoury Desk"; + req_access = list("armory") + }, +/obj/machinery/door/window/left/directional/east{ + name = "Armoury Desk"; + req_access = list("security") + }, +/turf/open/floor/plating, +/area/station/ai_monitored/security/armory) +"TP" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/ai_monitored/security/armory) +"UG" = ( +/obj/effect/turf_decal/stripes/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, +/area/station/ai_monitored/security/armory) +"UW" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/security/armory) +"Vr" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/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/ai_monitored/security/armory) +"VJ" = ( +/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/cable, +/turf/open/floor/iron, +/area/station/ai_monitored/security/armory) +"VK" = ( +/obj/machinery/suit_storage_unit/security, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"Xn" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"XE" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) +"YX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/security/armory) + +(1,1,1) = {" +bu +bu +bu +bu +UW +UW +UW +UW +UW +wo +Tw +"} +(2,1,1) = {" +nh +nh +nh +UW +UW +BF +GO +zL +UW +UW +UW +"} +(3,1,1) = {" +nh +nh +nh +UW +XE +Df +lp +Xn +cR +wJ +UW +"} +(4,1,1) = {" +UW +UW +UW +UW +ac +TA +ww +kS +Xn +fc +UW +"} +(5,1,1) = {" +UW +Mf +Mf +Mf +YX +OF +Mp +wj +kS +SD +hx +"} +(6,1,1) = {" +UW +Xn +Xn +Xn +ko +Mj +TP +Hv +OH +Xn +gK +"} +(7,1,1) = {" +UW +kT +Fl +NW +ko +VJ +cy +Gk +HT +Xn +hx +"} +(8,1,1) = {" +UW +UW +UW +UW +LV +UG +Vr +HT +Xn +VK +UW +"} +(9,1,1) = {" +nh +nh +nh +UW +LX +Tz +yt +Xn +Xn +sS +UW +"} +(10,1,1) = {" +cQ +cQ +cQ +UW +UW +KC +ko +BX +UW +UW +UW +"} +(11,1,1) = {" +au +fx +Kc +cQ +UW +UW +wr +TG +UW +jD +aX +"} diff --git a/_maps/skyrat/automapper/templates/tramstation/tramstation_arrivals.dmm b/_maps/skyrat/automapper/templates/tramstation/tramstation_arrivals.dmm new file mode 100644 index 00000000000..a86d9a078c1 --- /dev/null +++ b/_maps/skyrat/automapper/templates/tramstation/tramstation_arrivals.dmm @@ -0,0 +1,2643 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"af" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"az" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/tile, +/obj/effect/turf_decal/tile{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"aI" = ( +/obj/effect/landmark/start/hangover, +/obj/structure/table, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"aY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"bI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"cs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Arrivals" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"cF" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/obj/effect/turf_decal/tile, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"cO" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock"; + space_dir = 1 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"cR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/iron/stairs{ + dir = 4 + }, +/area/station/hallway/secondary/entry) +"dd" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"de" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"dk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile, +/obj/machinery/camera{ + c_tag = "Arrivals - North Docking Hall"; + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"dq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"dx" = ( +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 3" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"dy" = ( +/turf/closed/wall, +/area/station/construction/mining/aux_base) +"dS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"en" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"eq" = ( +/obj/effect/turf_decal/tile, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"eP" = ( +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"eW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"fs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/caution{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"fO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"fP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera{ + c_tag = "Arrivals - South Docking Hall"; + dir = 6 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"gs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"gS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Arrivals" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"hh" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Arrivals Dock Maintenance Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/iron/smooth, +/area/station/maintenance/port/aft) +"ho" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ie" = ( +/obj/structure/chair/sofa/bench/right, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"ip" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"iH" = ( +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/stripes/asteroid/box, +/turf/open/floor/plating/airless, +/area/mine/explored) +"jc" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"jj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/structure/sign/warning/docking/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"jD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/entry) +"jJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"jL" = ( +/obj/effect/turf_decal/tile{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/button/door/directional/north{ + id = "ert_bay_door"; + name = "Landing Bay Doors" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"kh" = ( +/obj/effect/turf_decal/tile, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"kI" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"kY" = ( +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"lZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"mj" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"mr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"mL" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"mM" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"mX" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"mY" = ( +/obj/effect/turf_decal/tile, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ni" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"nn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"nM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/entry) +"nT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Arrivals" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"op" = ( +/obj/structure/chair/sofa/bench, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"pe" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"pg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ph" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"po" = ( +/obj/effect/turf_decal/tile{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"pp" = ( +/obj/effect/turf_decal/tile, +/obj/effect/turf_decal/tile{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"pv" = ( +/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, +/area/station/hallway/secondary/entry) +"pN" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 11; + height = 22; + id = "whiteship_home"; + name = "SS13: Auxiliary Dock, Station-Port"; + width = 35 + }, +/turf/open/space/openspace, +/area/space) +"qd" = ( +/turf/open/misc/asteroid/airless, +/area/mine/explored) +"qj" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"qU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"ri" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"rN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"rY" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"sg" = ( +/obj/effect/turf_decal/tile, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"su" = ( +/obj/structure/lattice, +/turf/open/openspace/airless/planetary, +/area/space/nearstation) +"sX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"tq" = ( +/turf/open/openspace/airless/planetary, +/area/space) +"tw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"tU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"uC" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"uG" = ( +/obj/machinery/airalarm/directional/south, +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/effect/turf_decal/tile, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"vK" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"vR" = ( +/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/secondary/entry) +"wk" = ( +/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, +/area/station/hallway/secondary/entry) +"ww" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"xP" = ( +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"xR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"xY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/computer/shuttle/arrivals/recall, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"yh" = ( +/obj/effect/landmark/navigate_destination/dockarrival, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"yC" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"yF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"yU" = ( +/obj/machinery/holopad, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"yZ" = ( +/obj/machinery/light/directional/north, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"zA" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"zE" = ( +/obj/structure/chair/sofa/bench/left, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"zP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Af" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"AU" = ( +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"Bf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/effect/turf_decal/tile{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Bo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"BJ" = ( +/turf/open/space/openspace, +/area/space) +"Ca" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/entry) +"CO" = ( +/obj/structure/fans/tiny/forcefield{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "ert_bay_door" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Dk" = ( +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 4"; + space_dir = 2 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"DP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"DZ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile, +/obj/machinery/light/directional/south, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ek" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"EF" = ( +/obj/effect/turf_decal/tile{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Arrivals - Landing Bay Fore" + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Fa" = ( +/obj/structure/sign/warning/vacuum/external/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Fc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"FF" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"FR" = ( +/obj/effect/turf_decal/tile{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"FT" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"GH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Hf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"HE" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"HH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"HT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"HV" = ( +/obj/effect/turf_decal/tile, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Arrivals - Auxilliary Docking Ports" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ir" = ( +/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, +/area/station/hallway/secondary/entry) +"IB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"IL" = ( +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"IN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"JH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Kj" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Kn" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/obj/effect/turf_decal/tile, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"KB" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"KQ" = ( +/obj/effect/turf_decal/tile, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Arrivals - Auxilliary Bay Doors" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"KU" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"La" = ( +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Lc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Li" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/docking_port/stationary{ + dheight = 3; + dir = 2; + dwidth = 8; + height = 11; + id = "ferry_home"; + name = "Port Bay 2"; + width = 20 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Ll" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"LM" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"LV" = ( +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"Mn" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"MO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"MT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"NC" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Of" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Oi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/large, +/area/station/hallway/secondary/entry) +"Pe" = ( +/obj/item/kirbyplants{ + icon_state = "plant-18" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile, +/obj/machinery/camera/directional/south{ + c_tag = "Arrivals - Landing Bay Door" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Px" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"PP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"PX" = ( +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 3"; + space_dir = 2 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"PZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Qz" = ( +/turf/closed/wall, +/area/station/maintenance/port/aft) +"QC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"QE" = ( +/turf/closed/wall, +/area/station/hallway/secondary/entry) +"QP" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ry" = ( +/turf/closed/wall/r_wall, +/area/station/hallway/secondary/entry) +"RC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"RE" = ( +/obj/effect/turf_decal/tile{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/sign/warning/docking/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"RG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"RI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"RJ" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"RL" = ( +/obj/effect/turf_decal/tile{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"RP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/effect/turf_decal/tile{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Sr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"SG" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile, +/obj/machinery/light/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"SP" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Tb" = ( +/obj/item/kirbyplants{ + icon_state = "plant-18" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Tc" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ti" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Tt" = ( +/obj/effect/turf_decal/tile{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Tv" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"Tx" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"TC" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"TW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ul" = ( +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Ut" = ( +/obj/effect/turf_decal/tile, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"UM" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Arrivals - Landing Bay" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"UX" = ( +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Vx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"VN" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/directional/west{ + c_tag = "Arrivals - Landing Bay Lounge" + }, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/iron/dark/smooth_large, +/area/station/hallway/secondary/entry) +"WL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Xu" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"Zo" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 1; + height = 13; + id = "arrivals_stationary"; + name = "arrivals"; + width = 5 + }, +/turf/open/space/openspace, +/area/space) +"Zx" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/space) +"ZA" = ( +/turf/open/floor/iron/stairs{ + dir = 4 + }, +/area/station/hallway/secondary/entry) +"ZO" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Arrivals" + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) + +(1,1,1) = {" +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +AU +BJ +BJ +BJ +BJ +BJ +"} +(2,1,1) = {" +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +LV +BJ +BJ +BJ +BJ +BJ +"} +(3,1,1) = {" +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +LV +BJ +AU +BJ +BJ +BJ +"} +(4,1,1) = {" +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +LV +BJ +LV +BJ +BJ +BJ +"} +(5,1,1) = {" +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +LV +LV +LV +BJ +BJ +BJ +"} +(6,1,1) = {" +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +LV +BJ +BJ +BJ +BJ +BJ +"} +(7,1,1) = {" +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +LV +BJ +BJ +BJ +BJ +BJ +"} +(8,1,1) = {" +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +LV +BJ +BJ +BJ +BJ +BJ +"} +(9,1,1) = {" +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +LV +BJ +BJ +BJ +BJ +BJ +"} +(10,1,1) = {" +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +BJ +LV +BJ +BJ +BJ +BJ +BJ +"} +(11,1,1) = {" +BJ +BJ +BJ +BJ +BJ +tq +QE +yC +yC +QE +yC +QE +CO +CO +CO +CO +CO +CO +CO +CO +CO +CO +CO +QE +yC +QE +LV +BJ +BJ +BJ +AU +BJ +"} +(12,1,1) = {" +BJ +BJ +BJ +BJ +BJ +tq +yC +Mn +KB +VN +zP +DP +fs +JH +fs +JH +fs +JH +fs +JH +fs +JH +fs +aY +az +yC +LV +BJ +BJ +BJ +LV +BJ +"} +(13,1,1) = {" +BJ +BJ +BJ +BJ +BJ +tq +QE +aI +kY +vK +Tt +Of +La +La +La +La +dd +Af +Kj +La +La +La +La +dS +eP +yC +LV +BJ +BJ +BJ +LV +BJ +"} +(14,1,1) = {" +BJ +BJ +BJ +BJ +BJ +tq +yC +ie +kY +vK +Tt +de +La +La +dd +La +La +La +La +La +Kj +La +La +QC +Pe +yC +BJ +BJ +BJ +BJ +LV +BJ +"} +(15,1,1) = {" +BJ +BJ +BJ +BJ +BJ +tq +yC +op +kY +vK +Tt +de +La +rY +La +La +La +La +La +La +La +rY +La +QC +mr +QE +BJ +BJ +BJ +BJ +LV +BJ +"} +(16,1,1) = {" +BJ +BJ +BJ +BJ +BJ +tq +yC +zE +kY +vK +Tt +de +La +dd +La +La +La +La +La +La +La +Kj +La +QC +DZ +QE +BJ +BJ +BJ +BJ +LV +BJ +"} +(17,1,1) = {" +BJ +BJ +BJ +BJ +BJ +tq +QE +yZ +kY +vK +Tt +Ca +La +La +La +La +La +La +La +La +La +La +La +QC +Tx +yC +BJ +BJ +BJ +BJ +LV +BJ +"} +(18,1,1) = {" +BJ +BJ +BJ +BJ +BJ +tq +yC +kY +yU +vK +Tt +Ek +La +La +La +La +La +rY +La +La +La +La +La +Oi +qU +yC +BJ +BJ +BJ +BJ +LV +BJ +"} +(19,1,1) = {" +BJ +BJ +BJ +BJ +BJ +tq +yC +kY +ph +vK +Tt +Ek +La +RJ +La +La +La +La +La +La +La +kI +La +QC +qU +yC +BJ +BJ +BJ +BJ +LV +BJ +"} +(20,1,1) = {" +BJ +BJ +BJ +BJ +BJ +tq +yC +ZA +cR +QE +jL +Ek +La +rY +La +La +La +La +La +La +La +rY +La +QC +uC +QE +yC +yC +QE +LV +LV +BJ +"} +(21,1,1) = {" +BJ +BJ +BJ +BJ +BJ +tq +QE +jj +lZ +QE +RL +Ek +La +La +RJ +La +La +La +La +La +kI +La +La +QC +mY +ZO +yF +pp +yC +BJ +su +BJ +"} +(22,1,1) = {" +BJ +BJ +BJ +BJ +BJ +tq +yC +ri +Sr +QE +EF +Ek +La +La +La +La +La +La +La +La +La +La +La +QC +mY +ZO +Ul +eq +yC +BJ +su +BJ +"} +(23,1,1) = {" +BJ +BJ +BJ +yC +yC +yC +yC +Fa +tU +yC +Tt +Ek +La +La +La +Tv +La +rY +La +zA +La +La +La +QC +KQ +QE +ww +yF +yC +yC +yC +BJ +"} +(24,1,1) = {" +BJ +BJ +BJ +cO +Bo +La +Px +xP +tU +yC +Tt +Ek +La +La +La +Li +La +La +La +zA +La +La +La +QC +qU +yC +FF +xR +dx +La +Dk +pN +"} +(25,1,1) = {" +BJ +BJ +BJ +yC +yC +yC +yC +QC +RP +yC +Tt +Ek +La +La +La +La +La +La +La +La +La +La +La +QC +qU +yC +IL +kh +yC +yC +yC +BJ +"} +(26,1,1) = {" +BJ +BJ +BJ +BJ +BJ +yC +RG +af +tU +yC +Tt +Ek +La +La +La +RJ +La +La +La +kI +La +La +La +nM +tw +yC +FF +eq +yC +tq +tq +BJ +"} +(27,1,1) = {" +BJ +BJ +BJ +BJ +BJ +yC +QC +Ul +nn +QE +Tt +dq +La +rY +La +La +La +La +La +La +La +rY +La +QC +ho +QE +LM +eq +yC +tq +tq +BJ +"} +(28,1,1) = {" +BJ +BJ +BJ +BJ +BJ +yC +xY +Ul +WL +QE +FR +jD +La +La +La +La +La +La +La +La +La +La +La +QC +tw +yC +FF +HV +yC +tq +tq +BJ +"} +(29,1,1) = {" +BJ +BJ +BJ +BJ +BJ +yC +QC +Ul +ip +QE +RE +IN +La +La +La +dd +La +La +La +Kj +La +La +La +QC +pg +QE +SP +eq +yC +tq +tq +BJ +"} +(30,1,1) = {" +BJ +BJ +BJ +BJ +BJ +yC +Vx +Ti +ip +cs +en +IN +La +dd +La +La +La +rY +La +La +La +Kj +La +QC +tw +yC +FF +yF +yC +yC +yC +BJ +"} +(31,1,1) = {" +BJ +BJ +BJ +yC +yC +yC +yC +PZ +ip +ZO +Tt +de +dd +La +La +La +La +La +La +La +La +La +Kj +QC +tw +yC +Ll +sX +dx +La +PX +BJ +"} +(32,1,1) = {" +BJ +BJ +BJ +cO +Bo +La +Px +QC +ip +ZO +Tt +de +RJ +La +La +kI +La +La +La +RJ +La +La +kI +QC +tw +yC +gs +kh +yC +yC +yC +BJ +"} +(33,1,1) = {" +BJ +BJ +BJ +yC +yC +yC +yC +QC +ip +ZO +Tt +TC +RI +RI +RI +RI +RI +RI +RI +RI +RI +RI +RI +af +jc +QE +gs +eq +yC +BJ +LV +BJ +"} +(34,1,1) = {" +BJ +Zo +BJ +BJ +BJ +Zx +Tb +af +Bf +QE +po +UM +HE +HE +HE +HE +HE +HE +HE +SG +pe +Tc +HE +HE +HH +yC +gs +eq +yC +BJ +LV +BJ +"} +(35,1,1) = {" +yC +yC +yC +yC +Ry +Ry +PP +PP +HT +QE +QE +QE +yC +yC +gS +gS +gS +yC +yC +QE +QE +QE +QE +gS +nT +QE +gs +uG +QE +BJ +LV +BJ +"} +(36,1,1) = {" +RI +RI +RI +RI +RI +RC +af +Ul +gs +wk +UX +mX +Ul +Ul +Ul +Ul +Ul +Ul +Ul +mX +mL +MT +NC +Ul +TW +Ul +gs +Kn +QE +BJ +LV +BJ +"} +(37,1,1) = {" +Lc +dk +rN +eW +pv +Ir +Ul +yh +Xu +Hf +Ul +vR +Hf +ni +fO +fO +bI +fO +fP +IB +Fc +GH +sg +sg +Ut +Ut +sg +cF +QE +BJ +LV +qd +"} +(38,1,1) = {" +dy +dy +dy +KU +qj +jJ +mj +mj +QP +fO +fO +MO +mM +FT +QE +QE +QE +QE +QE +Qz +Qz +Qz +Qz +Qz +Qz +hh +Qz +Qz +QE +qd +iH +qd +"} diff --git a/_maps/skyrat/automapper/templates/tramstation/tramstation_barber.dmm b/_maps/skyrat/automapper/templates/tramstation/tramstation_barber.dmm new file mode 100644 index 00000000000..0914940b983 --- /dev/null +++ b/_maps/skyrat/automapper/templates/tramstation/tramstation_barber.dmm @@ -0,0 +1,499 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/mineral/random/stationside/asteroid/porus, +/area/mine/explored) +"c" = ( +/obj/item/storage/secure/safe/directional/south, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/closet/secure_closet/barber, +/turf/open/floor/iron, +/area/station/service/salon) +"d" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/bed/pod, +/obj/structure/window, +/turf/open/floor/iron, +/area/station/service/salon) +"e" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 9 + }, +/obj/item/kirbyplants/random, +/obj/machinery/status_display/ai/directional/north, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central) +"f" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/vending/barbervend, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"h" = ( +/obj/machinery/power/apc/auto_name/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{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"i" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"j" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/light/warm/directional/north, +/obj/item/kirbyplants/random, +/turf/open/floor/iron, +/area/station/service/salon) +"k" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/landmark/start/barber, +/turf/open/floor/iron, +/area/station/service/salon) +"l" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Barbershop" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/station/service/salon) +"m" = ( +/turf/closed/wall, +/area/station/hallway/primary/central) +"p" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/comfy/barber_chair{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/service/salon) +"q" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/holopad, +/turf/open/floor/iron, +/area/station/service/salon) +"r" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/landmark/start/barber, +/obj/machinery/button/curtain{ + id = "barbershopcurtains1"; + pixel_x = 25; + pixel_y = 24 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"s" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/table/reinforced/rglass, +/obj/structure/window, +/obj/item/hairbrush, +/obj/item/lipstick/random, +/turf/open/floor/iron, +/area/station/service/salon) +"t" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + 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 = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"u" = ( +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Salon" + }, +/turf/open/floor/iron, +/area/station/service/salon) +"v" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/structure/window, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"w" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"x" = ( +/turf/closed/wall, +/area/station/security/courtroom) +"y" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"z" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"A" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/table/reinforced/rglass, +/obj/item/hairbrush, +/turf/open/floor/iron, +/area/station/service/salon) +"B" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/comfy/barber_chair{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"C" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"D" = ( +/obj/structure/mirror/directional/west, +/obj/structure/table/reinforced/rglass, +/obj/item/razor{ + pixel_x = -6 + }, +/obj/item/reagent_containers/spray/barbers_aid{ + pixel_x = 6 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"F" = ( +/obj/machinery/light_switch/directional/west, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/dryer{ + dir = 4; + pixel_x = -6; + pixel_y = -6 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"G" = ( +/obj/structure/mirror/directional/west, +/obj/structure/table/reinforced/rglass, +/obj/item/hairbrush/comb{ + pixel_y = 10 + }, +/obj/item/reagent_containers/dropper, +/obj/machinery/dryer{ + pixel_y = 14 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"H" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron, +/area/station/service/salon) +"I" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron, +/area/station/service/salon) +"J" = ( +/obj/item/radio/intercom/directional/west, +/obj/structure/table/reinforced/rglass, +/obj/item/reagent_containers/spray/quantum_hair_dye{ + pixel_x = 6 + }, +/obj/item/lipstick/random, +/turf/open/floor/iron, +/area/station/service/salon) +"K" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron, +/area/station/service/salon) +"O" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"P" = ( +/obj/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/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains" + }, +/turf/open/floor/plating, +/area/station/service/salon) +"S" = ( +/turf/closed/wall, +/area/station/service/salon) +"T" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"V" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"W" = ( +/obj/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/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/button/curtain{ + id = "barbershopcurtains"; + pixel_x = 25; + pixel_y = -24 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/service/salon) +"X" = ( +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/bed/pod, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/service/salon) +"Y" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "barbershopcurtains" + }, +/turf/open/floor/plating, +/area/station/service/salon) +"Z" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron, +/area/station/service/salon) + +(1,1,1) = {" +S +S +S +S +S +S +S +x +"} +(2,1,1) = {" +S +G +J +D +w +K +F +x +"} +(3,1,1) = {" +S +B +k +p +K +T +z +x +"} +(4,1,1) = {" +S +j +Z +I +H +y +f +x +"} +(5,1,1) = {" +S +u +K +v +T +i +c +x +"} +(6,1,1) = {" +S +X +q +d +T +V +h +x +"} +(7,1,1) = {" +S +A +r +s +K +T +W +x +"} +(8,1,1) = {" +S +S +S +S +Y +l +P +x +"} +(9,1,1) = {" +a +a +a +m +e +C +t +O +"} diff --git a/_maps/skyrat/automapper/templates/tramstation/tramstation_cryo.dmm b/_maps/skyrat/automapper/templates/tramstation/tramstation_cryo.dmm new file mode 100644 index 00000000000..f63ab42228d --- /dev/null +++ b/_maps/skyrat/automapper/templates/tramstation/tramstation_cryo.dmm @@ -0,0 +1,483 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall, +/area/station/commons/dorms/laundry) +"b" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/commons/dorms/laundry) +"c" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"d" = ( +/obj/structure/disposalpipe/segment{ + 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, +/area/station/commons/fitness/recreation) +"e" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"f" = ( +/obj/structure/flora/bush/flowers_yw/style_random, +/turf/open/floor/grass, +/area/station/common/cryopods) +"g" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"j" = ( +/obj/structure/window/spawner, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/turf/open/floor/grass, +/area/station/common/cryopods) +"k" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"l" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/common/cryopods) +"m" = ( +/obj/structure/chair/stool/bar/directional/east, +/obj/effect/turf_decal/trimline/neutral/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/machinery/bluespace_vendor/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"n" = ( +/turf/closed/wall, +/area/station/security/checkpoint) +"o" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"q" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/closet/wardrobe/black, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"r" = ( +/obj/effect/spawner/random/entertainment/arcade{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"s" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"t" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/closet/wardrobe/grey, +/obj/machinery/light/directional/east, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"u" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/rack, +/obj/effect/spawner/random/clothing/costume, +/obj/item/clothing/mask/balaclava, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"v" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"w" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + 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, +/area/station/commons/fitness/recreation) +"x" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/item/radio/intercom/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, +/area/station/commons/fitness/recreation) +"y" = ( +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/flora/bush/grassy/style_random, +/turf/open/floor/grass, +/area/station/common/cryopods) +"A" = ( +/obj/structure/chair/stool/bar/directional/west, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"B" = ( +/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/common/cryopods) +"D" = ( +/turf/closed/wall, +/area/station/common/cryopods) +"E" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/closet/wardrobe/white, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"F" = ( +/obj/structure/disposalpipe/segment{ + 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/commons/fitness/recreation) +"H" = ( +/obj/effect/turf_decal/trimline/neutral/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, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"I" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/common/cryopods) +"J" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/washing_machine, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"L" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/camera/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"M" = ( +/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" + }, +/turf/open/floor/iron, +/area/station/common/cryopods) +"N" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/computer/cryopod{ + dir = 4; + pixel_x = -32 + }, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"O" = ( +/obj/structure/window/spawner, +/obj/structure/flora/bush/flowers_yw/style_random, +/turf/open/floor/grass, +/area/station/common/cryopods) +"P" = ( +/obj/effect/spawner/random/entertainment/arcade{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron, +/area/station/commons/fitness/recreation) +"Q" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"S" = ( +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/item/toy/plush/lizard_plushie{ + desc = "A cute little lizard plushie. It has some soot on it."; + name = "Tends-The-Garden" + }, +/turf/open/floor/grass, +/area/station/common/cryopods) +"U" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/cryopod{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"V" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/camera/directional/north{ + c_tag = "Civilian - Laundry Room" + }, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"X" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only, +/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) +"Y" = ( +/obj/structure/window/spawner, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/flora/bush/grassy/style_random, +/turf/open/floor/grass, +/area/station/common/cryopods) +"Z" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/washing_machine, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) + +(1,1,1) = {" +n +D +D +D +D +D +D +P +"} +(2,1,1) = {" +n +y +O +s +N +L +I +A +"} +(3,1,1) = {" +n +f +Y +l +l +B +M +w +"} +(4,1,1) = {" +n +S +j +g +U +c +I +d +"} +(5,1,1) = {" +n +a +a +b +b +a +a +x +"} +(6,1,1) = {" +n +e +J +Z +Z +Z +Q +F +"} +(7,1,1) = {" +n +V +k +v +v +o +X +H +"} +(8,1,1) = {" +n +a +q +t +E +u +a +m +"} +(9,1,1) = {" +n +a +a +a +a +a +a +r +"} diff --git a/_maps/skyrat/automapper/templates/tramstation/tramstation_ntrep_office.dmm b/_maps/skyrat/automapper/templates/tramstation/tramstation_ntrep_office.dmm new file mode 100644 index 00000000000..e2711fcb3bf --- /dev/null +++ b/_maps/skyrat/automapper/templates/tramstation/tramstation_ntrep_office.dmm @@ -0,0 +1,664 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"bN" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"bZ" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"cL" = ( +/obj/structure/table/wood, +/obj/item/folder/yellow{ + pixel_x = 8; + pixel_y = -1 + }, +/obj/item/folder/red{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/folder/blue{ + pixel_y = 6; + pixel_x = -2 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"cU" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen/fountain, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"dP" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Primary Tool Storage" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"eh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"es" = ( +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"eM" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"fN" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"gG" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"gL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"gO" = ( +/obj/structure/filingcabinet/employment, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"hP" = ( +/obj/structure/closet/secure_closet/nanotrasen_consultant/station, +/obj/item/assembly/flash/handheld, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"iq" = ( +/obj/machinery/button/door/directional/west{ + id = "nt_rep_priv"; + name = "Privacy Shutters Control"; + pixel_y = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/camera/directional/west{ + name = "command camera"; + c_tag = "NT Consultant's Office" + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"jA" = ( +/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, +/area/command/heads_quarters/captain/private/nt_rep) +"kp" = ( +/obj/structure/table/wood, +/obj/item/stamp/centcom{ + pixel_x = 8 + }, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"ln" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/camera{ + c_tag = "Hallway - Top Right Service"; + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central) +"ms" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"mt" = ( +/obj/structure/disposalpipe/segment, +/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) +"na" = ( +/turf/closed/mineral/random/stationside/asteroid/porus, +/area/mine/explored) +"nn" = ( +/obj/machinery/door/airlock/corporate{ + name = "NT Consultant's Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/cent_com/rep_door, +/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, +/area/command/heads_quarters/captain/private/nt_rep) +"ob" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"oj" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/commons/storage/primary) +"pF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"qF" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/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) +"sq" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"wp" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/t_scanner, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"wI" = ( +/obj/machinery/door/poddoor/preopen{ + name = "Privacy Shutter"; + id = "nt_rep_priv" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/command/heads_quarters/captain/private/nt_rep) +"wP" = ( +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"wT" = ( +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"xU" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"zT" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 5 + }, +/obj/item/kirbyplants/random, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central) +"Bg" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"Dc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"Dd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction/flip, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"DC" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"EP" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/captain/private/nt_rep) +"FI" = ( +/obj/machinery/vending/modularpc, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"FN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/status_display/ai/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"Gq" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"GD" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 9 + }, +/obj/machinery/light_switch/directional/west, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"Iu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"Jx" = ( +/obj/machinery/airalarm/directional/east, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"Mc" = ( +/turf/closed/wall/r_wall, +/area/station/commons/storage/primary) +"MM" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"Ng" = ( +/obj/structure/table/wood, +/obj/item/taperecorder{ + pixel_y = 5; + pixel_x = 5 + }, +/obj/item/camera_film{ + pixel_x = 6 + }, +/obj/item/camera_film{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/camera{ + pixel_x = -4 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"Nk" = ( +/turf/closed/wall, +/area/station/hallway/primary/central) +"Ok" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"Oy" = ( +/turf/closed/wall, +/area/station/commons/storage/primary) +"QM" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/screwdriver{ + pixel_y = 16 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/obj/item/storage/belt/utility, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"Rl" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/nanotrasen_consultant, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"RW" = ( +/obj/effect/turf_decal/trimline/neutral/filled/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, +/area/station/hallway/primary/central) +"Sa" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"Tj" = ( +/obj/machinery/modular_computer/console/preset/command, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"UM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/nanotrasen_consultant, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"UX" = ( +/obj/structure/table/wood, +/obj/item/stamp/denied{ + pixel_x = -6 + }, +/obj/item/stamp{ + pixel_x = 6 + }, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) +"VH" = ( +/obj/machinery/vending/tool, +/obj/machinery/airalarm/directional/east, +/obj/machinery/camera{ + c_tag = "Civilian - Primary Tool Storage"; + dir = 6 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"We" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"Ww" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"WY" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"Xt" = ( +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"XM" = ( +/obj/structure/cable, +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"Zr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/storage/primary) +"ZC" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private/nt_rep) +"ZS" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/nanotrasen_consultant, +/turf/open/floor/carpet/executive, +/area/command/heads_quarters/captain/private/nt_rep) + +(1,1,1) = {" +na +na +Nk +ln +qF +mt +eh +gL +Dd +eh +eh +"} +(2,1,1) = {" +na +na +Nk +zT +RW +MM +ob +ob +Bg +ob +ob +"} +(3,1,1) = {" +EP +EP +EP +wI +nn +Mc +Oy +oj +dP +oj +Oy +"} +(4,1,1) = {" +EP +cL +iq +wT +jA +Mc +GD +gG +bZ +ms +QM +"} +(5,1,1) = {" +EP +Tj +Rl +Iu +FN +Mc +eM +Xt +Xt +Xt +xU +"} +(6,1,1) = {" +EP +bN +wP +XM +pF +Mc +DC +Zr +Zr +Zr +WY +"} +(7,1,1) = {" +EP +UM +UM +fN +sq +Mc +We +Ww +Xt +Xt +Xt +"} +(8,1,1) = {" +EP +cU +kp +UX +ZC +Mc +Sa +Gq +wp +FI +VH +"} +(9,1,1) = {" +EP +Ng +ZS +Jx +Dc +Mc +Oy +Oy +Oy +Oy +Oy +"} +(10,1,1) = {" +EP +Ok +es +EP +EP +EP +na +na +na +na +na +"} +(11,1,1) = {" +EP +hP +gO +EP +na +na +na +na +na +na +na +"} +(12,1,1) = {" +EP +EP +EP +EP +na +na +na +na +na +na +na +"} diff --git a/_maps/tramstation.json b/_maps/tramstation.json index d63f3d42497..1702812708b 100644 --- a/_maps/tramstation.json +++ b/_maps/tramstation.json @@ -2,7 +2,7 @@ "version": 1, "map_name": "Tramstation", "map_path": "map_files/tramstation", - "map_file": "tramstation_skyrat.dmm", + "map_file": "tramstation.dmm", "shuttles": { "cargo": "cargo_skyrat", "ferry": "ferry_fancy", diff --git a/code/__DEFINES/subsystems.dm b/code/__DEFINES/subsystems.dm index 1e832ac8655..9bc2f62517e 100644 --- a/code/__DEFINES/subsystems.dm +++ b/code/__DEFINES/subsystems.dm @@ -132,6 +132,7 @@ #define INIT_ORDER_AI_CONTROLLERS 55 //So the controller can get the ref #define INIT_ORDER_TICKER 55 #define INIT_ORDER_TCG 55 +#define INIT_ORDER_AUTOMAPPER 51 // SKYRAT EDIT ADDITION - We need to load just before mapping. #define INIT_ORDER_MAPPING 50 #define INIT_ORDER_EARLY_ASSETS 48 #define INIT_ORDER_RESEARCH 47 diff --git a/code/controllers/subsystem/mapping.dm b/code/controllers/subsystem/mapping.dm index 7479845c2e9..2066e2d4c04 100644 --- a/code/controllers/subsystem/mapping.dm +++ b/code/controllers/subsystem/mapping.dm @@ -302,11 +302,15 @@ Used by the AI doomsday and the self-destruct nuke. add_new_zlevel("[name][i ? " [i + 1]" : ""]", level) ++i + SSautomapper.preload_templates_from_toml(files) // SKYRAT EDIT ADDITION - We need to load our templates AFTER the Z level exists, otherwise, there is no z level to preload. + // load the maps for (var/P in parsed_maps) var/datum/parsed_map/pm = P - if (!pm.load(1, 1, start_z + parsed_maps[P], no_changeturf = TRUE)) + if (!pm.load(1, 1, start_z + parsed_maps[P], no_changeturf = TRUE, blacklisted_turfs = SSautomapper.get_turf_blacklists(files))) // SKYRAT EDIT CHANGE - We use blacklisted turfs to carve out places for our templates. errorList |= pm.original_path + else + SSautomapper.load_templates_from_cache(files) // SKYRAT EDIT ADDITION - We need to load our templates from cache after our space has been carved out. if(!silent) add_startup_message("Loaded [name] in [(REALTIMEOFDAY - start_time)/10]s!") //SKYRAT EDIT CHANGE return parsed_maps diff --git a/code/game/objects/structures/crates_lockers/closets/secure/cargo.dm b/code/game/objects/structures/crates_lockers/closets/secure/cargo.dm index ac9d0f7d855..515175b8391 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/cargo.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/cargo.dm @@ -30,4 +30,3 @@ new /obj/item/gun/ballistic/rifle/boltaction/brand_new/quartermaster(src) // SKYRAT EDIT - The QM's 'special' head item. It spawns loaded, but you have to find more ammo if you run out and get ready to manually load rounds in! new /obj/item/cargo_teleporter(src) // SKYRAT EDIT - Adds a cargo teleporter to QM locker, so they can intice others to research it new /obj/item/clothing/glasses/hud/gun_permit/sunglasses(src) //SKYRAT EDIT - GUN CARGO - new /obj/item/summon_beacon/markus(src) // SKYRAT EDIT ADDITION diff --git a/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm b/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm index ef0c857648d..1fdd070e03f 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm @@ -22,7 +22,6 @@ new /obj/item/storage/box/gas_miner_beacons(src) // SKYRAT EDIT ADDITION new /obj/item/construction/plumbing/engineering(src) //SKYRAT EDIT ADDITION new /obj/item/circuitboard/machine/rodstopper(src) //SKYRAT EDIT ADDITION - new /obj/item/summon_beacon/poppy(src) //SKYRAT EDIT ADDITION /obj/structure/closet/secure_closet/engineering_electrical name = "electrical supplies locker" diff --git a/code/game/objects/structures/crates_lockers/closets/secure/scientist.dm b/code/game/objects/structures/crates_lockers/closets/secure/scientist.dm index c040f48183f..afd09bcefc1 100755 --- a/code/game/objects/structures/crates_lockers/closets/secure/scientist.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/scientist.dm @@ -20,7 +20,6 @@ new /obj/item/circuitboard/machine/techfab/department/science(src) new /obj/item/storage/photo_album/rd(src) new /obj/item/storage/box/skillchips/science(src) - new /obj/item/summon_beacon/borgi(src) // SKYRAT EDIT ADDITION diff --git a/code/game/objects/structures/crates_lockers/closets/secure/security.dm b/code/game/objects/structures/crates_lockers/closets/secure/security.dm index 0d4eda19c3c..89f30c9c73e 100755 --- a/code/game/objects/structures/crates_lockers/closets/secure/security.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/security.dm @@ -20,7 +20,6 @@ new /obj/item/storage/box/gunset/pdh_captain(src) // SKYRAT EDIT ADDITION new /obj/item/door_remote/captain(src) new /obj/item/storage/photo_album/captain(src) - new /obj/item/summon_beacon/command_drobe(src) // SKYRAT EDIT ADDITION /obj/structure/closet/secure_closet/hop name = "\proper head of personnel's locker" @@ -45,7 +44,6 @@ new /obj/item/circuitboard/machine/techfab/department/service(src) new /obj/item/storage/photo_album/hop(src) new /obj/item/storage/lockbox/medal/hop(src) - new /obj/item/summon_beacon/bumbles(src) // SKYRAT EDIT ADDITION /obj/structure/closet/secure_closet/hos name = "\proper head of security's locker" diff --git a/code/modules/mapping/reader.dm b/code/modules/mapping/reader.dm index 69a53fae535..772ef5d61e5 100644 --- a/code/modules/mapping/reader.dm +++ b/code/modules/mapping/reader.dm @@ -133,7 +133,8 @@ parsed_bounds = bounds /// Load the parsed map into the world. See [/proc/load_map] for arguments. -/datum/parsed_map/proc/load(x_offset, y_offset, z_offset, cropMap, no_changeturf, x_lower, x_upper, y_lower, y_upper, placeOnTop) +/datum/parsed_map/proc/load(x_offset, y_offset, z_offset, cropMap, no_changeturf, x_lower, x_upper, y_lower, y_upper, placeOnTop, list/blacklisted_turfs) // SKYRAT EDIT CHANGE - Added blacklisted_turfs + turf_blacklist = blacklisted_turfs // SKYRAT EDIT ADDITION //How I wish for RAII Master.StartLoadingMap() . = _load_impl(x_offset, y_offset, z_offset, cropMap, no_changeturf, x_lower, x_upper, y_lower, y_upper, placeOnTop) @@ -184,7 +185,6 @@ else world.maxx = xcrd has_expanded_world_maxx = TRUE - if(xcrd >= 1) var/model_key = copytext(line, tpos, tpos + key_len) var/no_afterchange = no_changeturf || zexpansion diff --git a/code/modules/unit_tests/_unit_tests.dm b/code/modules/unit_tests/_unit_tests.dm index c0b6659216c..a144302b6ff 100644 --- a/code/modules/unit_tests/_unit_tests.dm +++ b/code/modules/unit_tests/_unit_tests.dm @@ -68,6 +68,7 @@ // SKYRAT EDIT START #include "~skyrat/opposing_force.dm" +#include "~skyrat/automapper.dm" //SKYRAT EDIT END #include "achievements.dm" #include "anchored_mobs.dm" diff --git a/code/modules/unit_tests/~skyrat/automapper.dm b/code/modules/unit_tests/~skyrat/automapper.dm new file mode 100644 index 00000000000..7faf8e9c5b3 --- /dev/null +++ b/code/modules/unit_tests/~skyrat/automapper.dm @@ -0,0 +1,25 @@ +/// Checks that all automapper TOML entries actually link to a map and that the config exists. +/datum/unit_test/automapper + var/config_path = "_maps/skyrat/automapper/automapper_config.toml" + +/datum/unit_test/automapper/Run() + var/test_config = rustg_read_toml_file(config_path) + + if(!test_config) + TEST_FAIL("Automapper could not read/find TOML config [config_path]!") + return + + for(var/template in test_config["templates"]) + var/selected_template = test_config["templates"][template] + + for(var/map in selected_template["map_files"]) + var/map_file = selected_template["directory"] + selected_template["map_files"][map] + TEST_ASSERT(fexists(map_file), "[template] could not find map file [map_file]!") // Testing for map existence + + for(var/template_two in test_config["templates"]) // Testing for duplicate entries + if(template_two == template) + continue + var/selected_template_two = test_config["templates"][template_two] + + TEST_ASSERT_NOTEQUAL(selected_template["coordinates"], selected_template_two["coordinates"], "Automap template [template] had the same coords as [template_two]!") + TEST_ASSERT_NOTEQUAL(selected_template["map_files"], selected_template_two["map_files"], "Automap template [template] had the same map files as [template_two]!") diff --git a/modular_skyrat/modules/automapper/code/area_spawn_entries.dm b/modular_skyrat/modules/automapper/code/area_spawn_entries.dm new file mode 100644 index 00000000000..e38cfd3356f --- /dev/null +++ b/modular_skyrat/modules/automapper/code/area_spawn_entries.dm @@ -0,0 +1,208 @@ +#define RESTRICTED_OBJECTS_LIST list(/obj/machinery/recharge_station) +#define RESTRICTED_CARDINAL_OBJECTS_LIST list(/obj/machinery/disposal/bin, /obj/structure/table, /obj/machinery/door, /obj/structure/closet) + +SUBSYSTEM_DEF(area_spawn) + name = "Area Spawn" + flags = SS_NO_FIRE + +/datum/controller/subsystem/area_spawn/Initialize(start_timeofday) + for(var/iterating_type in subtypesof(/datum/area_spawn)) + var/datum/area_spawn/iterating_area_spawn = new iterating_type + iterating_area_spawn.try_spawn() + return ..() + +/** + * Area spawn datums + * + * Use these to spawn atoms in areas instead of placing them on a map. It will select any available open and entering turf. + */ +/datum/area_spawn + /// The target area for us to spawn the desired atom, the list is formatted, highest priority first. + var/list/target_areas + /// The atom that we want to spawn + var/desired_atom + /// The amount we want to spawn + var/amount_to_spawn = 1 + /// The max amount that the world can have + var/max_amount = 1 + /// Do we need to be adjacent to a wall? This also checks the other 3 cardinals for no density. Generally useful for objects with density and anchored. + var/wall_hug = FALSE + /// Map blacklist, this is used to determine what maps we should not spawn on. + var/list/blacklisted_stations = list("Blueshift", "Runtime Station", "MultiZ Debug") + +/** + * Attempts to find a location using an algorithm to spawn the desired atom. + */ +/datum/area_spawn/proc/try_spawn() + if(SSmapping.config.map_name in blacklisted_stations) + return + + // Turfs that are available + var/list/available_turfs = list() + // Turfs that are available and completely void of contents + var/list/available_empty_turfs = list() + + for(var/area_type in target_areas) + if(LAZYLEN(available_turfs)) + break + var/area/found_area = GLOB.areas_by_type[area_type] + if(!found_area) + continue + for(var/turf/iterating_turf in found_area) + if(iterating_turf.density) + continue + var/density_found = FALSE + for(var/atom/movable/found_movable in iterating_turf) + if(found_movable.density) + density_found = TRUE + break + if(is_type_in_list(found_movable, RESTRICTED_OBJECTS_LIST)) + density_found = TRUE + break + if(density_found) + continue + // Time to check cardinals + // The cardinals must be clear of any density, aside from wall cardinals! + var/cardinal_density_check = TRUE + // Some items want to be hugging a wall, such as lockers, and machines. It just looks better. + var/wall_check = FALSE + for(var/dir in GLOB.cardinals) + var/turf/cardinal_test_turf = get_step(iterating_turf, dir) + if(isclosedturf(cardinal_test_turf)) + wall_check = TRUE + for(var/atom/movable/found_movable in cardinal_test_turf) + if(found_movable.density) + cardinal_density_check = FALSE + if(wall_hug && !wall_check) + continue + if(!cardinal_density_check && wall_hug) + continue + // Finally we want to prioritise entirely empty turfs + var/totally_empty = TRUE + for(var/atom/movable/found_movable in iterating_turf) + if(found_movable.layer > LOW_OBJ_LAYER) + totally_empty = FALSE + break + if(totally_empty) + available_empty_turfs += iterating_turf + available_turfs += iterating_turf + + if(!LAZYLEN(available_turfs)) + CRASH("[src.type] could not find any suitable turfs on map [SSmapping.config.map_name]!") + + for(var/i in 1 to amount_to_spawn) + if(LAZYLEN(available_empty_turfs)) + var/turf/picked_turf = pick(available_empty_turfs) + available_empty_turfs -= picked_turf + new desired_atom(picked_turf) + else + var/turf/picked_turf = pick(available_turfs) + available_turfs -= picked_turf + new desired_atom(picked_turf) + +/obj/effect/turf_test + name = "PASS" + icon = 'modular_skyrat/modules/automapper/icons/area_test.dmi' + icon_state = "area_test" + color = COLOR_GREEN + anchored = TRUE + +/obj/effect/turf_test/fail + name = "FAIL" + color = COLOR_RED + +/obj/effect/turf_test/empty + name = "PASS(EMPTY)" + color = COLOR_BLUE + +// Pets +/datum/area_spawn/markus + target_areas = list(/area/station/cargo/sorting, /area/station/cargo/storage, /area/station/cargo/office, /area/station/cargo/qm) + desired_atom = /mob/living/simple_animal/pet/dog/markus + +/datum/area_spawn/bumbles + target_areas = list(/area/station/service/hydroponics, /area/station/service/hydroponics/upper) + desired_atom = /mob/living/simple_animal/pet/bumbles + +/datum/area_spawn/borgi + target_areas = list(/area/station/science/robotics, /area/station/science/robotics/mechbay, /area/station/science/robotics/lab) + desired_atom = /mob/living/simple_animal/pet/dog/corgi/borgi + +/datum/area_spawn/poppy + target_areas = list(/area/station/engineering/main, /area/station/engineering/break_room, /area/station/engineering/lobby, /area/station/engineering/supermatter/room) + desired_atom = /mob/living/simple_animal/pet/poppy + +// Structures +/datum/area_spawn/secmed_locker + target_areas = list(/area/station/security/medical, /area/station/security/lockers) + desired_atom = /obj/structure/closet/secure_closet/security_medic + +/datum/area_spawn/blueshield_locker + target_areas = list(/area/station/command/heads_quarters/captain, /area/station/command/bridge) + desired_atom = /obj/structure/closet/secure_closet/blueshield + wall_hug = TRUE + +/datum/area_spawn/command_drobe + target_areas = list(/area/station/command/meeting_room, /area/station/command/bridge) + desired_atom = /obj/machinery/vending/access/command + wall_hug = TRUE + +/datum/area_spawn/ammo_workbench + target_areas = list(/area/station/security/lockers, /area/station/security/office) + desired_atom = /obj/machinery/ammo_workbench + wall_hug = TRUE + +/datum/area_spawn/gun_vendor + target_areas = list(/area/station/security/lockers, /area/station/security/office) + desired_atom = /obj/machinery/gun_vendor + wall_hug = TRUE + +/datum/area_spawn/lustwish_dorms + target_areas = list(/area/station/commons/locker, /area/station/commons/dorms) + desired_atom = /obj/machinery/vending/dorms + wall_hug = TRUE + +/datum/area_spawn/lustwish_prison + target_areas = list(/area/station/security/prison, /area/station/security/prison/shower) + desired_atom = /obj/machinery/vending/dorms + wall_hug = TRUE + +// Job spawners +/datum/area_spawn/secmed_landmark + target_areas = list(/area/station/security/medical, /area/station/security/brig) + desired_atom = /obj/effect/landmark/start/security_medic + +/datum/area_spawn/barber_landmark + target_areas = list(/area/station/service/salon, /area/station/hallway/secondary/service) + desired_atom = /obj/effect/landmark/start/barber + +/datum/area_spawn/blueshield_landmark + target_areas = list(/area/station/command/heads_quarters/captain, /area/station/command/bridge) + desired_atom = /obj/effect/landmark/start/blueshield + +/datum/area_spawn/vanguard_landmark + target_areas = list(/area/station/command/gateway, /area/station/science/lobby, /area/station/science/breakroom) + desired_atom = /obj/effect/landmark/start/expeditionary_corps + +/datum/area_spawn/bouncer_landmark + desired_atom = /obj/effect/landmark/start/bouncer + target_areas = list(/area/station/service/bar, /area/station/service/cafeteria, /area/station/service/kitchen/diner) + +/datum/area_spawn/engineering_guard_landmark + desired_atom = /obj/effect/landmark/start/engineering_guard + target_areas = list(/area/station/security/checkpoint/engineering, /area/station/engineering/break_room, /area/station/engineering/lobby) + +/datum/area_spawn/science_guard_landmark + desired_atom = /obj/effect/landmark/start/science_guard + target_areas = list(/area/station/security/checkpoint/science, /area/station/science/lobby, /area/station/science/lab) + +/datum/area_spawn/orderly_landmark + desired_atom = /obj/effect/landmark/start/orderly + target_areas = list(/area/station/security/checkpoint/medical, /area/station/medical/medbay/lobby) + +/datum/area_spawn/customs_agent_landmark + desired_atom = /obj/effect/landmark/start/customs_agent + target_areas = list(/area/station/security/checkpoint/supply, /area/station/cargo/storage) + +#undef RESTRICTED_OBJECTS_LIST +#undef RESTRICTED_CARDINAL_OBJECTS_LIST diff --git a/modular_skyrat/modules/automapper/code/automap_template.dm b/modular_skyrat/modules/automapper/code/automap_template.dm new file mode 100644 index 00000000000..b407ee52838 --- /dev/null +++ b/modular_skyrat/modules/automapper/code/automap_template.dm @@ -0,0 +1,28 @@ +/datum/map_template/automap_template + name = "Automap Template" + /// Our load turf + var/turf/load_turf + /// The map for which we load on + var/override_map_name + +/** + * Used to calculate the area affected and set up the template for immediate and easy loading. + */ +/datum/map_template/automap_template/proc/preload(map_file, incoming_override_map_name, incoming_load_turf, template_name) + if(!map_file) + return + mappath = map_file + + if(!incoming_override_map_name) + return + override_map_name = incoming_override_map_name + + if(template_name) + name = template_name + + if(incoming_load_turf) + load_turf = incoming_load_turf + + preload_size(mappath) // We need to preload this so we can get the affected turfs to clear them up. + + diff --git a/modular_skyrat/modules/automapper/code/automapper_subsystem.dm b/modular_skyrat/modules/automapper/code/automapper_subsystem.dm new file mode 100644 index 00000000000..8b664522d7b --- /dev/null +++ b/modular_skyrat/modules/automapper/code/automapper_subsystem.dm @@ -0,0 +1,93 @@ +/** + * The AUTOMAPPER + * + * This is a subsystem designed to make modular mapping far easier. + * + * It does two things: Loads maps from an automapper config and loads area spawn datums for simpler items. + * + * The benefits? We no longer need to have _skyrat maps and can have a more unique feeling map experience as each time, it can be different. + * + * Please note, this uses some black magic to interject the templates mid world load to prevent mass runtimes down the line. + * + * LIMITED SUPPORT FOR NON-STATION LEVELS(until someone adds a better Z level handling system for this) + */ + +SUBSYSTEM_DEF(automapper) + name = "Automapper" + flags = SS_NO_FIRE + init_order = INIT_ORDER_AUTOMAPPER + /// The path to our TOML file + var/config_file = "_maps/skyrat/automapper/automapper_config.toml" + /// Our loaded TOML file + var/loaded_config + /// Our preloaded map templates + var/list/preloaded_map_templates = list() + +/datum/controller/subsystem/automapper/Initialize(start_timeofday) + loaded_config = rustg_read_toml_file(config_file) + return ..() + +/** + * This will preload our templates into a cache ready to be loaded later. + * + * IMPORTANT: This requires Z levels to exist in order to function, so make sure it is preloaded AFTER that. + */ +/datum/controller/subsystem/automapper/proc/preload_templates_from_toml(map_names) + if(!islist(map_names)) + map_names = list(map_names) + for(var/template in loaded_config["templates"]) + if(!(loaded_config["templates"][template]["required_map"] in map_names)) + continue + + var/selected_template = loaded_config["templates"][template] + + var/list/coordinates = selected_template["coordinates"] + if(LAZYLEN(coordinates) != 3) + CRASH("Invalid coordinates for automap template [template]!") + + var/desired_z = SSmapping.levels_by_trait(selected_template["trait_name"])[coordinates[3]] + + var/turf/load_turf = locate(coordinates[1], coordinates[2], desired_z) + + if(!LAZYLEN(selected_template["map_files"])) + CRASH("Could not find any valid map files for automap template [template]!") + + var/map_file = selected_template["directory"] + pick(selected_template["map_files"]) + + if(!fexists(map_file)) + CRASH("[template] could not find map file [map_file]!") + + var/datum/map_template/automap_template/map = new() + + map.preload(map_file, selected_template["required_map"], load_turf, template) + + preloaded_map_templates += map + +/** + * Assuming we have preloaded our templates, this will load them from the cache. + */ +/datum/controller/subsystem/automapper/proc/load_templates_from_cache(map_names) + if(!islist(map_names)) + map_names = list(map_names) + for(var/datum/map_template/automap_template/iterating_template as anything in preloaded_map_templates) + if(!(iterating_template.override_map_name in map_names)) + continue + if(iterating_template.load(iterating_template.load_turf, FALSE)) + add_startup_message("AUTOMAPPER: Successfully loaded map template [iterating_template.name] at [iterating_template.load_turf.x], [iterating_template.load_turf.y], [iterating_template.load_turf.z]!") + log_world("AUTOMAPPER: Successfully loaded map template [iterating_template.name] at [iterating_template.load_turf.x], [iterating_template.load_turf.y], [iterating_template.load_turf.z]!") + +/** + * This returns a list of turfs that have been preloaded and preselected using our templates. + * + * Not really useful outside of load groups. + */ +/datum/controller/subsystem/automapper/proc/get_turf_blacklists(map_names) + if(!islist(map_names)) + map_names = list(map_names) + var/list/blacklisted_turfs = list() + for(var/datum/map_template/automap_template/iterating_template as anything in preloaded_map_templates) + if(!(iterating_template.override_map_name in map_names)) + continue + for(var/turf/iterating_turf as anything in iterating_template.get_affected_turfs(iterating_template.load_turf, FALSE)) + blacklisted_turfs += iterating_turf + return blacklisted_turfs diff --git a/modular_skyrat/modules/automapper/icons/area_test.dmi b/modular_skyrat/modules/automapper/icons/area_test.dmi new file mode 100644 index 0000000000000000000000000000000000000000..5b0cce0974b699dc34175045131bf1c65604a1d7 GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJ{Hlk`kwbhgZ3PEp{9 QPXmd1y85}Sb4q9e08L0!H~;_u literal 0 HcmV?d00001 diff --git a/modular_skyrat/modules/automapper/readme.md b/modular_skyrat/modules/automapper/readme.md new file mode 100644 index 00000000000..7f497114957 --- /dev/null +++ b/modular_skyrat/modules/automapper/readme.md @@ -0,0 +1,13 @@ +## Credits +Code: [@Gandalf2k15] + +## About +This automapper is designed to make mapping far easier for modular maps, it should mean less manual map resets(ideally, never). +It supports two types of automapping, simple area automapper and template automapper. + +## Simple Area Automapper +What this will do is check an area for a suitable single tile to spawn an object in. It uses "intelligent" heatmapping to choose a suitable place. +It uses an algorithm to decide where to place a singular item, it will avoid blocking hallways or doors. + +## Template Automapper +This automapper is designed to load templates over existing maps using a template file and entry in the config toml. diff --git a/modular_skyrat/modules/goofsec/code/department_guards.dm b/modular_skyrat/modules/goofsec/code/department_guards.dm index dffb0d88adc..1cbc6ddb3f1 100644 --- a/modular_skyrat/modules/goofsec/code/department_guards.dm +++ b/modular_skyrat/modules/goofsec/code/department_guards.dm @@ -166,8 +166,8 @@ trim_icon = 'modular_skyrat/master_files/icons/obj/card.dmi' trim_state = "trim_orderly" sechud_icon_state = SECHUD_ORDERLY - extra_access = list(ACCESS_BRIG_ENTRANCE, ACCESS_MEDICAL, ACCESS_MORGUE, ACCESS_SURGERY, ACCESS_PHARMACY, ACCESS_PLUMBING, ACCESS_VIROLOGY, ACCESS_MECH_MEDICAL, ACCESS_MINERAL_STOREROOM, ACCESS_WEAPONS) - minimal_access = list(ACCESS_BRIG_ENTRANCE, ACCESS_MEDICAL, ACCESS_MORGUE, ACCESS_SURGERY, ACCESS_PHARMACY, ACCESS_PLUMBING, ACCESS_VIROLOGY, ACCESS_MECH_MEDICAL, ACCESS_MINERAL_STOREROOM, ACCESS_WEAPONS) + extra_access = list(ACCESS_SECURITY, ACCESS_BRIG_ENTRANCE, ACCESS_MEDICAL, ACCESS_MORGUE, ACCESS_SURGERY, ACCESS_PHARMACY, ACCESS_PLUMBING, ACCESS_VIROLOGY, ACCESS_MECH_MEDICAL, ACCESS_MINERAL_STOREROOM, ACCESS_WEAPONS) + minimal_access = list(ACCESS_SECURITY, ACCESS_BRIG_ENTRANCE, ACCESS_MEDICAL, ACCESS_MORGUE, ACCESS_SURGERY, ACCESS_PHARMACY, ACCESS_PLUMBING, ACCESS_VIROLOGY, ACCESS_MECH_MEDICAL, ACCESS_MINERAL_STOREROOM, ACCESS_WEAPONS) template_access = list(ACCESS_CAPTAIN, ACCESS_CMO, ACCESS_CHANGE_IDS) job = /datum/job/orderly @@ -234,9 +234,9 @@ trim_icon = 'modular_skyrat/master_files/icons/obj/card.dmi' trim_state = "trim_calhoun" sechud_icon_state = SECHUD_SCIENCE_GUARD - extra_access = list(ACCESS_BRIG_ENTRANCE, ACCESS_ROBOTICS, ACCESS_SCIENCE, ACCESS_ORDNANCE, ACCESS_ORDNANCE_STORAGE, ACCESS_RESEARCH, ACCESS_XENOBIOLOGY, + extra_access = list(ACCESS_SECURITY, ACCESS_BRIG_ENTRANCE, ACCESS_ROBOTICS, ACCESS_SCIENCE, ACCESS_ORDNANCE, ACCESS_ORDNANCE_STORAGE, ACCESS_RESEARCH, ACCESS_XENOBIOLOGY, ACCESS_MECH_SCIENCE, ACCESS_MINERAL_STOREROOM, ACCESS_TECH_STORAGE, ACCESS_GENETICS, ACCESS_AUX_BASE, ACCESS_WEAPONS) - minimal_access = list(ACCESS_BRIG_ENTRANCE, ACCESS_ROBOTICS, ACCESS_SCIENCE, ACCESS_ORDNANCE, ACCESS_ORDNANCE_STORAGE, ACCESS_RESEARCH, ACCESS_XENOBIOLOGY, + minimal_access = list(ACCESS_SECURITY, ACCESS_BRIG_ENTRANCE, ACCESS_ROBOTICS, ACCESS_SCIENCE, ACCESS_ORDNANCE, ACCESS_ORDNANCE_STORAGE, ACCESS_RESEARCH, ACCESS_XENOBIOLOGY, ACCESS_MECH_SCIENCE, ACCESS_MINERAL_STOREROOM, ACCESS_TECH_STORAGE, ACCESS_GENETICS, ACCESS_AUX_BASE, ACCESS_WEAPONS) template_access = list(ACCESS_CAPTAIN, ACCESS_RD, ACCESS_CHANGE_IDS) job = /datum/job/science_guard @@ -309,8 +309,8 @@ trim_icon = 'modular_skyrat/master_files/icons/obj/card.dmi' trim_state = "trim_bouncer" sechud_icon_state = SECHUD_BOUNCER - extra_access = list(ACCESS_BRIG_ENTRANCE, ACCESS_HYDROPONICS, ACCESS_BAR, ACCESS_KITCHEN, ACCESS_MORGUE, ACCESS_WEAPONS, ACCESS_MINERAL_STOREROOM, ACCESS_THEATRE, ACCESS_WEAPONS) - minimal_access = list(ACCESS_BRIG_ENTRANCE, ACCESS_HYDROPONICS, ACCESS_BAR, ACCESS_KITCHEN, ACCESS_MORGUE, ACCESS_WEAPONS, ACCESS_MINERAL_STOREROOM, ACCESS_THEATRE, ACCESS_SERVICE, ACCESS_WEAPONS) + extra_access = list(ACCESS_SECURITY, ACCESS_BRIG_ENTRANCE, ACCESS_HYDROPONICS, ACCESS_BAR, ACCESS_KITCHEN, ACCESS_MORGUE, ACCESS_WEAPONS, ACCESS_MINERAL_STOREROOM, ACCESS_THEATRE, ACCESS_WEAPONS) + minimal_access = list(ACCESS_SECURITY, ACCESS_BRIG_ENTRANCE, ACCESS_HYDROPONICS, ACCESS_BAR, ACCESS_KITCHEN, ACCESS_MORGUE, ACCESS_WEAPONS, ACCESS_MINERAL_STOREROOM, ACCESS_THEATRE, ACCESS_SERVICE, ACCESS_WEAPONS) template_access = list(ACCESS_CAPTAIN, ACCESS_HOP, ACCESS_CHANGE_IDS) job = /datum/job/bouncer @@ -376,8 +376,8 @@ trim_icon = 'modular_skyrat/master_files/icons/obj/card.dmi' trim_state = "trim_customs" sechud_icon_state = SECHUD_CUSTOMS_AGENT - extra_access = list(ACCESS_BRIG_ENTRANCE, ACCESS_MAINT_TUNNELS, ACCESS_SHIPPING, ACCESS_CARGO, ACCESS_QM, ACCESS_MINING, ACCESS_MECH_MINING, ACCESS_MINING_STATION, ACCESS_MINERAL_STOREROOM, ACCESS_WEAPONS) - minimal_access = list(ACCESS_BRIG_ENTRANCE, ACCESS_MAINT_TUNNELS, ACCESS_SHIPPING, ACCESS_CARGO, ACCESS_QM, ACCESS_MINING, ACCESS_MECH_MINING, ACCESS_MINING_STATION, ACCESS_MINERAL_STOREROOM, ACCESS_WEAPONS) + extra_access = list(ACCESS_SECURITY, ACCESS_BRIG_ENTRANCE, ACCESS_MAINT_TUNNELS, ACCESS_SHIPPING, ACCESS_CARGO, ACCESS_QM, ACCESS_MINING, ACCESS_MECH_MINING, ACCESS_MINING_STATION, ACCESS_MINERAL_STOREROOM, ACCESS_WEAPONS) + minimal_access = list(ACCESS_SECURITY, ACCESS_BRIG_ENTRANCE, ACCESS_MAINT_TUNNELS, ACCESS_SHIPPING, ACCESS_CARGO, ACCESS_QM, ACCESS_MINING, ACCESS_MECH_MINING, ACCESS_MINING_STATION, ACCESS_MINERAL_STOREROOM, ACCESS_WEAPONS) template_access = list(ACCESS_CAPTAIN, ACCESS_QM, ACCESS_CHANGE_IDS) job = /datum/job/customs_agent @@ -443,9 +443,9 @@ trim_icon = 'modular_skyrat/master_files/icons/obj/card.dmi' trim_state = "trim_engiguard" sechud_icon_state = SECHUD_ENGINEERING_GUARD - extra_access = list(ACCESS_BRIG_ENTRANCE, ACCESS_ENGINEERING, ACCESS_ENGINE_EQUIP, ACCESS_TECH_STORAGE, ACCESS_MAINT_TUNNELS, ACCESS_MECH_ENGINE, ACCESS_AUX_BASE, + extra_access = list(ACCESS_SECURITY, ACCESS_BRIG_ENTRANCE, ACCESS_ENGINEERING, ACCESS_ENGINE_EQUIP, ACCESS_TECH_STORAGE, ACCESS_MAINT_TUNNELS, ACCESS_MECH_ENGINE, ACCESS_AUX_BASE, ACCESS_EXTERNAL_AIRLOCKS, ACCESS_CONSTRUCTION, ACCESS_ATMOSPHERICS, ACCESS_TCOMMS, ACCESS_MINERAL_STOREROOM, ACCESS_WEAPONS) - minimal_access = list(ACCESS_BRIG_ENTRANCE, ACCESS_ENGINEERING, ACCESS_ENGINE_EQUIP, ACCESS_TECH_STORAGE, ACCESS_MAINT_TUNNELS, ACCESS_MECH_ENGINE, ACCESS_AUX_BASE, + minimal_access = list(ACCESS_SECURITY, ACCESS_BRIG_ENTRANCE, ACCESS_ENGINEERING, ACCESS_ENGINE_EQUIP, ACCESS_TECH_STORAGE, ACCESS_MAINT_TUNNELS, ACCESS_MECH_ENGINE, ACCESS_AUX_BASE, ACCESS_EXTERNAL_AIRLOCKS, ACCESS_CONSTRUCTION, ACCESS_ATMOSPHERICS, ACCESS_TCOMMS, ACCESS_MINERAL_STOREROOM, ACCESS_WEAPONS) template_access = list(ACCESS_CAPTAIN, ACCESS_CE, ACCESS_CHANGE_IDS) job = /datum/job/engineering_guard diff --git a/modular_skyrat/modules/modular_items/code/summon_beacon.dm b/modular_skyrat/modules/modular_items/code/summon_beacon.dm index a4caeb82eef..c0c3af8caaa 100644 --- a/modular_skyrat/modules/modular_items/code/summon_beacon.dm +++ b/modular_skyrat/modules/modular_items/code/summon_beacon.dm @@ -147,92 +147,6 @@ area_string = "atmospherics" supply_pod_stay = TRUE -/obj/item/summon_beacon/command_drobe - name = "command outfitting beacon" - desc = "Delivers a command outfitting station to the target location." - - allowed_areas = list( - /area/station/command/bridge, - /area/station/command/heads_quarters/captain, - /area/station/command/heads_quarters/hop, - ) - - selectable_atoms = list( - /obj/machinery/vending/access/command, - ) - - area_string = "the bridge" - -/obj/item/summon_beacon/borgi - name = "E-N beacon" - desc = "Delivers a lovable borgi to the target location." - - allowed_areas = list( - /area/station/science/robotics, - ) - - selectable_atoms = list( - /mob/living/simple_animal/pet/dog/corgi/borgi, - ) - - area_string = "robotics" - -/obj/item/summon_beacon/poppy - name = "engineering possum beacon" - desc = "Delivers the engineering possum, Poppy, to the target location." - - allowed_areas = list( - /area/station/engineering, - ) - - selectable_atoms = list( - /mob/living/simple_animal/pet/poppy, - ) - - area_string = "engineering" - -/obj/item/summon_beacon/bumbles - name = "Bumbles beacon" - desc = "Delivers hydreponics' bee, Bumbles, to the target location." - - allowed_areas = list( - /area/station/service/hydroponics, - ) - - selectable_atoms = list( - /mob/living/simple_animal/pet/bumbles, - ) - - area_string = "hydroponics" - -/obj/item/summon_beacon/markus - name = "cargo corgi beacon" - desc = "Delivers Markus, the mascot of cargo, to the target location." - - allowed_areas = list( - /area/station/cargo, - ) - - selectable_atoms = list( - /mob/living/simple_animal/pet/dog/markus, - ) - - area_string = "cargo" - -/obj/item/summon_beacon/secmed - name = "security medic locker beacon" - desc = "Delivers a security medic's locker to the target location." - - allowed_areas = list( - /area/station/security/medical, - ) - - selectable_atoms = list( - /obj/structure/closet/secure_closet/security_medic, - ) - - area_string = "the medical ward of security" - /obj/item/summon_beacon/vanguard name = "vanguard operatives supply beacon" desc = "Used to request your job supplies, use in hand to do so!" diff --git a/modular_skyrat/modules/salon/code/area.dm b/modular_skyrat/modules/salon/code/area.dm index 1ff7534ffaf..f391c7441d5 100644 --- a/modular_skyrat/modules/salon/code/area.dm +++ b/modular_skyrat/modules/salon/code/area.dm @@ -1,4 +1,4 @@ -/area/service/salon +/area/station/service/salon name = "\improper Salon" icon = 'modular_skyrat/modules/skyrat_areas/icons/areas_station.dmi' icon_state = "salon" diff --git a/modular_skyrat/modules/sec_haul/code/security_medic/security_medic.dm b/modular_skyrat/modules/sec_haul/code/security_medic/security_medic.dm index 74ae0bf4ff2..44ac73b2ce6 100644 --- a/modular_skyrat/modules/sec_haul/code/security_medic/security_medic.dm +++ b/modular_skyrat/modules/sec_haul/code/security_medic/security_medic.dm @@ -59,7 +59,6 @@ head = /obj/item/clothing/head/beret/sec/peacekeeper/security_medic backpack_contents = list( /obj/item/storage/box/gunset/firefly = 1, - /obj/item/summon_beacon/secmed = 1, ) backpack = /obj/item/storage/backpack/security satchel = /obj/item/storage/backpack/satchel/sec diff --git a/modular_skyrat/readme.md b/modular_skyrat/readme.md index 6ace3804ce9..ed0e25170ff 100644 --- a/modular_skyrat/readme.md +++ b/modular_skyrat/readme.md @@ -72,13 +72,17 @@ And then you'll want to establish your core folder that you'll be working out of ### Maps -The major station maps have their equivalents in the same folder as the originals, but with their filename having a `_skyrat` suffix. +IMPORTANT: MAP CONTRIBUTION GUIDELINES HAVE BEEN UPDATED +When you are adding a new item to the map you MUST follow this procedure: +Start by deciding how big of a change it is going to be, if it is a small 1 item change, you should use the simple area automapper. If it is an entire room, you should use the template automapper. -If you wanted to add some location to the CentCom z-level, a'la whatever off-station location that isn't meant to be reachable or escapable through normal means, we have our own separate z-level, in `_maps/map_files/generic/Offstation_skyrat.dmm`. That z-level, by design, has the same traits as the CentCom z-level, meaning that teleporters and a lot of other things will simply refuse to work there. +We will no longer have _skyrat map versions. -If you plan to edit space ruins and so on, currently, it should be discussed with a maintainer and likely should be PRed upstream, to tgstation repository. +DO NOT CHANGE TG MAPS, THEY ARE HELD TO THE SAME STANDARD AS ICONS. USE THE ABOVE TO MAKE MAP EDITS. -Put any skyrat specific maps into the _maps/ folder, and then into the skyrat folder inside the type. E.g. an ice ruin map would go into_maps/RandomRuins/IceRuins/skyrat/whatever.dmm. +The automapper uses prebaked templates to override sections of a map using coordinates to plot the starting location. See entries in automapper_config.toml for examples. + +The simple area automapper uses datum entries to place down a single item in an area of a map that makes vauge sense. ### Assets: images, sounds, icons and binaries diff --git a/tgstation.dme b/tgstation.dme index ea89cb29c9d..338e2d67eed 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -5017,6 +5017,9 @@ #include "modular_skyrat\modules\assault_operatives\code\armaments\armament_modules.dm" #include "modular_skyrat\modules\assault_operatives\code\armaments\armament_utility.dm" #include "modular_skyrat\modules\assault_operatives\code\armaments\assaultops_armament_station.dm" +#include "modular_skyrat\modules\automapper\code\area_spawn_entries.dm" +#include "modular_skyrat\modules\automapper\code\automap_template.dm" +#include "modular_skyrat\modules\automapper\code\automapper_subsystem.dm" #include "modular_skyrat\modules\autotransfer\code\autotransfer.dm" #include "modular_skyrat\modules\autotransfer\code\autotransfer_config.dm" #include "modular_skyrat\modules\autotransfer\code\shuttle.dm"